diff --git a/mapping_geojson_to_osm_tags/README.md b/mapping_geojson_to_osm_tags/README.md new file mode 100644 index 00000000..76900456 --- /dev/null +++ b/mapping_geojson_to_osm_tags/README.md @@ -0,0 +1,9 @@ +# Conversion de jeux de données geojson en tags OSM + +npm i +node convert_to_osm_tags.mjs + +résultat dans le dossier output. + +Réalisé pour l'intégration des bornes elec. + 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 5a290408..1c9314f9 100644 --- a/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs +++ b/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs @@ -5,10 +5,23 @@ import fs from 'node-fs'; let show_debug = 0; -let limitConversionToFirstPoint = true; + +let filterCoordinates = true; +let filterDepartment = 91; +let filterZipCode = new RegExp(`^${filterDepartment}`); + + +let pointCounterMax = 10; + +// let limitConversionToFirstPoint = false; +// if (limitConversionToFirstPoint) { +// pointCounterMax = 1 +// } + +// limitConversionToFirstPoint = false; + // let sourceFileChargemapJson = './chargemap_data/hurepoix.json' let sourceFileIRVEGeoJson = './etalab_data/consolidation-etalab-schema-irve-statique-v-2.2.0-20230727.json' - /** * plan de conversion des clés du jeu de données vers les tags OSM */ @@ -19,6 +32,7 @@ let mappingConfigIRVE = { nbre_pdc: "chargin_point:count", id_station_itinerance: "ref:EU:EVSE", id_station_local: "ref", + consolidated_code_postal: "zipcode", } @@ -29,7 +43,7 @@ function debugLog(message) { console.log('debug: ', ...message) } -function convertDataForIRVE(sourceFilePath, mapping) { +function convertDataForIRVE(sourceFilePath, mapping, pointCounterMax) { debugLog('convertDataFromChargemap from ', sourceFilePath); let convertedGeoJson = { @@ -54,23 +68,35 @@ function convertDataForIRVE(sourceFilePath, mapping) { let listOfPoints = dataTransformed.features // for each point from the data source, convert with the mapping + console.log('listOfPoints.length', listOfPoints.length) listOfPoints.forEach(featurePoint => { + let regextestresult = filterZipCode.test(featurePoint.properties.consolidated_code_postal) - if (limitConversionToFirstPoint && (pointcounter < 2)) { + // filter points depending on zipcode + if (filterCoordinates && regextestresult) { + + console.log('featurePoint.properties.consolidated_code_postal', featurePoint.properties.consolidated_code_postal) + + // limit results number of points + // if (pointcounter < pointCounterMax) { + + console.log('add point') + + debugLog('featurePoint', featurePoint) - console.log('featurePoint', featurePoint) - let mappedPoint = mapElementFromConf(featurePoint, mapping) debugLog('map one point', featurePoint, mappedPoint) if (mappedPoint) { convertedGeoJson.features.push(mappedPoint) } } + // } pointcounter++; }) // output new geojson + console.log('convertedGeoJson.features.length', convertedGeoJson.features.length) // write file on disk writeJsonFile('my_converted_data_set.json', JSON.stringify(convertedGeoJson, null, 2)) @@ -89,7 +115,7 @@ function mapElementFromConf(featurePoint, mappingConfig) { let mappingKeys = Object.keys(mappingConfig) let featurePointPropertiesKeys = Object.keys(featurePoint.properties) - console.log('keys', mappingKeys, featurePointPropertiesKeys) + debugLog('keys', mappingKeys, featurePointPropertiesKeys) let newProperties = {} @@ -103,12 +129,12 @@ function mapElementFromConf(featurePoint, mappingConfig) { featurePointPropertiesKeys.forEach(pointKeyName => { if (mappingKeys.indexOf(pointKeyName) !== -1) { - console.log('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) + debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) newProperties[mappingConfig[pointKeyName]] = featurePoint.properties[pointKeyName] } }) - console.log('basePoint', basePoint) + debugLog('basePoint', basePoint) return basePoint } @@ -130,6 +156,8 @@ function writeJsonFile(fileName, fileContent) { ); } -convertDataForIRVE(sourceFileIRVEGeoJson, mappingConfigIRVE) + +console.log('pointCounterMax', pointCounterMax) +convertDataForIRVE(sourceFileIRVEGeoJson, mappingConfigIRVE, pointCounterMax) // convertDataFromChargemap(sourceFileChargemapJson, mappingConfigIRVE) \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set.json index 1e0e527f..73db5a6b 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set.json @@ -6,17 +6,18 @@ "geometry": { "type": "Point", "coordinates": [ - 7.502904, - 47.608214 + 2.198339, + 48.678843 ] }, "properties": { "operator": "ELECTRA", "email": "help@electra.com", "phone": "", - "ref:EU:EVSE": "FRELCPBLOHM", + "ref:EU:EVSE": "FRELCPULIHM", "ref": "", - "chargin_point:count": "8" + "chargin_point:count": "4", + "zipcode": "91940" } }, { @@ -24,17 +25,3476 @@ "geometry": { "type": "Point", "coordinates": [ - 2.238392, - 48.77325 + 2.198339, + 48.678843 ] }, "properties": { "operator": "ELECTRA", "email": "help@electra.com", "phone": "", - "ref:EU:EVSE": "FRELCPPLRBO", + "ref:EU:EVSE": "FRELCPULIHM", "ref": "", - "chargin_point:count": "4" + "chargin_point:count": "4", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198339, + 48.678843 + ] + }, + "properties": { + "operator": "ELECTRA", + "email": "help@electra.com", + "phone": "", + "ref:EU:EVSE": "FRELCPULIHM", + "ref": "", + "chargin_point:count": "4", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198339, + 48.678843 + ] + }, + "properties": { + "operator": "ELECTRA", + "email": "help@electra.com", + "phone": "", + "ref:EU:EVSE": "FRELCPULIHM", + "ref": "", + "chargin_point:count": "4", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252401, + 48.740984 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE32111", + "ref": "FR*SOD*S*SIGE*321*1*_*_", + "chargin_point:count": "2", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252401, + 48.740984 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE32112", + "ref": "FR*SOD*S*SIGE*321*1*_*_", + "chargin_point:count": "2", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219674, + 48.755734 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE32412", + "ref": "FR*SOD*S*SIGE*324*1*_*_", + "chargin_point:count": "2", + "zipcode": "91570" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219674, + 48.755734 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE32411", + "ref": "FR*SOD*S*SIGE*324*1*_*_", + "chargin_point:count": "2", + "zipcode": "91570" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270501, + 48.752064 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE30721", + "ref": "FR*SOD*S*SIGE*307*2*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270501, + 48.752064 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE30722", + "ref": "FR*SOD*S*SIGE*307*2*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270501, + 48.752064 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE30711", + "ref": "FR*SOD*S*SIGE*307*1*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270501, + 48.752064 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE30712", + "ref": "FR*SOD*S*SIGE*307*1*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339336, + 48.705907 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE27911", + "ref": "FR*SOD*S*SIGE*279*1*_*_", + "chargin_point:count": "2", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339336, + 48.705907 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE27912", + "ref": "FR*SOD*S*SIGE*279*1*_*_", + "chargin_point:count": "2", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324774, + 48.700535 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE28012", + "ref": "FR*SOD*S*SIGE*280*1*_*_", + "chargin_point:count": "2", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324774, + 48.700535 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE28011", + "ref": "FR*SOD*S*SIGE*280*1*_*_", + "chargin_point:count": "2", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229802, + 48.642808 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE28612", + "ref": "FR*SOD*S*SIGE*286*1*_*_", + "chargin_point:count": "2", + "zipcode": "91460" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229802, + 48.642808 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE28611", + "ref": "FR*SOD*S*SIGE*286*1*_*_", + "chargin_point:count": "2", + "zipcode": "91460" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264582, + 48.743228 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE37511", + "ref": "FR*SOD*S*SIGE*375*1*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264582, + 48.743228 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE37521", + "ref": "FR*SOD*S*SIGE*375*2*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264582, + 48.743228 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE37531", + "ref": "FR*SOD*S*SIGE*375*3*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264582, + 48.743228 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE37541", + "ref": "FR*SOD*S*SIGE*375*4*_*_", + "chargin_point:count": "4", + "zipcode": "91370" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232979, + 48.642979 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE5312", + "ref": "FR*SOD*S*SIGE*53*1*_*_", + "chargin_point:count": "2", + "zipcode": "91460" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232979, + 48.642979 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE5311", + "ref": "FR*SOD*S*SIGE*53*1*_*_", + "chargin_point:count": "2", + "zipcode": "91460" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230529, + 48.640338 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE5421", + "ref": "FR*SOD*S*SIGE*54*2*_*_", + "chargin_point:count": "2", + "zipcode": "91460" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230529, + 48.640338 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE5422", + "ref": "FR*SOD*S*SIGE*54*2*_*_", + "chargin_point:count": "2", + "zipcode": "91460" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324704, + 48.73466 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE6012", + "ref": "FR*SOD*S*SIGE*60*1*_*_", + "chargin_point:count": "2", + "zipcode": "91320" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324704, + 48.73466 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE6011", + "ref": "FR*SOD*S*SIGE*60*1*_*_", + "chargin_point:count": "2", + "zipcode": "91320" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329537, + 48.739087 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE19112", + "ref": "FR*SOD*S*SIGE*191*1*_*_", + "chargin_point:count": "2", + "zipcode": "91320" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329537, + 48.739087 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE19111", + "ref": "FR*SOD*S*SIGE*191*1*_*_", + "chargin_point:count": "2", + "zipcode": "91320" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21486, + 48.754676 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE23112", + "ref": "FR*SOD*S*SIGE*231*1*_*_", + "chargin_point:count": "2", + "zipcode": "91570" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21486, + 48.754676 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE23111", + "ref": "FR*SOD*S*SIGE*231*1*_*_", + "chargin_point:count": "2", + "zipcode": "91570" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216118, + 48.751964 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE17512", + "ref": "FR*SOD*S*SIGE*175*1*_*_", + "chargin_point:count": "2", + "zipcode": "91570" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216118, + 48.751964 + ] + }, + "properties": { + "operator": "SIGEIF", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRSIGPSIGE17511", + "ref": "FR*SOD*S*SIGE*175*1*_*_", + "chargin_point:count": "2", + "zipcode": "91570" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294186, + 48.701866 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3612", + "ref": "FR*SOD*S*CAPS*36*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294186, + 48.701866 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3611", + "ref": "FR*SOD*S*CAPS*36*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259031, + 48.730156 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3711", + "ref": "FR*SOD*S*CAPS*37*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259031, + 48.730156 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3712", + "ref": "FR*SOD*S*CAPS*37*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316214, + 48.684934 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4011", + "ref": "FR*SOD*S*CAPS*40*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257871, + 48.735409 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3812", + "ref": "FR*SOD*S*CAPS*38*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257871, + 48.735409 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3811", + "ref": "FR*SOD*S*CAPS*38*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.116799, + 48.687965 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3912", + "ref": "FR*SOD*S*CAPS*39*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273306, + 48.644867 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3512", + "ref": "FR*SOD*S*CAPS*35*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316214, + 48.684934 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4012", + "ref": "FR*SOD*S*CAPS*40*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.116799, + 48.687965 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3911", + "ref": "FR*SOD*S*CAPS*39*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261823, + 48.689507 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3312", + "ref": "FR*SOD*S*CAPS*33*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273306, + 48.644867 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3511", + "ref": "FR*SOD*S*CAPS*35*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276495, + 48.664589 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3411", + "ref": "FR*SOD*S*CAPS*34*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276495, + 48.664589 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3412", + "ref": "FR*SOD*S*CAPS*34*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261823, + 48.689507 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3311", + "ref": "FR*SOD*S*CAPS*33*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.142571, + 48.714664 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3212", + "ref": "FR*SOD*S*CAPS*32*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.142571, + 48.714664 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3211", + "ref": "FR*SOD*S*CAPS*32*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24285, + 48.659538 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3111", + "ref": "FR*SOD*S*CAPS*31*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24285, + 48.659538 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3112", + "ref": "FR*SOD*S*CAPS*31*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216673, + 48.673862 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3011", + "ref": "FR*SOD*S*CAPS*30*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272193, + 48.725075 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4111", + "ref": "FR*SOD*S*CAPS*41*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216673, + 48.673862 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS3012", + "ref": "FR*SOD*S*CAPS*30*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272193, + 48.725075 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4112", + "ref": "FR*SOD*S*CAPS*41*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274164, + 48.711114 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4912", + "ref": "FR*SOD*S*CAPS*49*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.233518, + 48.697381 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4212", + "ref": "FR*SOD*S*CAPS*42*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.233518, + 48.697381 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4211", + "ref": "FR*SOD*S*CAPS*42*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.242334, + 48.661919 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2912", + "ref": "FR*SOD*S*CAPS*29*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294588, + 48.695099 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5511", + "ref": "FR*SOD*S*CAPS*55*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294588, + 48.695099 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5512", + "ref": "FR*SOD*S*CAPS*55*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232224, + 48.717692 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5411", + "ref": "FR*SOD*S*CAPS*54*1*_*_", + "chargin_point:count": "1", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234448, + 48.717192 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5312", + "ref": "FR*SOD*S*CAPS*53*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234448, + 48.717192 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5311", + "ref": "FR*SOD*S*CAPS*53*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274077, + 48.708309 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5112", + "ref": "FR*SOD*S*CAPS*51*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274077, + 48.708309 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5111", + "ref": "FR*SOD*S*CAPS*51*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291233, + 48.700448 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5012", + "ref": "FR*SOD*S*CAPS*50*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291233, + 48.700448 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS5011", + "ref": "FR*SOD*S*CAPS*50*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274164, + 48.711114 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4911", + "ref": "FR*SOD*S*CAPS*49*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283376, + 48.730587 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4712", + "ref": "FR*SOD*S*CAPS*47*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283376, + 48.730587 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4711", + "ref": "FR*SOD*S*CAPS*47*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273265, + 48.73428 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4611", + "ref": "FR*SOD*S*CAPS*46*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273265, + 48.73428 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4612", + "ref": "FR*SOD*S*CAPS*46*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29254, + 48.696736 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4511", + "ref": "FR*SOD*S*CAPS*45*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29254, + 48.696736 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4512", + "ref": "FR*SOD*S*CAPS*45*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.106596, + 48.700953 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4411", + "ref": "FR*SOD*S*CAPS*44*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.106596, + 48.700953 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4412", + "ref": "FR*SOD*S*CAPS*44*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292326, + 48.73232 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4311", + "ref": "FR*SOD*S*CAPS*43*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292326, + 48.73232 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS4312", + "ref": "FR*SOD*S*CAPS*43*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.242334, + 48.661919 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2911", + "ref": "FR*SOD*S*CAPS*29*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295414, + 48.737225 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1211", + "ref": "FR*SOD*S*CAPS*12*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279881, + 48.665501 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2811", + "ref": "FR*SOD*S*CAPS*28*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270542, + 48.641041 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1411", + "ref": "FR*SOD*S*CAPS*14*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.236749, + 48.68372 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1311", + "ref": "FR*SOD*S*CAPS*13*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.236749, + 48.68372 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1312", + "ref": "FR*SOD*S*CAPS*13*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295414, + 48.737225 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1212", + "ref": "FR*SOD*S*CAPS*12*1*_*_", + "chargin_point:count": "2", + "zipcode": "91300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262753, + 48.626686 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1111", + "ref": "FR*SOD*S*CAPS*11*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262753, + 48.626686 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1112", + "ref": "FR*SOD*S*CAPS*11*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.222766, + 48.739605 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1011", + "ref": "FR*SOD*S*CAPS*10*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.222766, + 48.739605 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1012", + "ref": "FR*SOD*S*CAPS*10*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.246326, + 48.714756 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS812", + "ref": "FR*SOD*S*CAPS*8*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.246326, + 48.714756 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS811", + "ref": "FR*SOD*S*CAPS*8*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187464, + 48.698582 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS611", + "ref": "FR*SOD*S*CAPS*6*1*_*_", + "chargin_point:count": "2", + "zipcode": "91400" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187464, + 48.698582 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS612", + "ref": "FR*SOD*S*CAPS*6*1*_*_", + "chargin_point:count": "2", + "zipcode": "91400" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226447, + 48.741585 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS512", + "ref": "FR*SOD*S*CAPS*5*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226447, + 48.741585 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS511", + "ref": "FR*SOD*S*CAPS*5*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134319, + 48.677201 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS412", + "ref": "FR*SOD*S*CAPS*4*1*_*_", + "chargin_point:count": "2", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134319, + 48.677201 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS411", + "ref": "FR*SOD*S*CAPS*4*1*_*_", + "chargin_point:count": "2", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.132646, + 48.677479 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS311", + "ref": "FR*SOD*S*CAPS*3*1*_*_", + "chargin_point:count": "2", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.132646, + 48.677479 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS312", + "ref": "FR*SOD*S*CAPS*3*1*_*_", + "chargin_point:count": "2", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134818, + 48.701092 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS211", + "ref": "FR*SOD*S*CAPS*2*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134818, + 48.701092 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS212", + "ref": "FR*SOD*S*CAPS*2*1*_*_", + "chargin_point:count": "2", + "zipcode": "91190" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.293165, + 48.676964 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS112", + "ref": "FR*SOD*S*CAPS*1*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.293165, + 48.676964 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS111", + "ref": "FR*SOD*S*CAPS*1*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270542, + 48.641041 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1412", + "ref": "FR*SOD*S*CAPS*14*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.243571, + 48.711727 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1612", + "ref": "FR*SOD*S*CAPS*16*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279881, + 48.665501 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2812", + "ref": "FR*SOD*S*CAPS*28*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.243571, + 48.711727 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1611", + "ref": "FR*SOD*S*CAPS*16*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226933, + 48.699745 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2711", + "ref": "FR*SOD*S*CAPS*27*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226933, + 48.699745 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2712", + "ref": "FR*SOD*S*CAPS*27*1*_*_", + "chargin_point:count": "2", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20761, + 48.73402 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2612", + "ref": "FR*SOD*S*CAPS*26*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20761, + 48.73402 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2611", + "ref": "FR*SOD*S*CAPS*26*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.168417, + 48.730614 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2511", + "ref": "FR*SOD*S*CAPS*25*1*_*_", + "chargin_point:count": "2", + "zipcode": "91400" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221078, + 48.732231 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2412", + "ref": "FR*SOD*S*CAPS*24*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221078, + 48.732231 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2411", + "ref": "FR*SOD*S*CAPS*24*1*_*_", + "chargin_point:count": "2", + "zipcode": "91430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191479, + 48.703136 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2312", + "ref": "FR*SOD*S*CAPS*23*1*_*_", + "chargin_point:count": "2", + "zipcode": "91400" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191479, + 48.703136 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2311", + "ref": "FR*SOD*S*CAPS*23*1*_*_", + "chargin_point:count": "2", + "zipcode": "91400" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267462, + 48.632023 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2211", + "ref": "FR*SOD*S*CAPS*22*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267462, + 48.632023 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2212", + "ref": "FR*SOD*S*CAPS*22*1*_*_", + "chargin_point:count": "2", + "zipcode": "91310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.159423, + 48.696949 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2112", + "ref": "FR*SOD*S*CAPS*21*1*_*_", + "chargin_point:count": "2", + "zipcode": "91440" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.159423, + 48.696949 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2111", + "ref": "FR*SOD*S*CAPS*21*1*_*_", + "chargin_point:count": "2", + "zipcode": "91440" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269996, + 48.657887 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2012", + "ref": "FR*SOD*S*CAPS*20*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269996, + 48.657887 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2011", + "ref": "FR*SOD*S*CAPS*20*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298674, + 48.675415 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1912", + "ref": "FR*SOD*S*CAPS*19*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298674, + 48.675415 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1911", + "ref": "FR*SOD*S*CAPS*19*1*_*_", + "chargin_point:count": "2", + "zipcode": "91160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.268743, + 48.66151 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1811", + "ref": "FR*SOD*S*CAPS*18*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.268743, + 48.66151 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1812", + "ref": "FR*SOD*S*CAPS*18*1*_*_", + "chargin_point:count": "2", + "zipcode": "91620" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259299, + 48.713703 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1711", + "ref": "FR*SOD*S*CAPS*17*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259299, + 48.713703 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS1712", + "ref": "FR*SOD*S*CAPS*17*1*_*_", + "chargin_point:count": "2", + "zipcode": "91120" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.168417, + 48.730614 + ] + }, + "properties": { + "operator": "CPS", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRCPSPCAPS2512", + "ref": "FR*SOD*S*CAPS*25*1*_*_", + "chargin_point:count": "2", + "zipcode": "91400" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171913, + 48.677594 + ] + }, + "properties": { + "operator": "UNIBAIL", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRURWPUNIB2111", + "ref": "FR*SOD*S*UNIB*21*1*_*_", + "chargin_point:count": "4", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171913, + 48.677594 + ] + }, + "properties": { + "operator": "UNIBAIL", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRURWPUNIB2122", + "ref": "FR*SOD*S*UNIB*21*2*_*_", + "chargin_point:count": "4", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171913, + 48.677594 + ] + }, + "properties": { + "operator": "UNIBAIL", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRURWPUNIB2112", + "ref": "FR*SOD*S*UNIB*21*1*_*_", + "chargin_point:count": "4", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171913, + 48.677594 + ] + }, + "properties": { + "operator": "UNIBAIL", + "email": "sav@izivia.com", + "phone": "0972668001", + "ref:EU:EVSE": "FRURWPUNIB2121", + "ref": "FR*SOD*S*UNIB*21*2*_*_", + "chargin_point:count": "4", + "zipcode": "91940" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1726385, + 48.4270586 + ] + }, + "properties": { + "operator": "Mazda ETAMPES - GARAGE ST PIERRE", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "ref:EU:EVSE": "FRZMAE22AC57150", + "ref": "57150", + "chargin_point:count": "1", + "zipcode": "91150" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1726385, + 48.4270586 + ] + }, + "properties": { + "operator": "Mazda ETAMPES - GARAGE ST PIERRE", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "ref:EU:EVSE": "FRZMAE22AC60380", + "ref": "60380", + "chargin_point:count": "1", + "zipcode": "91150" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01, + 48.53 + ] + }, + "properties": { + "operator": "COMMUNAUTE DE COMMUNE LE DOURDANNAIS EN HUREPOIX (CCDH)", + "email": "gael.kergroach@ccdourdannais.com", + "phone": "0160811222", + "ref:EU:EVSE": "Non concerné", + "ref": "41fbb9fc-a0af-4524-b7f1-d1b7cddb596a", + "chargin_point:count": "4", + "zipcode": "91410" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368253087879, + 48.63330486819303 + ] + }, + "properties": { + "operator": "GRSE GARAGE MARINIERE", + "email": "garage.mariniere@scache.fr", + "phone": "", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91700" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368253087879, + 48.63330486819303 + ] + }, + "properties": { + "operator": "GRSE GARAGE MARINIERE", + "email": "garage.mariniere@scache.fr", + "phone": "", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91700" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4961249380287276, + 48.678652435121194 + ] + }, + "properties": { + "operator": "Garage A.M.5", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "ref:EU:EVSE": "FREVBEEFI7QTSJZTUHGMEVEXMVBQIJ7A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145602, + 48.635405 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "ref:EU:EVSE": "FRHPCPNF080155", + "ref": "FR*HPC*PNF080155", + "chargin_point:count": "4", + "zipcode": "91640" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145602, + 48.635405 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "ref:EU:EVSE": "FRHPCPNF080155", + "ref": "FR*HPC*PNF080155", + "chargin_point:count": "4", + "zipcode": "91640" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145602, + 48.635405 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "ref:EU:EVSE": "FRHPCPNF080155", + "ref": "FR*HPC*PNF080155", + "chargin_point:count": "4", + "zipcode": "91640" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145602, + 48.635405 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "ref:EU:EVSE": "FRHPCPNF080155", + "ref": "FR*HPC*PNF080155", + "chargin_point:count": "4", + "zipcode": "91640" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431342, + 48.681508 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBQA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DSUB", + "ref": "", + "chargin_point:count": "3", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DSUB", + "ref": "", + "chargin_point:count": "3", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DSUB", + "ref": "", + "chargin_point:count": "3", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DSUA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DSUA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4077141243933076, + 48.68517050782172 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DCAA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4077141243933076, + 48.68517050782172 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DCAA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431342, + 48.681508 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBQA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407719, + 48.673546 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBPA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407719, + 48.673546 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBPA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4245679, + 48.6848221 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBGA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4245679, + 48.6848221 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBGA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403842, + 48.6814842 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBCA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403842, + 48.6814842 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91DBCA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526362317964585, + 48.69077906864795 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91BSPA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526362317964585, + 48.69077906864795 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91BSPA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5286632377885447, + 48.678389833990664 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91BSCA", + "ref": "", + "chargin_point:count": "3", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5286632377885447, + 48.678389833990664 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91BSCA", + "ref": "", + "chargin_point:count": "3", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5286632377885447, + 48.678389833990664 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91BSCA", + "ref": "", + "chargin_point:count": "3", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5295840174515463, + 48.678489499960584 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91BMPA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5295840174515463, + 48.678489499960584 + ] + }, + "properties": { + "operator": "STATIONS-E", + "email": "support@stations-e.com", + "phone": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE91BMPA", + "ref": "", + "chargin_point:count": "2", + "zipcode": "91800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371912, + 48.622446 + ] + }, + "properties": { + "operator": "SCACHE", + "email": "contact@e-totem.fr", + "phone": "", + "ref:EU:EVSE": "FRG10P91235A", + "ref": "FRG10P91235A", + "chargin_point:count": "2", + "zipcode": "91700" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371912, + 48.622446 + ] + }, + "properties": { + "operator": "SCACHE", + "email": "contact@e-totem.fr", + "phone": "", + "ref:EU:EVSE": "FRG10P91235A", + "ref": "FRG10P91235A", + "chargin_point:count": "2", + "zipcode": "91700" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335556, + 48.705551 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91432A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335556, + 48.705551 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91432A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335556, + 48.705551 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91432A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335556, + 48.705551 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91432A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335556, + 48.705551 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91432A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91420" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370823, + 48.690763 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91326A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91260" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370823, + 48.690763 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91326A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91260" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370823, + 48.690763 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91326A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91260" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370823, + 48.690763 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91326A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91260" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370823, + 48.690763 + ] + }, + "properties": { + "operator": "METROPOLIS", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "ref:EU:EVSE": "FRMGPP91326A", + "ref": "", + "chargin_point:count": "1", + "zipcode": "91260" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25, + 48.7 + ] + }, + "properties": { + "operator": "EHPAD VILLEBON", + "email": "electricite@alterna-energie.fr", + "phone": "0179356309", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "aceaf454-19e2-4da1-96dd-d7fdc44a72d1 ", + "chargin_point:count": "4", + "zipcode": "91140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.02, + 48.53 + ] + }, + "properties": { + "operator": "EHPAD DOURDAN", + "email": "rcgc@edf.fr", + "phone": "0426700227", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "ccf6edd2-80ae-4131-9af8-cc81544f8a98 ", + "chargin_point:count": "4", + "zipcode": "91410" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23, + 48.69 + ] + }, + "properties": { + "operator": "OCR MAINTENANCE ELECTRONIQUE", + "email": "g.arpino@ocr.fr", + "phone": "0680074537", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "c8ee7876-9261-497e-9f6b-856d3bf94e3f", + "chargin_point:count": "2", + "zipcode": "91140" } } ]