From 431ba2e558e9ff5e22e7a1ae4e01e2b899cb1f4a Mon Sep 17 00:00:00 2001 From: Tykayn Date: Sun, 30 Jul 2023 19:18:17 +0200 Subject: [PATCH] fix simple config --- .../convert_to_osm_tags.mjs | 296 +- .../mappings/{ => converters}/configIRVE.mjs | 0 .../converters/mappingConfigIRVE_simple.mjs | 43 + .../mappings/utils.mjs | 28 +- .../osm_output/bornes-from-etalab-91.osm | 1 + ...onverted_data_set_filtered_zipcode_91.json | 7304 ++++++++++++++++- ...nverted_data_set_filtered_zipcode_974.json | 4692 +---------- 7 files changed, 7393 insertions(+), 4971 deletions(-) rename mapping_geojson_to_osm_tags/mappings/{ => converters}/configIRVE.mjs (100%) create mode 100644 mapping_geojson_to_osm_tags/mappings/converters/mappingConfigIRVE_simple.mjs create mode 100644 mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-91.osm diff --git a/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs b/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs index 65176848..bfff7b3f 100644 --- a/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs +++ b/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs @@ -3,43 +3,43 @@ */ import fs from 'node-fs' import minimist from 'minimist' -import mappingConfigIRVE from './mappings/configIRVE.mjs' -import mapping_engine from "./mappings/engine.mjs"; -import custom_utils from "./mappings/utils.mjs"; +import mappingConfigIRVE from './mappings/converters/configIRVE.mjs' +import mappingConfigIRVE_simple from './mappings/converters/mappingConfigIRVE_simple.mjs' +import mapping_engine from './mappings/engine.mjs' +import custom_utils from './mappings/utils.mjs' -const {debugLog} = custom_utils; +const { debugLog } = custom_utils +const { isBooleanKey } = custom_utils // let debugLog = custom_utils.debugLog -let use_mappping_engine = false; -let Mapping_engine = new mapping_engine(mappingConfigIRVE); +let use_mappping_engine = false +let Mapping_engine = new mapping_engine(mappingConfigIRVE) let mini_arguments = minimist(process.argv.slice(2)) - // let sourceFileChargemapJson = './chargemap_data/hurepoix.json' let sourceFilePathGeoJson = './etalab_data/latest.json' - // wip filter let filterOnBoundingBox = true filterOnBoundingBox = false let boundingBoxCoordinates = { - xMin: 1.91, - xMax: 2.38, - yMin: 48.7, - yMax: 48.4, + xMin: 1.91, + xMax: 2.38, + yMin: 48.7, + yMax: 48.4, } let filterCoordinates = true let enable_filter_on_department = true let filterDepartment = 91 if (mini_arguments['department']) { - filterDepartment = mini_arguments['department'] + filterDepartment = mini_arguments['department'] } if (mini_arguments['source']) { - sourceFilePathGeoJson = mini_arguments['source'] + sourceFilePathGeoJson = mini_arguments['source'] } let filterZipCode = new RegExp(`^${filterDepartment}`) @@ -47,38 +47,26 @@ let filterZipCodeAdresse = new RegExp(` ${filterDepartment}`) let filteredName = '' if (enable_filter_on_department) { - filteredName = '_filtered_zipcode_' + filterDepartment + filteredName = '_filtered_zipcode_' + filterDepartment } else if (filterOnBoundingBox) { - filteredName = '_filtered_bbox_' + boundingBoxCoordinates.xMin + '-' + boundingBoxCoordinates.xMax + '_' + boundingBoxCoordinates.yMin + '-' + boundingBoxCoordinates.yMax + filteredName = '_filtered_bbox_' + boundingBoxCoordinates.xMin + '-' + boundingBoxCoordinates.xMax + '_' + boundingBoxCoordinates.yMin + '-' + boundingBoxCoordinates.yMax } let pointCounterMax = 1000000 let limitConversionToFirstPoint = false -// limitConversionToFirstPoint = true; +limitConversionToFirstPoint = true if (limitConversionToFirstPoint) { - pointCounterMax = 1 + pointCounterMax = 1 } let defaultPropertiesOfPoint = { - 'amenity': 'charging_station' + 'amenity': 'charging_station' } - -let listOfBooleanKeys = Object.keys({ - prise_type_ef: 'socket:typee', - prise_type_2: 'socket:type2', - prise_type_combo_ccs: 'socket:type2_combo', - prise_type_chademo: 'socket:chademo', - gratuit: 'fee', - paiement_acte: 'authentication:none', - paiement_cb: 'payment:credit_cards', - cable_t2_attache: 'socket:type2_cable', -}) - - let converted_geo_json = { - type: 'FeatureCollection', - features: [] + type: 'FeatureCollection', + features: [] } + /** * * @param sourceFilePath @@ -86,158 +74,166 @@ let converted_geo_json = { * @param pointCounterMax * @param boundingBoxCoordinates */ -function convertDataForIRVE(sourceFilePath, mapping, pointCounterMax, boundingBoxCoordinates) { - debugLog('convertDataFromChargemap from ', sourceFilePath) +function convertDataForIRVE (sourceFilePath, mapping, pointCounterMax, boundingBoxCoordinates) { + debugLog('convertDataFromChargemap from ', sourceFilePath) + fs.readFile(sourceFilePath, 'utf8', function (err, data) { + let point_counter = 0 + if (err) { + return debugLog(err) + } + let data_transformed = JSON.parse(data) + // debug('data keys ', Object.keys(dataTransformed)) - fs.readFile(sourceFilePath, 'utf8', function (err, data) { - let point_counter = 0 - if (err) { - return debugLog(err) - } - let data_transformed = JSON.parse(data) - // debug('data keys ', Object.keys(dataTransformed)) + debugLog('debug: properties of point 0', data_transformed.features[0]) + if (data_transformed.features) { - debugLog('debug: properties of point 0', data_transformed.features[0]) - if (data_transformed.features) { + debugLog('data found, features:', data_transformed.features.length) - debugLog('data found, features:', data_transformed.features.length) + // find interesting list of points to use + let list_of_points = data_transformed.features + // for each point from the data source, convert with the mapping - // find interesting list of points to use - let list_of_points = data_transformed.features - // for each point from the data source, convert with the mapping + console.log('listOfPoints.length', list_of_points.length) + list_of_points.forEach(feature_point => { - console.log('listOfPoints.length', list_of_points.length) - list_of_points.forEach(feature_point => { + let regex_filter_test_result = true - let regex_filter_test_result = true + if (enable_filter_on_department) { + debugLog('filtre sur les départements activé') + regex_filter_test_result = ( + filterZipCode.test(feature_point.properties.consolidated_code_postal) + || + filterZipCodeAdresse.test(feature_point.properties.adresse_station) + ) + } else if (filterOnBoundingBox) { + debugLog('filtre sur les coordonnées activé') - if (enable_filter_on_department) { - console.log('filtre sur les départements activé') - regex_filter_test_result = ( - filterZipCode.test(feature_point.properties.consolidated_code_postal) - || - filterZipCodeAdresse.test(feature_point.properties.adresse_station) - ) - } else if (filterOnBoundingBox) { - console.log('filtre sur les coordonnées activé') + let x = feature_point.properties.coordonneesXY[0] + let xMin = boundingBoxCoordinates.xMin + let xMax = boundingBoxCoordinates.xMax + let yMin = boundingBoxCoordinates.yMin + let yMax = boundingBoxCoordinates.yMax - let x = feature_point.properties.coordonneesXY[0] - let xMin = boundingBoxCoordinates.xMin - let xMax = boundingBoxCoordinates.xMax - let yMin = boundingBoxCoordinates.yMin - let yMax = boundingBoxCoordinates.yMax + let y = feature_point.properties.coordonneesXY[1] + regex_filter_test_result = ( + (x >= xMin && x <= xMax) + && + (y >= yMin && y <= yMax) + ) - let y = feature_point.properties.coordonneesXY[1] - regex_filter_test_result = ( - (x >= xMin && x <= xMax) - && - (y >= yMin && y <= yMax) - ) + } - } + // filter points depending on zipcode + if (filterCoordinates && regex_filter_test_result) { - // filter points depending on zipcode - if (filterCoordinates && regex_filter_test_result) { + debugLog('featurePoint.properties.consolidated_code_postal', feature_point.properties.consolidated_code_postal) - debugLog('featurePoint.properties.consolidated_code_postal', feature_point.properties.consolidated_code_postal) + // limit results number of points + // if (pointcounter < pointCounterMax) { - // limit results number of points - // if (pointcounter < pointCounterMax) { + debugLog('add point') - debugLog('add point') + debugLog('featurePoint', feature_point) - debugLog('featurePoint', feature_point) + let mapped_point = {} - let mapped_point = {}; + if (use_mappping_engine) { + Mapping_engine.setConfig(mapping) + mapped_point = Mapping_engine.mapFeaturePoint(feature_point) + } else { + mapped_point = mapElementFromConfSimple(feature_point, mapping) + } + debugLog('map one point', feature_point, mapped_point) + if (mapped_point) { + converted_geo_json.features.push(mapped_point) + } + } + // } + point_counter++ - if (use_mappping_engine) { - Mapping_engine.setConfig(mapping) - mapped_point = Mapping_engine.mapFeaturePoint(feature_point) - } else { - mapped_point = mapElementFromConfSimple(feature_point, mapping) - } - debugLog('map one point', feature_point, mapped_point) - if (mapped_point) { - converted_geo_json.features.push(mapped_point) - } - } - // } - point_counter++ + }) + // output new geojson + console.log('convertedGeoJson.features.length', converted_geo_json.features.length) + // write file on disk + let fileNameToWrite = 'my_converted_data_set' + filteredName + '.json' + console.log('write file ', fileNameToWrite) + writeJsonFile(fileNameToWrite, JSON.stringify(converted_geo_json, null, 2)) - }) - // output new geojson - console.log('convertedGeoJson.features.length', converted_geo_json.features.length) - // write file on disk - let fileNameToWrite = 'my_converted_data_set' + filteredName + '.json' - console.log('write file ', fileNameToWrite) - writeJsonFile(fileNameToWrite, JSON.stringify(converted_geo_json, null, 2)) + debugLog('mapped output:', converted_geo_json.features) - debugLog('mapped output:', converted_geo_json.features) - - return converted_geo_json - } - }) + return converted_geo_json + } + }) } - /** * retuns the converted element from mapping config if present, null otherwise */ -function mapElementFromConfSimple(featurePoint, mappingConfig) -{ - let mappingKeys = Object.keys(mappingConfig) - let featurePointPropertiesKeys = Object.keys(featurePoint.properties) +function mapElementFromConfSimple (featurePoint, mappingConfig) { + let mappingKeys = Object.keys(mappingConfig) + let featurePointPropertiesKeys = Object.keys(featurePoint.properties) - debugLog('keys', mappingKeys, featurePointPropertiesKeys) + debugLog('keys', mappingKeys, featurePointPropertiesKeys) - let newProperties = defaultPropertiesOfPoint + let newProperties = defaultPropertiesOfPoint - // reinit properties of current point - let basePoint = Object.create(featurePoint) - basePoint.type = featurePoint.type - basePoint.geometry = featurePoint.geometry - basePoint.properties = newProperties + // reinit properties of current point + let basePoint = Object.create(featurePoint) + basePoint.type = featurePoint.type + basePoint.geometry = featurePoint.geometry + basePoint.properties = newProperties - // apply new properties if found in mapping config - featurePointPropertiesKeys.forEach(pointKeyName => { + // apply new properties if found in mapping config + featurePointPropertiesKeys.forEach(pointKeyName => { - if (mappingKeys.indexOf(pointKeyName) !== -1) { - debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) - let convertedValue = '' - if (isBooleanKey(pointKeyName)) { + if (mappingKeys.indexOf(pointKeyName) !== -1) { + debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) + let convertedValue = '' + if (isBooleanKey(pointKeyName)) { - convertedValue = featurePoint.properties[pointKeyName].toLowerCase() == 'true' ? 'yes' : 'no' - } else { - convertedValue = featurePoint.properties[pointKeyName] - } + let copyOfValue = '' + featurePoint.properties[pointKeyName] + if (typeof copyOfValue === typeof Object && copyOfValue.key_converted) { + copyOfValue = copyOfValue.key_converted + } + convertedValue = copyOfValue.toLowerCase() == 'true' ? 'yes' : 'no' + } else { + convertedValue = featurePoint.properties[pointKeyName] + } - if (convertedValue) { - newProperties[mappingConfig[pointKeyName]] = convertedValue - } - } - }) + if (convertedValue) { + newProperties[mappingConfig[pointKeyName]] = convertedValue + } + } + }) - debugLog('basePoint', basePoint) - return basePoint + debugLog('basePoint', basePoint) + return basePoint } -function writeJsonFile(fileName, fileContent) { - debugLog('write file ', fileName) +function writeJsonFile (fileName, fileContent) { + debugLog('write file ', fileName) - return fs.writeFile( - `./output/${fileName}`, - fileContent, - 'utf8', - (err) => { - if (err) { - debugLog(`Error writing file: ${err}`) - } else { - debugLog(`File ${fileName} is written successfully!`) - } - } - ) + return fs.writeFile( + `./output/${fileName}`, + fileContent, + 'utf8', + (err) => { + if (err) { + debugLog(`Error writing file: ${err}`) + } else { + debugLog(`File ${fileName} is written successfully!`) + } + } + ) } console.log('pointCounterMax', pointCounterMax) -convertDataForIRVE(sourceFilePathGeoJson, mappingConfigIRVE, pointCounterMax, boundingBoxCoordinates) + +if (!use_mappping_engine) { + convertDataForIRVE(sourceFilePathGeoJson, mappingConfigIRVE_simple, pointCounterMax, boundingBoxCoordinates) +} else { + convertDataForIRVE(sourceFilePathGeoJson, mappingConfigIRVE, pointCounterMax, boundingBoxCoordinates) +} + + diff --git a/mapping_geojson_to_osm_tags/mappings/configIRVE.mjs b/mapping_geojson_to_osm_tags/mappings/converters/configIRVE.mjs similarity index 100% rename from mapping_geojson_to_osm_tags/mappings/configIRVE.mjs rename to mapping_geojson_to_osm_tags/mappings/converters/configIRVE.mjs diff --git a/mapping_geojson_to_osm_tags/mappings/converters/mappingConfigIRVE_simple.mjs b/mapping_geojson_to_osm_tags/mappings/converters/mappingConfigIRVE_simple.mjs new file mode 100644 index 00000000..f45c79f2 --- /dev/null +++ b/mapping_geojson_to_osm_tags/mappings/converters/mappingConfigIRVE_simple.mjs @@ -0,0 +1,43 @@ +/** + * 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 + */ + +export default { + + // ******* nombres + nbre_pdc: 'capacity', + // ******* textes + amenity: 'amenity', // conserver le tag de base + capacity: 'capacity', // conserver le tag de base + nom_amenageur: 'operator', + siren_amenageur: 'owner:ref:FR:SIREN', + nom_operateur: 'operator', + telephone_operateur: 'phone', + contact_operateur: 'email', // ici, on souhaite convertir la clé contact_operateur=bidule en email=bidule + + id_station_itinerance: 'ref:EU:EVSE', + id_station_local: 'ref', + + gratuit: 'fee', + paiement_acte: 'authentication:none', + + reservation: 'reservation', + observations: 'note', + nom_station: 'name', + nom_enseigne: 'network', + + // ******* dates + date_mise_en_service: 'start_date', + date_maj: 'source:date', + // ******** champs booléens + prise_type_ef: 'socket:typee', + prise_type_2: 'socket:type2', + prise_type_combo_ccs: 'socket:type2_combo', + prise_type_chademo: 'socket:chademo', + + // ******** champs plus complexes + horaires: 'opening_hours', // déjà au bon format + +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/mappings/utils.mjs b/mapping_geojson_to_osm_tags/mappings/utils.mjs index 1ac71228..f1958744 100644 --- a/mapping_geojson_to_osm_tags/mappings/utils.mjs +++ b/mapping_geojson_to_osm_tags/mappings/utils.mjs @@ -12,7 +12,33 @@ function debugLog (message) { } console.log('debug: ', ...message) } + + +let listOfBooleanKeys = Object.keys({ + prise_type_ef: 'socket:typee', + prise_type_2: 'socket:type2', + prise_type_combo_ccs: 'socket:type2_combo', + prise_type_chademo: 'socket:chademo', + gratuit: 'fee', + paiement_acte: 'authentication:none', + paiement_cb: 'payment:credit_cards', + cable_t2_attache: 'socket:type2_cable', +}) + + + +/** + * + * @param pointKeyName + * @returns {boolean} + */ +function isBooleanKey(pointKeyName) { + + return listOfBooleanKeys.indexOf(pointKeyName) !== -1 +} + export default { - debugLog + debugLog, + isBooleanKey } diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-91.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-91.osm new file mode 100644 index 00000000..021ea6e5 --- /dev/null +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-from-etalab-91.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json index 95ad582f..4b6927a6 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json @@ -11,7 +11,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -24,7 +44,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -37,7 +77,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -50,7 +110,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -63,7 +143,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -76,7 +176,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -89,7 +209,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -102,7 +242,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -115,7 +275,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -128,7 +308,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -141,7 +341,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -154,7 +374,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -167,7 +407,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -180,7 +440,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -193,7 +473,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -206,7 +506,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -219,7 +539,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -232,7 +572,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -245,7 +605,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -258,7 +638,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -271,7 +671,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -284,7 +704,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -297,7 +737,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -310,7 +770,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -323,7 +803,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -336,7 +836,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -349,7 +869,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -362,7 +902,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -375,7 +935,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -388,7 +968,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -401,7 +1001,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -414,7 +1034,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -427,7 +1067,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -440,7 +1100,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -453,7 +1133,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -466,7 +1166,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -479,7 +1199,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -492,7 +1232,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -505,7 +1265,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -518,7 +1298,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -531,7 +1331,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -544,7 +1364,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -557,7 +1397,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -570,7 +1430,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -583,7 +1463,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -596,7 +1496,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -609,7 +1529,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -622,7 +1562,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -635,7 +1595,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -648,7 +1628,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -661,7 +1661,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -674,7 +1694,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -687,7 +1727,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -700,7 +1760,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -713,7 +1793,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -726,7 +1826,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -739,7 +1859,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -752,7 +1892,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -765,7 +1925,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -778,7 +1958,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -791,7 +1991,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -804,7 +2024,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -817,7 +2057,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -830,7 +2090,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -843,7 +2123,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -856,7 +2156,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -869,7 +2189,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -882,7 +2222,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -895,7 +2255,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -908,7 +2288,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -921,7 +2321,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -934,7 +2354,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -947,7 +2387,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -960,7 +2420,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -973,7 +2453,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -986,7 +2486,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -999,7 +2519,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1012,7 +2552,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1025,7 +2585,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1038,7 +2618,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1051,7 +2651,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1064,7 +2684,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1077,7 +2717,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1090,7 +2750,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1103,7 +2783,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1116,7 +2816,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1129,7 +2849,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1142,7 +2882,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1155,7 +2915,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1168,7 +2948,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1181,7 +2981,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1194,7 +3014,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1207,7 +3047,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1220,7 +3080,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1233,7 +3113,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1246,7 +3146,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1259,7 +3179,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1272,7 +3212,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1285,7 +3245,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1298,7 +3278,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1311,7 +3311,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1324,7 +3344,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1337,7 +3377,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1350,7 +3410,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1363,7 +3443,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1376,7 +3476,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1389,7 +3509,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1402,7 +3542,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1415,7 +3575,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1428,7 +3608,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1441,7 +3641,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1454,7 +3674,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1467,7 +3707,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1480,7 +3740,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1493,7 +3773,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1506,7 +3806,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1519,7 +3839,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1532,7 +3872,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1545,7 +3905,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1558,7 +3938,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1571,7 +3971,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1584,7 +4004,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1597,7 +4037,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1610,7 +4070,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1623,7 +4103,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1636,7 +4136,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1649,7 +4169,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1662,7 +4202,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1675,7 +4235,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1688,7 +4268,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1701,7 +4301,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1714,7 +4334,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1727,7 +4367,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1740,7 +4400,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1753,7 +4433,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1766,7 +4466,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1779,7 +4499,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1792,7 +4532,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1805,7 +4565,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1818,7 +4598,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1831,7 +4631,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1844,7 +4664,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1857,7 +4697,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1870,7 +4730,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1883,7 +4763,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1896,7 +4796,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1909,7 +4829,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1922,7 +4862,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1935,7 +4895,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1948,7 +4928,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1961,7 +4961,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1974,7 +4994,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -1987,7 +5027,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2000,7 +5060,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2013,7 +5093,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2026,7 +5126,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2039,7 +5159,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2052,7 +5192,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2065,7 +5225,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2078,7 +5258,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2091,7 +5291,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2104,7 +5324,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2117,7 +5357,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2130,7 +5390,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2143,7 +5423,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2156,7 +5456,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2169,7 +5489,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2182,7 +5522,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2195,7 +5555,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2208,7 +5588,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2221,7 +5621,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2234,7 +5654,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2247,7 +5687,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2260,7 +5720,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2273,7 +5753,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2286,7 +5786,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2299,7 +5819,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2312,7 +5852,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2325,7 +5885,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2338,7 +5918,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2351,7 +5951,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2364,7 +5984,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2377,7 +6017,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2390,7 +6050,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2403,7 +6083,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2416,7 +6116,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2429,7 +6149,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2442,7 +6182,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2455,7 +6215,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2468,7 +6248,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2481,7 +6281,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2494,7 +6314,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2507,7 +6347,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2520,7 +6380,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2533,7 +6413,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2546,7 +6446,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2559,7 +6479,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2572,7 +6512,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2585,7 +6545,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2598,7 +6578,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2611,7 +6611,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2624,7 +6644,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2637,7 +6677,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2650,7 +6710,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2663,7 +6743,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2676,7 +6776,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2689,7 +6809,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2702,7 +6842,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2715,7 +6875,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2728,7 +6908,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2741,7 +6941,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2754,7 +6974,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2767,7 +7007,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2780,7 +7040,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2793,7 +7073,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2806,7 +7106,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2819,7 +7139,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2832,7 +7172,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2845,7 +7205,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2858,7 +7238,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2871,7 +7271,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2884,7 +7304,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2897,7 +7337,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2910,7 +7370,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2923,7 +7403,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2936,7 +7436,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2949,7 +7469,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2962,7 +7502,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2975,7 +7535,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -2988,7 +7568,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3001,7 +7601,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3014,7 +7634,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3027,7 +7667,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3040,7 +7700,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3053,7 +7733,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3066,7 +7766,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3079,7 +7799,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3092,7 +7832,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3105,7 +7865,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3118,7 +7898,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3131,7 +7931,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3144,7 +7964,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3157,7 +7997,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3170,7 +8030,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3183,7 +8063,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3196,7 +8096,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3209,7 +8129,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3222,7 +8162,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3235,7 +8195,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3248,7 +8228,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3261,7 +8261,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3274,7 +8294,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3287,7 +8327,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3300,7 +8360,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3313,7 +8393,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3326,7 +8426,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3339,7 +8459,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3352,7 +8492,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3365,7 +8525,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3378,7 +8558,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3391,7 +8591,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3404,7 +8624,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3417,7 +8657,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3430,7 +8690,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3443,7 +8723,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3456,7 +8756,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3469,7 +8789,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3482,7 +8822,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3495,7 +8855,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3508,7 +8888,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3521,7 +8921,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3534,7 +8954,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3547,7 +8987,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3560,7 +9020,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3573,7 +9053,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3586,7 +9086,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3599,7 +9119,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3612,7 +9152,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3625,7 +9185,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3638,7 +9218,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3651,7 +9251,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3664,7 +9284,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3677,7 +9317,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3690,7 +9350,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3703,7 +9383,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3716,7 +9416,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3729,7 +9449,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3742,7 +9482,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3755,7 +9515,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3768,7 +9548,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3781,7 +9581,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3794,7 +9614,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3807,7 +9647,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3820,7 +9680,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3833,7 +9713,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3846,7 +9746,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3859,7 +9779,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3872,7 +9812,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3885,7 +9845,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3898,7 +9878,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3911,7 +9911,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3924,7 +9944,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3937,7 +9977,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3950,7 +10010,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3963,7 +10043,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3976,7 +10076,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -3989,7 +10109,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4002,7 +10142,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4015,7 +10175,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4028,7 +10208,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4041,7 +10241,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4054,7 +10274,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4067,7 +10307,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4080,7 +10340,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4093,7 +10373,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4106,7 +10406,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4119,7 +10439,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4132,7 +10472,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4145,7 +10505,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4158,7 +10538,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4171,7 +10571,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4184,7 +10604,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4197,7 +10637,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4210,7 +10670,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4223,7 +10703,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4236,7 +10736,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4249,7 +10769,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4262,7 +10802,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4275,7 +10835,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4288,7 +10868,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4301,7 +10901,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } }, { @@ -4314,7 +10934,27 @@ ] }, "properties": { - "amenity": "charging_station" + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:chademo": "no", + "fee": "no", + "authentication:none": "yes", + "reservation": "False", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-02", + "ref": "577478", + "phone": "0680074537" } } ] diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json index a4d61d53..5bb6ce8a 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json @@ -11,28 +11,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -45,28 +24,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -79,28 +37,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -113,28 +50,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -147,28 +63,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -181,28 +76,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -215,28 +89,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -249,28 +102,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -283,28 +115,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -317,28 +128,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -351,28 +141,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -385,28 +154,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -419,28 +167,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -453,28 +180,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -487,28 +193,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -521,28 +206,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -555,28 +219,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -589,28 +232,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -623,28 +245,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -657,28 +258,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -691,28 +271,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -725,28 +284,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -759,28 +297,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -793,28 +310,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -827,28 +323,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -861,28 +336,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -895,28 +349,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -929,28 +362,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -963,28 +375,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -997,28 +388,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1031,28 +401,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1065,28 +414,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1099,28 +427,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1133,28 +440,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1167,28 +453,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1201,28 +466,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1235,28 +479,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1269,28 +492,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1303,28 +505,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1337,28 +518,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1371,28 +531,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1405,28 +544,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1439,28 +557,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1473,28 +570,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1507,28 +583,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1541,28 +596,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1575,28 +609,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1609,28 +622,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1643,28 +635,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1677,28 +648,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1711,28 +661,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1745,28 +674,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1779,28 +687,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1813,28 +700,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1847,28 +713,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1881,28 +726,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1915,28 +739,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1949,28 +752,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -1983,28 +765,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2017,28 +778,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2051,28 +791,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2085,28 +804,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2119,28 +817,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2153,28 +830,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2187,28 +843,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2221,28 +856,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2255,28 +869,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2289,28 +882,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2323,28 +895,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2357,28 +908,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2391,28 +921,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2425,28 +934,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2459,28 +947,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2493,28 +960,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2527,28 +973,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2561,28 +986,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2595,28 +999,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2629,28 +1012,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2663,28 +1025,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2697,28 +1038,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2731,28 +1051,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2765,28 +1064,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2799,28 +1077,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2833,28 +1090,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2867,28 +1103,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2901,28 +1116,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2935,28 +1129,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -2969,28 +1142,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3003,28 +1155,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3037,28 +1168,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3071,28 +1181,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3105,28 +1194,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3139,28 +1207,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3173,28 +1220,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3207,28 +1233,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3241,28 +1246,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3275,28 +1259,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3309,28 +1272,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3343,28 +1285,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3377,28 +1298,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3411,28 +1311,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3445,28 +1324,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3479,28 +1337,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3513,28 +1350,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3547,28 +1363,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3581,28 +1376,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3615,28 +1389,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3649,28 +1402,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3683,28 +1415,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3717,28 +1428,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3751,28 +1441,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3785,28 +1454,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3819,28 +1467,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3853,28 +1480,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3887,28 +1493,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3921,28 +1506,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3955,28 +1519,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -3989,28 +1532,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4023,28 +1545,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4057,28 +1558,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4091,28 +1571,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4125,28 +1584,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4159,28 +1597,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4193,28 +1610,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4227,28 +1623,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4261,28 +1636,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4295,28 +1649,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4329,28 +1662,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4363,28 +1675,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4397,28 +1688,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4431,28 +1701,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4465,28 +1714,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4499,28 +1727,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4533,28 +1740,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4567,28 +1753,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4601,28 +1766,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4635,28 +1779,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4669,28 +1792,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4703,28 +1805,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4737,28 +1818,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4771,28 +1831,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4805,28 +1844,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4839,28 +1857,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4873,28 +1870,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4907,28 +1883,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4941,28 +1896,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -4975,28 +1909,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5009,28 +1922,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5043,28 +1935,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5077,28 +1948,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5111,28 +1961,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5145,28 +1974,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5179,28 +1987,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5213,28 +2000,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5247,28 +2013,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5281,28 +2026,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5315,28 +2039,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5349,28 +2052,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5383,28 +2065,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5417,28 +2078,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5451,28 +2091,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5485,28 +2104,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5519,28 +2117,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5553,28 +2130,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5587,28 +2143,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5621,28 +2156,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5655,28 +2169,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5689,28 +2182,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5723,28 +2195,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5757,28 +2208,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5791,28 +2221,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5825,28 +2234,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5859,28 +2247,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5893,28 +2260,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5927,28 +2273,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5961,28 +2286,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -5995,28 +2299,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6029,28 +2312,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6063,28 +2325,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6097,28 +2338,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6131,28 +2351,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6165,28 +2364,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6199,28 +2377,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6233,28 +2390,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6267,28 +2403,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6301,28 +2416,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6335,28 +2429,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6369,28 +2442,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6403,28 +2455,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6437,28 +2468,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6471,28 +2481,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6505,28 +2494,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6539,28 +2507,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6573,28 +2520,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6607,28 +2533,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6641,28 +2546,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6675,28 +2559,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6709,28 +2572,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6743,28 +2585,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6777,28 +2598,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6811,28 +2611,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6845,28 +2624,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6879,28 +2637,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } }, { @@ -6913,28 +2650,7 @@ ] }, "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "ref:EU:EVSE": "FRC2P001602", - "ref": "JNNF0FAFIC", - "name": "EASYPLUG SEMIR LE PORT", - "capacity": "1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "no", - "socket:chademo": "no", - "fee": "no", - "authentication:none": "yes", - "reservation": "false", - "opening_hours": "24/7", - "start_date": "2021-09-01", - "note": "Paiement par smartphone, et applications", - "source:date": "2021-11-23", - "socket:type2_cable": "no", - "owner:ref:FR:SIREN": "901985804" + "amenity": "charging_station" } } ]