From 77ee5cc28e3012daca5da243740f68c20dec6e5a Mon Sep 17 00:00:00 2001 From: Tykayn Date: Tue, 8 Oct 2024 10:09:21 +0200 Subject: [PATCH] split engine formatter to dedicated class, add filter offset --- convert_to_osm_tags.ts | 14 + .../configRouen_OpenData_velo_parkings.ts | 5 +- mappings/engine.ts | 73 +- mappings/formatters.ts | 72 + mappings/mapping-config.type.ts | 1 + mappings/utils.ts | 2 +- ...ed_data_set__mappingRouenParkingVelos.json | 17807 ---------------- 7 files changed, 97 insertions(+), 17877 deletions(-) create mode 100644 mappings/formatters.ts diff --git a/convert_to_osm_tags.ts b/convert_to_osm_tags.ts index 3b2dcfe..3bb6d18 100644 --- a/convert_to_osm_tags.ts +++ b/convert_to_osm_tags.ts @@ -168,8 +168,22 @@ function convertDataFromSource(sourceFilePath: string, mapping: MappingConfigTyp let list_of_points: any = data_transformed.features debugLog('listOfPoints.length', list_of_points.length) + if(limitConversionToFirstPoint){ + debugLog('limitConversionToFirstPoint enabled') + if(mapping?.filters?.offset){ + mapping.filters.offset = 1 + } + } + if(mapping?.filters?.offset){ + debugLog('filter offset enabled', mapping.filters.offset) + list_of_points = list_of_points.splice(0,mapping.filters.offset) + } + console.log('list_of_points.length', list_of_points.length) + + /** * filtering + * run filters before mapping OSM tags * TODO: do it in the engine */ // for each point from the data source, filter if we take it or not diff --git a/mappings/converters/configRouen_OpenData_velo_parkings.ts b/mappings/converters/configRouen_OpenData_velo_parkings.ts index 8887810..853f7c2 100644 --- a/mappings/converters/configRouen_OpenData_velo_parkings.ts +++ b/mappings/converters/configRouen_OpenData_velo_parkings.ts @@ -16,7 +16,8 @@ const mappingRouenParkingVelos: MappingConfigType = { url: 'https://data.metropole-rouen-normandie.fr/api/explore/v2.1/catalog/datasets/liste-des-stationnements-cyclables-metropole-rouen-normandie/exports/geojson?lang=fr&timezone=Europe%2FBerlin' }, filters: { - exclude_point_if_tag_not_empty: ['osm_id'] + exclude_point_if_tag_not_empty: ['osm_id'], + offset: 1 }, add_not_mapped_tags_too: false, boolean_keys: [ @@ -53,7 +54,7 @@ const mappingRouenParkingVelos: MappingConfigType = { }, mobilier: { key_converted: 'mobilier', - remove_original_key: true, + remove_original_key: true, // TODO trouver ce qui empêche la conversion quand remove_original_key est a true conditional_values: { "POTELET": { "tags_to_add": [ diff --git a/mappings/engine.ts b/mappings/engine.ts index 1969a77..f93ea4d 100644 --- a/mappings/engine.ts +++ b/mappings/engine.ts @@ -1,5 +1,6 @@ import custom_utils from './utils' import MappingConfigType from "./mapping-config.type"; +import Formatters from "./formatters"; const {debugLog} = custom_utils @@ -310,7 +311,6 @@ export default class { let countOfSockets = (boolToAddable(has_prise_type_2) + boolToAddable(has_prise_type_combo_ccs) + boolToAddable(prise_type_chademo) + boolToAddable(prise_type_ef) + boolToAddable(prise_type_autre) + boolToAddable(prise_type_e) ); - // console.log('this.current_geojson_point.properties.prise_type_2', this.current_geojson_point.properties.prise_type_2, this.isTruthyValue(this.current_geojson_point.properties.prise_type_2), 'countOfSockets:', countOfSockets) if (countOfSockets > 0) { we_use_max_output = true; } @@ -319,24 +319,21 @@ export default class { let converted_value = originalValue.replace(/[^\d\.\,]/g, '').replace(',', '.') let max_output = 401 // do not limit accepted values - // let accepted_values = [3, 7, 22, 50, 150, 300] - // let accepted_values = [3, 7, 22, 50, 150, 300] - // if (accepted_values.includes(converted_value)) { let out = '' if (intOriginalValue < max_output) { - // enlever les lettres dans la valeur + // rajouter l'unité de puissance kW dans la valeur out = converted_value + ' kW' } else { - // console.log('too high kW value detected', originalValue) // prise en charge des valeurs en Watts et non en kW. + debugLog('too high kW value detected', originalValue) if (intOriginalValue > 1000 && intOriginalValue < 401000) { let kilowatts = (parseFloat(converted_value) / 1000).toFixed(2).replace('.00', ''); out = ('' + kilowatts + ' kW').replace('.00', '') - // console.log('valeurs en Watts out', out, 'original:', originalValue) + debugLog('valeurs en Watts out', out, 'original:', originalValue) this.stats.power_output++ } } @@ -397,65 +394,7 @@ export default class { if (configObject.convert_to_phone) { - /** - * nettoyer les numéros de téléphone en ne gardant que les nombres et le préfixe de pays - */ - // debugLog('originalValue', originalValue.substring(1)) - if (!originalValue) { - originalValue = '' - } - let original_without_spaces = originalValue.replace(/ /g, '') - let cleaned_value = `${original_without_spaces}` - cleaned_value = cleaned_value - .trim() - .replace('Stations-e', '') - .replace(/[a-zA-Zéèà]/ig, '') - .replace(/[\(\)\.\- ]/g, '') - let add_prefix = false; - if ( - /^\d/.test(cleaned_value) && - !/^\+33 /.test(original_without_spaces) - ) { - add_prefix = true - } - cleaned_value = cleaned_value.replace('+33', '') - - if (/^0/.test(cleaned_value)) { - cleaned_value = cleaned_value.substring(1) - } - let array_of_numbers = cleaned_value - .split('') - - - let ii = 0; - if (cleaned_value.length == 4) { - ii = 1 - } - convertedValue = '' - array_of_numbers.forEach((num: string) => { - if (ii % 2) { - convertedValue += ' '; - } - - convertedValue += num; - ii++; - }) - - - convertedValue = convertedValue.replace(' ', ' ').trim(); - debugLog('convertedValue', convertedValue) - if ( - /^\d/.test(convertedValue) && - !/^\+33 /.test(convertedValue) - ) { - add_prefix = true - } - if (add_prefix) { - convertedValue = `+33 ` + convertedValue - } - - debugLog('phone: ', originalValue, '=>', convertedValue) - + convertedValue = Formatters.convertToPhone(originalValue) if (originalValue !== convertedValue) { this.stats.phones_updated++ this.stats.phones_updated_list.push(convertedValue) @@ -540,7 +479,6 @@ export default class { } } - debugLog('convertProperty: convertedValue ==========> {', newKey, ':', convertedValue, '}') debugLog(' =============== remove_original_key', newKey, remove_original_key) if (!remove_original_key && newKey && convertedValue && !configObject.ignore_this_data) { @@ -548,6 +486,7 @@ export default class { debugLog('convertProperty: added', newKey, convertedValue) newProperties[newKey] = (`${convertedValue}`).trim() } + } } else { debugLog('!!!!!! property not found in mappingKeys: ', pointKeyName) diff --git a/mappings/formatters.ts b/mappings/formatters.ts new file mode 100644 index 0000000..092cfdb --- /dev/null +++ b/mappings/formatters.ts @@ -0,0 +1,72 @@ +import custom_utils from "./utils"; + +const {debugLog} = custom_utils + +/** + * Class that helps to convert values into predefined formats + */ +export default class Formatters { + + static convertToPhone(originalValue: string) { + /** + * nettoyer les numéros de téléphone en ne gardant que les nombres et le préfixe de pays + */ + // debugLog('originalValue', originalValue.substring(1)) + if (!originalValue) { + originalValue = '' + } + let original_without_spaces = originalValue.replace(/ /g, '') + let cleaned_value = `${original_without_spaces}` + cleaned_value = cleaned_value + .trim() + .replace('Stations-e', '') + .replace(/[a-zA-Zéèà]/ig, '') + .replace(/[\(\)\.\- ]/g, '') + let add_prefix = false; + if ( + /^\d/.test(cleaned_value) && + !/^\+33 /.test(original_without_spaces) + ) { + add_prefix = true + } + cleaned_value = cleaned_value.replace('+33', '') + + if (/^0/.test(cleaned_value)) { + cleaned_value = cleaned_value.substring(1) + } + let array_of_numbers = cleaned_value + .split('') + + + let ii = 0; + if (cleaned_value.length == 4) { + ii = 1 + } + let convertedValue = '' + array_of_numbers.forEach((num: string) => { + if (ii % 2) { + convertedValue += ' '; + } + convertedValue += num; + ii++; + }) + + + convertedValue = convertedValue.replace(' ', ' ').trim(); + debugLog('convertedValue', convertedValue) + if ( + /^\d/.test(convertedValue) && + !/^\+33 /.test(convertedValue) + ) { + add_prefix = true + } + if (add_prefix) { + convertedValue = `+33 ` + convertedValue + } + + debugLog('phone: ', originalValue, '=>', convertedValue) + + + return ""; + } +} diff --git a/mappings/mapping-config.type.ts b/mappings/mapping-config.type.ts index ab2f7d8..f0e5f73 100644 --- a/mappings/mapping-config.type.ts +++ b/mappings/mapping-config.type.ts @@ -33,6 +33,7 @@ export interface filteringConfig { enable_properties_filter?: boolean; properties?: object; bounding_box?: object; + offset?:number; exclude_point_if_tag_not_empty?: Array; exclude_point_if_tag_truthy?: Array; exclude_point_if_tag_falsy?: Array; diff --git a/mappings/utils.ts b/mappings/utils.ts index 35ed1b3..0d425d8 100644 --- a/mappings/utils.ts +++ b/mappings/utils.ts @@ -1,4 +1,4 @@ -import fs from 'fs' +import * as fs from 'node:fs' let show_debug = 0 // show_debug = 1 diff --git a/output/my_converted_data_set__mappingRouenParkingVelos.json b/output/my_converted_data_set__mappingRouenParkingVelos.json index 071db4e..d872dfb 100644 --- a/output/my_converted_data_set__mappingRouenParkingVelos.json +++ b/output/my_converted_data_set__mappingRouenParkingVelos.json @@ -16,17813 +16,6 @@ "capacity": 8, "check_date": "10/08/2021" } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042185444, - 49.27684937 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 776, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.040153325, - 49.27942223 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 777, - "capacity": 4, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.953620583, - 49.30702195 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 792, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.059357308, - 49.41933025 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 803, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065129553, - 49.42776272 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 810, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.113472525, - 49.46848363 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 932, - "capacity": 6, - "check_date": "13/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09786887, - 49.43493309 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 946, - "capacity": 8, - "check_date": "20/09/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013199689, - 49.30210635 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1276, - "capacity": 4, - "check_date": "12/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088572907, - 49.45960727 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1606, - "capacity": 10, - "check_date": "04/11/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07580269, - 49.43992242 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1921, - "capacity": 48, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073634714, - 49.44077009 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1923, - "capacity": 4, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078760226, - 49.44875837 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1925, - "capacity": 6, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081563426, - 49.47513977 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1927, - "capacity": 10, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086206231, - 49.43096034 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1942, - "capacity": 4, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083836504, - 49.42919674 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1945, - "capacity": 10, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.008291169, - 49.28497977 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1275, - "capacity": 4, - "check_date": "12/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.125041229, - 49.42209134 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1593, - "capacity": 10, - "check_date": "04/11/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10056482, - 49.43942416 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2230, - "capacity": 10, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10112158, - 49.43789275 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2232, - "capacity": 10, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.052486445, - 49.40996529 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2237, - "capacity": 12, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094156913, - 49.44218732 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2240, - "capacity": 6, - "check_date": "21/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094620973, - 49.43988939 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2243, - "capacity": 6, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042590374, - 49.52656408 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 956, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.037048164, - 49.50600766 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 958, - "capacity": 6, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041772073, - 49.48221248 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 961, - "capacity": 6, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.039637181, - 49.4810102 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 962, - "capacity": 8, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.107867099, - 49.37755469 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2572, - "capacity": 2, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086991872, - 49.43674111 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2874, - "capacity": 6, - "check_date": "18/01/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093334447, - 49.44879657 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3193, - "capacity": 26, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.052078411, - 49.43016474 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1961, - "capacity": 8, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.052486001, - 49.462428 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1968, - "capacity": 8, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.045099544, - 49.47068988 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1969, - "capacity": 6, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.030610001, - 49.45165 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1970, - "capacity": 4, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.118752408, - 49.44268413 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 891, - "capacity": 10, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06775337, - 49.41342791 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2871, - "capacity": 10, - "check_date": "18/01/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083511852, - 49.43487282 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6079, - "capacity": 10, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.106715309, - 49.43908558 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6390, - "capacity": 10, - "check_date": "07/09/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0916049, - 49.35108963 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6711, - "capacity": 8, - "check_date": "19/10/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075095637, - 49.40364043 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6712, - "capacity": 28, - "check_date": "19/10/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.082604557, - 49.44444196 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6713, - "capacity": 10, - "check_date": "19/10/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004988954, - 49.29053264 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7035, - "capacity": 4, - "check_date": "24/11/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078585997, - 49.44447743 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7036, - "capacity": 6, - "check_date": "24/11/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.112119383, - 49.44426625 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7369, - "capacity": 4, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083052467, - 49.44626312 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4151, - "capacity": 10, - "check_date": "28/04/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092552733, - 49.44026636 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4157, - "capacity": 10, - "check_date": "09/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080217519, - 49.42995049 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4791, - "capacity": 10, - "check_date": "07/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.930950638, - 49.35213938 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5750, - "capacity": 6, - "check_date": "26/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.007800723, - 49.39380631 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5751, - "capacity": 4, - "check_date": "26/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11273299, - 49.44336948 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7370, - "capacity": 6, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.12680366, - 49.42229547 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7382, - "capacity": 8, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084945894, - 49.41444933 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7385, - "capacity": 26, - "check_date": "05/01/2013" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084886927, - 49.42877135 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7386, - "capacity": 6, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070571716, - 49.43970032 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7388, - "capacity": 28, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090771983, - 49.42275561 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7395, - "capacity": 6, - "check_date": "10/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075096739, - 49.4023914 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7396, - "capacity": 4, - "check_date": "10/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100449631, - 49.43939551 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7670, - "capacity": 8, - "check_date": "11/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.036376198, - 49.30984119 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7687, - "capacity": 8, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094171447, - 49.43509206 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3512, - "capacity": 60, - "check_date": "16/03/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.120942665, - 49.42263493 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6071, - "capacity": 6, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.136320652, - 49.4116274 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6073, - "capacity": 10, - "check_date": "28/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.147823465, - 49.49562432 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7351, - "capacity": 8, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.039398896, - 49.40223347 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7354, - "capacity": 8, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.067261703, - 49.40503611 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7993, - "capacity": 5, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.104297515, - 49.43103115 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8006, - "capacity": 10, - "check_date": "18/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089549271, - 49.43250043 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8313, - "capacity": 6, - "check_date": "27/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0919864, - 49.44431487 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4160, - "capacity": 10, - "check_date": "10/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145888581, - 49.4081981 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7374, - "capacity": 1, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.138862014, - 49.4124218 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7378, - "capacity": 4, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17486855, - 49.39929601 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7379, - "capacity": 8, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06945038, - 49.44580395 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7380, - "capacity": 20, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11298432, - 49.43782593 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7673, - "capacity": 6, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.006931806, - 49.28874003 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7676, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.061223924, - 49.42643322 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7995, - "capacity": 12, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070189852, - 49.42855118 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7999, - "capacity": 8, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068226703, - 49.42807888 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8000, - "capacity": 8, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089450558, - 49.43458556 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4470, - "capacity": 8, - "check_date": "18/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087419905, - 49.43224984 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4472, - "capacity": 4, - "check_date": "18/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080629627, - 49.43148079 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4475, - "capacity": 10, - "check_date": "18/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089206883, - 49.43457707 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5118, - "capacity": 10, - "check_date": "05/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066944183, - 49.44444689 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5448, - "capacity": 6, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066316745, - 49.4444755 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5449, - "capacity": 16, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.047680491, - 49.46999044 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3831, - "capacity": 10, - "check_date": "07/04/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1104616, - 49.4429119 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 100, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080359034, - 49.44512573 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 137, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109219336, - 49.43747614 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 231, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078358845, - 49.42293677 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 254, - "capacity": 20, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1648525, - 49.4720228 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 351, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0935836, - 49.4432979 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 402, - "capacity": 18, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.063575964, - 49.4162228 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 471, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076613101, - 49.4201978 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 517, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.138146999, - 49.4504167 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 568, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108358962, - 49.44408463 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 710, - "capacity": 16, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.116073369, - 49.43779392 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8675, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091245224, - 49.44248349 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8678, - "capacity": 2, - "capacity:cargo_bike": 2, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070263584, - 49.4580673 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 833, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.067424083, - 49.45328697 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 876, - "capacity": 6, - "check_date": "18/01/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.020543845, - 49.38461074 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 898, - "capacity": 6, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.143909954, - 49.49171286 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 945, - "capacity": 14, - "check_date": "23/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087738873, - 49.44130293 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4150, - "capacity": 10, - "check_date": "19/04/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079300961, - 49.46049139 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7390, - "capacity": 6, - "check_date": "10/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101937692, - 49.43982974 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7397, - "capacity": 10, - "check_date": "11/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094572923, - 49.44861838 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7675, - "capacity": 10, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068084425, - 49.42804765 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8001, - "capacity": 10, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044701444, - 49.40195625 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8642, - "capacity": 6, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092023093, - 49.44437032 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8679, - "capacity": 2, - "capacity:cargo_bike": 2, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875563535, - 49.48195732 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9324, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875700782, - 49.4827491 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9326, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875486183, - 49.48245326 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9328, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8712854, - 49.48218125 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9332, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.859636447, - 49.47321924 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9333, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03584004, - 49.31068863 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8635, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.037793764, - 49.30714479 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8637, - "capacity": 8, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145536076, - 49.44075623 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8639, - "capacity": 8, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.038619127, - 49.40208903 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8646, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092258566, - 49.35080102 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8651, - "capacity": 10, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.036948051, - 49.3886386 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8653, - "capacity": 8, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.031309281, - 49.39009889 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8654, - "capacity": 8, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208330371, - 49.44020594 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8659, - "capacity": 12, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.157266616, - 49.43303999 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8662, - "capacity": 8, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086666677, - 49.44052781 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8671, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064920858, - 49.4416602 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8673, - "capacity": 16, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13949, - 49.45161 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8956, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.049894455, - 49.42967284 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8950, - "capacity": 10, - "check_date": "11/05/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.061693264, - 49.42338915 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8951, - "capacity": 6, - "check_date": "11/05/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00655, - 49.28484 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8958, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15889, - 49.43841 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8960, - "capacity": 2, - "check_date": "01/08/2023", - "note": "Maison des Forets Darn__tal" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07225, - 49.40966 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8962, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05426, - 49.39283 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8963, - "capacity": 20, - "check_date": "01/08/2023", - "note": "Parc Expo" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066010001, - 49.42834 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8969, - "capacity": 10, - "check_date": "27/12/2023", - "note": "Seine Innopolis" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08789176, - 49.43652324 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 12, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084560999, - 49.4300099 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 65, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070372707, - 49.42419089 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9387, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093628733, - 49.43848768 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9958, - "capacity": 10, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09992111, - 49.44347937 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9959, - "capacity": 20, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.061538512, - 49.42620779 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9966, - "capacity": 12, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.007228435, - 49.28621605 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9967, - "capacity": 6, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079027106, - 49.42504939 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9350, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.879303591, - 49.48576731 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9686, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066087558, - 49.42872869 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10278, - "capacity": 10, - "check_date": "27/12/2023", - "note": "Seine Innopolis" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079395156, - 49.4267545 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9385, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041102163, - 49.5290678 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9398, - "capacity": 8, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041266284, - 49.52368095 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9401, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03745142, - 49.52464057 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9402, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.863040975, - 49.47206535 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9346, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.865762079, - 49.47488921 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9347, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11600424, - 49.47075379 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9639, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09516191, - 49.40856725 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10601, - "capacity": 8, - "check_date": "20/02/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094793548, - 49.33864131 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9335, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086325696, - 49.43973056 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9336, - "capacity": 8, - "check_date": "01/08/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.930782871, - 49.50224248 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9337, - "capacity": 8, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09782993, - 49.44860699 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9338, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044951252, - 49.4717481 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9343, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081011489, - 49.50984955 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10287, - "capacity": 8, - "check_date": "09/01/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.020675008, - 49.3456055 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10291, - "capacity": 4, - "check_date": "16/01/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0555867, - 49.4199366 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 284, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2451766, - 49.3688611 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 296, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.243647801, - 49.3679987 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 297, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.126817536, - 49.42174177 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 331, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2074586, - 49.4398343 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 333, - "capacity": 5, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.139737199, - 49.4977674 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 139, - "capacity": 5, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1274303, - 49.4719674 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 364, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.127493399, - 49.4719705 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 365, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.034844842, - 49.45066476 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 366, - "capacity": 5, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.033866501, - 49.4503494 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 367, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0308266, - 49.4520397 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 372, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.048229647, - 49.48811973 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 378, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.943112972, - 49.3581051 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 664, - "capacity": 3, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.128368854, - 49.47246538 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 697, - "capacity": 4, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079156177, - 49.50854018 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 707, - "capacity": 6, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.150501173, - 49.49670095 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 637, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075391193, - 49.4617269 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 837, - "capacity": 3, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995994625, - 49.31016065 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 753, - "capacity": 3, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.032960445, - 49.31387732 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 761, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.021147603, - 49.28049877 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 766, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.033933267, - 49.28268487 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 770, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.804132902, - 49.48653095 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 793, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.839891668, - 49.50780387 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 794, - "capacity": 4, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929893306, - 49.49943742 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 797, - "capacity": 5, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.027819463, - 49.44109793 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1270, - "capacity": 6, - "check_date": "12/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00917049, - 49.28731058 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1273, - "capacity": 2, - "check_date": "12/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.110910824, - 49.44088295 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2553, - "capacity": 14, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10832901, - 49.44118889 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2555, - "capacity": 4, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111179861, - 49.43985804 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2551, - "capacity": 11, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111544311, - 49.4804035 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2567, - "capacity": 5, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.129512491, - 49.4724472 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2569, - "capacity": 5, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03198, - 49.445244 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1972, - "capacity": 5, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042085484, - 49.41001242 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 896, - "capacity": 12, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.062700522, - 49.46501336 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 925, - "capacity": 6, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.139275972, - 49.48712722 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7393, - "capacity": 5, - "check_date": "10/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.105718223, - 49.44402943 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 57, - "capacity": 16, - "check_date": "11/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.133180936, - 49.46150211 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 59, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.133401471, - 49.46150616 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 60, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0878221, - 49.4323074 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 63, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0864181, - 49.4309609 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 64, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0901847, - 49.4387391 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 71, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076849879, - 49.42674968 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 74, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0779511, - 49.4269651 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 75, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102730601, - 49.4421808 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 82, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088022833, - 49.43327537 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 85, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094990099, - 49.437615 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 88, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088777339, - 49.4396056 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 105, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0936605, - 49.4422176 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 108, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0922411, - 49.442803 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 109, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0891772, - 49.423241 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 113, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.105321299, - 49.4411296 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 114, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07721143, - 49.44317718 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 117, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076523701, - 49.4435355 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 120, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088015957, - 49.44076453 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 127, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084718355, - 49.43298104 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 133, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050182799, - 49.4692966 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0498133, - 49.4695404 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079821217, - 49.44572349 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5, - "capacity": 18, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089123801, - 49.4428527 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091100985, - 49.43336499 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078173808, - 49.42674003 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 28, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087524678, - 49.44445724 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 30, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084639, - 49.4358556 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 33, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.106033901, - 49.4422779 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 35, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089350999, - 49.4389515 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 41, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1013549, - 49.4378894 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 42, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089496604, - 49.41378252 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 46, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085064099, - 49.4306686 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 189, - "capacity": 18, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090888213, - 49.41919443 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 190, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093312099, - 49.4433647 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 192, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099268299, - 49.4342672 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 195, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088772295, - 49.44171184 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 206, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.008533313, - 49.35823261 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 209, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0923631, - 49.4448132 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 210, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0825624, - 49.4313162 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 262, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0778873, - 49.419886 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 263, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0766729, - 49.4190376 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 264, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0735112, - 49.4344159 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 265, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086499795, - 49.40906541 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 270, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085965022, - 49.41544241 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 271, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0336536, - 49.4138351 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 285, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1388981, - 49.3883355 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 306, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058780099, - 49.42830757 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 308, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0529555, - 49.4301017 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 310, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.125233601, - 49.4004691 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 315, - "capacity": 2, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1378896, - 49.4515732 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 320, - "capacity": 18, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1394661, - 49.4449603 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 324, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.112396731, - 49.44222525 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 325, - "capacity": 2, - "check_date": "21/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.127264099, - 49.4384904 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 327, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1370702, - 49.4290999 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 330, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.178225999, - 49.4216234 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 334, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087379697, - 49.41556718 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 211, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0683056, - 49.4457375 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 212, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097248799, - 49.3413293 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 215, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099413301, - 49.44218 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 221, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1001368, - 49.4454195 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 224, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1002441, - 49.4392164 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 226, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0989586, - 49.4367959 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 229, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.107329985, - 49.43871515 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 233, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099004919, - 49.44120336 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 238, - "capacity": 30, - "check_date": "11/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080910322, - 49.43649585 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 242, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.103190766, - 49.4310053 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 244, - "capacity": 10, - "check_date": "18/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.104220441, - 49.43118201 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 245, - "capacity": 32, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09918, - 49.4344901 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 248, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079836581, - 49.4262562 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 249, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0847309, - 49.4250447 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 251, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073100899, - 49.4261307 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 256, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0752152, - 49.42753 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 257, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0698425, - 49.4282487 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 258, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0784237, - 49.4290101 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 259, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0796576, - 49.4334993 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 260, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093700999, - 49.4277257 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 134, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.141160299, - 49.49898902 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 138, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0970659, - 49.4263856 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 141, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091186099, - 49.4254164 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 144, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073279999, - 49.3973832 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 148, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0707111, - 49.4619422 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 154, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0702935, - 49.4619429 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 155, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06334481, - 49.40605233 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 156, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0509403, - 49.4060033 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 157, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081763, - 49.432377 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 168, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0945418, - 49.4394469 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 171, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0917839, - 49.439786 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 177, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.040525199, - 49.481093 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 182, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083791698, - 49.43595956 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 183, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09491298, - 49.43799628 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 446, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0934143, - 49.4391145 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 447, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0735656, - 49.4120787 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 456, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0733389, - 49.4125202 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 457, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080164868, - 49.42655352 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 459, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.157658, - 49.4325357 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 463, - "capacity": 8, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.156968201, - 49.4325967 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 465, - "capacity": 6, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.138430799, - 49.4127868 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 468, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083230301, - 49.4420536 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 474, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0622761, - 49.3981265 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 476, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080557, - 49.4394564 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 480, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070061753, - 49.4627574 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 490, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079406292, - 49.42644973 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 491, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095783, - 49.4447576 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 493, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099228601, - 49.444861 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 500, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099561066, - 49.44402335 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 509, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0936721, - 49.4533753 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 512, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0919005, - 49.4427554 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 514, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076739, - 49.4201561 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 516, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.140293183, - 49.44761226 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 518, - "capacity": 14, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1646225, - 49.4719892 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 352, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.183981055, - 49.4675006 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 354, - "capacity": 2, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1231723, - 49.460005 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 355, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.126615753, - 49.4545423 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 357, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070596301, - 49.4625084 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 382, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066913001, - 49.4652095 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 384, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.069954365, - 49.44660629 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 389, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075559151, - 49.44690459 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 391, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0706641, - 49.4503858 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 395, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1064682, - 49.4499494 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 397, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089430244, - 49.44522255 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 404, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096057465, - 49.44383778 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 407, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087106073, - 49.44557365 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 412, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08183658, - 49.4452862 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 418, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097813399, - 49.4416893 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 432, - "capacity": 14, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091069536, - 49.44240065 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 436, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098674329, - 49.43786179 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 441, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0924211, - 49.439088 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 581, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092772873, - 49.44254168 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 583, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0931079, - 49.4424491 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 584, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0865935, - 49.4355407 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 585, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086758124, - 49.43577566 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 586, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086998599, - 49.4362191 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 587, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.113375255, - 49.44170686 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 596, - "capacity": 12, - "check_date": "21/12/2021", - "note": "Clinique Saint-Hilaire" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085502454, - 49.44679613 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 654, - "capacity": 8, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09453701, - 49.44158311 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 674, - "capacity": 8, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089265599, - 49.44311495 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 676, - "capacity": 8, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088045164, - 49.4434 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 677, - "capacity": 8, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088417227, - 49.41398503 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 680, - "capacity": 6, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15994157, - 49.43192159 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 693, - "capacity": 10, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.129129228, - 49.36850244 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 701, - "capacity": 2, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108411012, - 49.44407881 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 709, - "capacity": 16, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108306817, - 49.44409294 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 711, - "capacity": 12, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102076572, - 49.40017555 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 599, - "capacity": 6, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100710015, - 49.40131045 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 600, - "capacity": 8, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085437284, - 49.39988483 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 602, - "capacity": 10, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097928516, - 49.41917605 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 616, - "capacity": 8, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092135755, - 49.41983473 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 618, - "capacity": 8, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091184776, - 49.41505329 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 620, - "capacity": 8, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090082027, - 49.41556769 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 623, - "capacity": 4, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088702389, - 49.41514191 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 627, - "capacity": 4, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091320111, - 49.41563197 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 633, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0981584, - 49.4408251 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 523, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083575701, - 49.4214717 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 524, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14268, - 49.4499495 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 525, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0691967, - 49.4448593 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 532, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0891016, - 49.4599152 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 536, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0650102, - 49.4159175 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 538, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0671207, - 49.4145328 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 539, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07921119, - 49.44412591 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 544, - "capacity": 10, - "check_date": "2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1360029, - 49.4488337 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 545, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086833, - 49.4359378 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 546, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076138512, - 49.40832218 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 547, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066096239, - 49.4318787 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 557, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065406652, - 49.42913099 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 814, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065334321, - 49.42879708 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 817, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.067742656, - 49.4596252 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 826, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.069799469, - 49.45820288 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 830, - "capacity": 16, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.069558642, - 49.45804277 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 831, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.069289367, - 49.45803866 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 832, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.117380765, - 49.45694937 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 840, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1023875, - 49.45052043 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 841, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.037317653, - 49.52345978 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 845, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.163505233, - 49.40404261 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 850, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09496766, - 49.44218768 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 854, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09401993, - 49.4442775 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 856, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06833487, - 49.44427471 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 859, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.074598957, - 49.44274956 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 868, - "capacity": 8, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080901138, - 49.44086865 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 870, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.062122402, - 49.44770781 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 872, - "capacity": 40, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064524385, - 49.4481348 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 874, - "capacity": 40, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092287142, - 49.44029501 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 718, - "capacity": 24, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093282574, - 49.4401438 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 721, - "capacity": 18, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080125942, - 49.42913341 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 726, - "capacity": 12, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.074310811, - 49.43208902 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 729, - "capacity": 6, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087910803, - 49.43309795 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 734, - "capacity": 6, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.007782182, - 49.28867395 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 749, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.005241347, - 49.29272046 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 751, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.012091224, - 49.30291458 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 757, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085354599, - 49.44105792 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 759, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.881933571, - 49.51600599 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10290, - "capacity": 6, - "check_date": "09/01/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097459434, - 49.43918569 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 472, - "capacity": 2, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091429052, - 49.44335773 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 660, - "capacity": 2, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090076619, - 49.44108926 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 673, - "capacity": 2, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.069192157, - 49.44410806 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 861, - "capacity": 2, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092421144, - 49.4438967 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 888, - "capacity": 2, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050582825, - 49.47972049 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 908, - "capacity": 10, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058590213, - 49.42092168 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 804, - "capacity": 12, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.069452258, - 49.44406002 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 862, - "capacity": 2, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044128711, - 49.47972749 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 939, - "capacity": 2, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084191421, - 49.43608191 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6077, - "capacity": 2, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.817890102, - 49.43155896 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9690, - "capacity": 3, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099696679, - 49.44400293 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 222, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094796142, - 49.44900096 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 657, - "capacity": 44, - "surveillance": "yes", - "owner": "EFFIA", - "operator": "EFFIA", - "check_date": "07/03/2022", - "note": "Parking de la Gare" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101598855, - 49.34276692 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 878, - "capacity": 19, - "surveillance": "yes", - "check_date": "07/03/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.143693171, - 49.49151707 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9382, - "capacity": 17, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.105807701, - 49.4469532 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 461, - "capacity": 16, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "20/07/2021", - "note": "BOULINGRIN - Parc Velo Astuce" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.123845578, - 49.42395351 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 690, - "capacity": 25, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "24/09/2021", - "note": "Haut de la C??te - Parc Velo Astuce" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088958, - 49.443413 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1092, - "capacity": 18, - "capacity:cargo_bike": 2, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "01/12/2022", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091047, - 49.439707 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1093, - "capacity": 16, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "01/12/2022", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098913, - 49.434187 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1096, - "capacity": 17, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "12/12/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013586, - 49.290632 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1099, - "capacity": 6, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "23/10/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13104, - 49.48029 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1102, - "capacity": 6, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "14/11/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05062, - 49.47976 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1103, - "capacity": 6, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "30/10/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109359999, - 49.37707 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1105, - "capacity": 6, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "30/10/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.120098007, - 49.47050198 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10598, - "capacity": 19, - "check_date": "20/02/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092838876, - 49.44542752 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4161, - "capacity": 13, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100013637, - 49.43875351 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 68, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101480299, - 49.4392927 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 69, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0917005, - 49.4383596 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 70, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0779829, - 49.4270771 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 76, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077829201, - 49.4273837 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 77, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090444789, - 49.44195282 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 83, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090469129, - 49.44176511 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 84, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2037387, - 49.4405623 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 97, - "capacity": 10, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.203918, - 49.4405329 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 98, - "capacity": 10, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099713229, - 49.44455525 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 103, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080642068, - 49.42876101 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 110, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.082304099, - 49.4273458 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 111, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077263769, - 49.4433769 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 116, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0757367, - 49.4431034 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 121, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088305467, - 49.44063692 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 126, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0813527, - 49.4299699 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 129, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080033908, - 49.4594804 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 130, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0999304, - 49.4433677 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0998674, - 49.4431314 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071926199, - 49.4652122 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 13, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087429733, - 49.47026081 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 14, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101659201, - 49.4385287 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 39, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099395201, - 49.4375498 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 44, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089099777, - 49.4142576 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 45, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090797988, - 49.44231246 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 49, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09247062, - 49.43404271 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 51, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0864791, - 49.4334366 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 52, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0395248, - 49.4812993 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 187, - "capacity": 2, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079372051, - 49.43683467 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 193, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079959848, - 49.43669814 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 194, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0996925, - 49.4340052 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 196, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1019547, - 49.4319544 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 198, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0429152, - 49.4801328 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 203, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.008133522, - 49.35758211 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 208, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0806256, - 49.4332356 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 261, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0728152, - 49.3972232 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 268, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089612206, - 49.41560196 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 273, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.002639901, - 49.3779055 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 274, - "capacity": 2, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.063849373, - 49.42616563 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 281, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0573764, - 49.4207554 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 283, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0516392, - 49.4087455 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 289, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0568513, - 49.4014858 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 291, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.172725836, - 49.40310849 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 301, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1254026, - 49.4003669 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 316, - "capacity": 1, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.136407701, - 49.4484764 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 321, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1597047, - 49.4321021 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 329, - "capacity": 8, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100391, - 49.4470072 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 225, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101615917, - 49.43917229 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 227, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097897901, - 49.43743 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 228, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1042467, - 49.4362614 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 230, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108924208, - 49.43739606 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 232, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.107918227, - 49.43854205 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 234, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098806852, - 49.44116789 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 237, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10248629, - 49.44063749 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 239, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0818247, - 49.4372259 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 241, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083992301, - 49.425224 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 250, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086705096, - 49.42919573 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 252, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0728836, - 49.4262005 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 255, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0983025, - 49.4231734 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 143, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072099301, - 49.3978299 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 147, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096622702, - 49.44241076 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 161, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102928801, - 49.438707 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 166, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1027562, - 49.4389428 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 167, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096971699, - 49.4393036 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 169, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0775373, - 49.4263843 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 170, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089972399, - 49.4395002 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 173, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0895883, - 49.4392109 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 174, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.067912433, - 49.42327645 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 180, - "capacity": 16, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098717453, - 49.44400637 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 181, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093854331, - 49.43840669 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 449, - "capacity": 8, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1568805, - 49.4324221 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 464, - "capacity": 10, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05812795, - 49.39223765 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 466, - "capacity": 28, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0923764, - 49.4426338 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 475, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0973594, - 49.4454606 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 478, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098772201, - 49.4448147 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 479, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0701551, - 49.4416477 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 481, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004685129, - 49.28447815 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 482, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080815801, - 49.4623763 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 483, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0674602, - 49.464086 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 489, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0990515, - 49.4448007 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 499, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099212201, - 49.4449233 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 501, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.059488448, - 49.41980032 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 504, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.107048003, - 49.43762804 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 507, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098886574, - 49.43885088 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 515, - "capacity": 2, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.139980865, - 49.44798092 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 519, - "capacity": 14, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1390222, - 49.4121145 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 337, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.131257899, - 49.4597042 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 346, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.133975727, - 49.46100642 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 347, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.125549613, - 49.45529781 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 356, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.035956299, - 49.451405 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 368, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0363439, - 49.4518766 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 369, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.035213299, - 49.4521077 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 370, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0307548, - 49.4520737 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 371, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.048951901, - 49.4701149 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 374, - "capacity": 1, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050191399, - 49.4692675 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 375, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0860087, - 49.4726561 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 388, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0696743, - 49.4505462 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 394, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073412699, - 49.4603349 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 399, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091746955, - 49.44391339 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 401, - "capacity": 20, - "check_date": "11/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089717101, - 49.4450828 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 405, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0903341, - 49.4449756 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 406, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0930297, - 49.443682 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 408, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086919001, - 49.44699044 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 413, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0807217, - 49.448516 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 417, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090520383, - 49.4433382 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 437, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098375001, - 49.4399077 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 438, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0874088, - 49.44146 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 575, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075960054, - 49.41323874 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 589, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0722355, - 49.4122423 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 594, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080752024, - 49.44385967 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 645, - "capacity": 8, - "check_date": "20/02/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085242874, - 49.44433796 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 649, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086090901, - 49.44596639 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 650, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0866573, - 49.44609113 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 651, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090311491, - 49.44647127 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 655, - "capacity": 24, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088871774, - 49.44350035 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 670, - "capacity": 10, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.129024175, - 49.36882768 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 702, - "capacity": 2, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.202319176, - 49.44024105 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 705, - "capacity": 8, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083478045, - 49.39977936 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 601, - "capacity": 10, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091864929, - 49.41491024 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 619, - "capacity": 6, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090520668, - 49.41557239 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 622, - "capacity": 4, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08881938, - 49.41567441 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 624, - "capacity": 4, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088577658, - 49.41534929 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 626, - "capacity": 4, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.119020208, - 49.44160752 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 635, - "capacity": 4, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.142007157, - 49.44853483 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 526, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083391765, - 49.43204866 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 530, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084155265, - 49.43244721 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 531, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085669, - 49.4343342 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 534, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0672092, - 49.4146445 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 540, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072005299, - 49.409732 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 548, - "capacity": 80, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0644312, - 49.4471307 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 555, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066634347, - 49.42296886 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 562, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085856899, - 49.4290513 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 565, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.140374999, - 49.4491022 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 567, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0709721, - 49.4287492 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 574, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065180437, - 49.42802916 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 813, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06536184, - 49.42893319 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 816, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066521784, - 49.45746435 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 828, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071361371, - 49.4593263 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 835, - "capacity": 22, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072637557, - 49.46062231 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 836, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.138165935, - 49.45830369 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 842, - "capacity": 12, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.176401629, - 49.40189878 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 849, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095076359, - 49.44625711 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 853, - "capacity": 4, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095162364, - 49.44244231 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 855, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071224619, - 49.4437231 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 864, - "capacity": 12, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068191191, - 49.45169547 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 875, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089012864, - 49.44158785 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 881, - "capacity": 6, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088649372, - 49.44178595 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 882, - "capacity": 4, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088628614, - 49.44215805 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 883, - "capacity": 4, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095076649, - 49.44445906 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 724, - "capacity": 16, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071629646, - 49.42876018 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 727, - "capacity": 10, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.082485421, - 49.43722299 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 735, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.053585315, - 49.43009906 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 736, - "capacity": 8, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.003647109, - 49.29167797 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 750, - "capacity": 8, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01381066, - 49.3025866 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 756, - "capacity": 2, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.031628046, - 49.3131774 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 763, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041166854, - 49.27666033 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 774, - "capacity": 4, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.059637963, - 49.42436148 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 805, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.037482028, - 49.47612153 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 936, - "capacity": 6, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065770209, - 49.44257352 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 943, - "capacity": 14, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.062154818, - 49.44273995 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 944, - "capacity": 18, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099452771, - 49.43382947 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 948, - "capacity": 10, - "check_date": "20/09/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995831656, - 49.34814635 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 949, - "capacity": 6, - "check_date": "21/09/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.063229756, - 49.44467645 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1911, - "capacity": 28, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092896631, - 49.43865285 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1916, - "capacity": 10, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102423387, - 49.4408438 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1917, - "capacity": 10, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102342638, - 49.44039888 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1918, - "capacity": 10, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04639245, - 49.4513747 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1924, - "capacity": 2, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011378356, - 49.28708755 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1274, - "capacity": 4, - "check_date": "12/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071843188, - 49.46309796 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1592, - "capacity": 10, - "check_date": "04/11/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.045393837, - 49.40645355 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2235, - "capacity": 4, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073620127, - 49.44414295 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2238, - "capacity": 14, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093589163, - 49.44261948 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2242, - "capacity": 10, - "check_date": "21/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060445988, - 49.52292117 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 955, - "capacity": 8, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.039758725, - 49.47577271 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 959, - "capacity": 6, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086142589, - 49.47318942 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 964, - "capacity": 8, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.035493502, - 49.45111353 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 965, - "capacity": 6, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0398436, - 49.41229235 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2870, - "capacity": 8, - "check_date": "18/01/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14806722, - 49.49638037 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 951, - "capacity": 8, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.051376507, - 49.42700383 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1960, - "capacity": 20, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.886216001, - 49.461483 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1962, - "capacity": 6, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.871946425, - 49.48467389 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1964, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.005431156, - 49.28915374 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1977, - "capacity": 4, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108881177, - 49.45920711 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 929, - "capacity": 10, - "check_date": "13/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094352706, - 49.44420253 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6391, - "capacity": 18, - "check_date": "07/09/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100695727, - 49.44005037 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7030, - "capacity": 10, - "check_date": "24/11/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0862847, - 49.44897632 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7034, - "capacity": 8, - "check_date": "24/11/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.105399425, - 49.446495 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7367, - "capacity": 12, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.110574354, - 49.44477926 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7368, - "capacity": 10, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.144758014, - 49.39028845 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5119, - "capacity": 2, - "check_date": "07/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.125524007, - 49.42450454 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7384, - "capacity": 10, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083147807, - 49.43792689 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3513, - "capacity": 8, - "check_date": "21/03/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081951892, - 49.44471313 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3514, - "capacity": 10, - "check_date": "21/03/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08528761, - 49.44125858 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4790, - "capacity": 10, - "check_date": "04/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092674247, - 49.44336704 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5111, - "capacity": 6, - "check_date": "16/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08182984, - 49.46206117 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7392, - "capacity": 2, - "check_date": "10/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091010001, - 49.4226003 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7394, - "capacity": 8, - "check_date": "10/01/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011691364, - 49.29888833 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7686, - "capacity": 4, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064787981, - 49.40161917 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7991, - "capacity": 10, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.139460849, - 49.4167774 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6072, - "capacity": 8, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.039934909, - 49.40209633 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7352, - "capacity": 6, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.103074906, - 49.43094531 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8004, - "capacity": 10, - "check_date": "18/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.104230472, - 49.43108296 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8005, - "capacity": 10, - "check_date": "18/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.142935701, - 49.41064047 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8311, - "capacity": 4, - "check_date": "25/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145881523, - 49.40817248 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7375, - "capacity": 1, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097958995, - 49.4488758 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7671, - "capacity": 10, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05535458, - 49.4207808 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7994, - "capacity": 10, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06310999, - 49.42685548 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7996, - "capacity": 6, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.061760056, - 49.42654795 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7997, - "capacity": 6, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.000600182, - 49.28967256 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3510, - "capacity": 4, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080656344, - 49.43162527 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4473, - "capacity": 8, - "check_date": "18/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080766293, - 49.43151339 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4474, - "capacity": 8, - "check_date": "18/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004579584, - 49.37928372 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5112, - "capacity": 6, - "check_date": "21/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068902403, - 49.44424902 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5447, - "capacity": 16, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086903606, - 49.44519607 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6070, - "capacity": 10, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0785606, - 49.43249917 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3832, - "capacity": 8, - "check_date": "07/04/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083548468, - 49.44478651 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5115, - "capacity": 10, - "check_date": "28/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.141020767, - 49.41070761 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5123, - "capacity": 1, - "check_date": "07/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090826901, - 49.414637 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 128, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07883019, - 49.43012682 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 151, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079385146, - 49.44455897 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 165, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0691347, - 49.4238087 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 179, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090625794, - 49.43180566 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 217, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102474336, - 49.44135167 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 240, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095669601, - 49.4377884 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 445, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0898372, - 49.4560059 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 487, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0839185, - 49.4317551 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 529, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090735046, - 49.4155752 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 621, - "capacity": 4, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07819218, - 49.44331321 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 723, - "capacity": 8, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.137361315, - 49.41123 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 742, - "capacity": 10, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.968214306, - 49.44895987 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 954, - "capacity": 4, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089817022, - 49.33996375 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1590, - "capacity": 6, - "check_date": "04/11/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075505545, - 49.43993834 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1922, - "capacity": 48, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093589482, - 49.43440875 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2872, - "capacity": 8, - "check_date": "18/01/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.062111678, - 49.39751375 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4155, - "capacity": 5, - "check_date": "28/04/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085989017, - 49.43637359 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6076, - "capacity": 8, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.033024798, - 49.45449904 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8002, - "capacity": 4, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077512263, - 49.40897648 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8668, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0726, - 49.3228 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8954, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.015659999, - 49.28852 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8967, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.876784621, - 49.48141105 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9318, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.876442983, - 49.481274 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9319, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.873366201, - 49.48016464 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9321, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.876072884, - 49.48231671 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9327, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875557522, - 49.48231231 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9330, - "capacity": 4, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.043517968, - 49.40186013 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8643, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03910838, - 49.40200417 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8645, - "capacity": 4, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.023862766, - 49.38820524 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8655, - "capacity": 6, - "check_date": "02/02/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16073667, - 49.46653015 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8660, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.155753703, - 49.433134 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8661, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.001301261, - 49.3781565 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8664, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084733612, - 49.44026687 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8672, - "capacity": 10, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0906712, - 49.4423399 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 50, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080313707, - 49.43859642 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9366, - "capacity": 8, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071201254, - 49.42461977 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9388, - "capacity": 8, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.038486251, - 49.31410956 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9961, - "capacity": 6, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.039246763, - 49.31378641 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9962, - "capacity": 6, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.112737069, - 49.43722154 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9963, - "capacity": 8, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102149975, - 49.42745504 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9406, - "capacity": 10, - "check_date": "01/08/2023", - "note": "LDA 76" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.074427081, - 49.3985501 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10279, - "capacity": 10, - "check_date": "27/12/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08848659, - 49.44274447 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10282, - "capacity": 6, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080571727, - 49.42787031 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9386, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041782899, - 49.52516137 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9399, - "capacity": 12, - "check_date": "01/08/2023", - "note": "Parc Georges Pellerin" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.036936322, - 49.52504777 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9403, - "capacity": 8, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.046774486, - 49.47059348 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10919, - "capacity": 20, - "check_date": "17/04/2024", - "note": "Piscine municipale Christine Caron" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101463741, - 49.33178715 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 11240, - "capacity": 10, - "check_date": "25/04/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091520012, - 49.44405346 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9339, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07436084, - 49.40573445 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9345, - "capacity": 20, - "check_date": "01/08/2023", - "note": "Parc du Champ des Bruy?¿res" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.869431091, - 49.48046989 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9968, - "capacity": 6, - "check_date": "30/04/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.074249093, - 49.42958933 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10289, - "capacity": 10, - "check_date": "09/01/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0797646, - 49.4624396 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 132, - "capacity": 6, - "check_date": "20/07/2021", - "note": "Centre commercial des Coquets" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.20535028, - 49.44005006 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 332, - "capacity": 5, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.828529892, - 49.45343587 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 506, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1403955, - 49.4114069 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 339, - "capacity": 5, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.931414046, - 49.39142154 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 663, - "capacity": 3, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208157818, - 49.44070172 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 704, - "capacity": 9, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.034785104, - 49.44844262 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 528, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073419121, - 49.43108562 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 728, - "capacity": 5, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.128418544, - 49.42554036 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 740, - "capacity": 6, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.179871854, - 49.39956376 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 743, - "capacity": 5, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.032304195, - 49.31300149 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 762, - "capacity": 3, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096447142, - 49.32840279 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 781, - "capacity": 9, - "check_date": "10/08/2021", - "note": "Centre commercial Tourville-la-Rivi?¿re" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098162681, - 49.32933287 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 782, - "capacity": 9, - "check_date": "10/08/2021", - "note": "Centre commercial Tourville-la-Rivi?¿re" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.129285357, - 49.33752172 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 785, - "capacity": 3, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.132913829, - 49.3411283 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 786, - "capacity": 5, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929535669, - 49.50229706 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 796, - "capacity": 5, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.029035847, - 49.44310742 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 799, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.119587582, - 49.44024011 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2239, - "capacity": 5, - "check_date": "21/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11090048, - 49.44091491 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2552, - "capacity": 13, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108340795, - 49.44113839 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2556, - "capacity": 12, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.121276782, - 49.46955386 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2570, - "capacity": 6, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.155380433, - 49.36562967 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 907, - "capacity": 6, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.972527558, - 49.28931732 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6080, - "capacity": 6, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081934269, - 49.46189154 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7391, - "capacity": 9, - "check_date": "10/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.127345086, - 49.46880179 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8631, - "capacity": 3, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14826702, - 49.44481325 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5753, - "capacity": 4, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.032873896, - 49.45627279 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 373, - "capacity": 11, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.046793779, - 49.49030586 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 638, - "capacity": 5, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097951981, - 49.35386272 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8652, - "capacity": 3, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.963424943, - 49.43980124 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8670, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.952454495, - 49.30622456 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10599, - "capacity": 6, - "check_date": "20/02/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.063752112, - 49.45977484 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 829, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.009120109, - 49.2879076 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 747, - "capacity": 2, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0640268, - 49.4452838 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 20, - "capacity": 14, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091361758, - 49.44354109 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 659, - "capacity": 2, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090853472, - 49.44412243 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 662, - "capacity": 2, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089941793, - 49.44084813 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 671, - "capacity": 2, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096694984, - 49.44241915 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 712, - "capacity": 1, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096302644, - 49.44217142 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 713, - "capacity": 2, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06892857, - 49.44415188 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 860, - "capacity": 2, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.069971641, - 49.44396154 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 863, - "capacity": 2, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07186211, - 49.44353385 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 866, - "capacity": 2, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096179839, - 49.44211432 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 714, - "capacity": 2, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097217425, - 49.43990768 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 716, - "capacity": 1, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097192646, - 49.43986872 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 717, - "capacity": 1, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.008884708, - 49.28773506 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 748, - "capacity": 2, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097158267, - 49.44523503 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 758, - "capacity": 1, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092228556, - 49.44198832 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 884, - "capacity": 2, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092399142, - 49.44385202 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 889, - "capacity": 2, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090891744, - 49.43910121 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7032, - "capacity": 2, - "check_date": "24/11/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099536457, - 49.44455907 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4158, - "capacity": 1, - "check_date": "09/05/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078048356, - 49.44165035 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5441, - "capacity": 2, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07779342, - 49.44173039 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5442, - "capacity": 2, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073252151, - 49.44308917 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5445, - "capacity": 2, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.097344773, - 49.44532274 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 658, - "capacity": 2, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04412546, - 49.47979122 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 937, - "capacity": 2, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.197789746, - 49.38569758 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 788, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.009642497, - 49.3029796 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 909, - "capacity": 9, - "check_date": "07/03/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071976895, - 49.44018222 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9383, - "capacity": 17, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072358407, - 49.46496977 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 687, - "capacity": 25, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "24/09/2021", - "note": "Terminus T1 Mont aux Malades - Parc Velo Astuce" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.131270634, - 49.46232655 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 692, - "capacity": 25, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "24/09/2021", - "note": "Terminus T2 Tamarelle - Parc Velo Astuce" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101464, - 49.343037 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1087, - "capacity": 17, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "09/01/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092879, - 49.445433 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1089, - "capacity": 17, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "09/01/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071966, - 49.440199 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1091, - "capacity": 17, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "09/01/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098388, - 49.442978 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1094, - "capacity": 31, - "capacity:cargo_bike": 3, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "04/05/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00525, - 49.290154 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1095, - "capacity": 19, - "capacity:cargo_bike": 2, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "01/12/2022", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.063729, - 49.448769 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1097, - "capacity": 19, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "07/04/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03939, - 49.51342 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1104, - "capacity": 6, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "30/10/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064650907, - 49.46106869 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1106, - "capacity": 17, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "30/04/2024", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.063341336, - 49.42639887 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10284, - "capacity": 64, - "check_date": "27/12/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041008455, - 49.52330907 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9405, - "capacity": 4, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.031746245, - 49.31343715 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 764, - "capacity": 12, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.031593501, - 49.31185407 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 765, - "capacity": 12, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.033239983, - 49.28299394 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 771, - "capacity": 20, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060431882, - 49.42367479 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 806, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.059701095, - 49.42377619 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 807, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060804832, - 49.42425693 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 808, - "capacity": 10, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06513815, - 49.42782283 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 811, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099024629, - 49.43414584 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 947, - "capacity": 8, - "check_date": "20/09/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108283711, - 49.43866773 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1912, - "capacity": 10, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115061274, - 49.43789454 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1913, - "capacity": 16, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.112236375, - 49.44206875 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1914, - "capacity": 6, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093789214, - 49.43828103 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1915, - "capacity": 12, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100895583, - 49.4406851 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1919, - "capacity": 10, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078411221, - 49.43682482 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1920, - "capacity": 14, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076730409, - 49.44883854 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1926, - "capacity": 10, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084623079, - 49.47142447 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1928, - "capacity": 8, - "check_date": "14/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086050769, - 49.43090423 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1943, - "capacity": 6, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.017364294, - 49.28859895 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1272, - "capacity": 12, - "check_date": "12/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.024071418, - 49.27616866 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1591, - "capacity": 6, - "check_date": "04/11/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100434419, - 49.438016 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2231, - "capacity": 12, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050391809, - 49.4081932 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2233, - "capacity": 10, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.049837573, - 49.41162102 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2236, - "capacity": 4, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094110771, - 49.44220084 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2241, - "capacity": 6, - "check_date": "21/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095189563, - 49.43985157 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2244, - "capacity": 12, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042098292, - 49.52505464 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 957, - "capacity": 6, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.040959811, - 49.48238862 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 960, - "capacity": 4, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.055352443, - 49.46558972 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 963, - "capacity": 4, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.112618318, - 49.47938181 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2565, - "capacity": 6, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.110670394, - 49.47910739 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2566, - "capacity": 6, - "check_date": "28/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093117167, - 49.43489945 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2873, - "capacity": 8, - "check_date": "18/01/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.067133341, - 49.44464804 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2875, - "capacity": 12, - "check_date": "18/01/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.148002095, - 49.49641206 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 952, - "capacity": 8, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086587612, - 49.43131716 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1944, - "capacity": 4, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058660681, - 49.42356499 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1958, - "capacity": 10, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.807056, - 49.485145 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1963, - "capacity": 10, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.003059965, - 49.28999749 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1976, - "capacity": 4, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.010091887, - 49.29157794 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1978, - "capacity": 6, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088581812, - 49.44686313 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 890, - "capacity": 6, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.116627539, - 49.44370231 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 892, - "capacity": 6, - "check_date": "24/09/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041084116, - 49.41028395 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 897, - "capacity": 8, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.126149628, - 49.42577061 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 902, - "capacity": 8, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.120340412, - 49.44099484 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 905, - "capacity": 8, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.107180622, - 49.45597864 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 927, - "capacity": 6, - "check_date": "13/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.107946572, - 49.45751749 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 928, - "capacity": 10, - "check_date": "13/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073617145, - 49.41358402 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5124, - "capacity": 6, - "check_date": "07/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109675807, - 49.44331023 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7031, - "capacity": 10, - "check_date": "24/11/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095557955, - 49.45681793 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7033, - "capacity": 6, - "check_date": "24/11/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068822094, - 49.40505573 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7371, - "capacity": 20, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075539204, - 49.40569306 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7373, - "capacity": 12, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.125609876, - 49.42454923 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 738, - "capacity": 10, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084941013, - 49.42884459 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7387, - "capacity": 6, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092706698, - 49.44343421 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5110, - "capacity": 6, - "check_date": "16/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115363558, - 49.45457448 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5755, - "capacity": 6, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080044051, - 49.45987728 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7389, - "capacity": 6, - "check_date": "10/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064840728, - 49.40169871 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7990, - "capacity": 10, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.067315989, - 49.40511171 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7992, - "capacity": 10, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090528507, - 49.43616039 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3511, - "capacity": 52, - "check_date": "16/03/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.103582807, - 49.44973979 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7350, - "capacity": 6, - "check_date": "03/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.151337879, - 49.44923526 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8003, - "capacity": 6, - "check_date": "18/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088090189, - 49.44539236 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8310, - "capacity": 10, - "check_date": "25/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085435276, - 49.41291261 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8312, - "capacity": 12, - "check_date": "27/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.104508152, - 49.45652148 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8630, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.142043029, - 49.4103431 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7376, - "capacity": 2, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.138867295, - 49.41248994 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7377, - "capacity": 1, - "check_date": "05/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087837233, - 49.44183787 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7672, - "capacity": 8, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060234909, - 49.44591483 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7674, - "capacity": 8, - "check_date": "12/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.027254126, - 49.29249905 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7677, - "capacity": 4, - "check_date": "12/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066583023, - 49.42742714 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7998, - "capacity": 8, - "check_date": "17/01/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088834645, - 49.43386891 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5116, - "capacity": 10, - "check_date": "05/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06975094, - 49.44401654 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5446, - "capacity": 20, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.061648965, - 49.42925354 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3830, - "capacity": 6, - "check_date": "07/04/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.104210847, - 49.49080122 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10603, - "capacity": 12, - "check_date": "20/02/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086786972, - 49.44135574 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5114, - "capacity": 8, - "check_date": "28/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0872024, - 49.4351723 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 86, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0226056, - 49.388119 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 279, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.116088601, - 49.4394357 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 326, - "capacity": 40, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.139245401, - 49.4119147 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 338, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085929199, - 49.4726097 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 387, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078291624, - 49.44341083 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 419, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098846399, - 49.4382914 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 440, - "capacity": 24, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.059284239, - 49.41983171 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 503, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079164501, - 49.444239 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 543, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0719255, - 49.4117988 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 592, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08974797, - 49.44054591 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8677, - "capacity": 2, - "capacity:cargo_bike": 2, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013155742, - 49.30293477 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 755, - "capacity": 3, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041911013, - 49.27771514 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 778, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.049809071, - 49.40933709 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2234, - "capacity": 8, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.003875333, - 49.37766646 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5113, - "capacity": 4, - "check_date": "21/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.148931346, - 49.49584213 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 6710, - "capacity": 20, - "check_date": "19/10/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088797189, - 49.43963369 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8953, - "capacity": 12, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875448724, - 49.48095936 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9320, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875322535, - 49.48197135 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9323, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.874855584, - 49.4823805 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9325, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875985047, - 49.48179188 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9329, - "capacity": 2, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.875566648, - 49.4847009 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9331, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.851517194, - 49.46862698 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9334, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.032685762, - 49.31331739 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8634, - "capacity": 4, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.036869272, - 49.30907372 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8636, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03280848, - 49.31559167 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8638, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044100924, - 49.40217976 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8641, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.046741321, - 49.4082041 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8644, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044918339, - 49.47432228 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8647, - "capacity": 6, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.136223471, - 49.41105986 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8649, - "capacity": 18, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.021471869, - 49.38642212 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8656, - "capacity": 8, - "check_date": "02/03/203" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.055054511, - 49.42958064 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8971, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.005276799, - 49.38104313 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8663, - "capacity": 4, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102641616, - 49.37619673 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8665, - "capacity": 10, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078455145, - 49.41942215 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8667, - "capacity": 8, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100415805, - 49.40089737 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8669, - "capacity": 8, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.057610911, - 49.44177525 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8674, - "capacity": 20, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.137015937, - 49.41197606 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8648, - "capacity": 12, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9614, - 49.33935 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8955, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.037609999, - 49.30699 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8966, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05829, - 49.44809 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8968, - "capacity": 10, - "check_date": "01/08/2023", - "note": "Port de Plaisance Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013875619, - 49.29084739 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8970, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1149781, - 49.4590463 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 26, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081519401, - 49.4363661 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 34, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0737723, - 49.4474467 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 78, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.035828463, - 49.45005127 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9392, - "capacity": 10, - "check_date": "01/08/2023", - "note": "Groupe Scolaire Guy de Maupassant" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077647411, - 49.44349404 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9960, - "capacity": 12, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.150925439, - 49.44515552 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9964, - "capacity": 6, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086675658, - 49.41550494 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9965, - "capacity": 8, - "check_date": "01/11/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.041800001, - 49.47341 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8957, - "capacity": 2, - "check_date": "01/08/2023", - "note": "Creapolis Sud" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.103454498, - 49.42667655 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9407, - "capacity": 10, - "check_date": "01/08/2023", - "note": "Carsat Normandie" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.063074469, - 49.42126923 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9691, - "capacity": 10, - "check_date": "01/09/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.056966678, - 49.40730788 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10280, - "capacity": 12, - "check_date": "27/12/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.997217002, - 49.30396395 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10281, - "capacity": 4, - "check_date": "27/12/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.040478858, - 49.52273153 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9404, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050560126, - 49.47163245 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10918, - "capacity": 4, - "check_date": "17/04/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101742588, - 49.33088488 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 11238, - "capacity": 10, - "check_date": "25/04/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101502104, - 49.33316918 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 11239, - "capacity": 10, - "check_date": "25/04/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.933319218, - 49.50197528 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9348, - "capacity": 12, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.107658006, - 49.44613169 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9638, - "capacity": 8, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.038729464, - 49.50700762 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10602, - "capacity": 14, - "check_date": "20/02/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.871794077, - 49.47942769 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9322, - "capacity": 4, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.136497332, - 49.4480941 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9340, - "capacity": 10, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.141758442, - 49.45020841 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9341, - "capacity": 14, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1416762, - 49.45015075 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9342, - "capacity": 14, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.996374318, - 49.29572762 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9344, - "capacity": 6, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.178428314, - 49.42276663 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10285, - "capacity": 10, - "check_date": "09/01/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078530045, - 49.50818786 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10286, - "capacity": 10, - "check_date": "09/01/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093125441, - 49.44539282 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9389, - "capacity": 12, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093956884, - 49.44223827 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9390, - "capacity": 4, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088467275, - 49.44190502 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 11558, - "capacity": 10, - "check_date": "30/04/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.118973018, - 49.47123396 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 23, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2445544, - 49.3682069 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 295, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1306879, - 49.421128 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 508, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.034894431, - 49.45060872 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 513, - "capacity": 5, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.120727499, - 49.4103301 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 341, - "capacity": 5, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.161370999, - 49.4673392 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 350, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1098954, - 49.467609 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 381, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.942477964, - 49.35883167 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 665, - "capacity": 3, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.158882199, - 49.43802603 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 694, - "capacity": 2, - "check_date": "24/09/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145174515, - 49.44029356 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 636, - "capacity": 2, - "check_date": "24/09/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.944129198, - 49.35824869 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 848, - "capacity": 3, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.032486492, - 49.30290938 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 760, - "capacity": 5, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02072021, - 49.2809806 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 768, - "capacity": 1, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.129198967, - 49.33768004 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 784, - "capacity": 5, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188721775, - 49.35576487 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 787, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.028556734, - 49.44263019 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 798, - "capacity": 6, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.12151418, - 49.4625483 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 934, - "capacity": 6, - "check_date": "13/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.141706028, - 49.498408 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 953, - "capacity": 5, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.027850617, - 49.44109256 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1271, - "capacity": 6, - "check_date": "12/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108414035, - 49.44122739 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2554, - "capacity": 8, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108358976, - 49.44106372 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2557, - "capacity": 12, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108392965, - 49.4409479 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2558, - "capacity": 12, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.108413363, - 49.44087255 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2559, - "capacity": 12, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.110983219, - 49.43979892 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2245, - "capacity": 9, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.034494111, - 49.45065018 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1971, - "capacity": 5, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.027794521, - 49.44389039 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1973, - "capacity": 6, - "check_date": "15/12/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096715047, - 49.34632973 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 7372, - "capacity": 10, - "check_date": "03/01/2023", - "note": "Centre Medico-Social" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.048017847, - 49.4538677 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 4156, - "capacity": 6, - "check_date": "29/04/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1065675, - 49.4430091 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 56, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1026785, - 49.4435184 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 58, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0957267, - 49.4422952 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 61, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0959988, - 49.442092 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 62, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085813299, - 49.4329314 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 66, - "capacity": 50, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091653088, - 49.43211364 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 89, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090066307, - 49.43435917 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 90, - "capacity": 18, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0737974, - 49.4257269 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 101, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.074618996, - 49.42606827 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 102, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.099756986, - 49.44461749 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 104, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093463879, - 49.44253744 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 107, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089177201, - 49.4233511 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 112, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0872556, - 49.4323483 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 125, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080011436, - 49.45954528 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 131, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0914215, - 49.4427075 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3, - "capacity": 18, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087588076, - 49.44095702 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.082119189, - 49.40982645 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 11, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1080184, - 49.4669974 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 17, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0783442, - 49.4444776 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 19, - "capacity": 46, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0856523, - 49.4712725 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 21, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0831623, - 49.4706611 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 22, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096903613, - 49.43890718 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 29, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073743461, - 49.47385476 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 31, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1000045, - 49.4365953 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 40, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100513117, - 49.43829764 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 43, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.100019942, - 49.44139335 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 47, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091217582, - 49.44302069 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 48, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086727199, - 49.433667 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 53, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087822756, - 49.43304224 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 188, - "capacity": 18, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1403611, - 49.4494069 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 191, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077295642, - 49.42662635 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 199, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06220677, - 49.42972458 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 205, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1155099, - 49.4378154 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 207, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.028363555, - 49.38940226 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 277, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0270768, - 49.3876703 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 278, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.020983651, - 49.38545668 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 280, - "capacity": 2, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.036553487, - 49.41624626 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 286, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171649441, - 49.40318859 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 299, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.175521, - 49.3987307 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 303, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1251424, - 49.401152 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 314, - "capacity": 2, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.125695001, - 49.3995483 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 317, - "capacity": 1, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.155791819, - 49.40650474 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 319, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.140975643, - 49.44754871 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 322, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1386058, - 49.4452546 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 323, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.158296792, - 49.43214558 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 328, - "capacity": 8, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068116342, - 49.44532749 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 213, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068014516, - 49.44511356 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 214, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109002199, - 49.442936 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 218, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101462499, - 49.4430948 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 219, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098223799, - 49.4427163 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 235, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0984223, - 49.442507 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 236, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.105505301, - 49.4302011 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 246, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08910535, - 49.40826761 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 136, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096675, - 49.4272115 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 140, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095682116, - 49.42405564 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 142, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090429, - 49.4260536 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 145, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091828, - 49.4256339 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 146, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.078777859, - 49.43024715 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 152, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065357799, - 49.394351 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 153, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0966536, - 49.4428144 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 162, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079274931, - 49.44443832 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 164, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0937156, - 49.4444844 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 172, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0895166, - 49.4262215 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 175, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0916903, - 49.4397999 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 176, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0936238, - 49.4379053 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 450, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087862401, - 49.439325 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 451, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089643572, - 49.44037059 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 452, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.079791899, - 49.427407 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 458, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072965001, - 49.4127504 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 462, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101048301, - 49.4381519 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 467, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092191799, - 49.4420392 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 492, - "capacity": 20, - "check_date": "16/06/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095911699, - 49.445048 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 494, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094303857, - 49.44519333 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 495, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0737319, - 49.4209469 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 496, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1038398, - 49.442831 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 502, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0733132, - 49.4131929 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 521, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.122312988, - 49.40645112 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 342, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1230798, - 49.4053492 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 343, - "capacity": 4, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.124520199, - 49.4029109 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 344, - "capacity": 2, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.130787101, - 49.4577568 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 345, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.179320401, - 49.464205 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 353, - "capacity": 2, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04125027, - 49.52877356 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 360, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1168316, - 49.4684326 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 363, - "capacity": 10, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.039404299, - 49.513393 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 379, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0713695, - 49.4623253 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 383, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0805038, - 49.4672804 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 386, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07802709, - 49.44578526 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 390, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070729728, - 49.44831486 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 392, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068875159, - 49.44864204 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 393, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093902765, - 49.44313804 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 403, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094040199, - 49.4452032 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 409, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08412, - 49.4482584 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 416, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0768157, - 49.4427034 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 420, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0901356, - 49.4490309 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 421, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0845646, - 49.4402319 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 423, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08964, - 49.4433088 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 424, - "capacity": 14, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094785084, - 49.4409197 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 426, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0934233, - 49.4418129 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 434, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.098002791, - 49.43965181 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 439, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096688201, - 49.4384022 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 442, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0966178, - 49.4382361 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 443, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.096929601, - 49.4372215 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 444, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075961578, - 49.4300144 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 578, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0626015, - 49.4224026 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 580, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092551232, - 49.44259816 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 582, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087067131, - 49.43660677 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 588, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0722335, - 49.4125248 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 590, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072668199, - 49.4116025 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 591, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084336746, - 49.44285421 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 647, - "capacity": 8, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085097184, - 49.44425465 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 648, - "capacity": 8, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08581616, - 49.44621 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 652, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085548326, - 49.44619606 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 653, - "capacity": 6, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.091433427, - 49.44665796 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 656, - "capacity": 10, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089901069, - 49.44316403 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 661, - "capacity": 8, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094765469, - 49.44188671 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 675, - "capacity": 4, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087846509, - 49.44330979 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 678, - "capacity": 10, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088780786, - 49.41420519 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 679, - "capacity": 2, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.150397708, - 49.44419844 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 696, - "capacity": 10, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.119885115, - 49.47043063 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 699, - "capacity": 6, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.129136229, - 49.36846179 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 700, - "capacity": 2, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.117785929, - 49.4181918 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 703, - "capacity": 8, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14238197, - 49.47001825 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 708, - "capacity": 6, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08858444, - 49.41455928 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 628, - "capacity": 4, - "check_date": "21/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.093507328, - 49.41806281 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 632, - "capacity": 4, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.086245055, - 49.43548071 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 634, - "capacity": 10, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.051257164, - 49.46916577 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 641, - "capacity": 4, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064208941, - 49.44920934 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 643, - "capacity": 8, - "check_date": "22/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0940397, - 49.4474902 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 527, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0851348, - 49.4334347 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 533, - "capacity": 12, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0673875, - 49.4144918 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 541, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090396915, - 49.4425167 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 550, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089634901, - 49.442719 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 551, - "capacity": 6, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.068471901, - 49.4464302 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 554, - "capacity": 10, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0641968, - 49.4471678 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 556, - "capacity": 20, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065161013, - 49.42796601 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 812, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.065381208, - 49.42899777 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 815, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.066696163, - 49.45744186 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 827, - "capacity": 14, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071062875, - 49.45805508 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 834, - "capacity": 4, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.140363693, - 49.44892526 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 843, - "capacity": 12, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071949737, - 49.44354051 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 865, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073153964, - 49.4431916 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 867, - "capacity": 8, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077376354, - 49.44188076 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 871, - "capacity": 8, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0834814, - 49.44230108 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 877, - "capacity": 4, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088900993, - 49.44162587 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 880, - "capacity": 6, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095415395, - 49.44144616 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 715, - "capacity": 2, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.092849458, - 49.44018895 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 719, - "capacity": 12, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0905951, - 49.44099845 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 722, - "capacity": 10, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089724797, - 49.42954192 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 725, - "capacity": 10, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.083977513, - 49.43184973 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 730, - "capacity": 8, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085591632, - 49.43419831 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 733, - "capacity": 8, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.005780733, - 49.28516003 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 744, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.008630092, - 49.28701656 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 745, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.007873341, - 49.28659409 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 746, - "capacity": 2, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.000073296, - 49.29076629 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 752, - "capacity": 4, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.993984558, - 49.31854513 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 754, - "capacity": 10, - "check_date": "09/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.201270388, - 49.3891799 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5120, - "capacity": 3, - "check_date": "07/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081483313, - 49.51000877 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5752, - "capacity": 5, - "check_date": "27/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.965759591, - 49.34225225 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 266, - "capacity": 4, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17999055, - 49.39950634 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 304, - "capacity": 5, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.146848753, - 49.4971597 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 950, - "capacity": 6, - "check_date": "07/10/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111071624, - 49.43982534 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 2550, - "capacity": 9, - "check_date": "28/12/2021", - "note": "CHU de Rouen" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.018518101, - 49.28230335 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 8633, - "capacity": 6, - "check_date": "02/03/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.955439506, - 49.30678151 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 10600, - "capacity": 6, - "check_date": "20/02/2024" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.197528727, - 49.38480425 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 790, - "capacity": 8, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.018645991, - 49.28303509 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 767, - "capacity": 4, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0645897, - 49.4466784 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 73, - "capacity": 8, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064149699, - 49.4452124 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 32, - "capacity": 14, - "check_date": "20/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.090322752, - 49.44149681 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 672, - "capacity": 2, - "check_date": "23/07/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075176427, - 49.44251855 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 869, - "capacity": 2, - "check_date": "10/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075952388, - 49.44228359 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 941, - "capacity": 2, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075682707, - 49.44236719 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 942, - "capacity": 2, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077523166, - 49.44181017 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5443, - "capacity": 2, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.074322977, - 49.44277073 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 5444, - "capacity": 2, - "check_date": "21/07/2022" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.095148904, - 49.44233275 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 885, - "capacity": 1, - "check_date": "11/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044127452, - 49.47975936 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 938, - "capacity": 2, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044131413, - 49.47969612 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 940, - "capacity": 2, - "check_date": "17/08/2021" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.088599789, - 49.44347165 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3190, - "capacity": 32, - "surveillance": "yes", - "check_date": "07/03/2022", - "note": "Parking du Vieux marche" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089255303, - 49.43911053 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 3191, - "capacity": 32, - "surveillance": "yes", - "check_date": "07/03/2022", - "note": "Parking Opera" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101452469, - 49.34301451 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 9384, - "capacity": 17, - "check_date": "01/08/2023" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042313944, - 49.40074235 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 689, - "capacity": 25, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "24/09/2021", - "note": "Terminus Metro Georges Braque - Parc Velo Astuce" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.144404911, - 49.44065979 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 691, - "capacity": 25, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "24/09/2021", - "note": "Mairie - Parc Velo Astuce" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050629507, - 49.46910827 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 642, - "capacity": 25, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "24/09/2021", - "note": "Mairie Deville - Parc Velo Astuce" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.143884, - 49.491559 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1088, - "capacity": 17, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "09/01/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.071966, - 49.440199 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1090, - "capacity": 7, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "09/01/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05689, - 49.39186 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1098, - "capacity": 19, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "07/06/2023", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07716, - 49.46917 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1100, - "capacity": 6, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "30/04/2024", - "note": "Non renseigne" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10148, - 49.4387 - ] - }, - "properties": { - "amenity": "bicycle_parking", - "ref:FR:rouen_veloparking_id": 1101, - "capacity": 26, - "capacity:cargo_bike": 4, - "owner": "Metropole Rouen Normandie", - "operator": "Metropole Rouen Normandie", - "check_date": "22/01/2024", - "note": "Non renseigne" - } } ] } \ No newline at end of file