From a41fd19c35da4213db0f5e4bbc8a0ac752e74683 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Thu, 17 Oct 2024 10:20:22 +0200 Subject: [PATCH] add config ask angela --- convert_to_osm_tags.ts | 553 +-- docs/ask_angela.md | 13 + etalab_data/askangela/bordeaux_askangela.json | 2749 ++++++++++- etalab_data/askangela/toulouse_askangela.json | 4371 ++++++++++++++++- mappings/converters/configAskAngela.ts | 60 + 5 files changed, 7469 insertions(+), 277 deletions(-) create mode 100644 docs/ask_angela.md create mode 100644 mappings/converters/configAskAngela.ts diff --git a/convert_to_osm_tags.ts b/convert_to_osm_tags.ts index cae88bf..aab5a69 100644 --- a/convert_to_osm_tags.ts +++ b/convert_to_osm_tags.ts @@ -17,17 +17,18 @@ import mappingFINESS from "./mappings/converters/configFINESS"; import MappingArbresIssy from "./mappings/converters/configArbresIssy"; import MappingArbres92 from "./mappings/converters/configArbresHautsDeSeine"; import MappingMuseums from "./mappings/converters/configMuseums"; +import MappingRouenPAV from "./mappings/converters/configRouen_PAV"; +import MappingAskAngela from "mappings/converters/configAskAngela"; const limitWarningPercentageChangeInPoints = 5; // show a warning when more than N percent of the number of points changed const allowed_configs = [ - 'mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose', - 'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE', - 'mappingRouenParkingVelos', 'mappingFINESS', 'MappingArbresIssy', - 'MappingArbres92', 'MappingMuseums','MappingRouenPAV' + 'mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose', + 'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE', + 'mappingRouenParkingVelos', 'mappingFINESS', 'MappingArbresIssy', + 'MappingArbres92', 'MappingMuseums', 'MappingRouenPAV', 'MappingAskAngela' ]; -import minimist = require('minimist') -import MappingRouenPAV from "./mappings/converters/configRouen_PAV"; +import minimist = require('minimist'); const debugLog = utils.debugLog; @@ -39,13 +40,13 @@ let sourceFilePathGeoJson = './data_other/' + output_supplement + '.json' let filterOnBoundingBox = true filterOnBoundingBox = false let boundingBoxCoordinates: BoundingBoxCoordinatesType = { - xMin: 1.91, - xMax: 2.38, - yMin: 48.7, - yMax: 48.4, + xMin: 1.91, + xMax: 2.38, + yMin: 48.7, + yMax: 48.4, } -let default_engine_conf_choice: string = 'ConfigIRVE'; -let engine_conf_choice: string = 'ConfigIRVE'; +let default_engine_conf_choice: string = 'ConfigIRVE' +let engine_conf_choice: string = 'ConfigIRVE' let filterCoordinates = true filterCoordinates = false @@ -54,39 +55,39 @@ enable_filter_on_department = false let filterDepartment = 91 if (mini_arguments['department']) { - filterDepartment = mini_arguments['department'] - enable_filter_on_department = true + filterDepartment = mini_arguments['department'] + enable_filter_on_department = true } let osmoseFormat = false; if (mini_arguments['osmose']) { - osmoseFormat = mini_arguments['osmose'] + osmoseFormat = mini_arguments['osmose'] } if (mini_arguments['source']) { - sourceFilePathGeoJson = mini_arguments['source'] + sourceFilePathGeoJson = mini_arguments['source'] } if (mini_arguments['engine']) { - use_mapping_engine = mini_arguments['engine'] + use_mapping_engine = mini_arguments['engine'] } if (mini_arguments['engine-config']) { - engine_conf_choice = mini_arguments['engine-config'] - output_supplement += "_" + engine_conf_choice + engine_conf_choice = mini_arguments['engine-config'] + output_supplement += "_" + engine_conf_choice } let Mapping_engine: any; let outname = 'converted_' if (mini_arguments['outname']) { - outname = mini_arguments['outname']; + outname = mini_arguments['outname']; } if (mini_arguments['testingConfig']) { - console.log('testing') - Mapping_engine = new mapping_engine(mappingTest) + console.log('testing') + Mapping_engine = new mapping_engine(mappingTest) } else if (osmoseFormat) { - console.log(' *********** we use osmose converter *********') - Mapping_engine = new mapping_engine(mappingConfigIRVEFromOsmose) + console.log(' *********** we use osmose converter *********') + Mapping_engine = new mapping_engine(mappingConfigIRVEFromOsmose) } else { - Mapping_engine = new mapping_engine(mappingConfigIRVE) + Mapping_engine = new mapping_engine(mappingConfigIRVE) } let filterZipCode = new RegExp(`^${filterDepartment}`) @@ -94,9 +95,9 @@ let filterZipCodeAdresse = new RegExp(` ${filterDepartment}`) let filteredName = '' if (enable_filter_on_department) { - filteredName = '_filtered_zipcode_' + filterDepartment + filteredName = '_filtered_zipcode_' + filterDepartment } else if (filterOnBoundingBox) { - filteredName = '_filtered_bbox_' + boundingBoxCoordinates.xMin + '-' + boundingBoxCoordinates.xMax + '_' + boundingBoxCoordinates.yMin + '-' + boundingBoxCoordinates.yMax + filteredName = '_filtered_bbox_' + boundingBoxCoordinates.xMin + '-' + boundingBoxCoordinates.xMax + '_' + boundingBoxCoordinates.yMin + '-' + boundingBoxCoordinates.yMax } let pointCounterMax: number = 1000000 @@ -104,15 +105,15 @@ let limitConversionToFirstPoint: boolean = false // limitConversionToFirstPoint = true if (limitConversionToFirstPoint) { - pointCounterMax = 1 + pointCounterMax = 1 } let defaultPropertiesOfPoint: any = { - 'amenity': 'charging_station' + 'amenity': 'charging_station' } let converted_geo_json: any = { - type: 'FeatureCollection', - features: [] + type: 'FeatureCollection', + features: [] } @@ -124,23 +125,23 @@ let output_folder = 'output'; * @param fileContent */ function writeFile(fileName: string, fileContent: any) { - let write_path = `./${output_folder}/${fileName}` - debugLog("write file \n", outname + fileName, write_path) + let write_path = `./${output_folder}/${fileName}` + debugLog("write file \n", outname + fileName, write_path) - console.log("-------- write file \n", fileName, "\n", write_path) + console.log("-------- write file \n", fileName, "\n", write_path) - return fs.writeFile( - write_path, - fileContent, - 'utf8', - (err) => { - if (err) { - debugLog(`Error writing file: ${err}`) - } else { - debugLog(`File ${fileName} is written successfully!`) - } - } - ) + return fs.writeFile( + write_path, + fileContent, + 'utf8', + (err) => { + if (err) { + debugLog(`Error writing file: ${err}`) + } else { + debugLog(`File ${fileName} is written successfully!`) + } + } + ) } /** @@ -151,266 +152,268 @@ function writeFile(fileName: string, fileContent: any) { * @param boundingBoxCoordinates */ function convertDataFromSource(sourceFilePath: string, mapping: MappingConfigType, pointCounterMax: number, boundingBoxCoordinates: any) { - debugLog('convert data: source file from :', sourceFilePath) + debugLog('convert data: source file from :', sourceFilePath) - fs.readFile(sourceFilePath, 'utf8', function (err, data) { - let point_counter = 0 - let feature_points_after_filter: any = [] + fs.readFile(sourceFilePath, 'utf8', function (err, data) { + let point_counter = 0 + let feature_points_after_filter: any = [] - if (err) { - return debugLog(err) + if (err) { + return debugLog(err) + } + let data_transformed: FeatureCollection = JSON.parse(data) + + if (data_transformed.features) { + + console.log('------ data found in source, features:', data_transformed.features.length) + + // find interesting list of points to use + 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 } - let data_transformed: FeatureCollection = JSON.parse(data) + } + if (mapping?.filters?.offset) { + debugLog('filter offset enabled', mapping.filters.offset) + list_of_points = list_of_points.splice(0, mapping.filters.offset) + } - if (data_transformed.features) { - - console.log('------ data found in source, features:', data_transformed.features.length) - - // find interesting list of points to use - 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('features count before:', list_of_points.length) + console.log('features count before:', list_of_points.length) - /** - * filtering - * run filters before mapping OSM tags - */ - if (mapping.filters && mapping.filters.exclude_point_if_tag_not_empty) { - list_of_points = Mapping_engine.filterListOfPointsByExcludingIfKeyFilled(list_of_points, mapping.filters.exclude_point_if_tag_not_empty) - } + /** + * filtering + * run filters before mapping OSM tags + */ + if (mapping.filters && mapping.filters.exclude_point_if_tag_not_empty) { + list_of_points = Mapping_engine.filterListOfPointsByExcludingIfKeyFilled(list_of_points, mapping.filters.exclude_point_if_tag_not_empty) + } - // for each point from the data source, filter if we take it or not - list_of_points.forEach((feature_point: any) => { + // for each point from the data source, filter if we take it or not + list_of_points.forEach((feature_point: any) => { - let regex_filter_test_result = true - let remove_original_key = false; - feature_point.properties.tags?.forEach((tagKey: string, tagValue: string) => { - if (mapping.filters && mapping.filters.exclude_point_if_tag_not_empty?.indexOf(tagKey) !== -1 - && tagValue.length - && tagValue !== 'null') { - remove_original_key = true; - } - }) - if (remove_original_key) { - return; - } - - - if (enable_filter_on_department) { - debugLog('filtre sur les départements activé') - regex_filter_test_result = ( - filterZipCode.test(feature_point.properties.consolidated_code_postal) - || - filterZipCodeAdresse.test(feature_point.properties.adresse_station) - ) - } else { - debugLog('pas de filtre sur les départements') - } - - if (filterOnBoundingBox) { - debugLog('filtre sur les coordonnées bounding box activé') - - let x = feature_point.properties.coordonneesXY[0] - let xMin = boundingBoxCoordinates.xMin - let xMax = boundingBoxCoordinates.xMax - let yMin = boundingBoxCoordinates.yMin - let yMax = boundingBoxCoordinates.yMax - - let y = feature_point.properties.coordonneesXY[1] - regex_filter_test_result = ( - (x >= xMin && x <= xMax) - && - (y >= yMin && y <= yMax) - ) - - } else { - debugLog('pas de filtre sur les coordonnées bounding box') - } - - - // TODO add filter offset max - // filter points depending on zipcode - if (regex_filter_test_result) { - feature_points_after_filter.push(feature_point) - debugLog(' +1 point', point_counter) - point_counter++ - } - - - }) - - /** - * conversion - */ - debugLog(' after filtering, feature_points_after_filter number of points: ', feature_points_after_filter.length) - feature_points_after_filter.forEach((feature_point: any) => { - debugLog('convert : work on 1 point') - let mapped_point: any = {} - - if (use_mapping_engine) { - mapped_point = Mapping_engine.mapElementFromConf(feature_point) - debugLog('mapped_point', mapped_point) - } else { - debugLog('convert :using simple converter on feature point', feature_point) - mapped_point = mapElementFromConfSimple(feature_point, mapping) - } - if (mapped_point) { - converted_geo_json.features.push(mapped_point) - debugLog('convert : added one point to converted_geo_json') - } else { - debugLog('convert : !!! there is no map one point') - } - }) - // output new geojson - - debugLog('convert : convertedGeoJson.features.length', converted_geo_json.features.length) - - // write file on disk - if (converted_geo_json.features.length) { - - - if (output_supplement) { - output_supplement = '_' + output_supplement; - } - let fileNameToWrite = '_' + filteredName + output_supplement + '.geojson' - console.log('converted features:', converted_geo_json.features.length) - console.log('différences nombre de features: ', data_transformed.features.length - converted_geo_json.features.length) - - const percentChange = (data_transformed.features.length - converted_geo_json.features.length) / converted_geo_json.features.length * 100; - console.log('Changement de features', percentChange, '%') - - if (percentChange > limitWarningPercentageChangeInPoints) { - console.log(' /!\\ pas mal de points en moins, plus de ' + percentChange + '%') - } - debugLog('convert : write file ', fileNameToWrite) - - // console.log('mapping_engine.stats', Mapping_engine.stats) - console.log('mapping config name:', Mapping_engine.getConfig().config_name) - writeFile(fileNameToWrite, JSON.stringify(converted_geo_json, null, 2)) - - } else { - console.log('convert : no writing of file, because there is no converted feature') - } - - return converted_geo_json + let regex_filter_test_result = true + let remove_original_key = false; + feature_point.properties.tags?.forEach((tagKey: string, tagValue: string) => { + if (mapping.filters && mapping.filters.exclude_point_if_tag_not_empty?.indexOf(tagKey) !== -1 + && tagValue.length + && tagValue !== 'null') { + remove_original_key = true; + } + }) + if (remove_original_key) { + return; } - }) + + + if (enable_filter_on_department) { + debugLog('filtre sur les départements activé') + regex_filter_test_result = ( + filterZipCode.test(feature_point.properties.consolidated_code_postal) + || + filterZipCodeAdresse.test(feature_point.properties.adresse_station) + ) + } else { + debugLog('pas de filtre sur les départements') + } + + if (filterOnBoundingBox) { + debugLog('filtre sur les coordonnées bounding box activé') + + let x = feature_point.properties.coordonneesXY[0] + let xMin = boundingBoxCoordinates.xMin + let xMax = boundingBoxCoordinates.xMax + let yMin = boundingBoxCoordinates.yMin + let yMax = boundingBoxCoordinates.yMax + + let y = feature_point.properties.coordonneesXY[1] + regex_filter_test_result = ( + (x >= xMin && x <= xMax) + && + (y >= yMin && y <= yMax) + ) + + } else { + debugLog('pas de filtre sur les coordonnées bounding box') + } + + + // TODO add filter offset max + // filter points depending on zipcode + if (regex_filter_test_result) { + feature_points_after_filter.push(feature_point) + debugLog(' +1 point', point_counter) + point_counter++ + } + + + }) + + /** + * conversion + */ + debugLog(' after filtering, feature_points_after_filter number of points: ', feature_points_after_filter.length) + feature_points_after_filter.forEach((feature_point: any) => { + debugLog('convert : work on 1 point') + let mapped_point: any = {} + + if (use_mapping_engine) { + mapped_point = Mapping_engine.mapElementFromConf(feature_point) + debugLog('mapped_point', mapped_point) + } else { + debugLog('convert :using simple converter on feature point', feature_point) + mapped_point = mapElementFromConfSimple(feature_point, mapping) + } + if (mapped_point) { + converted_geo_json.features.push(mapped_point) + debugLog('convert : added one point to converted_geo_json') + } else { + debugLog('convert : !!! there is no map one point') + } + }) + // output new geojson + + debugLog('convert : convertedGeoJson.features.length', converted_geo_json.features.length) + + // write file on disk + if (converted_geo_json.features.length) { + + + if (output_supplement) { + output_supplement = '_' + output_supplement; + } + let fileNameToWrite = '_' + filteredName + output_supplement + '.geojson' + console.log('converted features:', converted_geo_json.features.length) + console.log('différences nombre de features: ', data_transformed.features.length - converted_geo_json.features.length) + + const percentChange = (data_transformed.features.length - converted_geo_json.features.length) / converted_geo_json.features.length * 100; + console.log('Changement de features', percentChange, '%') + + if (percentChange > limitWarningPercentageChangeInPoints) { + console.log(' /!\\ pas mal de points en moins, plus de ' + percentChange + '%') + } + debugLog('convert : write file ', fileNameToWrite) + + // console.log('mapping_engine.stats', Mapping_engine.stats) + console.log('mapping config name:', Mapping_engine.getConfig().config_name) + writeFile(fileNameToWrite, JSON.stringify(converted_geo_json, null, 2)) + + } else { + console.log('convert : no writing of file, because there is no converted feature') + } + + return converted_geo_json + } + }) } /** * retuns the converted element from mapping config if present, null otherwise */ function mapElementFromConfSimple(featurePoint: any, mappingConfig: any) { - let mappingKeys = Object.keys(mappingConfig) - let featurePointPropertiesKeys = Object.keys(featurePoint.properties) + let mappingKeys = Object.keys(mappingConfig) + let featurePointPropertiesKeys = Object.keys(featurePoint.properties) - debugLog('keys', mappingKeys, featurePointPropertiesKeys) + debugLog('keys', mappingKeys, featurePointPropertiesKeys) - let newProperties: any = defaultPropertiesOfPoint + let newProperties: any = defaultPropertiesOfPoint - // reinit properties of current point - let basePoint = Object.create(featurePoint) - basePoint.type = featurePoint.type - basePoint.geometry = featurePoint.geometry - basePoint.properties = newProperties + // reinit properties of current point + let basePoint = Object.create(featurePoint) + basePoint.type = featurePoint.type + basePoint.geometry = featurePoint.geometry + basePoint.properties = newProperties - // apply new properties if found in mapping config - featurePointPropertiesKeys.forEach((pointKeyName: string) => { + // apply new properties if found in mapping config + featurePointPropertiesKeys.forEach((pointKeyName: string) => { - if (mappingKeys.indexOf(pointKeyName) !== -1) { - // debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) - let convertedValue: any = '' - if (utils.isBooleanKey(pointKeyName)) { + if (mappingKeys.indexOf(pointKeyName) !== -1) { + // debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) + let convertedValue: any = '' + if (utils.isBooleanKey(pointKeyName)) { - let copyOfValue: any = '' + featurePoint.properties[pointKeyName] - if (typeof copyOfValue === typeof Object && copyOfValue.key_converted) { - copyOfValue = copyOfValue.key_converted - } - convertedValue = copyOfValue.toLowerCase() == 'true' ? 'yes' : 'no' - } else { - convertedValue = featurePoint.properties[pointKeyName] - } - - if (convertedValue) { - let convertedKey: any = mappingConfig[pointKeyName] - newProperties[convertedKey] = convertedValue - } + let copyOfValue: any = '' + featurePoint.properties[pointKeyName] + if (typeof copyOfValue === typeof Object && copyOfValue.key_converted) { + copyOfValue = copyOfValue.key_converted } - }) + convertedValue = copyOfValue.toLowerCase() == 'true' ? 'yes' : 'no' + } else { + convertedValue = featurePoint.properties[pointKeyName] + } - debugLog('basePoint', basePoint) - return basePoint + if (convertedValue) { + let convertedKey: any = mappingConfig[pointKeyName] + newProperties[convertedKey] = convertedValue + } + } + }) + + debugLog('basePoint', basePoint) + return basePoint } function setMappingConfigFromName(engine_conf_choice: string) { - console.log('------- use_mapping_engine', use_mapping_engine) - console.log('------- engine_conf_choice', engine_conf_choice) + console.log('------- use_mapping_engine', use_mapping_engine) + console.log('------- engine_conf_choice', engine_conf_choice) - if (use_mapping_engine) { - debugLog(' - using mapping engine') - debugLog(' - pointCounterMax', pointCounterMax) + if (use_mapping_engine) { + debugLog(' - using mapping engine') + debugLog(' - pointCounterMax', pointCounterMax) - if (osmoseFormat) { - Mapping_engine.setConfig(mappingConfigIRVEFromOsmose) - - } else { - // choisir la config IRVE par défaut si aucune option de config de mapping n'est choisie en CLI - - - if (engine_conf_choice !== default_engine_conf_choice && allowed_configs.indexOf("mappingIssy2Roues") !== -1) { - // ['mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose', 'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE'] - if (engine_conf_choice == 'mappingIssy2Roues') { - console.log('mappingIssy2Roues', mappingIssy2Roues) - Mapping_engine.setConfig(mappingIssy2Roues) - } else if (engine_conf_choice == 'mappingConfigIRVE') { - Mapping_engine.setConfig(mappingConfigIRVE) - } else if (engine_conf_choice == 'mappingConfigIRVEFromOsmose') { - Mapping_engine.setConfig(mappingConfigIRVEFromOsmose) - } else if (engine_conf_choice == 'mappingConfigIRVE_simple') { - Mapping_engine.setConfig(mappingConfigIRVE_simple) - } else if (engine_conf_choice == 'mappingTest') { - Mapping_engine.setConfig(mappingTest) - } else if (engine_conf_choice == 'ConfigIRVE') { - Mapping_engine.setConfig(ConfigIRVE) - } else if (engine_conf_choice == 'mappingRouenParkingVelos') { - Mapping_engine.setConfig(mappingRouenParkingVelos) - } else if (engine_conf_choice == 'MappingArbresIssy') { - Mapping_engine.setConfig(MappingArbresIssy) - } else if (engine_conf_choice == 'mappingFINESS') { - Mapping_engine.setConfig(mappingFINESS) - } else if (engine_conf_choice == 'MappingArbres92') { - Mapping_engine.setConfig(MappingArbres92) - } else if (engine_conf_choice == 'MappingMuseums') { - Mapping_engine.setConfig(MappingMuseums) - }else if (engine_conf_choice == 'MappingRouenPAV') { - Mapping_engine.setConfig(MappingRouenPAV) - } - } else { - Mapping_engine.setConfig(mappingConfigIRVE) - } - } - let currentMappingConfig = Mapping_engine.getConfig(); - convertDataFromSource(sourceFilePathGeoJson, currentMappingConfig, pointCounterMax, boundingBoxCoordinates) + if (osmoseFormat) { + Mapping_engine.setConfig(mappingConfigIRVEFromOsmose) } else { + // choisir la config IRVE par défaut si aucune option de config de mapping n'est choisie en CLI - console.log(' ------ on utilise mappingConfigIRVE_simple') - let mappingConfigIRVE = mappingConfigIRVE_simple - convertDataFromSource(sourceFilePathGeoJson, mappingConfigIRVE, pointCounterMax, boundingBoxCoordinates) + + if (engine_conf_choice !== default_engine_conf_choice && allowed_configs.indexOf("mappingIssy2Roues") !== -1) { + // ['mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose', 'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE'] + if (engine_conf_choice == 'mappingIssy2Roues') { + console.log('mappingIssy2Roues', mappingIssy2Roues) + Mapping_engine.setConfig(mappingIssy2Roues) + } else if (engine_conf_choice == 'mappingConfigIRVE') { + Mapping_engine.setConfig(mappingConfigIRVE) + } else if (engine_conf_choice == 'mappingConfigIRVEFromOsmose') { + Mapping_engine.setConfig(mappingConfigIRVEFromOsmose) + } else if (engine_conf_choice == 'mappingConfigIRVE_simple') { + Mapping_engine.setConfig(mappingConfigIRVE_simple) + } else if (engine_conf_choice == 'mappingTest') { + Mapping_engine.setConfig(mappingTest) + } else if (engine_conf_choice == 'ConfigIRVE') { + Mapping_engine.setConfig(ConfigIRVE) + } else if (engine_conf_choice == 'mappingRouenParkingVelos') { + Mapping_engine.setConfig(mappingRouenParkingVelos) + } else if (engine_conf_choice == 'MappingArbresIssy') { + Mapping_engine.setConfig(MappingArbresIssy) + } else if (engine_conf_choice == 'mappingFINESS') { + Mapping_engine.setConfig(mappingFINESS) + } else if (engine_conf_choice == 'MappingArbres92') { + Mapping_engine.setConfig(MappingArbres92) + } else if (engine_conf_choice == 'MappingMuseums') { + Mapping_engine.setConfig(MappingMuseums) + } else if (engine_conf_choice == 'MappingRouenPAV') { + Mapping_engine.setConfig(MappingRouenPAV) + } else if (engine_conf_choice == 'MappingAskAngela') { + Mapping_engine.setConfig(MappingAskAngela) + } + } else { + Mapping_engine.setConfig(mappingConfigIRVE) + } } + let currentMappingConfig = Mapping_engine.getConfig(); + convertDataFromSource(sourceFilePathGeoJson, currentMappingConfig, pointCounterMax, boundingBoxCoordinates) + + } else { + + console.log(' ------ on utilise mappingConfigIRVE_simple') + let mappingConfigIRVE = mappingConfigIRVE_simple + convertDataFromSource(sourceFilePathGeoJson, mappingConfigIRVE, pointCounterMax, boundingBoxCoordinates) + } } @@ -418,7 +421,7 @@ function setMappingConfigFromName(engine_conf_choice: string) { * Launch conversion of dataset */ function init() { - setMappingConfigFromName(engine_conf_choice) + setMappingConfigFromName(engine_conf_choice) } init() diff --git a/docs/ask_angela.md b/docs/ask_angela.md new file mode 100644 index 0000000..cef8322 --- /dev/null +++ b/docs/ask_angela.md @@ -0,0 +1,13 @@ +# Ask Angela, dispositif anti harcèlement +Les commerces et autres lieux adhérant au dispositif + +# Conversion +## Conversion des données de Toulouse +```bash +ts-node convert_to_osm_tags.ts --source=etalab_data/ask_angela/toulouse_askangela.json --output-file=toulouse_askangela.json --engine-config=MappingAskAngela +``` + +## Conversion des données de Bordeaux +```bash +ts-node convert_to_osm_tags.ts --source=etalab_data/ask_angela/bordeaux_askangela.json --output-file=bordeaux_askangela.json --engine-config=MappingAskAngela +``` diff --git a/etalab_data/askangela/bordeaux_askangela.json b/etalab_data/askangela/bordeaux_askangela.json index 995a278..f3a6be4 100644 --- a/etalab_data/askangela/bordeaux_askangela.json +++ b/etalab_data/askangela/bordeaux_askangela.json @@ -1 +1,2748 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"coordinates":[-0.5735616,44.8409452],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5735616,"lat":44.8409452},"gid":141,"libelle":"Bistrot des frerots","cdate":"2022-10-13T14:59:22+00:00","mdate":"2022-10-13T14:59:22+00:00","adresse":"23 Rue Piliers de Tutelle, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/le_bistrot_des_frerots\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5722978,44.8304299],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5722978,"lat":44.8304299},"gid":2,"libelle":"The Grizzly Pub","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"12 Place de la Victoire, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/thegrizzlypubbordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5556395,44.8638219],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5556395,"lat":44.8638219},"gid":3,"libelle":"La Dame","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"1 Quai Armand Lalande, 33300 Bordeaux","complement_adresse":null,"ouverture":["NUIT"],"url":"https:\/\/www.instagram.com\/ladamebordeauxclub\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5694848,44.8352087],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5694848,"lat":44.8352087},"gid":5,"libelle":"Minus","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"72 Cours Victor Hugo, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/minus_pub_bdx\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5591104,44.8659365],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5591104,"lat":44.8659365},"gid":7,"libelle":"Iboat","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:26:57+00:00","adresse":"Cr Henri Brunet, 33300 Bordeaux","complement_adresse":"Bassin \u00e0 Flot n\u00b01","ouverture":["NUIT"],"url":"https:\/\/www.instagram.com\/iboatbordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5756251,44.838356],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5756251,"lat":44.838356},"gid":8,"libelle":"Magnus","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"32 Rue de Cheverus, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/magnus_pub\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5726795,44.8321484],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5726795,"lat":44.8321484},"gid":10,"libelle":"HMS Victory Pub","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:26:57+00:00","adresse":"3 Place G\u00e9n\u00e9ral Sarrail, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/hmsvictorybdx\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5604755,44.8517462],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5604755,"lat":44.8517462},"gid":18,"libelle":"Les Chantiers de la Garonne","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"21 Quai de Queyries, 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/chantiersdelagaronne\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5562446,44.8606668],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5562446,"lat":44.8606668},"gid":19,"libelle":"Theatro","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:26:58+00:00","adresse":"24 Rue de la Fa\u00efencerie, 33300 Bordeaux","complement_adresse":null,"ouverture":["NUIT"],"url":"https:\/\/www.instagram.com\/theatro_bordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.566412,44.8372015],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.566412,"lat":44.8372015},"gid":21,"libelle":"Station Tram - Porte de Bourgogne","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-05-30T15:44:56+00:00","adresse":"Pl. de Bir Hakeim, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5693176,44.8358315],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5693176,"lat":44.8358315},"gid":61,"libelle":"Au nouveau monde","cdate":"2022-05-16T08:33:04+00:00","mdate":"2022-05-16T08:33:04+00:00","adresse":"2 Rue des Boucheries, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/aunouveaumonde.fr\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5513039,44.8632694],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5513039,"lat":44.8632694},"gid":64,"libelle":"Les Halles de Bacalan","cdate":"2022-05-16T08:41:26+00:00","mdate":"2022-05-16T08:41:26+00:00","adresse":"10, esplanade de Pontac, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/hallesdebacalan\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5956649,44.8438851],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5956649,"lat":44.8438851},"gid":67,"libelle":"CSAPA Addiction France","cdate":"2022-05-16T08:48:29+00:00","mdate":"2022-05-16T08:48:29+00:00","adresse":"67 Rue Chevalier, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/addictions-france.org\/etablissements\/csapa-de-bordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5567622,44.8599395],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5567622,"lat":44.8599395},"gid":68,"libelle":"Hydrophobie","cdate":"2022-05-16T08:51:50+00:00","mdate":"2022-05-16T08:51:50+00:00","adresse":"16bis Rue Bourbon, 33300 Bordeaux","complement_adresse":"Bar et brasserie","ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/hydrophobie.brewpub\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5743092,44.8436664],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5743092,"lat":44.8436664},"gid":74,"libelle":"Office de Tourisme","cdate":"2022-05-16T09:43:21+00:00","mdate":"2022-05-16T09:43:21+00:00","adresse":"12 Cr du XXX Juillet, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux-tourisme.com\/informations-pratiques\/qui-sommes-nous"}},{"type":"Feature","geometry":{"coordinates":[-0.5739042,44.8386464],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5739042,"lat":44.8386464},"gid":75,"libelle":"Andr\u00e9 (magasin Saint Projet)","cdate":"2022-05-16T09:48:04+00:00","mdate":"2022-05-16T09:48:04+00:00","adresse":"90, rue Sainte-Catherine 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.andre.fr\/andre-bordeaux-saint-projet.html"}},{"type":"Feature","geometry":{"coordinates":[-0.559152,44.8448293],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.559152,"lat":44.8448293},"gid":76,"libelle":"Jardin Botanique","cdate":"2022-05-16T09:52:07+00:00","mdate":"2022-05-16T09:56:31+00:00","adresse":"Esp. Linn\u00e9, 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/jardin_botanique_de_bordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5675862,44.8335105],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5675862,"lat":44.8335105},"gid":101,"libelle":"Association Bordeaux Rock","cdate":"2022-06-10T09:40:01+00:00","mdate":"2022-06-10T09:40:01+00:00","adresse":"39, rue des Menuts 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/bordeaux.rock.asso\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5775922,44.8393112],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5775922,"lat":44.8393112},"gid":112,"libelle":"Jaken Kraft Beer","cdate":"2022-06-27T08:48:12+00:00","mdate":"2022-06-27T08:48:12+00:00","adresse":"5 Rue Beaubadat 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/jaqencraftbeer\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.523888,44.8623065],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.523888,"lat":44.8623065},"gid":152,"libelle":"Le Rocher de Palmer","cdate":"2022-11-07T12:15:20+00:00","mdate":"2022-11-07T12:15:20+00:00","adresse":"1 Rue Aristide Briand, 33152 Cenon","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/lerocherdepalmer.fr\/pratique\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5841315,44.8577673],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5841315,"lat":44.8577673},"gid":161,"libelle":"Biblioth\u00e8que Grand Parc","cdate":"2022-12-05T10:20:17+00:00","mdate":"2022-12-05T10:20:17+00:00","adresse":"34 rue Pierre Trebod 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/mediatheques.bordeaux-metropole.fr\/bibliotheque\/bibliotheque-grand-parc-bordeaux"}},{"type":"Feature","geometry":{"coordinates":[-0.57655,44.8391365],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.57655,"lat":44.8391365},"gid":162,"libelle":"Mairie de quartier Centre ville","cdate":"2022-12-05T10:28:23+00:00","mdate":"2022-12-05T10:28:23+00:00","adresse":"Mairie de quartier Centre ville - 19 rue P\u00e8re Louis de Jabrun - 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux.fr\/o20863\/mairie-du-quartier-bordeaux-centre"}},{"type":"Feature","geometry":{"coordinates":[-0.575064,44.8355719],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.575064,"lat":44.8355719},"gid":163,"libelle":"Mus\u00e9e d'Aquitaine","cdate":"2022-12-05T10:31:01+00:00","mdate":"2022-12-05T10:31:01+00:00","adresse":"20 cours Pasteur 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.musee-aquitaine-bordeaux.fr\/fr\/article\/horaires-et-tarifs"}},{"type":"Feature","geometry":{"coordinates":[-0.5531317,44.8419315],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5531317,"lat":44.8419315},"gid":181,"libelle":"Mairie de quartier La Bastide","cdate":"2022-12-20T15:30:20+00:00","mdate":"2022-12-20T15:30:20+00:00","adresse":"38 rue de Nuits 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux.fr\/o19826\/mairie-de-quartier-la-bastide"}},{"type":"Feature","geometry":{"coordinates":[-0.5462823,44.8731416],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5462823,"lat":44.8731416},"gid":182,"libelle":"Mairie de quartier Bordeaux Maritime","cdate":"2022-12-20T15:36:34+00:00","mdate":"2022-12-20T15:36:34+00:00","adresse":"196, rue Achard 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux.fr\/o1935\/mairie-de-quartier-bordeaux-maritime"}},{"type":"Feature","geometry":{"coordinates":[-0.6114131,44.8326185],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6114131,"lat":44.8326185},"gid":191,"libelle":"Mairie de quartier Saint Augustin Tauzin Alphonse Dupeux","cdate":"2023-01-09T11:01:55+00:00","mdate":"2023-03-20T11:02:20+00:00","adresse":"18, place de l'Eglise Saint-Augustin 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux.fr\/o2312\/mairie-de-quartier-saint-augustin-tauzin-alphonse-dupeux"}},{"type":"Feature","geometry":{"coordinates":[-0.5798595,44.844798],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5798595,"lat":44.844798},"gid":135,"libelle":"Nekomata \u2013 Caf\u00e9 \u00e0 Chats","cdate":"2022-10-05T12:21:18+00:00","mdate":"2022-10-05T12:21:18+00:00","adresse":"40 Rue Lafaurie de Monbadon, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/nekomata.cafe\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.557646,44.8645116],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.557646,"lat":44.8645116},"gid":252,"libelle":"Le Jade","cdate":"2023-07-04T09:19:03+00:00","mdate":"2023-07-04T09:19:03+00:00","adresse":"61 Quai Lawton 33300","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.thefork.fr\/restaurant\/jade-r743518\/menu"}},{"type":"Feature","geometry":{"coordinates":[-0.5856315,44.8385166],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5856315,"lat":44.8385166},"gid":255,"libelle":"Auchan M\u00e9riadeck","cdate":"2023-07-04T09:25:35+00:00","mdate":"2023-07-04T09:25:35+00:00","adresse":"57 rue du Ch\u00e2teau d'eau 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.auchan.fr\/magasins\/hypermarche\/bordeaux-meriadeck\/s-29"}},{"type":"Feature","geometry":{"coordinates":[-0.5848221,44.8383164],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5848221,"lat":44.8383164},"gid":256,"libelle":"KFC M\u00e9riadeck","cdate":"2023-07-04T09:27:29+00:00","mdate":"2023-07-04T09:27:29+00:00","adresse":"57 rue du Ch\u00e2teau d'eau 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.meriadeck.com\/boutiques-restaurants\/kfc\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5576868,44.8275319],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5576868,"lat":44.8275319},"gid":262,"libelle":"L'imp\u00e9ratrice","cdate":"2023-09-15T13:06:16+00:00","mdate":"2023-09-15T13:06:16+00:00","adresse":"226 cours de la Marne 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/limperatricebdx\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5665758,44.8360733],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5665758,"lat":44.8360733},"gid":264,"libelle":"Adiu","cdate":"2023-09-15T13:11:09+00:00","mdate":"2023-09-15T13:11:09+00:00","adresse":"8 cours Victor Hugo 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/adiu.bordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5799984,44.8484732],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5799984,"lat":44.8484732},"gid":204,"libelle":"Mus\u00e9um de Bordeaux Sciences et nature","cdate":"2023-04-17T08:47:32+00:00","mdate":"2023-04-17T08:47:32+00:00","adresse":"5 place Bardineau, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.museum-bordeaux.fr\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5740246,44.8445541],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5740246,"lat":44.8445541},"gid":206,"libelle":"Station Tram - Quinconces","cdate":"2023-04-18T08:27:40+00:00","mdate":"2023-04-18T08:27:40+00:00","adresse":"Place des Quinconces, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5532423,44.8606628],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5532423,"lat":44.8606628},"gid":207,"libelle":"Station Tram - La Cit\u00e9 du Vin","cdate":"2023-04-18T08:31:01+00:00","mdate":"2023-04-18T08:31:01+00:00","adresse":"Quai Bacalan, 33300","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5588664,44.8578973],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5588664,"lat":44.8578973},"gid":208,"libelle":"Station Tram - Les Hangars","cdate":"2023-04-18T08:32:27+00:00","mdate":"2023-04-18T08:32:27+00:00","adresse":"Quai Bacalan, 33300","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5567765,44.8259227],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5567765,"lat":44.8259227},"gid":213,"libelle":"Station Tram - Gare Saint-Jean","cdate":"2023-04-18T08:44:54+00:00","mdate":"2023-04-18T08:44:54+00:00","adresse":"Parvis Gare Saint-Jean","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5594146,44.8313561],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5594146,"lat":44.8313561},"gid":241,"libelle":"Conservatoire Jacques Thibaud","cdate":"2023-06-01T08:42:37+00:00","mdate":"2023-06-01T08:42:37+00:00","adresse":"22 quai Sainte-Croix 33800","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/conservatoire.bordeaux.fr\/fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5716412,44.820485],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5716412,"lat":44.820485},"gid":242,"libelle":"Mairie de Quartier Nansouty Saint Gen\u00e8s","cdate":"2023-06-01T08:45:26+00:00","mdate":"2023-06-01T08:45:26+00:00","adresse":"250 rue Malbec 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux.fr\/o2310\/mairie-de-quartier-nansouty-saint-genes"}},{"type":"Feature","geometry":{"coordinates":[-0.5508833,44.8642017],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5508833,"lat":44.8642017},"gid":243,"libelle":"Whoo Bordeaux Bacalan","cdate":"2023-06-01T08:51:42+00:00","mdate":"2023-06-01T08:51:42+00:00","adresse":"12 rue de Gironde 33300","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.whoostay.com\/fr\/residence\/bordeaux-bacalan\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5591306,44.827518],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5591306,"lat":44.827518},"gid":244,"libelle":"SPAR supermarch\u00e9","cdate":"2023-06-01T08:55:43+00:00","mdate":"2023-06-01T08:55:43+00:00","adresse":"211 cours de la Marne 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/magasins.spar.fr\/fr\/spar-supermarche-bordeaux"}},{"type":"Feature","geometry":{"coordinates":[-0.5741298,44.8405319],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5741298,"lat":44.8405319},"gid":272,"libelle":"Quality Hotel Bordeaux centre","cdate":"2024-06-26T16:13:51+00:00","mdate":"2024-06-26T16:13:51+00:00","adresse":"27 rue du Parlement Ste Catherine, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.choicehotels.com\/fr-fr\/france\/bordeaux\/quality-inn-hotels\/fr160"}},{"type":"Feature","geometry":{"coordinates":[-0.556809,44.8587862],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.556809,"lat":44.8587862},"gid":293,"libelle":"INSEEC \/ OMNES Education","cdate":"2024-08-19T14:18:37+00:00","mdate":"2024-08-19T14:18:37+00:00","adresse":"Hangar 18 - Quai de Bacalan - 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.inseec.com\/campus-5\/bordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5637981,44.8346173],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5637981,"lat":44.8346173},"gid":9,"libelle":"La Taupini\u00e8re","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:26:57+00:00","adresse":"9 Quai de la Monnaie, 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.facebook.com\/la.taupiniere.bx\/about\/?ref=page_internal"}},{"type":"Feature","geometry":{"coordinates":[-0.5730133,44.840626],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5730133,"lat":44.840626},"gid":11,"libelle":"The Houses Of Parliament","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"11 Rue Parlement Sainte-Catherine, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/housesofparliamentbdx\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5565619,44.8251443],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5565619,"lat":44.8251443},"gid":14,"libelle":"Agence TBM - Gare Saint-Jean","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-05-30T15:45:29+00:00","adresse":"Gare Saint-Jean, 33380 Bordeaux","complement_adresse":"Cour d'arriv\u00e9e - Parvis Sud","ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.570994,44.8326954],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.570994,"lat":44.8326954},"gid":41,"libelle":"Holy Cut - Salon de coiffure","cdate":"2022-05-02T09:44:15+00:00","mdate":"2022-05-02T09:45:45+00:00","adresse":"59 rue du Mirail 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/holycut.bordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5635213,44.8826016],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5635213,"lat":44.8826016},"gid":66,"libelle":"Centre commercial Bordeaux Lac","cdate":"2022-05-16T08:46:54+00:00","mdate":"2022-05-16T08:46:54+00:00","adresse":"1 Av. des 40 Journaux, 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/ccbordeauxlac\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5819749,44.8396316],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5819749,"lat":44.8396316},"gid":71,"libelle":"Lila and the Barber","cdate":"2022-05-16T09:09:00+00:00","mdate":"2022-05-16T09:09:00+00:00","adresse":"14 rue saint sernin","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/lilaandthebarber"}},{"type":"Feature","geometry":{"coordinates":[-0.5797675,44.839236],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5797675,"lat":44.839236},"gid":77,"libelle":"Maison Julien","cdate":"2022-05-16T09:57:46+00:00","mdate":"2022-05-16T09:57:46+00:00","adresse":"35 rue Bouffard 33000 Bordeaux","complement_adresse":"Bar \u00e0 vins - \u00e9picerie fine","ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/maisonjulien.bordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5570411,44.8245447],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5570411,"lat":44.8245447},"gid":81,"libelle":"Service des objets trouv\u00e9s TBM - Gare Saint-Jean","cdate":"2022-05-17T15:11:03+00:00","mdate":"2022-05-30T15:45:24+00:00","adresse":"Gare Saint-Jean 33380 Bordeaux","complement_adresse":"Cour d'arriv\u00e9e - Parvis Sud","ouverture":["JOUR","NUIT"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.6155586,44.8522696],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6155586,"lat":44.8522696},"gid":151,"libelle":"Mairie de quartier de Caud\u00e9ran","cdate":"2022-11-07T12:09:27+00:00","mdate":"2022-11-07T12:09:27+00:00","adresse":"130 avenue Louis Barthou - 33200 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux.fr\/o1932\/mairie-de-quartier-cauderan"}},{"type":"Feature","geometry":{"coordinates":[-0.5800382,44.8478627],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5800382,"lat":44.8478627},"gid":172,"libelle":"Biblioth\u00e8que du Jardin public","cdate":"2022-12-09T16:49:28+00:00","mdate":"2022-12-09T16:49:28+00:00","adresse":"Terrasse du Jardin Public, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/mediatheques.bordeaux-metropole.fr\/bibliotheque\/bibliotheque-jardin-public-bordeaux"}},{"type":"Feature","geometry":{"coordinates":[-0.5758423,44.8374919],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5758423,"lat":44.8374919},"gid":131,"libelle":"Info Jeunes Nouvelle-Aquitaine","cdate":"2022-10-05T12:11:52+00:00","mdate":"2022-10-05T12:11:52+00:00","adresse":"125 Cr d'Alsace-et-Lorraine, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.jeuneabordeaux.fr\/le-crij"}},{"type":"Feature","geometry":{"coordinates":[-0.5648772,44.8268266],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5648772,"lat":44.8268266},"gid":132,"libelle":"Le Petit Grain \/ Yakafaucon","cdate":"2022-10-05T12:15:16+00:00","mdate":"2022-10-05T12:15:16+00:00","adresse":"3 Pl. Pierre Jacques Dormoy, 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/lepetitgrainparis\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5833729,44.8389002],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5833729,"lat":44.8389002},"gid":253,"libelle":"Centre commercial M\u00e9riadeck","cdate":"2023-07-04T09:20:39+00:00","mdate":"2023-07-04T09:20:39+00:00","adresse":"57 rue du Ch\u00e2teau d'eau 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.meriadeck.com\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5841299,44.8391132],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5841299,"lat":44.8391132},"gid":254,"libelle":"Centre dentaire M\u00e9riadeck","cdate":"2023-07-04T09:24:15+00:00","mdate":"2023-07-04T09:24:15+00:00","adresse":"57 rue du Ch\u00e2teau d'eau 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/centre-dentaire-bordeaux-meriadeck.fr\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5840127,44.838577],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5840127,"lat":44.838577},"gid":257,"libelle":"Sostrene Grene M\u00e9riadeck","cdate":"2023-07-04T09:29:10+00:00","mdate":"2023-07-04T09:29:10+00:00","adresse":"57 rue du Ch\u00e2teau d'eau","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/sostrenegrene.com\/fr\/magasins\/meriadeck-bordeaux-s-4015"}},{"type":"Feature","geometry":{"coordinates":[-0.5701906,44.8365997],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5701906,"lat":44.8365997},"gid":261,"libelle":"Le Girofard, Centre LGBTI+ Bordeaux","cdate":"2023-09-15T13:04:32+00:00","mdate":"2023-09-15T13:04:32+00:00","adresse":"34 rue Bouqui\u00e8re 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.le-girofard.org\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5518905,44.8640881],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5518905,"lat":44.8640881},"gid":263,"libelle":"H\u00f4tel Moxy","cdate":"2023-09-15T13:09:42+00:00","mdate":"2023-09-15T13:09:42+00:00","adresse":"25 Quai du Maroc, 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/moxybordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5598834,44.8402139],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5598834,"lat":44.8402139},"gid":210,"libelle":"Station Tram - Stalingrad","cdate":"2023-04-18T08:36:28+00:00","mdate":"2023-04-18T08:36:28+00:00","adresse":"Place de Stalingrad, 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.569303,44.8329906],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.569303,"lat":44.8329906},"gid":246,"libelle":"Einstein on the beach","cdate":"2023-06-01T09:04:04+00:00","mdate":"2023-06-01T09:04:04+00:00","adresse":"8 rue Bergeret 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/einsteinonthebeach.net\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5696241,44.8340804],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5696241,"lat":44.8340804},"gid":292,"libelle":"CIAM Ecole de Musiques Actuelles","cdate":"2024-08-19T14:12:40+00:00","mdate":"2024-08-19T14:12:40+00:00","adresse":"35 rue Leyteire 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/ciambordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5735252,44.8412446],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5735252,"lat":44.8412446},"gid":294,"libelle":"Caf\u00e9 Brazza","cdate":"2024-08-19T14:19:42+00:00","mdate":"2024-08-19T14:19:42+00:00","adresse":"61 rue Saint R\u00e9mi, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/cafebrazzabordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.563588,44.8343983],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.563588,"lat":44.8343983},"gid":296,"libelle":"AU TOUCAN FRINGANT (Vintage group)","cdate":"2024-08-19T14:21:49+00:00","mdate":"2024-08-19T14:21:49+00:00","adresse":"6 quai de la Monnaie 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/au_toucan_fringant_bordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5617463,44.8672635],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5617463,"lat":44.8672635},"gid":297,"libelle":"DELIRIUM CAFE (Vintage group)","cdate":"2024-08-19T14:23:01+00:00","mdate":"2024-08-19T14:23:01+00:00","adresse":"30 quai Virginie Heriot 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/deliriumcafebordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5620005,44.8506718],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5620005,"lat":44.8506718},"gid":1,"libelle":"Guinguette Chez Alriq","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"Quai des Queyries, 33100 Bordeaux","complement_adresse":"ZA Quai des Queyries - Port Bastide","ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/laguinguettechezalriq\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5694945,44.8498658],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5694945,"lat":44.8498658},"gid":4,"libelle":"Ibaia","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"24 Quai des Chartrons, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/ibaiacafe\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5628312,44.8338158],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5628312,"lat":44.8338158},"gid":6,"libelle":"Les Marquises","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"12 Quai de la Monnaie, 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/lesmarquisesbordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5740299,44.8442471],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5740299,"lat":44.8442471},"gid":12,"libelle":"Agence TBM - Quinconces","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-05-30T15:44:44+00:00","adresse":"Cours du XXX Juillet, 33000 Bordeaux","complement_adresse":"Pavillon des Quinconces","ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5789235,44.8570481],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5789235,"lat":44.8570481},"gid":15,"libelle":"Salle des f\u00eates du Grand Parc","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:26:58+00:00","adresse":"39 Cours de Luze, 33300 Bordeaux","complement_adresse":null,"ouverture":["NUIT"],"url":"https:\/\/www.instagram.com\/sdfbgp\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5606548,44.8493872],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5606548,"lat":44.8493872},"gid":16,"libelle":"Darwin","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"87 Quai des Queyries, 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/darwin.camp\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5637732,44.8494448],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5637732,"lat":44.8494448},"gid":17,"libelle":"La belle saison","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"75 Quai des Queyries, 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/labellesaison.restaurant\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5652332,44.8323727],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5652332,"lat":44.8323727},"gid":20,"libelle":"Quartier libre","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-04-13T14:24:04+00:00","adresse":"30 Rue des Vignes, 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/quartier_libre_bdx\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5730557,44.8311859],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5730557,"lat":44.8311859},"gid":22,"libelle":"Station Tram - Victoire","cdate":"2022-04-13T14:24:04+00:00","mdate":"2022-05-30T15:45:07+00:00","adresse":"Place de la Victoire 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5586612,44.8646772],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5586612,"lat":44.8646772},"gid":63,"libelle":"Radisson Blu","cdate":"2022-05-16T08:39:48+00:00","mdate":"2022-05-16T08:39:48+00:00","adresse":"63 Rue Lucien Faure Dock G6, 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/radissonblubordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5727951,44.8511908],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5727951,"lat":44.8511908},"gid":62,"libelle":"Urban\u00a0Kustom Shop","cdate":"2022-05-16T08:36:13+00:00","mdate":"2022-05-16T08:36:13+00:00","adresse":"17 rue\u00a0Cornac, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/urbankustom.fr\/nous-contacter\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5738586,44.8383136],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5738586,"lat":44.8383136},"gid":65,"libelle":"La Ronde des quartiers","cdate":"2022-05-16T08:43:01+00:00","mdate":"2022-05-16T08:43:01+00:00","adresse":"102 rue Sainte Catherine, 1er \u00e9tage, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/la_ronde_des_quartiers\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5633309,44.8270967],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5633309,"lat":44.8270967},"gid":70,"libelle":"Rock School Barbey","cdate":"2022-05-16T09:07:55+00:00","mdate":"2022-05-16T09:07:55+00:00","adresse":"18 cours Barbey, 33800 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/rs_barbey\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5693203,44.8394481],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5693203,"lat":44.8394481},"gid":78,"libelle":"Le Bar Fondamental LBF","cdate":"2022-05-16T10:00:01+00:00","mdate":"2022-05-16T10:00:01+00:00","adresse":"9 Rue du Chai des Farines, 33000 Bordeaux","complement_adresse":null,"ouverture":["NUIT","JOUR"],"url":"https:\/\/www.facebook.com\/lebarfondamentalbordeaux\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5810147,44.8373636],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5810147,"lat":44.8373636},"gid":79,"libelle":"Mus\u00e9e des Beaux Arts","cdate":"2022-05-16T10:01:11+00:00","mdate":"2022-05-16T10:01:11+00:00","adresse":"20 cours d'Albret 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.musba-bordeaux.fr\/fr\/article\/acces-et-horaires"}},{"type":"Feature","geometry":{"coordinates":[-0.5803549,44.860489],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5803549,"lat":44.860489},"gid":113,"libelle":"GP IntenCit\u00e9 - Centre Social et Culturel Grand Parc","cdate":"2022-06-27T08:52:27+00:00","mdate":"2022-06-27T08:52:27+00:00","adresse":"44 Place de l'Europe, 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"http:\/\/gpinten6t.fr\/"}},{"type":"Feature","geometry":{"coordinates":[-0.6014977,44.8060512],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6014977,"lat":44.8060512},"gid":91,"libelle":"Agence TBM - Arts et m\u00e9tiers","cdate":"2022-06-01T12:00:17+00:00","mdate":"2022-06-01T12:21:50+00:00","adresse":"Avenue des facult\u00e9s, Talence","complement_adresse":"(Station hors Bordeaux mais rattach\u00e9e au dispositif par TBM)","ouverture":["JOUR","NUIT"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5243611,44.8642551],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5243611,"lat":44.8642551},"gid":92,"libelle":"Agence TBM - Buttini\u00e8re","cdate":"2022-06-01T12:29:14+00:00","mdate":"2022-06-01T12:29:14+00:00","adresse":"Parc relais de la Buttini\u00e8re 33310 Lormont","complement_adresse":"(Station hors Bordeaux mais rattach\u00e9e au dispositif par TBM)","ouverture":["JOUR","NUIT"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.556998,44.8407372],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.556998,"lat":44.8407372},"gid":171,"libelle":"Reine Cargo","cdate":"2022-12-09T16:47:27+00:00","mdate":"2022-12-09T16:47:27+00:00","adresse":"35 rue Montm\u00e9jean 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.reinecargo.fr\/contactez-nous\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5624675,44.8335577],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5624675,"lat":44.8335577},"gid":121,"libelle":"La Tencha","cdate":"2022-09-22T16:17:06+00:00","mdate":"2022-09-22T16:17:06+00:00","adresse":"22 Quai de la Monnaie, 33000 Bordeaux","complement_adresse":null,"ouverture":["NUIT"],"url":"https:\/\/www.instagram.com\/latenchabordeaux\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5422128,44.8445638],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5422128,"lat":44.8445638},"gid":133,"libelle":"Cabinet de kin\u00e9sith\u00e9rapie - V. Hotier","cdate":"2022-10-05T12:18:19+00:00","mdate":"2022-10-05T12:18:19+00:00","adresse":"8 Rue Alexander Fleming, 33100 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.doctolib.fr\/masseur-kinesitherapeute\/bordeaux\/valerie-hotier"}},{"type":"Feature","geometry":{"coordinates":[-0.567521,44.8373687],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.567521,"lat":44.8373687},"gid":136,"libelle":"Wash Bar","cdate":"2022-10-05T12:22:30+00:00","mdate":"2022-10-05T12:22:30+00:00","adresse":"39 Rue Ausone, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.instagram.com\/wash.bar.bdx\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5591483,44.8655315],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5591483,"lat":44.8655315},"gid":251,"libelle":"Le Joya","cdate":"2023-07-04T09:15:50+00:00","mdate":"2023-07-04T09:15:50+00:00","adresse":"97 Quai Lawton 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/joya-bar-restaurant-bordeaux.eatbu.com\/?lang=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5714114,44.8559184],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5714114,"lat":44.8559184},"gid":201,"libelle":"Librairie des Chartrons","cdate":"2023-04-17T08:27:07+00:00","mdate":"2023-04-17T08:29:56+00:00","adresse":"17 Cours Saint Louis, 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.facebook.com\/lalibrairiedeschartrons\/?locale=fr_FR"}},{"type":"Feature","geometry":{"coordinates":[-0.6106705,44.8004016],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6106705,"lat":44.8004016},"gid":202,"libelle":"Association Lysias Bordeaux","cdate":"2023-04-17T08:36:45+00:00","mdate":"2023-04-17T08:36:45+00:00","adresse":"16 avenue L\u00e9on Duguit, 33600 Pessac","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.facebook.com\/lysias.bordeaux.3?fref=ts"}},{"type":"Feature","geometry":{"coordinates":[-0.6202144,44.7945918],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6202144,"lat":44.7945918},"gid":203,"libelle":"CROUS Pessac","cdate":"2023-04-17T08:44:16+00:00","mdate":"2023-04-17T08:44:16+00:00","adresse":"9 Esplanade des Antilles, 33600 Pessac","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.crous-bordeaux.fr\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5715542,44.8306834],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5715542,"lat":44.8306834},"gid":205,"libelle":"Mairie de Quartier Bordeaux Sud","cdate":"2023-04-17T08:53:33+00:00","mdate":"2023-04-17T08:53:33+00:00","adresse":"6 Cours de la Marne, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.facebook.com\/BordeauxSud\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5519707,44.8649153],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5519707,"lat":44.8649153},"gid":224,"libelle":"H\u00f4tel Renaissance","cdate":"2023-05-05T11:59:15+00:00","mdate":"2023-05-05T11:59:15+00:00","adresse":"16 rue de Gironde 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.marriott.com\/en-us\/hotels\/bodbr-renaissance-bordeaux-hotel\/overview\/?scid=d2406702-e8ea-4b45-bb9b-69cddaaef03dv"}},{"type":"Feature","geometry":{"coordinates":[-0.5735282,44.8374912],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5735282,"lat":44.8374912},"gid":223,"libelle":"La Ruche","cdate":"2023-05-05T11:54:49+00:00","mdate":"2023-05-05T11:54:49+00:00","adresse":"98 cours d'Alsace et Lorraine","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/la-ruche.net\/"}},{"type":"Feature","geometry":{"coordinates":[-0.581582,44.8587267],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.581582,"lat":44.8587267},"gid":231,"libelle":"Mairie de quartier Chartrons Grand Parc Jardin public","cdate":"2023-05-09T14:45:05+00:00","mdate":"2023-05-09T14:45:05+00:00","adresse":"Pl. de l'Europe 33300 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.bordeaux.fr\/o1933\/mairie-de-quartier-chartrons-grand-parc-jardin-public"}},{"type":"Feature","geometry":{"coordinates":[-0.581341,44.8363245],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.581341,"lat":44.8363245},"gid":209,"libelle":"Station Tram - Palais de Justice","cdate":"2023-04-18T08:34:54+00:00","mdate":"2023-04-18T08:34:54+00:00","adresse":"Cr Mar\u00e9chal Juin, 33000","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.6173944,44.7968278],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6173944,"lat":44.7968278},"gid":211,"libelle":"Station Tram - Montaigne-Montesquieu","cdate":"2023-04-18T08:39:04+00:00","mdate":"2023-04-18T08:39:04+00:00","adresse":"Campus Montaigne-Montesquieu, Universit\u00e9 de Bordeaux, 33600 Pessac","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.6023117,44.8059567],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6023117,"lat":44.8059567},"gid":212,"libelle":"Station Tram - Arts-et-M\u00e9tiers","cdate":"2023-04-18T08:42:53+00:00","mdate":"2023-04-18T08:42:53+00:00","adresse":"Avenue des Facult\u00e9s, 33400 Talence","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html"}},{"type":"Feature","geometry":{"coordinates":[-0.5680831,44.8377583],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5680831,"lat":44.8377583},"gid":245,"libelle":"The Frog & Rosbif","cdate":"2023-06-01T08:59:34+00:00","mdate":"2023-06-01T08:59:41+00:00","adresse":"23 rue Ausone 33000","complement_adresse":null,"ouverture":["NUIT","JOUR"],"url":"https:\/\/www.frogpubs.com\/pub-the-frog-rosbif-bordeaux-bordeaux-7.php"}},{"type":"Feature","geometry":{"coordinates":[-0.6013496,44.8207727],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.6013496,"lat":44.8207727},"gid":271,"libelle":"Maison de quartier Le Tauzin","cdate":"2024-06-26T16:11:36+00:00","mdate":"2024-06-26T16:11:36+00:00","adresse":"50 rue du Tauzin, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR"],"url":"https:\/\/www.letauzin.com\/contacts-et-infos\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5619525,44.8605286],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5619525,"lat":44.8605286},"gid":273,"libelle":"Glob Th\u00e9\u00e2tre","cdate":"2024-06-26T16:15:43+00:00","mdate":"2024-06-26T16:15:43+00:00","adresse":"69 Rue Jos\u00e9phine, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/globtheatre\/?hl=fr"}},{"type":"Feature","geometry":{"coordinates":[-0.5648412,44.8350282],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5648412,"lat":44.8350282},"gid":291,"libelle":"Restaurant Le Repas Pour Geek","cdate":"2024-08-19T14:11:32+00:00","mdate":"2024-08-19T14:11:32+00:00","adresse":"51 rue de la Fustrerie, 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/repaspourgeek\/"}},{"type":"Feature","geometry":{"coordinates":[-0.5707166,44.8436878],"type":"Point"},"properties":{"geo_point_2d":{"lon":-0.5707166,"lat":44.8436878},"gid":295,"libelle":"Bar ROCKWOOD (Vintage group)","cdate":"2024-08-19T14:20:44+00:00","mdate":"2024-08-19T14:20:44+00:00","adresse":"4 quai Louis XVIII 33000 Bordeaux","complement_adresse":null,"ouverture":["JOUR","NUIT"],"url":"https:\/\/www.instagram.com\/rockwood_bordeaux\/"}}]} \ No newline at end of file +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5735616, + 44.8409452 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5735616, + "lat": 44.8409452 + }, + "gid": 141, + "libelle": "Bistrot des frerots", + "cdate": "2022-10-13T14:59:22+00:00", + "mdate": "2022-10-13T14:59:22+00:00", + "adresse": "23 Rue Piliers de Tutelle, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/le_bistrot_des_frerots\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5722978, + 44.8304299 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5722978, + "lat": 44.8304299 + }, + "gid": 2, + "libelle": "The Grizzly Pub", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "12 Place de la Victoire, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/thegrizzlypubbordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5556395, + 44.8638219 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5556395, + "lat": 44.8638219 + }, + "gid": 3, + "libelle": "La Dame", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "1 Quai Armand Lalande, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/ladamebordeauxclub\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5694848, + 44.8352087 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5694848, + "lat": 44.8352087 + }, + "gid": 5, + "libelle": "Minus", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "72 Cours Victor Hugo, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/minus_pub_bdx\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5591104, + 44.8659365 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5591104, + "lat": 44.8659365 + }, + "gid": 7, + "libelle": "Iboat", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:26:57+00:00", + "adresse": "Cr Henri Brunet, 33300 Bordeaux", + "complement_adresse": "Bassin \u00e0 Flot n\u00b01", + "ouverture": [ + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/iboatbordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5756251, + 44.838356 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5756251, + "lat": 44.838356 + }, + "gid": 8, + "libelle": "Magnus", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "32 Rue de Cheverus, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/magnus_pub\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5726795, + 44.8321484 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5726795, + "lat": 44.8321484 + }, + "gid": 10, + "libelle": "HMS Victory Pub", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:26:57+00:00", + "adresse": "3 Place G\u00e9n\u00e9ral Sarrail, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/hmsvictorybdx\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5604755, + 44.8517462 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5604755, + "lat": 44.8517462 + }, + "gid": 18, + "libelle": "Les Chantiers de la Garonne", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "21 Quai de Queyries, 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/chantiersdelagaronne\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5562446, + 44.8606668 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5562446, + "lat": 44.8606668 + }, + "gid": 19, + "libelle": "Theatro", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:26:58+00:00", + "adresse": "24 Rue de la Fa\u00efencerie, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/theatro_bordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.566412, + 44.8372015 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.566412, + "lat": 44.8372015 + }, + "gid": 21, + "libelle": "Station Tram - Porte de Bourgogne", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-05-30T15:44:56+00:00", + "adresse": "Pl. de Bir Hakeim, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5693176, + 44.8358315 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5693176, + "lat": 44.8358315 + }, + "gid": 61, + "libelle": "Au nouveau monde", + "cdate": "2022-05-16T08:33:04+00:00", + "mdate": "2022-05-16T08:33:04+00:00", + "adresse": "2 Rue des Boucheries, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/aunouveaumonde.fr\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5513039, + 44.8632694 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5513039, + "lat": 44.8632694 + }, + "gid": 64, + "libelle": "Les Halles de Bacalan", + "cdate": "2022-05-16T08:41:26+00:00", + "mdate": "2022-05-16T08:41:26+00:00", + "adresse": "10, esplanade de Pontac, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/hallesdebacalan\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5956649, + 44.8438851 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5956649, + "lat": 44.8438851 + }, + "gid": 67, + "libelle": "CSAPA Addiction France", + "cdate": "2022-05-16T08:48:29+00:00", + "mdate": "2022-05-16T08:48:29+00:00", + "adresse": "67 Rue Chevalier, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/addictions-france.org\/etablissements\/csapa-de-bordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5567622, + 44.8599395 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5567622, + "lat": 44.8599395 + }, + "gid": 68, + "libelle": "Hydrophobie", + "cdate": "2022-05-16T08:51:50+00:00", + "mdate": "2022-05-16T08:51:50+00:00", + "adresse": "16bis Rue Bourbon, 33300 Bordeaux", + "complement_adresse": "Bar et brasserie", + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/hydrophobie.brewpub\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5743092, + 44.8436664 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5743092, + "lat": 44.8436664 + }, + "gid": 74, + "libelle": "Office de Tourisme", + "cdate": "2022-05-16T09:43:21+00:00", + "mdate": "2022-05-16T09:43:21+00:00", + "adresse": "12 Cr du XXX Juillet, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux-tourisme.com\/informations-pratiques\/qui-sommes-nous" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5739042, + 44.8386464 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5739042, + "lat": 44.8386464 + }, + "gid": 75, + "libelle": "Andr\u00e9 (magasin Saint Projet)", + "cdate": "2022-05-16T09:48:04+00:00", + "mdate": "2022-05-16T09:48:04+00:00", + "adresse": "90, rue Sainte-Catherine 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.andre.fr\/andre-bordeaux-saint-projet.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.559152, + 44.8448293 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.559152, + "lat": 44.8448293 + }, + "gid": 76, + "libelle": "Jardin Botanique", + "cdate": "2022-05-16T09:52:07+00:00", + "mdate": "2022-05-16T09:56:31+00:00", + "adresse": "Esp. Linn\u00e9, 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/jardin_botanique_de_bordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5675862, + 44.8335105 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5675862, + "lat": 44.8335105 + }, + "gid": 101, + "libelle": "Association Bordeaux Rock", + "cdate": "2022-06-10T09:40:01+00:00", + "mdate": "2022-06-10T09:40:01+00:00", + "adresse": "39, rue des Menuts 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/bordeaux.rock.asso\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5775922, + 44.8393112 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5775922, + "lat": 44.8393112 + }, + "gid": 112, + "libelle": "Jaken Kraft Beer", + "cdate": "2022-06-27T08:48:12+00:00", + "mdate": "2022-06-27T08:48:12+00:00", + "adresse": "5 Rue Beaubadat 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/jaqencraftbeer\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.523888, + 44.8623065 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.523888, + "lat": 44.8623065 + }, + "gid": 152, + "libelle": "Le Rocher de Palmer", + "cdate": "2022-11-07T12:15:20+00:00", + "mdate": "2022-11-07T12:15:20+00:00", + "adresse": "1 Rue Aristide Briand, 33152 Cenon", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/lerocherdepalmer.fr\/pratique\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5841315, + 44.8577673 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5841315, + "lat": 44.8577673 + }, + "gid": 161, + "libelle": "Biblioth\u00e8que Grand Parc", + "cdate": "2022-12-05T10:20:17+00:00", + "mdate": "2022-12-05T10:20:17+00:00", + "adresse": "34 rue Pierre Trebod 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/mediatheques.bordeaux-metropole.fr\/bibliotheque\/bibliotheque-grand-parc-bordeaux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.57655, + 44.8391365 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.57655, + "lat": 44.8391365 + }, + "gid": 162, + "libelle": "Mairie de quartier Centre ville", + "cdate": "2022-12-05T10:28:23+00:00", + "mdate": "2022-12-05T10:28:23+00:00", + "adresse": "Mairie de quartier Centre ville - 19 rue P\u00e8re Louis de Jabrun - 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux.fr\/o20863\/mairie-du-quartier-bordeaux-centre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.575064, + 44.8355719 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.575064, + "lat": 44.8355719 + }, + "gid": 163, + "libelle": "Mus\u00e9e d'Aquitaine", + "cdate": "2022-12-05T10:31:01+00:00", + "mdate": "2022-12-05T10:31:01+00:00", + "adresse": "20 cours Pasteur 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.musee-aquitaine-bordeaux.fr\/fr\/article\/horaires-et-tarifs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5531317, + 44.8419315 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5531317, + "lat": 44.8419315 + }, + "gid": 181, + "libelle": "Mairie de quartier La Bastide", + "cdate": "2022-12-20T15:30:20+00:00", + "mdate": "2022-12-20T15:30:20+00:00", + "adresse": "38 rue de Nuits 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux.fr\/o19826\/mairie-de-quartier-la-bastide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5462823, + 44.8731416 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5462823, + "lat": 44.8731416 + }, + "gid": 182, + "libelle": "Mairie de quartier Bordeaux Maritime", + "cdate": "2022-12-20T15:36:34+00:00", + "mdate": "2022-12-20T15:36:34+00:00", + "adresse": "196, rue Achard 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux.fr\/o1935\/mairie-de-quartier-bordeaux-maritime" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6114131, + 44.8326185 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6114131, + "lat": 44.8326185 + }, + "gid": 191, + "libelle": "Mairie de quartier Saint Augustin Tauzin Alphonse Dupeux", + "cdate": "2023-01-09T11:01:55+00:00", + "mdate": "2023-03-20T11:02:20+00:00", + "adresse": "18, place de l'Eglise Saint-Augustin 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux.fr\/o2312\/mairie-de-quartier-saint-augustin-tauzin-alphonse-dupeux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5798595, + 44.844798 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5798595, + "lat": 44.844798 + }, + "gid": 135, + "libelle": "Nekomata \u2013 Caf\u00e9 \u00e0 Chats", + "cdate": "2022-10-05T12:21:18+00:00", + "mdate": "2022-10-05T12:21:18+00:00", + "adresse": "40 Rue Lafaurie de Monbadon, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/nekomata.cafe\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.557646, + 44.8645116 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.557646, + "lat": 44.8645116 + }, + "gid": 252, + "libelle": "Le Jade", + "cdate": "2023-07-04T09:19:03+00:00", + "mdate": "2023-07-04T09:19:03+00:00", + "adresse": "61 Quai Lawton 33300", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.thefork.fr\/restaurant\/jade-r743518\/menu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5856315, + 44.8385166 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5856315, + "lat": 44.8385166 + }, + "gid": 255, + "libelle": "Auchan M\u00e9riadeck", + "cdate": "2023-07-04T09:25:35+00:00", + "mdate": "2023-07-04T09:25:35+00:00", + "adresse": "57 rue du Ch\u00e2teau d'eau 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.auchan.fr\/magasins\/hypermarche\/bordeaux-meriadeck\/s-29" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5848221, + 44.8383164 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5848221, + "lat": 44.8383164 + }, + "gid": 256, + "libelle": "KFC M\u00e9riadeck", + "cdate": "2023-07-04T09:27:29+00:00", + "mdate": "2023-07-04T09:27:29+00:00", + "adresse": "57 rue du Ch\u00e2teau d'eau 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.meriadeck.com\/boutiques-restaurants\/kfc\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5576868, + 44.8275319 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5576868, + "lat": 44.8275319 + }, + "gid": 262, + "libelle": "L'imp\u00e9ratrice", + "cdate": "2023-09-15T13:06:16+00:00", + "mdate": "2023-09-15T13:06:16+00:00", + "adresse": "226 cours de la Marne 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/limperatricebdx\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5665758, + 44.8360733 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5665758, + "lat": 44.8360733 + }, + "gid": 264, + "libelle": "Adiu", + "cdate": "2023-09-15T13:11:09+00:00", + "mdate": "2023-09-15T13:11:09+00:00", + "adresse": "8 cours Victor Hugo 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/adiu.bordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5799984, + 44.8484732 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5799984, + "lat": 44.8484732 + }, + "gid": 204, + "libelle": "Mus\u00e9um de Bordeaux Sciences et nature", + "cdate": "2023-04-17T08:47:32+00:00", + "mdate": "2023-04-17T08:47:32+00:00", + "adresse": "5 place Bardineau, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.museum-bordeaux.fr\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5740246, + 44.8445541 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5740246, + "lat": 44.8445541 + }, + "gid": 206, + "libelle": "Station Tram - Quinconces", + "cdate": "2023-04-18T08:27:40+00:00", + "mdate": "2023-04-18T08:27:40+00:00", + "adresse": "Place des Quinconces, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5532423, + 44.8606628 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5532423, + "lat": 44.8606628 + }, + "gid": 207, + "libelle": "Station Tram - La Cit\u00e9 du Vin", + "cdate": "2023-04-18T08:31:01+00:00", + "mdate": "2023-04-18T08:31:01+00:00", + "adresse": "Quai Bacalan, 33300", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5588664, + 44.8578973 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5588664, + "lat": 44.8578973 + }, + "gid": 208, + "libelle": "Station Tram - Les Hangars", + "cdate": "2023-04-18T08:32:27+00:00", + "mdate": "2023-04-18T08:32:27+00:00", + "adresse": "Quai Bacalan, 33300", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5567765, + 44.8259227 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5567765, + "lat": 44.8259227 + }, + "gid": 213, + "libelle": "Station Tram - Gare Saint-Jean", + "cdate": "2023-04-18T08:44:54+00:00", + "mdate": "2023-04-18T08:44:54+00:00", + "adresse": "Parvis Gare Saint-Jean", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5594146, + 44.8313561 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5594146, + "lat": 44.8313561 + }, + "gid": 241, + "libelle": "Conservatoire Jacques Thibaud", + "cdate": "2023-06-01T08:42:37+00:00", + "mdate": "2023-06-01T08:42:37+00:00", + "adresse": "22 quai Sainte-Croix 33800", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/conservatoire.bordeaux.fr\/fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5716412, + 44.820485 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5716412, + "lat": 44.820485 + }, + "gid": 242, + "libelle": "Mairie de Quartier Nansouty Saint Gen\u00e8s", + "cdate": "2023-06-01T08:45:26+00:00", + "mdate": "2023-06-01T08:45:26+00:00", + "adresse": "250 rue Malbec 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux.fr\/o2310\/mairie-de-quartier-nansouty-saint-genes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5508833, + 44.8642017 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5508833, + "lat": 44.8642017 + }, + "gid": 243, + "libelle": "Whoo Bordeaux Bacalan", + "cdate": "2023-06-01T08:51:42+00:00", + "mdate": "2023-06-01T08:51:42+00:00", + "adresse": "12 rue de Gironde 33300", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.whoostay.com\/fr\/residence\/bordeaux-bacalan\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5591306, + 44.827518 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5591306, + "lat": 44.827518 + }, + "gid": 244, + "libelle": "SPAR supermarch\u00e9", + "cdate": "2023-06-01T08:55:43+00:00", + "mdate": "2023-06-01T08:55:43+00:00", + "adresse": "211 cours de la Marne 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/magasins.spar.fr\/fr\/spar-supermarche-bordeaux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5741298, + 44.8405319 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5741298, + "lat": 44.8405319 + }, + "gid": 272, + "libelle": "Quality Hotel Bordeaux centre", + "cdate": "2024-06-26T16:13:51+00:00", + "mdate": "2024-06-26T16:13:51+00:00", + "adresse": "27 rue du Parlement Ste Catherine, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.choicehotels.com\/fr-fr\/france\/bordeaux\/quality-inn-hotels\/fr160" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.556809, + 44.8587862 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.556809, + "lat": 44.8587862 + }, + "gid": 293, + "libelle": "INSEEC \/ OMNES Education", + "cdate": "2024-08-19T14:18:37+00:00", + "mdate": "2024-08-19T14:18:37+00:00", + "adresse": "Hangar 18 - Quai de Bacalan - 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.inseec.com\/campus-5\/bordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5637981, + 44.8346173 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5637981, + "lat": 44.8346173 + }, + "gid": 9, + "libelle": "La Taupini\u00e8re", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:26:57+00:00", + "adresse": "9 Quai de la Monnaie, 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.facebook.com\/la.taupiniere.bx\/about\/?ref=page_internal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5730133, + 44.840626 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5730133, + "lat": 44.840626 + }, + "gid": 11, + "libelle": "The Houses Of Parliament", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "11 Rue Parlement Sainte-Catherine, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/housesofparliamentbdx\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5565619, + 44.8251443 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5565619, + "lat": 44.8251443 + }, + "gid": 14, + "libelle": "Agence TBM - Gare Saint-Jean", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-05-30T15:45:29+00:00", + "adresse": "Gare Saint-Jean, 33380 Bordeaux", + "complement_adresse": "Cour d'arriv\u00e9e - Parvis Sud", + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.570994, + 44.8326954 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.570994, + "lat": 44.8326954 + }, + "gid": 41, + "libelle": "Holy Cut - Salon de coiffure", + "cdate": "2022-05-02T09:44:15+00:00", + "mdate": "2022-05-02T09:45:45+00:00", + "adresse": "59 rue du Mirail 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/holycut.bordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5635213, + 44.8826016 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5635213, + "lat": 44.8826016 + }, + "gid": 66, + "libelle": "Centre commercial Bordeaux Lac", + "cdate": "2022-05-16T08:46:54+00:00", + "mdate": "2022-05-16T08:46:54+00:00", + "adresse": "1 Av. des 40 Journaux, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/ccbordeauxlac\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5819749, + 44.8396316 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5819749, + "lat": 44.8396316 + }, + "gid": 71, + "libelle": "Lila and the Barber", + "cdate": "2022-05-16T09:09:00+00:00", + "mdate": "2022-05-16T09:09:00+00:00", + "adresse": "14 rue saint sernin", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/lilaandthebarber" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5797675, + 44.839236 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5797675, + "lat": 44.839236 + }, + "gid": 77, + "libelle": "Maison Julien", + "cdate": "2022-05-16T09:57:46+00:00", + "mdate": "2022-05-16T09:57:46+00:00", + "adresse": "35 rue Bouffard 33000 Bordeaux", + "complement_adresse": "Bar \u00e0 vins - \u00e9picerie fine", + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/maisonjulien.bordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5570411, + 44.8245447 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5570411, + "lat": 44.8245447 + }, + "gid": 81, + "libelle": "Service des objets trouv\u00e9s TBM - Gare Saint-Jean", + "cdate": "2022-05-17T15:11:03+00:00", + "mdate": "2022-05-30T15:45:24+00:00", + "adresse": "Gare Saint-Jean 33380 Bordeaux", + "complement_adresse": "Cour d'arriv\u00e9e - Parvis Sud", + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6155586, + 44.8522696 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6155586, + "lat": 44.8522696 + }, + "gid": 151, + "libelle": "Mairie de quartier de Caud\u00e9ran", + "cdate": "2022-11-07T12:09:27+00:00", + "mdate": "2022-11-07T12:09:27+00:00", + "adresse": "130 avenue Louis Barthou - 33200 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux.fr\/o1932\/mairie-de-quartier-cauderan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5800382, + 44.8478627 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5800382, + "lat": 44.8478627 + }, + "gid": 172, + "libelle": "Biblioth\u00e8que du Jardin public", + "cdate": "2022-12-09T16:49:28+00:00", + "mdate": "2022-12-09T16:49:28+00:00", + "adresse": "Terrasse du Jardin Public, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/mediatheques.bordeaux-metropole.fr\/bibliotheque\/bibliotheque-jardin-public-bordeaux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5758423, + 44.8374919 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5758423, + "lat": 44.8374919 + }, + "gid": 131, + "libelle": "Info Jeunes Nouvelle-Aquitaine", + "cdate": "2022-10-05T12:11:52+00:00", + "mdate": "2022-10-05T12:11:52+00:00", + "adresse": "125 Cr d'Alsace-et-Lorraine, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.jeuneabordeaux.fr\/le-crij" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5648772, + 44.8268266 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5648772, + "lat": 44.8268266 + }, + "gid": 132, + "libelle": "Le Petit Grain \/ Yakafaucon", + "cdate": "2022-10-05T12:15:16+00:00", + "mdate": "2022-10-05T12:15:16+00:00", + "adresse": "3 Pl. Pierre Jacques Dormoy, 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/lepetitgrainparis\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5833729, + 44.8389002 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5833729, + "lat": 44.8389002 + }, + "gid": 253, + "libelle": "Centre commercial M\u00e9riadeck", + "cdate": "2023-07-04T09:20:39+00:00", + "mdate": "2023-07-04T09:20:39+00:00", + "adresse": "57 rue du Ch\u00e2teau d'eau 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.meriadeck.com\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5841299, + 44.8391132 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5841299, + "lat": 44.8391132 + }, + "gid": 254, + "libelle": "Centre dentaire M\u00e9riadeck", + "cdate": "2023-07-04T09:24:15+00:00", + "mdate": "2023-07-04T09:24:15+00:00", + "adresse": "57 rue du Ch\u00e2teau d'eau 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/centre-dentaire-bordeaux-meriadeck.fr\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5840127, + 44.838577 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5840127, + "lat": 44.838577 + }, + "gid": 257, + "libelle": "Sostrene Grene M\u00e9riadeck", + "cdate": "2023-07-04T09:29:10+00:00", + "mdate": "2023-07-04T09:29:10+00:00", + "adresse": "57 rue du Ch\u00e2teau d'eau", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/sostrenegrene.com\/fr\/magasins\/meriadeck-bordeaux-s-4015" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5701906, + 44.8365997 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5701906, + "lat": 44.8365997 + }, + "gid": 261, + "libelle": "Le Girofard, Centre LGBTI+ Bordeaux", + "cdate": "2023-09-15T13:04:32+00:00", + "mdate": "2023-09-15T13:04:32+00:00", + "adresse": "34 rue Bouqui\u00e8re 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.le-girofard.org\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5518905, + 44.8640881 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5518905, + "lat": 44.8640881 + }, + "gid": 263, + "libelle": "H\u00f4tel Moxy", + "cdate": "2023-09-15T13:09:42+00:00", + "mdate": "2023-09-15T13:09:42+00:00", + "adresse": "25 Quai du Maroc, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/moxybordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5598834, + 44.8402139 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5598834, + "lat": 44.8402139 + }, + "gid": 210, + "libelle": "Station Tram - Stalingrad", + "cdate": "2023-04-18T08:36:28+00:00", + "mdate": "2023-04-18T08:36:28+00:00", + "adresse": "Place de Stalingrad, 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.569303, + 44.8329906 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.569303, + "lat": 44.8329906 + }, + "gid": 246, + "libelle": "Einstein on the beach", + "cdate": "2023-06-01T09:04:04+00:00", + "mdate": "2023-06-01T09:04:04+00:00", + "adresse": "8 rue Bergeret 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/einsteinonthebeach.net\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5696241, + 44.8340804 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5696241, + "lat": 44.8340804 + }, + "gid": 292, + "libelle": "CIAM Ecole de Musiques Actuelles", + "cdate": "2024-08-19T14:12:40+00:00", + "mdate": "2024-08-19T14:12:40+00:00", + "adresse": "35 rue Leyteire 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/ciambordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5735252, + 44.8412446 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5735252, + "lat": 44.8412446 + }, + "gid": 294, + "libelle": "Caf\u00e9 Brazza", + "cdate": "2024-08-19T14:19:42+00:00", + "mdate": "2024-08-19T14:19:42+00:00", + "adresse": "61 rue Saint R\u00e9mi, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/cafebrazzabordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.563588, + 44.8343983 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.563588, + "lat": 44.8343983 + }, + "gid": 296, + "libelle": "AU TOUCAN FRINGANT (Vintage group)", + "cdate": "2024-08-19T14:21:49+00:00", + "mdate": "2024-08-19T14:21:49+00:00", + "adresse": "6 quai de la Monnaie 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/au_toucan_fringant_bordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5617463, + 44.8672635 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5617463, + "lat": 44.8672635 + }, + "gid": 297, + "libelle": "DELIRIUM CAFE (Vintage group)", + "cdate": "2024-08-19T14:23:01+00:00", + "mdate": "2024-08-19T14:23:01+00:00", + "adresse": "30 quai Virginie Heriot 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/deliriumcafebordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5620005, + 44.8506718 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5620005, + "lat": 44.8506718 + }, + "gid": 1, + "libelle": "Guinguette Chez Alriq", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "Quai des Queyries, 33100 Bordeaux", + "complement_adresse": "ZA Quai des Queyries - Port Bastide", + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/laguinguettechezalriq\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5694945, + 44.8498658 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5694945, + "lat": 44.8498658 + }, + "gid": 4, + "libelle": "Ibaia", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "24 Quai des Chartrons, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/ibaiacafe\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5628312, + 44.8338158 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5628312, + "lat": 44.8338158 + }, + "gid": 6, + "libelle": "Les Marquises", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "12 Quai de la Monnaie, 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/lesmarquisesbordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5740299, + 44.8442471 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5740299, + "lat": 44.8442471 + }, + "gid": 12, + "libelle": "Agence TBM - Quinconces", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-05-30T15:44:44+00:00", + "adresse": "Cours du XXX Juillet, 33000 Bordeaux", + "complement_adresse": "Pavillon des Quinconces", + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5789235, + 44.8570481 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5789235, + "lat": 44.8570481 + }, + "gid": 15, + "libelle": "Salle des f\u00eates du Grand Parc", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:26:58+00:00", + "adresse": "39 Cours de Luze, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/sdfbgp\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5606548, + 44.8493872 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5606548, + "lat": 44.8493872 + }, + "gid": 16, + "libelle": "Darwin", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "87 Quai des Queyries, 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/darwin.camp\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5637732, + 44.8494448 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5637732, + "lat": 44.8494448 + }, + "gid": 17, + "libelle": "La belle saison", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "75 Quai des Queyries, 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/labellesaison.restaurant\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5652332, + 44.8323727 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5652332, + "lat": 44.8323727 + }, + "gid": 20, + "libelle": "Quartier libre", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-04-13T14:24:04+00:00", + "adresse": "30 Rue des Vignes, 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/quartier_libre_bdx\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5730557, + 44.8311859 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5730557, + "lat": 44.8311859 + }, + "gid": 22, + "libelle": "Station Tram - Victoire", + "cdate": "2022-04-13T14:24:04+00:00", + "mdate": "2022-05-30T15:45:07+00:00", + "adresse": "Place de la Victoire 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5586612, + 44.8646772 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5586612, + "lat": 44.8646772 + }, + "gid": 63, + "libelle": "Radisson Blu", + "cdate": "2022-05-16T08:39:48+00:00", + "mdate": "2022-05-16T08:39:48+00:00", + "adresse": "63 Rue Lucien Faure Dock G6, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/radissonblubordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5727951, + 44.8511908 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5727951, + "lat": 44.8511908 + }, + "gid": 62, + "libelle": "Urban\u00a0Kustom Shop", + "cdate": "2022-05-16T08:36:13+00:00", + "mdate": "2022-05-16T08:36:13+00:00", + "adresse": "17 rue\u00a0Cornac, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/urbankustom.fr\/nous-contacter\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5738586, + 44.8383136 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5738586, + "lat": 44.8383136 + }, + "gid": 65, + "libelle": "La Ronde des quartiers", + "cdate": "2022-05-16T08:43:01+00:00", + "mdate": "2022-05-16T08:43:01+00:00", + "adresse": "102 rue Sainte Catherine, 1er \u00e9tage, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/la_ronde_des_quartiers\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5633309, + 44.8270967 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5633309, + "lat": 44.8270967 + }, + "gid": 70, + "libelle": "Rock School Barbey", + "cdate": "2022-05-16T09:07:55+00:00", + "mdate": "2022-05-16T09:07:55+00:00", + "adresse": "18 cours Barbey, 33800 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/rs_barbey\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5693203, + 44.8394481 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5693203, + "lat": 44.8394481 + }, + "gid": 78, + "libelle": "Le Bar Fondamental LBF", + "cdate": "2022-05-16T10:00:01+00:00", + "mdate": "2022-05-16T10:00:01+00:00", + "adresse": "9 Rue du Chai des Farines, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "NUIT", + "JOUR" + ], + "url": "https:\/\/www.facebook.com\/lebarfondamentalbordeaux\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5810147, + 44.8373636 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5810147, + "lat": 44.8373636 + }, + "gid": 79, + "libelle": "Mus\u00e9e des Beaux Arts", + "cdate": "2022-05-16T10:01:11+00:00", + "mdate": "2022-05-16T10:01:11+00:00", + "adresse": "20 cours d'Albret 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.musba-bordeaux.fr\/fr\/article\/acces-et-horaires" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5803549, + 44.860489 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5803549, + "lat": 44.860489 + }, + "gid": 113, + "libelle": "GP IntenCit\u00e9 - Centre Social et Culturel Grand Parc", + "cdate": "2022-06-27T08:52:27+00:00", + "mdate": "2022-06-27T08:52:27+00:00", + "adresse": "44 Place de l'Europe, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "http:\/\/gpinten6t.fr\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6014977, + 44.8060512 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6014977, + "lat": 44.8060512 + }, + "gid": 91, + "libelle": "Agence TBM - Arts et m\u00e9tiers", + "cdate": "2022-06-01T12:00:17+00:00", + "mdate": "2022-06-01T12:21:50+00:00", + "adresse": "Avenue des facult\u00e9s, Talence", + "complement_adresse": "(Station hors Bordeaux mais rattach\u00e9e au dispositif par TBM)", + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5243611, + 44.8642551 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5243611, + "lat": 44.8642551 + }, + "gid": 92, + "libelle": "Agence TBM - Buttini\u00e8re", + "cdate": "2022-06-01T12:29:14+00:00", + "mdate": "2022-06-01T12:29:14+00:00", + "adresse": "Parc relais de la Buttini\u00e8re 33310 Lormont", + "complement_adresse": "(Station hors Bordeaux mais rattach\u00e9e au dispositif par TBM)", + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.556998, + 44.8407372 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.556998, + "lat": 44.8407372 + }, + "gid": 171, + "libelle": "Reine Cargo", + "cdate": "2022-12-09T16:47:27+00:00", + "mdate": "2022-12-09T16:47:27+00:00", + "adresse": "35 rue Montm\u00e9jean 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.reinecargo.fr\/contactez-nous\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5624675, + 44.8335577 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5624675, + "lat": 44.8335577 + }, + "gid": 121, + "libelle": "La Tencha", + "cdate": "2022-09-22T16:17:06+00:00", + "mdate": "2022-09-22T16:17:06+00:00", + "adresse": "22 Quai de la Monnaie, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/latenchabordeaux\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5422128, + 44.8445638 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5422128, + "lat": 44.8445638 + }, + "gid": 133, + "libelle": "Cabinet de kin\u00e9sith\u00e9rapie - V. Hotier", + "cdate": "2022-10-05T12:18:19+00:00", + "mdate": "2022-10-05T12:18:19+00:00", + "adresse": "8 Rue Alexander Fleming, 33100 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.doctolib.fr\/masseur-kinesitherapeute\/bordeaux\/valerie-hotier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.567521, + 44.8373687 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.567521, + "lat": 44.8373687 + }, + "gid": 136, + "libelle": "Wash Bar", + "cdate": "2022-10-05T12:22:30+00:00", + "mdate": "2022-10-05T12:22:30+00:00", + "adresse": "39 Rue Ausone, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.instagram.com\/wash.bar.bdx\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5591483, + 44.8655315 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5591483, + "lat": 44.8655315 + }, + "gid": 251, + "libelle": "Le Joya", + "cdate": "2023-07-04T09:15:50+00:00", + "mdate": "2023-07-04T09:15:50+00:00", + "adresse": "97 Quai Lawton 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/joya-bar-restaurant-bordeaux.eatbu.com\/?lang=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5714114, + 44.8559184 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5714114, + "lat": 44.8559184 + }, + "gid": 201, + "libelle": "Librairie des Chartrons", + "cdate": "2023-04-17T08:27:07+00:00", + "mdate": "2023-04-17T08:29:56+00:00", + "adresse": "17 Cours Saint Louis, 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.facebook.com\/lalibrairiedeschartrons\/?locale=fr_FR" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6106705, + 44.8004016 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6106705, + "lat": 44.8004016 + }, + "gid": 202, + "libelle": "Association Lysias Bordeaux", + "cdate": "2023-04-17T08:36:45+00:00", + "mdate": "2023-04-17T08:36:45+00:00", + "adresse": "16 avenue L\u00e9on Duguit, 33600 Pessac", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.facebook.com\/lysias.bordeaux.3?fref=ts" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6202144, + 44.7945918 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6202144, + "lat": 44.7945918 + }, + "gid": 203, + "libelle": "CROUS Pessac", + "cdate": "2023-04-17T08:44:16+00:00", + "mdate": "2023-04-17T08:44:16+00:00", + "adresse": "9 Esplanade des Antilles, 33600 Pessac", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.crous-bordeaux.fr\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5715542, + 44.8306834 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5715542, + "lat": 44.8306834 + }, + "gid": 205, + "libelle": "Mairie de Quartier Bordeaux Sud", + "cdate": "2023-04-17T08:53:33+00:00", + "mdate": "2023-04-17T08:53:33+00:00", + "adresse": "6 Cours de la Marne, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.facebook.com\/BordeauxSud\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5519707, + 44.8649153 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5519707, + "lat": 44.8649153 + }, + "gid": 224, + "libelle": "H\u00f4tel Renaissance", + "cdate": "2023-05-05T11:59:15+00:00", + "mdate": "2023-05-05T11:59:15+00:00", + "adresse": "16 rue de Gironde 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.marriott.com\/en-us\/hotels\/bodbr-renaissance-bordeaux-hotel\/overview\/?scid=d2406702-e8ea-4b45-bb9b-69cddaaef03dv" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5735282, + 44.8374912 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5735282, + "lat": 44.8374912 + }, + "gid": 223, + "libelle": "La Ruche", + "cdate": "2023-05-05T11:54:49+00:00", + "mdate": "2023-05-05T11:54:49+00:00", + "adresse": "98 cours d'Alsace et Lorraine", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/la-ruche.net\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.581582, + 44.8587267 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.581582, + "lat": 44.8587267 + }, + "gid": 231, + "libelle": "Mairie de quartier Chartrons Grand Parc Jardin public", + "cdate": "2023-05-09T14:45:05+00:00", + "mdate": "2023-05-09T14:45:05+00:00", + "adresse": "Pl. de l'Europe 33300 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.bordeaux.fr\/o1933\/mairie-de-quartier-chartrons-grand-parc-jardin-public" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.581341, + 44.8363245 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.581341, + "lat": 44.8363245 + }, + "gid": 209, + "libelle": "Station Tram - Palais de Justice", + "cdate": "2023-04-18T08:34:54+00:00", + "mdate": "2023-04-18T08:34:54+00:00", + "adresse": "Cr Mar\u00e9chal Juin, 33000", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6173944, + 44.7968278 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6173944, + "lat": 44.7968278 + }, + "gid": 211, + "libelle": "Station Tram - Montaigne-Montesquieu", + "cdate": "2023-04-18T08:39:04+00:00", + "mdate": "2023-04-18T08:39:04+00:00", + "adresse": "Campus Montaigne-Montesquieu, Universit\u00e9 de Bordeaux, 33600 Pessac", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6023117, + 44.8059567 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6023117, + "lat": 44.8059567 + }, + "gid": 212, + "libelle": "Station Tram - Arts-et-M\u00e9tiers", + "cdate": "2023-04-18T08:42:53+00:00", + "mdate": "2023-04-18T08:42:53+00:00", + "adresse": "Avenue des Facult\u00e9s, 33400 Talence", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.infotbm.com\/fr\/securite-sur-le-reseau-tbm.html" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5680831, + 44.8377583 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5680831, + "lat": 44.8377583 + }, + "gid": 245, + "libelle": "The Frog & Rosbif", + "cdate": "2023-06-01T08:59:34+00:00", + "mdate": "2023-06-01T08:59:41+00:00", + "adresse": "23 rue Ausone 33000", + "complement_adresse": null, + "ouverture": [ + "NUIT", + "JOUR" + ], + "url": "https:\/\/www.frogpubs.com\/pub-the-frog-rosbif-bordeaux-bordeaux-7.php" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.6013496, + 44.8207727 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.6013496, + "lat": 44.8207727 + }, + "gid": 271, + "libelle": "Maison de quartier Le Tauzin", + "cdate": "2024-06-26T16:11:36+00:00", + "mdate": "2024-06-26T16:11:36+00:00", + "adresse": "50 rue du Tauzin, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR" + ], + "url": "https:\/\/www.letauzin.com\/contacts-et-infos\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5619525, + 44.8605286 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5619525, + "lat": 44.8605286 + }, + "gid": 273, + "libelle": "Glob Th\u00e9\u00e2tre", + "cdate": "2024-06-26T16:15:43+00:00", + "mdate": "2024-06-26T16:15:43+00:00", + "adresse": "69 Rue Jos\u00e9phine, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/globtheatre\/?hl=fr" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5648412, + 44.8350282 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5648412, + "lat": 44.8350282 + }, + "gid": 291, + "libelle": "Restaurant Le Repas Pour Geek", + "cdate": "2024-08-19T14:11:32+00:00", + "mdate": "2024-08-19T14:11:32+00:00", + "adresse": "51 rue de la Fustrerie, 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/repaspourgeek\/" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + -0.5707166, + 44.8436878 + ], + "type": "Point" + }, + "properties": { + "geo_point_2d": { + "lon": -0.5707166, + "lat": 44.8436878 + }, + "gid": 295, + "libelle": "Bar ROCKWOOD (Vintage group)", + "cdate": "2024-08-19T14:20:44+00:00", + "mdate": "2024-08-19T14:20:44+00:00", + "adresse": "4 quai Louis XVIII 33000 Bordeaux", + "complement_adresse": null, + "ouverture": [ + "JOUR", + "NUIT" + ], + "url": "https:\/\/www.instagram.com\/rockwood_bordeaux\/" + } + } + ] +} \ No newline at end of file diff --git a/etalab_data/askangela/toulouse_askangela.json b/etalab_data/askangela/toulouse_askangela.json index 5f122d4..c0a8936 100644 --- a/etalab_data/askangela/toulouse_askangela.json +++ b/etalab_data/askangela/toulouse_askangela.json @@ -1 +1,4370 @@ -[{"geo_point_2d": {"lon": 1.4179391144498137, "lat": 43.59539962539374}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.417939114449814, 43.59539962539374]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "McDonald's Ar\u00e8nes", "num_voies": "41", "nom_voies": "av de lombez", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4824388337601277, "lat": 43.630575481947375}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.482438833760128, 43.630575481947375]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Starbucks CC Gramont", "num_voies": "2", "nom_voies": "che de gabardie", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4522117800281873, "lat": 43.61117561772049}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.452211780028187, 43.61117561772049]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Ibis Toulouse Gare Matabiau", "num_voies": "13", "nom_voies": "bd de bonrepos", "structure": "H\u00f4tel"},{"geo_point_2d": {"lon": 1.450705326958411, "lat": 43.60332715155373}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.450705326958411, 43.60332715155373]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Les boutiques Saint Georges", "num_voies": "51B", "nom_voies": "rue du rempart st etienne", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.4427364507856981, "lat": 43.60486584278894}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.442736450785698, 43.60486584278894]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Pharmacie du Capitole", "num_voies": "18", "nom_voies": "pl du capitole", "structure": "Pharmacie"},{"geo_point_2d": {"lon": 1.3799903659323252, "lat": 43.6418443460625}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.379990365932325, 43.6418443460625]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Feeling Conduite", "num_voies": "16", "nom_voies": "pl de catalogne", "structure": "Auto-\u00e9cole"},{"geo_point_2d": {"lon": 1.451883003915262, "lat": 43.61101843726909}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.451883003915262, 43.61101843726909]], "type": "MultiPoint"}, "properties": {}}, "id": 69, "noms": "Brasserie La Ripaille", "num_voies": "72", "nom_voies": "rue de bayard", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.3992184063794952, "lat": 43.63523985032262}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399218406379495, 43.63523985032262]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Espace Germaine Chaumel", "num_voies": null, "nom_voies": null, "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4129645737063274, "lat": 43.57445384318206}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.412964573706327, 43.57445384318206]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Club de pr\u00e9vention sp\u00e9cialis\u00e9e Faourette", "num_voies": "6", "nom_voies": "rue du roussillon", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.464969809670761, "lat": 43.617146752080494}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.464969809670761, 43.617146752080494]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Conf\u00e9d\u00e9ration de l'Artisanat et des Petites Entreprises du B\u00e2timent de la Haute-Garonne", "num_voies": "56", "nom_voies": "rue benjamin baillaud", "structure": "Organisation"},{"geo_point_2d": {"lon": 1.4424230611753424, "lat": 43.59998415201891}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.442423061175342, 43.59998415201891]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "L'Amandier", "num_voies": "20", "nom_voies": "rue de metz", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.3961907530678825, "lat": 43.634598600057046}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.396190753067883, 43.634598600057046]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Boucherie Michael", "num_voies": "7", "nom_voies": "rue pasteur", "structure": "Magasin alimentaire"},{"geo_point_2d": {"lon": 1.3770355085308221, "lat": 43.63037406795466}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.377035508530822, 43.63037406795466]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "NH Toulouse Airport", "num_voies": "15", "nom_voies": "rue charles lindbergh", "structure": "H\u00f4tel"},{"geo_point_2d": {"lon": 1.3893755227002338, "lat": 43.6338540708805}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.389375522700234, 43.6338540708805]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Espace famille", "num_voies": "1", "nom_voies": "chem du four a briques", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.3844915475870712, "lat": 43.6377478911681}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.384491547587071, 43.6377478911681]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Police municipale", "num_voies": "36", "nom_voies": "av de cornebarrieu", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4659339184292222, "lat": 43.58562074904503}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.465933918429222, 43.58562074904503]], "type": "MultiPoint"}, "properties": {}}, "id": 78, "noms": "MJC pont des Demoiselles", "num_voies": "63b", "nom_voies": "av antoine de st exupery", "structure": "MJC"},{"geo_point_2d": {"lon": 1.4476241959993064, "lat": 43.58460675936761}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.447624195999306, 43.58460675936761]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre d\u2019accueil th\u00e9rapeutique \u00e0 temps partiel Saint-Michel", "num_voies": "3", "nom_voies": "grande-rue saint michel", "structure": null},{"geo_point_2d": {"lon": 1.3476997681937077, "lat": 43.58272925947398}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.347699768193708, 43.58272925947398]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "M\u00e9diath\u00e8que", "num_voies": "3", "nom_voies": "imp max baylac", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.398974337323832, "lat": 43.63354392377812}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.398974337323832, 43.63354392377812]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Washoku", "num_voies": "2", "nom_voies": "bd jean rivet", "structure": "Restaurant"},{"geo_point_2d": {"lon": 1.4432613118280688, "lat": 43.607314564200756}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.443261311828069, 43.607314564200756]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Chapelle des Carm\u00e9lites (Direction des mus\u00e9es et monuments)", "num_voies": "1", "nom_voies": "rue de perigord", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.44808192525154, "lat": 43.60396710866334}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.44808192525154, 43.60396710866334]], "type": "MultiPoint"}, "properties": {}}, "id": 25, "noms": "MdC Centre", "num_voies": "5", "nom_voies": "Rue Paul M\u00e9riel", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4497980686511653, "lat": 43.6016530653551}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.449798068651165, 43.6016530653551]], "type": "MultiPoint"}, "properties": {}}, "id": 28, "noms": "Direction de la S\u00e9curit\u00e9 Civile et des Risques Majeurs", "num_voies": "1", "nom_voies": "rue\u00a0des\u00a0P\u00e9nitents Blancs", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4778064963668178, "lat": 43.60851080399281}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.477806496366818, 43.60851080399281]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre Social Soupetard", "num_voies": "12", "nom_voies": "rue charles garnier", "structure": "Centre Social"},{"geo_point_2d": {"lon": 1.4438452474890393, "lat": 43.638123955172794}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.443845247489039, 43.638123955172794]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre Social Izard-Borderouge Caf Haute-Garonne Toulouse Les-Izards", "num_voies": "1", "nom_voies": null, "structure": "Centre Social"},{"geo_point_2d": {"lon": 1.4680730952350645, "lat": 43.578767597255876}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.468073095235064, 43.578767597255876]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Association Espoir", "num_voies": "109", "nom_voies": "av de lespinet", "structure": "Association"},{"geo_point_2d": {"lon": 1.449051333996664, "lat": 43.6000308714123}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.449051333996664, 43.6000308714123]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Espace Sant\u00e9 Saint Etienne - CPAM", "num_voies": "12", "nom_voies": "pl saint etienne", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.4365405725759701, "lat": 43.59827475249245}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.43654057257597, 43.59827475249245]], "type": "MultiPoint"}, "properties": {}}, "id": 44, "noms": "Galerie du ch\u00e2teau d'eau", "num_voies": "1", "nom_voies": "pl. Laganne", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.469935866138657, "lat": 43.620026078329936}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.469935866138657, 43.620026078329936]], "type": "MultiPoint"}, "properties": {}}, "id": 75, "noms": "MdC Est", "num_voies": "8", "nom_voies": "avenue du Parc", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3789906639950664, "lat": 43.56167161219616}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.378990663995066, 43.56167161219616]], "type": "MultiPoint"}, "properties": {}}, "id": 91, "noms": "Centre culturel Saint Simon", "num_voies": "10", "nom_voies": "Chem. de Liffard", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.45183545966036, "lat": 43.606974319505035}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.45183545966036, 43.606974319505035]], "type": "MultiPoint"}, "properties": {}}, "id": 38, "noms": "Quality H\u00f4tel Toulouse Centre", "num_voies": "28", "nom_voies": "rue Bachelier", "structure": "Hotel"},{"geo_point_2d": {"lon": 1.4449664715690003, "lat": 43.60497236544878}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444966471569, 43.60497236544878]], "type": "MultiPoint"}, "properties": {}}, "id": 10, "noms": "Pitaya Capitole", "num_voies": "17", "nom_voies": "rue Lafayette", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4440994020688813, "lat": 43.598822792554714}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444099402068881, 43.598822792554714]], "type": "MultiPoint"}, "properties": {}}, "id": 13, "noms": "Le Roll", "num_voies": "27", "nom_voies": "Rue des Filatiers", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4480038845408738, "lat": 43.60349378899763}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.448003884540874, 43.60349378899763]], "type": "MultiPoint"}, "properties": {}}, "id": 17, "noms": "MERCURE Toulouse Saint Georges", "num_voies": "1", "nom_voies": "Rue Paul M\u00e9riel", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.411392286913983, "lat": 43.57942049410177}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.411392286913983, 43.57942049410177]], "type": "MultiPoint"}, "properties": {}}, "id": 51, "noms": "Centre social Bagatelle -ASSQOT", "num_voies": "117", "nom_voies": "rue Henri desbals", "structure": "Centre Social"},{"geo_point_2d": {"lon": 1.4405057948166569, "lat": 43.610054294990064}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.440505794816657, 43.610054294990064]], "type": "MultiPoint"}, "properties": {}}, "id": 15, "noms": "Caf\u00e9 associatif L'Escabel", "num_voies": "36", "nom_voies": "Rue Adolphe-Felix Gatien-Arnoult", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4379336012533905, "lat": 43.6550204560971}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.437933601253391, 43.6550204560971]], "type": "MultiPoint"}, "properties": {}}, "id": 64, "noms": "Pharmacie de La Croix du Sud", "num_voies": "292", "nom_voies": "route de Launaguet", "structure": "Pharmacie"},{"geo_point_2d": {"lon": 1.4535177938664008, "lat": 43.641741688424496}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.453517793866401, 43.641741688424496]], "type": "MultiPoint"}, "properties": {}}, "id": 67, "noms": "Maison municipale des familles", "num_voies": "32", "nom_voies": "32 bd Andr\u00e9 Netwiller", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4551774252084015, "lat": 43.60129868896062}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.455177425208402, 43.60129868896062]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Union Immobili\u00e8re des Organismes de S\u00e9curit\u00e9 Sociale", "num_voies": "41", "nom_voies": "rue de l etoile", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.432837497978379, "lat": 43.64841203988673}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.432837497978379, 43.64841203988673]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de Quartier Lalande", "num_voies": "239", "nom_voies": "av de fronton", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3738138193431777, "lat": 43.65433679554043}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.373813819343178, 43.65433679554043]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Conservatoire", "num_voies": null, "nom_voies": "bd alain savary", "structure": null},{"geo_point_2d": {"lon": 1.4513997280374573, "lat": 43.61014647317981}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.451399728037457, 43.61014647317981]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Appart-h\u00f4tel Saint Exupery", "num_voies": "10", "nom_voies": "rue lafon", "structure": "H\u00f4tel"},{"geo_point_2d": {"lon": 1.3988529871824067, "lat": 43.63466073072992}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.398852987182407, 43.63466073072992]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Pi\u00e8ce Unique", "num_voies": "4", "nom_voies": "bd firmin pons", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.3822545727267637, "lat": 43.64100382554678}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.382254572726764, 43.64100382554678]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Patinoire", "num_voies": "10", "nom_voies": "av du general de gaulle", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4521182938357948, "lat": 43.60592997526607}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.452118293835795, 43.60592997526607]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Pierre Passion", "num_voies": "15", "nom_voies": "rue gabriel peri", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.454174461680582, "lat": 43.60167704383838}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.454174461680582, 43.60167704383838]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "CAF de Haute-Garonne", "num_voies": "24", "nom_voies": "rue pierre paul riquet", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.397883924652313, "lat": 43.63365635044897}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.397883924652313, 43.63365635044897]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Pradere coiffeur", "num_voies": "12", "nom_voies": "rue de la croix blanche", "structure": "Coiffure"},{"geo_point_2d": {"lon": 1.3828535929165968, "lat": 43.63842039696512}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.382853592916597, 43.63842039696512]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de Quartier", "num_voies": "2", "nom_voies": "rue des camelias", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4629528597043235, "lat": 43.56157012626668}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.462952859704324, 43.56157012626668]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Starbucks - Rangueil", "num_voies": "118", "nom_voies": "rte de narbonne", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4497085842019533, "lat": 43.60562238301924}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.449708584201953, 43.60562238301924]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Caf\u00e9 Oz", "num_voies": "1", "nom_voies": "rue gabriel peri", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4483429758358437, "lat": 43.605250088582125}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.448342975835844, 43.605250088582125]], "type": "MultiPoint"}, "properties": {}}, "id": 9, "noms": "McDonald's Toulouse Roosevelt", "num_voies": "10", "nom_voies": "allees du president roosevelt", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.402394685986826, "lat": 43.57128185835392}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.402394685986826, 43.57128185835392]], "type": "MultiPoint"}, "properties": {}}, "id": 90, "noms": "Centre social Reynerie-CAF", "num_voies": "15", "nom_voies": "place Abbal", "structure": "Centre Social"},{"geo_point_2d": {"lon": 1.445330468860542, "lat": 43.607331445430646}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.445330468860542, 43.607331445430646]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Boutique TFC Centre-ville", "num_voies": "54", "nom_voies": "rue de remusat", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.334186307727894, "lat": 43.58656088991913}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.334186307727894, 43.58656088991913]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de l'Emploi et de la Solidarit\u00e9", "num_voies": "5", "nom_voies": "rue paul valery", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3802490819315028, "lat": 43.64179454037701}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.380249081931503, 43.64179454037701]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Profession Beaut\u00e9", "num_voies": "12", "nom_voies": "pl de catalogne", "structure": "Esth\u00e9tique"},{"geo_point_2d": {"lon": 1.4458801766198004, "lat": 43.60056865872546}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.4458801766198, 43.60056865872546]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Mus\u00e9e des Augustins", "num_voies": "21", "nom_voies": "rue de metz", "structure": "Mus\u00e9e"},{"geo_point_2d": {"lon": 1.4446137103557244, "lat": 43.6083255011508}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444613710355724, 43.6083255011508]], "type": "MultiPoint"}, "properties": {}}, "id": 24, "noms": "Centre culturel Bellegarde", "num_voies": "17", "nom_voies": "rue Bellegarde", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4106659796259509, "lat": 43.58048711414679}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.410665979625951, 43.58048711414679]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Agence Bagatelle - CPAM Haute-Garonne", "num_voies": "33", "nom_voies": "rue du lot", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.4535290253004232, "lat": 43.61105305299807}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.453529025300423, 43.61105305299807]], "type": "MultiPoint"}, "properties": {}}, "id": 71, "noms": "Agence Tiss\u00e9o Marengo-SNCF", "num_voies": "64", "nom_voies": "Bd Pierre Semard", "structure": "Agence Commerciale TISSEO"},{"geo_point_2d": {"lon": 1.3922700850231453, "lat": 43.57009134690786}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.392270085023145, 43.57009134690786]], "type": "MultiPoint"}, "properties": {}}, "id": 86, "noms": "Agence Tisseo Basso Cambo", "num_voies": null, "nom_voies": "Station M\u00e9tro Basso Combo", "structure": "Agence Commerciale TISSEO"},{"geo_point_2d": {"lon": 1.4795306529303391, "lat": 43.59125743639785}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.479530652930339, 43.59125743639785]], "type": "MultiPoint"}, "properties": {}}, "id": 76, "noms": "Mongelli C\u00f4t\u00e9 pav\u00e9e", "num_voies": "1", "nom_voies": "place Auguste Albert", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4428783834860586, "lat": 43.60399274432936}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.442878383486059, 43.60399274432936]], "type": "MultiPoint"}, "properties": {}}, "id": 12, "noms": "Restaurant Les Illustres", "num_voies": "9", "nom_voies": "place du Capitole", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4473982952775961, "lat": 43.586139435253955}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.447398295277596, 43.586139435253955]], "type": "MultiPoint"}, "properties": {}}, "id": 81, "noms": "Le Castelet", "num_voies": "18B", "nom_voies": "grande-rue saint michel", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.45183545966036, "lat": 43.606974319505035}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.45183545966036, 43.606974319505035]], "type": "MultiPoint"}, "properties": {}}, "id": 37, "noms": "Quality H\u00f4tel Toulouse Centre", "num_voies": "28", "nom_voies": "rue Bachelier", "structure": "Hotel"},{"geo_point_2d": {"lon": 1.4528675295861557, "lat": 43.60563935465541}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.452867529586156, 43.60563935465541]], "type": "MultiPoint"}, "properties": {}}, "id": 39, "noms": "Favoris Boutique Vintage", "num_voies": "7", "nom_voies": "place de Damloup", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.4192151551820442, "lat": 43.594142098408874}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.419215155182044, 43.594142098408874]], "type": "MultiPoint"}, "properties": {}}, "id": 48, "noms": "McDonald's Toulouse Ar\u00e8nes", "num_voies": null, "nom_voies": "Bd Gabriel Koenigs", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4398910047353344, "lat": 43.62065175109127}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.439891004735334, 43.62065175109127]], "type": "MultiPoint"}, "properties": {}}, "id": 57, "noms": "La Passerelle Negreneys", "num_voies": "38", "nom_voies": "rue des Anges", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4464302353620284, "lat": 43.57887572773185}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.446430235362028, 43.57887572773185]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "MDC Sud-Est Niel", "num_voies": "81", "nom_voies": "rue saint roch", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3346356704084297, "lat": 43.61048991816959}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.33463567040843, 43.61048991816959]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "P\u00f4le territorial Ouest", "num_voies": "3", "nom_voies": "pl alex raymond", "structure": "Toulouse M\u00e9tropole"},{"geo_point_2d": {"lon": 1.4528675295861557, "lat": 43.60563935465541}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.452867529586156, 43.60563935465541]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Face B Friperie", "num_voies": "7", "nom_voies": "pl de damloup", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.3972839393047567, "lat": 43.633710918585386}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.397283939304757, 43.633710918585386]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Au temps libre", "num_voies": "18", "nom_voies": "rue de la croix blanche", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.438150606956543, "lat": 43.60440802171444}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.438150606956543, 43.60440802171444]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Accueil DGRH / point info", "num_voies": "34", "nom_voies": "rue pargaminieres", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4375187865446823, "lat": 43.60261106448742}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.437518786544682, 43.60261106448742]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "La Clef des Charmes", "num_voies": "28", "nom_voies": "rue des blanchers", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.397149970615831, "lat": 43.63367920114001}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.397149970615831, 43.63367920114001]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Optique Croix Blanche", "num_voies": "20", "nom_voies": "rue de la croix blanche", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.3949101195451767, "lat": 43.634514108254976}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.394910119545177, 43.634514108254976]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "MS Coiffeurs Passionn\u00e9s de Blagnac", "num_voies": "25", "nom_voies": "rue pasteur", "structure": "Coiffure"},{"geo_point_2d": {"lon": 1.3930522029271883, "lat": 43.63467837454107}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.393052202927188, 43.63467837454107]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Service social", "num_voies": "36", "nom_voies": "rue pasteur", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4379336012533905, "lat": 43.6550204560971}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.437933601253391, 43.6550204560971]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Pharmacie de La Croix du Sud", "num_voies": "292", "nom_voies": "rte de launaguet", "structure": "Pharmacie"},{"geo_point_2d": {"lon": 1.4165806966623842, "lat": 43.587145369592655}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.416580696662384, 43.587145369592655]], "type": "MultiPoint"}, "properties": {}}, "id": 50, "noms": "Foyer d'Education Populaire Etienne Billi\u00e8res", "num_voies": "59", "nom_voies": "rue vestrepain", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.448658783133824, "lat": 43.609406561745615}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.448658783133824, 43.609406561745615]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Appart-h\u00f4tel Cl\u00e9ment Ader", "num_voies": "23", "nom_voies": "rue de bayard", "structure": "H\u00f4tel"},{"geo_point_2d": {"lon": 1.3338938797632711, "lat": 43.58673307163155}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.333893879763271, 43.58673307163155]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de Justice et du Droit", "num_voies": "7", "nom_voies": "rue paul valery", "structure": null},{"geo_point_2d": {"lon": 1.3166435167618027, "lat": 43.589604634224884}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.316643516761803, 43.589604634224884]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de quartier de Pahin", "num_voies": "2", "nom_voies": "bd goya", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3467272748028312, "lat": 43.58247938171058}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.346727274802831, 43.58247938171058]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre Communale d'Action Sociale - CCAS", "num_voies": "1", "nom_voies": "all albert camus", "structure": null},{"geo_point_2d": {"lon": 1.3472364116402176, "lat": 43.58296764800775}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.347236411640218, 43.58296764800775]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Guichet Familles", "num_voies": null, "nom_voies": "imp max baylac", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3902759621411676, "lat": 43.63821893909723}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.390275962141168, 43.63821893909723]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "TotalEnergies - Relais Blagnac Lomagne", "num_voies": "120", "nom_voies": "rte de grenade", "structure": "Station services"},{"geo_point_2d": {"lon": 1.3986210804638506, "lat": 43.63401722831256}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.398621080463851, 43.63401722831256]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Les domaines qui montent", "num_voies": "13", "nom_voies": "bd jean rivet", "structure": "Epicerie"},{"geo_point_2d": {"lon": 1.395033376117621, "lat": 43.63454079134246}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.395033376117621, 43.63454079134246]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Vabene", "num_voies": "23", "nom_voies": "rue pasteur", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.3975730359608454, "lat": 43.63223447946379}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.397573035960845, 43.63223447946379]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le Coin des Ginettes", "num_voies": "1", "nom_voies": "rue felix debax", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.3814194206505421, "lat": 43.626529676098414}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.381419420650542, 43.626529676098414]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Pullman Toulouse A\u00e9roport", "num_voies": "2", "nom_voies": "av didier daurat", "structure": "H\u00f4tel"},{"geo_point_2d": {"lon": 1.4144199028278908, "lat": 43.609517957685036}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.414419902827891, 43.609517957685036]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "MJC des Ponts Jumeaux", "num_voies": "2", "nom_voies": "port de l embouchure", "structure": null},{"geo_point_2d": {"lon": 1.3343251837002503, "lat": 43.58712920223704}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.33432518370025, 43.58712920223704]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de quartier de Paderne", "num_voies": "8", "nom_voies": "rue paul valery", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.395310135642287, "lat": 43.634555866702605}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.395310135642287, 43.634555866702605]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le pavillon des an\u00e9mones", "num_voies": "19B", "nom_voies": "rue pasteur", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.427392324806763, "lat": 43.596171536656406}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.427392324806763, 43.596171536656406]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "MJC Roguet", "num_voies": "9", "nom_voies": "rue de gascogne", "structure": null},{"geo_point_2d": {"lon": 1.4439042887757745, "lat": 43.604432262525606}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.443904288775774, 43.604432262525606]], "type": "MultiPoint"}, "properties": {}}, "id": 26, "noms": "Accueil du Capitole", "num_voies": null, "nom_voies": "place du Capitole", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4638937468951156, "lat": 43.57490076566678}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.463893746895116, 43.57490076566678]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de Quartier Rangueil", "num_voies": "19", "nom_voies": "rue claude de forbin", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4442324816087169, "lat": 43.60192079286139}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444232481608717, 43.60192079286139]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "CeSaMe (Centre Enipse de ressources en sant\u00e9 mentale LGBT+)", "num_voies": "7", "nom_voies": "rue des puits clos", "structure": "Association"},{"geo_point_2d": {"lon": 1.4309164134724472, "lat": 43.59828478139317}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.430916413472447, 43.59828478139317]], "type": "MultiPoint"}, "properties": {}}, "id": 42, "noms": "Centre culturel Saint Cyprien", "num_voies": "56", "nom_voies": "All\u00e9e Charles de Fitte", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.388896018104162, "lat": 43.582009865982364}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.388896018104162, 43.582009865982364]], "type": "MultiPoint"}, "properties": {}}, "id": 85, "noms": "Centre culturel Pradettes-Bordeblanche", "num_voies": "1", "nom_voies": "Av. de la D\u00e9p\u00eache", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.399075731136534, "lat": 43.56454126317925}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399075731136534, 43.56454126317925]], "type": "MultiPoint"}, "properties": {}}, "id": 87, "noms": "Centre culturel Alban Minville", "num_voies": "1", "nom_voies": "place Martin Luther King", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4029497776146769, "lat": 43.5720975106838}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.402949777614677, 43.5720975106838]], "type": "MultiPoint"}, "properties": {}}, "id": 89, "noms": "MdCOuest", "num_voies": "1", "nom_voies": "Place Conchita Grange Ramos", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.444711260235213, "lat": 43.602138116124046}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444711260235213, 43.602138116124046]], "type": "MultiPoint"}, "properties": {}}, "id": 2, "noms": "Ch\u00e9ri Suki", "num_voies": "14", "nom_voies": "Rue Baronie", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.445364843896765, "lat": 43.608598230039654}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.445364843896765, 43.608598230039654]], "type": "MultiPoint"}, "properties": {}}, "id": 8, "noms": "McDonald's Toulouse Jeanne D'Arc Originals", "num_voies": "41", "nom_voies": "bd de strasbourg", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4315970215986222, "lat": 43.60788730322746}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.431597021598622, 43.60788730322746]], "type": "MultiPoint"}, "properties": {}}, "id": 16, "noms": "H\u00f4tel de Brienne", "num_voies": "20", "nom_voies": "Boulevard Mar\u00e9chal Leclerc", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.434097302248817, "lat": 43.600883660446286}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.434097302248817, 43.600883660446286]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Chapelle de la Grave", "num_voies": "1", "nom_voies": "pl lange", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.432779973627199, "lat": 43.631470999402694}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.432779973627199, 43.631470999402694]], "type": "MultiPoint"}, "properties": {}}, "id": 62, "noms": "Centre social Nord Alliances et Cultures", "num_voies": "12", "nom_voies": "rue Marcel Clouete", "structure": "Centre Social"},{"geo_point_2d": {"lon": 1.4327649085030296, "lat": 43.62915333679614}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.43276490850303, 43.62915333679614]], "type": "MultiPoint"}, "properties": {}}, "id": 58, "noms": "Le Chameau Sauvage", "num_voies": "43", "nom_voies": "avenue des \u00c9tats-Unis", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.4350946047243502, "lat": 43.620506877143335}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.43509460472435, 43.620506877143335]], "type": "MultiPoint"}, "properties": {}}, "id": 60, "noms": "MdC Nord", "num_voies": "4", "nom_voies": "Place du March\u00e9 aux Cochons", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.442815381378068, "lat": 43.60405083402665}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.442815381378068, 43.60405083402665]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Les 3 Tenors", "num_voies": "9", "nom_voies": "pl du capitole", "structure": "Restaurant"},{"geo_point_2d": {"lon": 1.4427939234142824, "lat": 43.60437479164685}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.442793923414282, 43.60437479164685]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Grand Caf\u00e9 Le Florida", "num_voies": "12", "nom_voies": "pl du capitole", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.447006041261186, "lat": 43.606430967289775}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.447006041261186, 43.606430967289775]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le J'Go", "num_voies": "16", "nom_voies": "pl victor hugo", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.451883003915262, "lat": 43.61101843726909}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.451883003915262, 43.61101843726909]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Grand H\u00f4tel d'Orl\u00e9ans", "num_voies": "72", "nom_voies": "rue de bayard", "structure": "Hotel"},{"geo_point_2d": {"lon": 1.3945874454387932, "lat": 43.63408001936969}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.394587445438793, 43.63408001936969]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le Temps du CBD", "num_voies": "7", "nom_voies": "rue de lavoisier", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.3992458089713515, "lat": 43.63456299269265}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399245808971352, 43.63456299269265]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Ribouldingue", "num_voies": "1", "nom_voies": "bd firmin pons", "structure": "Restaurant"},{"geo_point_2d": {"lon": 1.3687977450971813, "lat": 43.65569473177954}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.368797745097181, 43.65569473177954]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "R\u00e9sidence Inn Toulouse Blagnac", "num_voies": "11", "nom_voies": "av d andromede", "structure": "H\u00f4tel"},{"geo_point_2d": {"lon": 1.402225995132683, "lat": 43.637558740715605}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.402225995132683, 43.637558740715605]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Piscine des Ramiers", "num_voies": "1", "nom_voies": "all de la piscine", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4078627862344413, "lat": 43.60248634348646}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.407862786234441, 43.60248634348646]], "type": "MultiPoint"}, "properties": {}}, "id": 55, "noms": "Pitaya Tha\u00ef Street Food - Toulouse Cartoucherie", "num_voies": null, "nom_voies": "Place de la Charte des Libert\u00e9s Communales", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4414222764669005, "lat": 43.59942137303674}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.4414222764669, 43.59942137303674]], "type": "MultiPoint"}, "properties": {}}, "id": 22, "noms": "Gym & Zen", "num_voies": "51", "nom_voies": "rue des Couteliers", "structure": "Salle de Sports"},{"geo_point_2d": {"lon": 1.3968991550094572, "lat": 43.61510494442572}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.396899155009457, 43.61510494442572]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "MJC Ancely", "num_voies": "107", "nom_voies": "av des arenes romaines", "structure": null},{"geo_point_2d": {"lon": 1.343584250928135, "lat": 43.580781162527174}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.343584250928135, 43.580781162527174]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le Quai", "num_voies": "37", "nom_voies": "all des sports", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4416754185662437, "lat": 43.579117709112666}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.441675418566244, 43.579117709112666]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "CAF Haute-Garonne Toulouse-Empalot", "num_voies": "38", "nom_voies": "av jean moulin", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.3981738063748541, "lat": 43.63438284894067}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.398173806374854, 43.63438284894067]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Herv\u00e9 Coiffure", "num_voies": "5", "nom_voies": "rue lavigne", "structure": "Coiffure"},{"geo_point_2d": {"lon": 1.379331950888641, "lat": 43.653101493569004}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.379331950888641, 43.653101493569004]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre Thi\u00eau L\u00e2m", "num_voies": "3", "nom_voies": "rue georges gay", "structure": "Etablissement sportif"},{"geo_point_2d": {"lon": 1.4435889118783758, "lat": 43.604976178553756}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.443588911878376, 43.604976178553756]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "McDonald's Toulouse Capitole", "num_voies": "23", "nom_voies": "pl du capitole", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4357822133443696, "lat": 43.582014168665765}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.43578221334437, 43.582014168665765]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Boutique TFC Stadium", "num_voies": "1", "nom_voies": "all gabriel bienes", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.440735219787128, "lat": 43.6079763728043}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.440735219787128, 43.6079763728043]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Mus\u00e9e Saint-Raymond", "num_voies": "1", "nom_voies": "pl saint sernin", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.3439614754982734, "lat": 43.584228299547895}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.343961475498273, 43.584228299547895]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Bistrot Marcel-Andr\u00e9", "num_voies": "44", "nom_voies": "rue gaston doumergue", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4009817847681252, "lat": 43.619035058888606}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.400981784768125, 43.619035058888606]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "MJC Ancely Toulouse", "num_voies": "7", "nom_voies": "all des causses", "structure": null},{"geo_point_2d": {"lon": 1.3845681557764864, "lat": 43.636115419656484}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.384568155776486, 43.636115419656484]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Carrefour City", "num_voies": "1", "nom_voies": "pl des marronniers", "structure": "Epicerie"},{"geo_point_2d": {"lon": 1.4889994920586826, "lat": 43.56317219359755}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.488999492058683, 43.56317219359755]], "type": "MultiPoint"}, "properties": {}}, "id": 77, "noms": "B612 - Centre d'innovation Toulouse A\u00e9rospace", "num_voies": "3", "nom_voies": "rue tarfaya", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4675870686419241, "lat": 43.61624496552378}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.467587068641924, 43.61624496552378]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Chapelle des Carm\u00e9lites", "num_voies": "1", "nom_voies": "Rue de P\u00e9rigord", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.346658044193497, "lat": 43.584168136993895}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.346658044193497, 43.584168136993895]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "La F\u00e9e Bobo", "num_voies": "89", "nom_voies": "rue gaston doumergue", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.470815471314441, "lat": 43.628222579332494}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.470815471314441, 43.628222579332494]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre Social APSAR", "num_voies": "170", "nom_voies": "che michoun", "structure": "Centre social"},{"geo_point_2d": {"lon": 1.462423046229269, "lat": 43.6135477400805}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.462423046229269, 43.6135477400805]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre Social Jolimont", "num_voies": "11", "nom_voies": "av de l observatoire", "structure": "Centre Social"},{"geo_point_2d": {"lon": 1.4440594655454093, "lat": 43.59248382580931}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444059465545409, 43.59248382580931]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "McDonald's Saint Michel", "num_voies": "6", "nom_voies": "allees paul feuga", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4561695416451437, "lat": 43.60155788798341}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.456169541645144, 43.60155788798341]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Agence Centrale - CPAM Haute Garonne", "num_voies": "3", "nom_voies": "bd pr leopold escande", "structure": "Organisme"},{"geo_point_2d": {"lon": 1.4498047604248945, "lat": 43.60400273031115}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.449804760424894, 43.60400273031115]], "type": "MultiPoint"}, "properties": {}}, "id": 4, "noms": "Halles de la cit\u00e9", "num_voies": "1", "nom_voies": "Rue Pierre Baudis", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.411827637819427, "lat": 43.57946189464477}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.411827637819427, 43.57946189464477]], "type": "MultiPoint"}, "properties": {}}, "id": 49, "noms": "Centre culturel Henri Desbals", "num_voies": "128", "nom_voies": "Rue Henri Desbals", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4535874072187398, "lat": 43.616310186389526}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.45358740721874, 43.616310186389526]], "type": "MultiPoint"}, "properties": {}}, "id": 70, "noms": "Centre culturel Bonnefoy", "num_voies": "4", "nom_voies": "Rue du Faubourg Bonnefoy", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4746562355541146, "lat": 43.61424247787154}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.474656235554115, 43.61424247787154]], "type": "MultiPoint"}, "properties": {}}, "id": 73, "noms": "Centre culturel Soupetard", "num_voies": "63", "nom_voies": "Chem. de Heredia", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4767129977413946, "lat": 43.62374585358111}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.476712997741395, 43.62374585358111]], "type": "MultiPoint"}, "properties": {}}, "id": 74, "noms": "Le Lido - Centre Des Arts Du Cirque", "num_voies": "14", "nom_voies": "Rue de Gaillac", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4388116191526394, "lat": 43.578248287058045}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.438811619152639, 43.578248287058045]], "type": "MultiPoint"}, "properties": {}}, "id": 83, "noms": "MJC Empalot", "num_voies": "9", "nom_voies": "rue Laria Mombiola", "structure": "MJC"},{"geo_point_2d": {"lon": 1.4029497776146769, "lat": 43.5720975106838}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.402949777614677, 43.5720975106838]], "type": "MultiPoint"}, "properties": {}}, "id": 88, "noms": "Centre culturel Reynerie", "num_voies": "1", "nom_voies": "Place Conchita Grange Ramos", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4453412042632117, "lat": 43.597481972415345}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.445341204263212, 43.597481972415345]], "type": "MultiPoint"}, "properties": {}}, "id": 30, "noms": "Accueil Urbanisme", "num_voies": "1", "nom_voies": "pl des carmes", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4446294506125616, "lat": 43.60064164284952}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444629450612562, 43.60064164284952]], "type": "MultiPoint"}, "properties": {}}, "id": 7, "noms": "McDonald's Toulouse Esquirol", "num_voies": "12", "nom_voies": "place Esquirol", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4498047604248945, "lat": 43.60400273031115}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.449804760424894, 43.60400273031115]], "type": "MultiPoint"}, "properties": {}}, "id": 1, "noms": "Ch\u00e9ri Ch\u00e9ri", "num_voies": "1", "nom_voies": "rue Pierre Baudis", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4428783834860586, "lat": 43.60399274432936}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.442878383486059, 43.60399274432936]], "type": "MultiPoint"}, "properties": {}}, "id": 11, "noms": "Pizzeria Osteria Le Bellini", "num_voies": "9", "nom_voies": "place du Capitole", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.453661853526286, "lat": 43.59986186012607}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.453661853526286, 43.59986186012607]], "type": "MultiPoint"}, "properties": {}}, "id": 34, "noms": "Caf\u00e9 Authi\u00e9", "num_voies": "25", "nom_voies": "pl dominique martin dupuy", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4080718829072738, "lat": 43.602630336437834}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.408071882907274, 43.602630336437834]], "type": "MultiPoint"}, "properties": {}}, "id": 56, "noms": "Les 500", "num_voies": "1", "nom_voies": "Place de la Charte des Libert\u00e9s Communales", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.438653730032972, "lat": 43.623991251826176}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.438653730032972, 43.623991251826176]], "type": "MultiPoint"}, "properties": {}}, "id": 59, "noms": "Th\u00e9\u00e2tre des Mazades", "num_voies": "10", "nom_voies": "avenue des Mazades", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4424897888729569, "lat": 43.6366647119692}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.442489788872957, 43.6366647119692]], "type": "MultiPoint"}, "properties": {}}, "id": 65, "noms": "Centre culturel Renan", "num_voies": "5", "nom_voies": "Chem. d'Audibert", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.438890969316836, "lat": 43.602101985067854}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.438890969316836, 43.602101985067854]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "DG Am\u00e9nagement", "num_voies": "17", "nom_voies": "pl de la daurade", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.447124603275113, "lat": 43.60532842337802}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.447124603275113, 43.60532842337802]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le Bon Vivre", "num_voies": "15B", "nom_voies": "pl du president thomas woodrow wilson", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.3958337153151823, "lat": 43.63471779060587}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.395833715315182, 43.63471779060587]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Didier Commincas", "num_voies": "12", "nom_voies": "rue pasteur", "structure": "Coiffure"},{"geo_point_2d": {"lon": 1.3994270534384645, "lat": 43.63485456628063}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399427053438465, 43.63485456628063]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le Toucan", "num_voies": "2", "nom_voies": "bd firmin pons", "structure": "Restaurant"},{"geo_point_2d": {"lon": 1.3887457344107172, "lat": 43.632975948918336}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.388745734410717, 43.632975948918336]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "La Vigne est belle", "num_voies": "21", "nom_voies": "av du parc", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.3861045610422786, "lat": 43.63475382747167}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.386104561042279, 43.63475382747167]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Medialudo", "num_voies": "4", "nom_voies": "av du parc", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.4328856998849244, "lat": 43.60989317544623}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.432885699884924, 43.60989317544623]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Chambre des M\u00e9tiers et de l'Artisanat de Haute-Garonne", "num_voies": "18B", "nom_voies": "bd lascrosses", "structure": null},{"geo_point_2d": {"lon": 1.3999997267729465, "lat": 43.581252556504374}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399999726772946, 43.581252556504374]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Centre Social Mirail U Pradettes", "num_voies": "14", "nom_voies": "che du mirail", "structure": "Centre Social"},{"geo_point_2d": {"lon": 1.4448300706419641, "lat": 43.60747716019509}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.444830070641964, 43.60747716019509]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "COSAT", "num_voies": "7", "nom_voies": "rue de perigord", "structure": null},{"geo_point_2d": {"lon": 1.3371416244685626, "lat": 43.589034477069724}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.337141624468563, 43.589034477069724]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "L'Archipel - Tiers Lieu Educatif", "num_voies": "1", "nom_voies": "av de l ariege", "structure": null},{"geo_point_2d": {"lon": 1.3940679310305872, "lat": 43.634497600459426}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.394067931030587, 43.634497600459426]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Barrelle", "num_voies": "35", "nom_voies": "rue pasteur", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.3982454945378122, "lat": 43.63448820598489}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.398245494537812, 43.63448820598489]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Val\u00e9rie Verhaeghe opticien", "num_voies": "2", "nom_voies": "rue lavigne", "structure": "Boutique"},{"geo_point_2d": {"lon": 1.399088363000172, "lat": 43.63539658144575}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399088363000172, 43.63539658144575]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Cin\u00e9ma Rex", "num_voies": null, "nom_voies": null, "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.451883003915262, "lat": 43.61101843726909}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.451883003915262, 43.61101843726909]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "La Ripaille", "num_voies": "72", "nom_voies": "rue de bayard", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.4439223434844957, "lat": 43.59494463548234}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.443922343484496, 43.59494463548234]], "type": "MultiPoint"}, "properties": {}}, "id": 5, "noms": "Kopi Coffee Shop", "num_voies": "20", "nom_voies": "place du Salin", "structure": "Restaurant / Caf\u00e9 / Bar"},{"geo_point_2d": {"lon": 1.346649187249569, "lat": 43.582816204665505}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.346649187249569, 43.582816204665505]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Accueil Mairie", "num_voies": "1", "nom_voies": "all albert camus", "structure": null},{"geo_point_2d": {"lon": 1.3991845160483931, "lat": 43.63330983755907}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399184516048393, 43.63330983755907]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "D\u00e9partement Manifestations", "num_voies": "1", "nom_voies": "pl herisson", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.3880079209709846, "lat": 43.64118726506995}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.388007920970985, 43.64118726506995]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Tutti Pizza", "num_voies": "154", "nom_voies": "rte de grenade", "structure": "Restaurant"},{"geo_point_2d": {"lon": 1.4549583597026683, "lat": 43.64254095391889}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.454958359702668, 43.64254095391889]], "type": "MultiPoint"}, "properties": {}}, "id": 68, "noms": "Agence Tiss\u00e9o Borderouge", "num_voies": null, "nom_voies": "Bd Andr\u00e9 Netwiller", "structure": "Agence Commerciale TISSEO"},{"geo_point_2d": {"lon": 1.4504311319276686, "lat": 43.60558254919474}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.450431131927669, 43.60558254919474]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Connexion Live", "num_voies": "8", "nom_voies": "rue gabriel peri", "structure": "Etablissement de nuit"},{"geo_point_2d": {"lon": 1.3956028490120886, "lat": 43.6346839891338}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.395602849012089, 43.6346839891338]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Mini Beaut\u00e9 Institut", "num_voies": "16", "nom_voies": "rue pasteur", "structure": "Esth\u00e9tique"},{"geo_point_2d": {"lon": 1.4531135648590787, "lat": 43.603175153612575}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.453113564859079, 43.603175153612575]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Espace diversit\u00e9s la\u00efcit\u00e9", "num_voies": "38", "nom_voies": "rue d aubuisson", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.3147203538354233, "lat": 43.57554175967364}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.314720353835423, 43.57554175967364]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Maison de quartier de Qu\u00e9fets", "num_voies": "1", "nom_voies": "bd alain savary", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3425249881211694, "lat": 43.581455385090486}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.342524988121169, 43.581455385090486]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Auchan", "num_voies": "5", "nom_voies": "rue bertrand panouse", "structure": "Magasin alimentaire"},{"geo_point_2d": {"lon": 1.448898996355101, "lat": 43.594211194792805}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.448898996355101, 43.594211194792805]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Mus\u00e9um de Toulouse", "num_voies": "35", "nom_voies": "allees jules guesde", "structure": "Mus\u00e9e"},{"geo_point_2d": {"lon": 1.4031397114904482, "lat": 43.570815303224336}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.403139711490448, 43.570815303224336]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Association Parle Avec Elles", "num_voies": "5", "nom_voies": "rue de kiev", "structure": "Association"},{"geo_point_2d": {"lon": 1.4531559227087003, "lat": 43.59158360684302}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.4531559227087, 43.59158360684302]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Monument \u00e0 la gloire de la R\u00e9sistance - Dir. mus\u00e9es et monuments", "num_voies": "4", "nom_voies": "allees frederic mistral", "structure": "Site Mairie"},{"geo_point_2d": {"lon": 1.43012285232143, "lat": 43.59781908756934}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.43012285232143, 43.59781908756934]], "type": "MultiPoint"}, "properties": {}}, "id": 43, "noms": "MdC Rive Gauche", "num_voies": "20", "nom_voies": "place Jean Diebold", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4388116191526394, "lat": 43.578248287058045}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.438811619152639, 43.578248287058045]], "type": "MultiPoint"}, "properties": {}}, "id": 80, "noms": "Centre culturel Brique Rouge", "num_voies": "9", "nom_voies": "Rue Maria Mombiola", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.4186942766796513, "lat": 43.59308172407422}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.418694276679651, 43.59308172407422]], "type": "MultiPoint"}, "properties": {}}, "id": 52, "noms": "Agence Tisseo Ar\u00e8nes", "num_voies": null, "nom_voies": "Pl. Agapito Nadal", "structure": "Agence Commerciale TISSEO"},{"geo_point_2d": {"lon": 1.4505615920452153, "lat": 43.59475789309618}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.450561592045215, 43.59475789309618]], "type": "MultiPoint"}, "properties": {}}, "id": 79, "noms": "Quai des Savoirs", "num_voies": "39", "nom_voies": "allees jules guesde", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.408355904105332, "lat": 43.616849707362}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.408355904105332, 43.616849707362]], "type": "MultiPoint"}, "properties": {}}, "id": 63, "noms": "Centre culturel Espace Job", "num_voies": "105", "nom_voies": "Rte de Blagnac", "structure": "Mairie"},{"geo_point_2d": {"lon": 1.3994048756278865, "lat": 43.63295360402012}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.399404875627887, 43.63295360402012]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Le Bistrophile", "num_voies": "6B", "nom_voies": "rue felix debax", "structure": "Restaurant"},{"geo_point_2d": {"lon": 1.3803644341056476, "lat": 43.63068984748725}, "geo_shape": {"type": "Feature", "geometry": {"coordinates": [[1.380364434105648, 43.63068984748725]], "type": "MultiPoint"}, "properties": {}}, "id": -9999, "noms": "Radisson Blu Hotel Airport", "num_voies": "2", "nom_voies": "rue dieudonne costes", "structure": "H\u00f4tel"}] \ No newline at end of file +[ + { + "geo_point_2d": { + "lon": 1.4179391144498137, + "lat": 43.59539962539374 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.417939114449814, + 43.59539962539374 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "McDonald's Ar\u00e8nes", + "num_voies": "41", + "nom_voies": "av de lombez", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4824388337601277, + "lat": 43.630575481947375 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.482438833760128, + 43.630575481947375 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Starbucks CC Gramont", + "num_voies": "2", + "nom_voies": "che de gabardie", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4522117800281873, + "lat": 43.61117561772049 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.452211780028187, + 43.61117561772049 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Ibis Toulouse Gare Matabiau", + "num_voies": "13", + "nom_voies": "bd de bonrepos", + "structure": "H\u00f4tel" + }, + { + "geo_point_2d": { + "lon": 1.450705326958411, + "lat": 43.60332715155373 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.450705326958411, + 43.60332715155373 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Les boutiques Saint Georges", + "num_voies": "51B", + "nom_voies": "rue du rempart st etienne", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.4427364507856981, + "lat": 43.60486584278894 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.442736450785698, + 43.60486584278894 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Pharmacie du Capitole", + "num_voies": "18", + "nom_voies": "pl du capitole", + "structure": "Pharmacie" + }, + { + "geo_point_2d": { + "lon": 1.3799903659323252, + "lat": 43.6418443460625 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.379990365932325, + 43.6418443460625 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Feeling Conduite", + "num_voies": "16", + "nom_voies": "pl de catalogne", + "structure": "Auto-\u00e9cole" + }, + { + "geo_point_2d": { + "lon": 1.451883003915262, + "lat": 43.61101843726909 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.451883003915262, + 43.61101843726909 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 69, + "noms": "Brasserie La Ripaille", + "num_voies": "72", + "nom_voies": "rue de bayard", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.3992184063794952, + "lat": 43.63523985032262 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399218406379495, + 43.63523985032262 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Espace Germaine Chaumel", + "num_voies": null, + "nom_voies": null, + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4129645737063274, + "lat": 43.57445384318206 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.412964573706327, + 43.57445384318206 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Club de pr\u00e9vention sp\u00e9cialis\u00e9e Faourette", + "num_voies": "6", + "nom_voies": "rue du roussillon", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.464969809670761, + "lat": 43.617146752080494 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.464969809670761, + 43.617146752080494 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Conf\u00e9d\u00e9ration de l'Artisanat et des Petites Entreprises du B\u00e2timent de la Haute-Garonne", + "num_voies": "56", + "nom_voies": "rue benjamin baillaud", + "structure": "Organisation" + }, + { + "geo_point_2d": { + "lon": 1.4424230611753424, + "lat": 43.59998415201891 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.442423061175342, + 43.59998415201891 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "L'Amandier", + "num_voies": "20", + "nom_voies": "rue de metz", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.3961907530678825, + "lat": 43.634598600057046 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.396190753067883, + 43.634598600057046 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Boucherie Michael", + "num_voies": "7", + "nom_voies": "rue pasteur", + "structure": "Magasin alimentaire" + }, + { + "geo_point_2d": { + "lon": 1.3770355085308221, + "lat": 43.63037406795466 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.377035508530822, + 43.63037406795466 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "NH Toulouse Airport", + "num_voies": "15", + "nom_voies": "rue charles lindbergh", + "structure": "H\u00f4tel" + }, + { + "geo_point_2d": { + "lon": 1.3893755227002338, + "lat": 43.6338540708805 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.389375522700234, + 43.6338540708805 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Espace famille", + "num_voies": "1", + "nom_voies": "chem du four a briques", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3844915475870712, + "lat": 43.6377478911681 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.384491547587071, + 43.6377478911681 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Police municipale", + "num_voies": "36", + "nom_voies": "av de cornebarrieu", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4659339184292222, + "lat": 43.58562074904503 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.465933918429222, + 43.58562074904503 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 78, + "noms": "MJC pont des Demoiselles", + "num_voies": "63b", + "nom_voies": "av antoine de st exupery", + "structure": "MJC" + }, + { + "geo_point_2d": { + "lon": 1.4476241959993064, + "lat": 43.58460675936761 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.447624195999306, + 43.58460675936761 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre d\u2019accueil th\u00e9rapeutique \u00e0 temps partiel Saint-Michel", + "num_voies": "3", + "nom_voies": "grande-rue saint michel", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3476997681937077, + "lat": 43.58272925947398 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.347699768193708, + 43.58272925947398 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "M\u00e9diath\u00e8que", + "num_voies": "3", + "nom_voies": "imp max baylac", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.398974337323832, + "lat": 43.63354392377812 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.398974337323832, + 43.63354392377812 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Washoku", + "num_voies": "2", + "nom_voies": "bd jean rivet", + "structure": "Restaurant" + }, + { + "geo_point_2d": { + "lon": 1.4432613118280688, + "lat": 43.607314564200756 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.443261311828069, + 43.607314564200756 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Chapelle des Carm\u00e9lites (Direction des mus\u00e9es et monuments)", + "num_voies": "1", + "nom_voies": "rue de perigord", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.44808192525154, + "lat": 43.60396710866334 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.44808192525154, + 43.60396710866334 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 25, + "noms": "MdC Centre", + "num_voies": "5", + "nom_voies": "Rue Paul M\u00e9riel", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4497980686511653, + "lat": 43.6016530653551 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.449798068651165, + 43.6016530653551 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 28, + "noms": "Direction de la S\u00e9curit\u00e9 Civile et des Risques Majeurs", + "num_voies": "1", + "nom_voies": "rue\u00a0des\u00a0P\u00e9nitents Blancs", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4778064963668178, + "lat": 43.60851080399281 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.477806496366818, + 43.60851080399281 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre Social Soupetard", + "num_voies": "12", + "nom_voies": "rue charles garnier", + "structure": "Centre Social" + }, + { + "geo_point_2d": { + "lon": 1.4438452474890393, + "lat": 43.638123955172794 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.443845247489039, + 43.638123955172794 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre Social Izard-Borderouge Caf Haute-Garonne Toulouse Les-Izards", + "num_voies": "1", + "nom_voies": null, + "structure": "Centre Social" + }, + { + "geo_point_2d": { + "lon": 1.4680730952350645, + "lat": 43.578767597255876 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.468073095235064, + 43.578767597255876 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Association Espoir", + "num_voies": "109", + "nom_voies": "av de lespinet", + "structure": "Association" + }, + { + "geo_point_2d": { + "lon": 1.449051333996664, + "lat": 43.6000308714123 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.449051333996664, + 43.6000308714123 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Espace Sant\u00e9 Saint Etienne - CPAM", + "num_voies": "12", + "nom_voies": "pl saint etienne", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.4365405725759701, + "lat": 43.59827475249245 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.43654057257597, + 43.59827475249245 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 44, + "noms": "Galerie du ch\u00e2teau d'eau", + "num_voies": "1", + "nom_voies": "pl. Laganne", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.469935866138657, + "lat": 43.620026078329936 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.469935866138657, + 43.620026078329936 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 75, + "noms": "MdC Est", + "num_voies": "8", + "nom_voies": "avenue du Parc", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3789906639950664, + "lat": 43.56167161219616 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.378990663995066, + 43.56167161219616 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 91, + "noms": "Centre culturel Saint Simon", + "num_voies": "10", + "nom_voies": "Chem. de Liffard", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.45183545966036, + "lat": 43.606974319505035 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.45183545966036, + 43.606974319505035 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 38, + "noms": "Quality H\u00f4tel Toulouse Centre", + "num_voies": "28", + "nom_voies": "rue Bachelier", + "structure": "Hotel" + }, + { + "geo_point_2d": { + "lon": 1.4449664715690003, + "lat": 43.60497236544878 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444966471569, + 43.60497236544878 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 10, + "noms": "Pitaya Capitole", + "num_voies": "17", + "nom_voies": "rue Lafayette", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4440994020688813, + "lat": 43.598822792554714 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444099402068881, + 43.598822792554714 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 13, + "noms": "Le Roll", + "num_voies": "27", + "nom_voies": "Rue des Filatiers", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4480038845408738, + "lat": 43.60349378899763 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.448003884540874, + 43.60349378899763 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 17, + "noms": "MERCURE Toulouse Saint Georges", + "num_voies": "1", + "nom_voies": "Rue Paul M\u00e9riel", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.411392286913983, + "lat": 43.57942049410177 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.411392286913983, + 43.57942049410177 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 51, + "noms": "Centre social Bagatelle -ASSQOT", + "num_voies": "117", + "nom_voies": "rue Henri desbals", + "structure": "Centre Social" + }, + { + "geo_point_2d": { + "lon": 1.4405057948166569, + "lat": 43.610054294990064 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.440505794816657, + 43.610054294990064 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 15, + "noms": "Caf\u00e9 associatif L'Escabel", + "num_voies": "36", + "nom_voies": "Rue Adolphe-Felix Gatien-Arnoult", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4379336012533905, + "lat": 43.6550204560971 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.437933601253391, + 43.6550204560971 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 64, + "noms": "Pharmacie de La Croix du Sud", + "num_voies": "292", + "nom_voies": "route de Launaguet", + "structure": "Pharmacie" + }, + { + "geo_point_2d": { + "lon": 1.4535177938664008, + "lat": 43.641741688424496 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.453517793866401, + 43.641741688424496 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 67, + "noms": "Maison municipale des familles", + "num_voies": "32", + "nom_voies": "32 bd Andr\u00e9 Netwiller", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4551774252084015, + "lat": 43.60129868896062 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.455177425208402, + 43.60129868896062 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Union Immobili\u00e8re des Organismes de S\u00e9curit\u00e9 Sociale", + "num_voies": "41", + "nom_voies": "rue de l etoile", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.432837497978379, + "lat": 43.64841203988673 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.432837497978379, + 43.64841203988673 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de Quartier Lalande", + "num_voies": "239", + "nom_voies": "av de fronton", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3738138193431777, + "lat": 43.65433679554043 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.373813819343178, + 43.65433679554043 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Conservatoire", + "num_voies": null, + "nom_voies": "bd alain savary", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.4513997280374573, + "lat": 43.61014647317981 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.451399728037457, + 43.61014647317981 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Appart-h\u00f4tel Saint Exupery", + "num_voies": "10", + "nom_voies": "rue lafon", + "structure": "H\u00f4tel" + }, + { + "geo_point_2d": { + "lon": 1.3988529871824067, + "lat": 43.63466073072992 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.398852987182407, + 43.63466073072992 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Pi\u00e8ce Unique", + "num_voies": "4", + "nom_voies": "bd firmin pons", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.3822545727267637, + "lat": 43.64100382554678 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.382254572726764, + 43.64100382554678 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Patinoire", + "num_voies": "10", + "nom_voies": "av du general de gaulle", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4521182938357948, + "lat": 43.60592997526607 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.452118293835795, + 43.60592997526607 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Pierre Passion", + "num_voies": "15", + "nom_voies": "rue gabriel peri", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.454174461680582, + "lat": 43.60167704383838 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.454174461680582, + 43.60167704383838 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "CAF de Haute-Garonne", + "num_voies": "24", + "nom_voies": "rue pierre paul riquet", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.397883924652313, + "lat": 43.63365635044897 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.397883924652313, + 43.63365635044897 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Pradere coiffeur", + "num_voies": "12", + "nom_voies": "rue de la croix blanche", + "structure": "Coiffure" + }, + { + "geo_point_2d": { + "lon": 1.3828535929165968, + "lat": 43.63842039696512 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.382853592916597, + 43.63842039696512 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de Quartier", + "num_voies": "2", + "nom_voies": "rue des camelias", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4629528597043235, + "lat": 43.56157012626668 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.462952859704324, + 43.56157012626668 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Starbucks - Rangueil", + "num_voies": "118", + "nom_voies": "rte de narbonne", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4497085842019533, + "lat": 43.60562238301924 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.449708584201953, + 43.60562238301924 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Caf\u00e9 Oz", + "num_voies": "1", + "nom_voies": "rue gabriel peri", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4483429758358437, + "lat": 43.605250088582125 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.448342975835844, + 43.605250088582125 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 9, + "noms": "McDonald's Toulouse Roosevelt", + "num_voies": "10", + "nom_voies": "allees du president roosevelt", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.402394685986826, + "lat": 43.57128185835392 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.402394685986826, + 43.57128185835392 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 90, + "noms": "Centre social Reynerie-CAF", + "num_voies": "15", + "nom_voies": "place Abbal", + "structure": "Centre Social" + }, + { + "geo_point_2d": { + "lon": 1.445330468860542, + "lat": 43.607331445430646 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.445330468860542, + 43.607331445430646 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Boutique TFC Centre-ville", + "num_voies": "54", + "nom_voies": "rue de remusat", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.334186307727894, + "lat": 43.58656088991913 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.334186307727894, + 43.58656088991913 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de l'Emploi et de la Solidarit\u00e9", + "num_voies": "5", + "nom_voies": "rue paul valery", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3802490819315028, + "lat": 43.64179454037701 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.380249081931503, + 43.64179454037701 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Profession Beaut\u00e9", + "num_voies": "12", + "nom_voies": "pl de catalogne", + "structure": "Esth\u00e9tique" + }, + { + "geo_point_2d": { + "lon": 1.4458801766198004, + "lat": 43.60056865872546 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.4458801766198, + 43.60056865872546 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Mus\u00e9e des Augustins", + "num_voies": "21", + "nom_voies": "rue de metz", + "structure": "Mus\u00e9e" + }, + { + "geo_point_2d": { + "lon": 1.4446137103557244, + "lat": 43.6083255011508 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444613710355724, + 43.6083255011508 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 24, + "noms": "Centre culturel Bellegarde", + "num_voies": "17", + "nom_voies": "rue Bellegarde", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4106659796259509, + "lat": 43.58048711414679 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.410665979625951, + 43.58048711414679 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Agence Bagatelle - CPAM Haute-Garonne", + "num_voies": "33", + "nom_voies": "rue du lot", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.4535290253004232, + "lat": 43.61105305299807 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.453529025300423, + 43.61105305299807 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 71, + "noms": "Agence Tiss\u00e9o Marengo-SNCF", + "num_voies": "64", + "nom_voies": "Bd Pierre Semard", + "structure": "Agence Commerciale TISSEO" + }, + { + "geo_point_2d": { + "lon": 1.3922700850231453, + "lat": 43.57009134690786 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.392270085023145, + 43.57009134690786 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 86, + "noms": "Agence Tisseo Basso Cambo", + "num_voies": null, + "nom_voies": "Station M\u00e9tro Basso Combo", + "structure": "Agence Commerciale TISSEO" + }, + { + "geo_point_2d": { + "lon": 1.4795306529303391, + "lat": 43.59125743639785 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.479530652930339, + 43.59125743639785 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 76, + "noms": "Mongelli C\u00f4t\u00e9 pav\u00e9e", + "num_voies": "1", + "nom_voies": "place Auguste Albert", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4428783834860586, + "lat": 43.60399274432936 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.442878383486059, + 43.60399274432936 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 12, + "noms": "Restaurant Les Illustres", + "num_voies": "9", + "nom_voies": "place du Capitole", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4473982952775961, + "lat": 43.586139435253955 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.447398295277596, + 43.586139435253955 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 81, + "noms": "Le Castelet", + "num_voies": "18B", + "nom_voies": "grande-rue saint michel", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.45183545966036, + "lat": 43.606974319505035 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.45183545966036, + 43.606974319505035 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 37, + "noms": "Quality H\u00f4tel Toulouse Centre", + "num_voies": "28", + "nom_voies": "rue Bachelier", + "structure": "Hotel" + }, + { + "geo_point_2d": { + "lon": 1.4528675295861557, + "lat": 43.60563935465541 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.452867529586156, + 43.60563935465541 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 39, + "noms": "Favoris Boutique Vintage", + "num_voies": "7", + "nom_voies": "place de Damloup", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.4192151551820442, + "lat": 43.594142098408874 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.419215155182044, + 43.594142098408874 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 48, + "noms": "McDonald's Toulouse Ar\u00e8nes", + "num_voies": null, + "nom_voies": "Bd Gabriel Koenigs", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4398910047353344, + "lat": 43.62065175109127 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.439891004735334, + 43.62065175109127 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 57, + "noms": "La Passerelle Negreneys", + "num_voies": "38", + "nom_voies": "rue des Anges", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4464302353620284, + "lat": 43.57887572773185 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.446430235362028, + 43.57887572773185 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "MDC Sud-Est Niel", + "num_voies": "81", + "nom_voies": "rue saint roch", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3346356704084297, + "lat": 43.61048991816959 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.33463567040843, + 43.61048991816959 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "P\u00f4le territorial Ouest", + "num_voies": "3", + "nom_voies": "pl alex raymond", + "structure": "Toulouse M\u00e9tropole" + }, + { + "geo_point_2d": { + "lon": 1.4528675295861557, + "lat": 43.60563935465541 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.452867529586156, + 43.60563935465541 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Face B Friperie", + "num_voies": "7", + "nom_voies": "pl de damloup", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.3972839393047567, + "lat": 43.633710918585386 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.397283939304757, + 43.633710918585386 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Au temps libre", + "num_voies": "18", + "nom_voies": "rue de la croix blanche", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.438150606956543, + "lat": 43.60440802171444 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.438150606956543, + 43.60440802171444 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Accueil DGRH / point info", + "num_voies": "34", + "nom_voies": "rue pargaminieres", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4375187865446823, + "lat": 43.60261106448742 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.437518786544682, + 43.60261106448742 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "La Clef des Charmes", + "num_voies": "28", + "nom_voies": "rue des blanchers", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.397149970615831, + "lat": 43.63367920114001 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.397149970615831, + 43.63367920114001 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Optique Croix Blanche", + "num_voies": "20", + "nom_voies": "rue de la croix blanche", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.3949101195451767, + "lat": 43.634514108254976 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.394910119545177, + 43.634514108254976 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "MS Coiffeurs Passionn\u00e9s de Blagnac", + "num_voies": "25", + "nom_voies": "rue pasteur", + "structure": "Coiffure" + }, + { + "geo_point_2d": { + "lon": 1.3930522029271883, + "lat": 43.63467837454107 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.393052202927188, + 43.63467837454107 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Service social", + "num_voies": "36", + "nom_voies": "rue pasteur", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4379336012533905, + "lat": 43.6550204560971 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.437933601253391, + 43.6550204560971 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Pharmacie de La Croix du Sud", + "num_voies": "292", + "nom_voies": "rte de launaguet", + "structure": "Pharmacie" + }, + { + "geo_point_2d": { + "lon": 1.4165806966623842, + "lat": 43.587145369592655 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.416580696662384, + 43.587145369592655 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 50, + "noms": "Foyer d'Education Populaire Etienne Billi\u00e8res", + "num_voies": "59", + "nom_voies": "rue vestrepain", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.448658783133824, + "lat": 43.609406561745615 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.448658783133824, + 43.609406561745615 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Appart-h\u00f4tel Cl\u00e9ment Ader", + "num_voies": "23", + "nom_voies": "rue de bayard", + "structure": "H\u00f4tel" + }, + { + "geo_point_2d": { + "lon": 1.3338938797632711, + "lat": 43.58673307163155 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.333893879763271, + 43.58673307163155 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de Justice et du Droit", + "num_voies": "7", + "nom_voies": "rue paul valery", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3166435167618027, + "lat": 43.589604634224884 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.316643516761803, + 43.589604634224884 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de quartier de Pahin", + "num_voies": "2", + "nom_voies": "bd goya", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3467272748028312, + "lat": 43.58247938171058 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.346727274802831, + 43.58247938171058 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre Communale d'Action Sociale - CCAS", + "num_voies": "1", + "nom_voies": "all albert camus", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3472364116402176, + "lat": 43.58296764800775 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.347236411640218, + 43.58296764800775 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Guichet Familles", + "num_voies": null, + "nom_voies": "imp max baylac", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3902759621411676, + "lat": 43.63821893909723 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.390275962141168, + 43.63821893909723 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "TotalEnergies - Relais Blagnac Lomagne", + "num_voies": "120", + "nom_voies": "rte de grenade", + "structure": "Station services" + }, + { + "geo_point_2d": { + "lon": 1.3986210804638506, + "lat": 43.63401722831256 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.398621080463851, + 43.63401722831256 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Les domaines qui montent", + "num_voies": "13", + "nom_voies": "bd jean rivet", + "structure": "Epicerie" + }, + { + "geo_point_2d": { + "lon": 1.395033376117621, + "lat": 43.63454079134246 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.395033376117621, + 43.63454079134246 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Vabene", + "num_voies": "23", + "nom_voies": "rue pasteur", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.3975730359608454, + "lat": 43.63223447946379 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.397573035960845, + 43.63223447946379 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le Coin des Ginettes", + "num_voies": "1", + "nom_voies": "rue felix debax", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.3814194206505421, + "lat": 43.626529676098414 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.381419420650542, + 43.626529676098414 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Pullman Toulouse A\u00e9roport", + "num_voies": "2", + "nom_voies": "av didier daurat", + "structure": "H\u00f4tel" + }, + { + "geo_point_2d": { + "lon": 1.4144199028278908, + "lat": 43.609517957685036 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.414419902827891, + 43.609517957685036 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "MJC des Ponts Jumeaux", + "num_voies": "2", + "nom_voies": "port de l embouchure", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3343251837002503, + "lat": 43.58712920223704 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.33432518370025, + 43.58712920223704 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de quartier de Paderne", + "num_voies": "8", + "nom_voies": "rue paul valery", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.395310135642287, + "lat": 43.634555866702605 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.395310135642287, + 43.634555866702605 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le pavillon des an\u00e9mones", + "num_voies": "19B", + "nom_voies": "rue pasteur", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.427392324806763, + "lat": 43.596171536656406 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.427392324806763, + 43.596171536656406 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "MJC Roguet", + "num_voies": "9", + "nom_voies": "rue de gascogne", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.4439042887757745, + "lat": 43.604432262525606 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.443904288775774, + 43.604432262525606 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 26, + "noms": "Accueil du Capitole", + "num_voies": null, + "nom_voies": "place du Capitole", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4638937468951156, + "lat": 43.57490076566678 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.463893746895116, + 43.57490076566678 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de Quartier Rangueil", + "num_voies": "19", + "nom_voies": "rue claude de forbin", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4442324816087169, + "lat": 43.60192079286139 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444232481608717, + 43.60192079286139 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "CeSaMe (Centre Enipse de ressources en sant\u00e9 mentale LGBT+)", + "num_voies": "7", + "nom_voies": "rue des puits clos", + "structure": "Association" + }, + { + "geo_point_2d": { + "lon": 1.4309164134724472, + "lat": 43.59828478139317 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.430916413472447, + 43.59828478139317 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 42, + "noms": "Centre culturel Saint Cyprien", + "num_voies": "56", + "nom_voies": "All\u00e9e Charles de Fitte", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.388896018104162, + "lat": 43.582009865982364 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.388896018104162, + 43.582009865982364 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 85, + "noms": "Centre culturel Pradettes-Bordeblanche", + "num_voies": "1", + "nom_voies": "Av. de la D\u00e9p\u00eache", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.399075731136534, + "lat": 43.56454126317925 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399075731136534, + 43.56454126317925 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 87, + "noms": "Centre culturel Alban Minville", + "num_voies": "1", + "nom_voies": "place Martin Luther King", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4029497776146769, + "lat": 43.5720975106838 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.402949777614677, + 43.5720975106838 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 89, + "noms": "MdCOuest", + "num_voies": "1", + "nom_voies": "Place Conchita Grange Ramos", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.444711260235213, + "lat": 43.602138116124046 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444711260235213, + 43.602138116124046 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 2, + "noms": "Ch\u00e9ri Suki", + "num_voies": "14", + "nom_voies": "Rue Baronie", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.445364843896765, + "lat": 43.608598230039654 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.445364843896765, + 43.608598230039654 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 8, + "noms": "McDonald's Toulouse Jeanne D'Arc Originals", + "num_voies": "41", + "nom_voies": "bd de strasbourg", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4315970215986222, + "lat": 43.60788730322746 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.431597021598622, + 43.60788730322746 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 16, + "noms": "H\u00f4tel de Brienne", + "num_voies": "20", + "nom_voies": "Boulevard Mar\u00e9chal Leclerc", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.434097302248817, + "lat": 43.600883660446286 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.434097302248817, + 43.600883660446286 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Chapelle de la Grave", + "num_voies": "1", + "nom_voies": "pl lange", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.432779973627199, + "lat": 43.631470999402694 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.432779973627199, + 43.631470999402694 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 62, + "noms": "Centre social Nord Alliances et Cultures", + "num_voies": "12", + "nom_voies": "rue Marcel Clouete", + "structure": "Centre Social" + }, + { + "geo_point_2d": { + "lon": 1.4327649085030296, + "lat": 43.62915333679614 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.43276490850303, + 43.62915333679614 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 58, + "noms": "Le Chameau Sauvage", + "num_voies": "43", + "nom_voies": "avenue des \u00c9tats-Unis", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.4350946047243502, + "lat": 43.620506877143335 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.43509460472435, + 43.620506877143335 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 60, + "noms": "MdC Nord", + "num_voies": "4", + "nom_voies": "Place du March\u00e9 aux Cochons", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.442815381378068, + "lat": 43.60405083402665 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.442815381378068, + 43.60405083402665 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Les 3 Tenors", + "num_voies": "9", + "nom_voies": "pl du capitole", + "structure": "Restaurant" + }, + { + "geo_point_2d": { + "lon": 1.4427939234142824, + "lat": 43.60437479164685 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.442793923414282, + 43.60437479164685 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Grand Caf\u00e9 Le Florida", + "num_voies": "12", + "nom_voies": "pl du capitole", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.447006041261186, + "lat": 43.606430967289775 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.447006041261186, + 43.606430967289775 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le J'Go", + "num_voies": "16", + "nom_voies": "pl victor hugo", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.451883003915262, + "lat": 43.61101843726909 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.451883003915262, + 43.61101843726909 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Grand H\u00f4tel d'Orl\u00e9ans", + "num_voies": "72", + "nom_voies": "rue de bayard", + "structure": "Hotel" + }, + { + "geo_point_2d": { + "lon": 1.3945874454387932, + "lat": 43.63408001936969 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.394587445438793, + 43.63408001936969 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le Temps du CBD", + "num_voies": "7", + "nom_voies": "rue de lavoisier", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.3992458089713515, + "lat": 43.63456299269265 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399245808971352, + 43.63456299269265 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Ribouldingue", + "num_voies": "1", + "nom_voies": "bd firmin pons", + "structure": "Restaurant" + }, + { + "geo_point_2d": { + "lon": 1.3687977450971813, + "lat": 43.65569473177954 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.368797745097181, + 43.65569473177954 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "R\u00e9sidence Inn Toulouse Blagnac", + "num_voies": "11", + "nom_voies": "av d andromede", + "structure": "H\u00f4tel" + }, + { + "geo_point_2d": { + "lon": 1.402225995132683, + "lat": 43.637558740715605 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.402225995132683, + 43.637558740715605 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Piscine des Ramiers", + "num_voies": "1", + "nom_voies": "all de la piscine", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4078627862344413, + "lat": 43.60248634348646 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.407862786234441, + 43.60248634348646 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 55, + "noms": "Pitaya Tha\u00ef Street Food - Toulouse Cartoucherie", + "num_voies": null, + "nom_voies": "Place de la Charte des Libert\u00e9s Communales", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4414222764669005, + "lat": 43.59942137303674 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.4414222764669, + 43.59942137303674 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 22, + "noms": "Gym & Zen", + "num_voies": "51", + "nom_voies": "rue des Couteliers", + "structure": "Salle de Sports" + }, + { + "geo_point_2d": { + "lon": 1.3968991550094572, + "lat": 43.61510494442572 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.396899155009457, + 43.61510494442572 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "MJC Ancely", + "num_voies": "107", + "nom_voies": "av des arenes romaines", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.343584250928135, + "lat": 43.580781162527174 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.343584250928135, + 43.580781162527174 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le Quai", + "num_voies": "37", + "nom_voies": "all des sports", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4416754185662437, + "lat": 43.579117709112666 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.441675418566244, + 43.579117709112666 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "CAF Haute-Garonne Toulouse-Empalot", + "num_voies": "38", + "nom_voies": "av jean moulin", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.3981738063748541, + "lat": 43.63438284894067 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.398173806374854, + 43.63438284894067 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Herv\u00e9 Coiffure", + "num_voies": "5", + "nom_voies": "rue lavigne", + "structure": "Coiffure" + }, + { + "geo_point_2d": { + "lon": 1.379331950888641, + "lat": 43.653101493569004 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.379331950888641, + 43.653101493569004 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre Thi\u00eau L\u00e2m", + "num_voies": "3", + "nom_voies": "rue georges gay", + "structure": "Etablissement sportif" + }, + { + "geo_point_2d": { + "lon": 1.4435889118783758, + "lat": 43.604976178553756 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.443588911878376, + 43.604976178553756 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "McDonald's Toulouse Capitole", + "num_voies": "23", + "nom_voies": "pl du capitole", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4357822133443696, + "lat": 43.582014168665765 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.43578221334437, + 43.582014168665765 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Boutique TFC Stadium", + "num_voies": "1", + "nom_voies": "all gabriel bienes", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.440735219787128, + "lat": 43.6079763728043 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.440735219787128, + 43.6079763728043 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Mus\u00e9e Saint-Raymond", + "num_voies": "1", + "nom_voies": "pl saint sernin", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3439614754982734, + "lat": 43.584228299547895 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.343961475498273, + 43.584228299547895 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Bistrot Marcel-Andr\u00e9", + "num_voies": "44", + "nom_voies": "rue gaston doumergue", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4009817847681252, + "lat": 43.619035058888606 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.400981784768125, + 43.619035058888606 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "MJC Ancely Toulouse", + "num_voies": "7", + "nom_voies": "all des causses", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3845681557764864, + "lat": 43.636115419656484 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.384568155776486, + 43.636115419656484 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Carrefour City", + "num_voies": "1", + "nom_voies": "pl des marronniers", + "structure": "Epicerie" + }, + { + "geo_point_2d": { + "lon": 1.4889994920586826, + "lat": 43.56317219359755 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.488999492058683, + 43.56317219359755 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 77, + "noms": "B612 - Centre d'innovation Toulouse A\u00e9rospace", + "num_voies": "3", + "nom_voies": "rue tarfaya", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4675870686419241, + "lat": 43.61624496552378 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.467587068641924, + 43.61624496552378 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Chapelle des Carm\u00e9lites", + "num_voies": "1", + "nom_voies": "Rue de P\u00e9rigord", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.346658044193497, + "lat": 43.584168136993895 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.346658044193497, + 43.584168136993895 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "La F\u00e9e Bobo", + "num_voies": "89", + "nom_voies": "rue gaston doumergue", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.470815471314441, + "lat": 43.628222579332494 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.470815471314441, + 43.628222579332494 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre Social APSAR", + "num_voies": "170", + "nom_voies": "che michoun", + "structure": "Centre social" + }, + { + "geo_point_2d": { + "lon": 1.462423046229269, + "lat": 43.6135477400805 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.462423046229269, + 43.6135477400805 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre Social Jolimont", + "num_voies": "11", + "nom_voies": "av de l observatoire", + "structure": "Centre Social" + }, + { + "geo_point_2d": { + "lon": 1.4440594655454093, + "lat": 43.59248382580931 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444059465545409, + 43.59248382580931 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "McDonald's Saint Michel", + "num_voies": "6", + "nom_voies": "allees paul feuga", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4561695416451437, + "lat": 43.60155788798341 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.456169541645144, + 43.60155788798341 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Agence Centrale - CPAM Haute Garonne", + "num_voies": "3", + "nom_voies": "bd pr leopold escande", + "structure": "Organisme" + }, + { + "geo_point_2d": { + "lon": 1.4498047604248945, + "lat": 43.60400273031115 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.449804760424894, + 43.60400273031115 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 4, + "noms": "Halles de la cit\u00e9", + "num_voies": "1", + "nom_voies": "Rue Pierre Baudis", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.411827637819427, + "lat": 43.57946189464477 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.411827637819427, + 43.57946189464477 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 49, + "noms": "Centre culturel Henri Desbals", + "num_voies": "128", + "nom_voies": "Rue Henri Desbals", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4535874072187398, + "lat": 43.616310186389526 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.45358740721874, + 43.616310186389526 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 70, + "noms": "Centre culturel Bonnefoy", + "num_voies": "4", + "nom_voies": "Rue du Faubourg Bonnefoy", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4746562355541146, + "lat": 43.61424247787154 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.474656235554115, + 43.61424247787154 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 73, + "noms": "Centre culturel Soupetard", + "num_voies": "63", + "nom_voies": "Chem. de Heredia", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4767129977413946, + "lat": 43.62374585358111 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.476712997741395, + 43.62374585358111 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 74, + "noms": "Le Lido - Centre Des Arts Du Cirque", + "num_voies": "14", + "nom_voies": "Rue de Gaillac", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4388116191526394, + "lat": 43.578248287058045 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.438811619152639, + 43.578248287058045 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 83, + "noms": "MJC Empalot", + "num_voies": "9", + "nom_voies": "rue Laria Mombiola", + "structure": "MJC" + }, + { + "geo_point_2d": { + "lon": 1.4029497776146769, + "lat": 43.5720975106838 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.402949777614677, + 43.5720975106838 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 88, + "noms": "Centre culturel Reynerie", + "num_voies": "1", + "nom_voies": "Place Conchita Grange Ramos", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4453412042632117, + "lat": 43.597481972415345 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.445341204263212, + 43.597481972415345 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 30, + "noms": "Accueil Urbanisme", + "num_voies": "1", + "nom_voies": "pl des carmes", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4446294506125616, + "lat": 43.60064164284952 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444629450612562, + 43.60064164284952 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 7, + "noms": "McDonald's Toulouse Esquirol", + "num_voies": "12", + "nom_voies": "place Esquirol", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4498047604248945, + "lat": 43.60400273031115 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.449804760424894, + 43.60400273031115 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 1, + "noms": "Ch\u00e9ri Ch\u00e9ri", + "num_voies": "1", + "nom_voies": "rue Pierre Baudis", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4428783834860586, + "lat": 43.60399274432936 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.442878383486059, + 43.60399274432936 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 11, + "noms": "Pizzeria Osteria Le Bellini", + "num_voies": "9", + "nom_voies": "place du Capitole", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.453661853526286, + "lat": 43.59986186012607 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.453661853526286, + 43.59986186012607 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 34, + "noms": "Caf\u00e9 Authi\u00e9", + "num_voies": "25", + "nom_voies": "pl dominique martin dupuy", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4080718829072738, + "lat": 43.602630336437834 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.408071882907274, + 43.602630336437834 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 56, + "noms": "Les 500", + "num_voies": "1", + "nom_voies": "Place de la Charte des Libert\u00e9s Communales", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.438653730032972, + "lat": 43.623991251826176 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.438653730032972, + 43.623991251826176 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 59, + "noms": "Th\u00e9\u00e2tre des Mazades", + "num_voies": "10", + "nom_voies": "avenue des Mazades", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4424897888729569, + "lat": 43.6366647119692 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.442489788872957, + 43.6366647119692 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 65, + "noms": "Centre culturel Renan", + "num_voies": "5", + "nom_voies": "Chem. d'Audibert", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.438890969316836, + "lat": 43.602101985067854 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.438890969316836, + 43.602101985067854 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "DG Am\u00e9nagement", + "num_voies": "17", + "nom_voies": "pl de la daurade", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.447124603275113, + "lat": 43.60532842337802 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.447124603275113, + 43.60532842337802 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le Bon Vivre", + "num_voies": "15B", + "nom_voies": "pl du president thomas woodrow wilson", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.3958337153151823, + "lat": 43.63471779060587 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.395833715315182, + 43.63471779060587 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Didier Commincas", + "num_voies": "12", + "nom_voies": "rue pasteur", + "structure": "Coiffure" + }, + { + "geo_point_2d": { + "lon": 1.3994270534384645, + "lat": 43.63485456628063 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399427053438465, + 43.63485456628063 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le Toucan", + "num_voies": "2", + "nom_voies": "bd firmin pons", + "structure": "Restaurant" + }, + { + "geo_point_2d": { + "lon": 1.3887457344107172, + "lat": 43.632975948918336 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.388745734410717, + 43.632975948918336 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "La Vigne est belle", + "num_voies": "21", + "nom_voies": "av du parc", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.3861045610422786, + "lat": 43.63475382747167 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.386104561042279, + 43.63475382747167 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Medialudo", + "num_voies": "4", + "nom_voies": "av du parc", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4328856998849244, + "lat": 43.60989317544623 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.432885699884924, + 43.60989317544623 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Chambre des M\u00e9tiers et de l'Artisanat de Haute-Garonne", + "num_voies": "18B", + "nom_voies": "bd lascrosses", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3999997267729465, + "lat": 43.581252556504374 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399999726772946, + 43.581252556504374 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Centre Social Mirail U Pradettes", + "num_voies": "14", + "nom_voies": "che du mirail", + "structure": "Centre Social" + }, + { + "geo_point_2d": { + "lon": 1.4448300706419641, + "lat": 43.60747716019509 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.444830070641964, + 43.60747716019509 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "COSAT", + "num_voies": "7", + "nom_voies": "rue de perigord", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3371416244685626, + "lat": 43.589034477069724 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.337141624468563, + 43.589034477069724 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "L'Archipel - Tiers Lieu Educatif", + "num_voies": "1", + "nom_voies": "av de l ariege", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3940679310305872, + "lat": 43.634497600459426 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.394067931030587, + 43.634497600459426 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Barrelle", + "num_voies": "35", + "nom_voies": "rue pasteur", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.3982454945378122, + "lat": 43.63448820598489 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.398245494537812, + 43.63448820598489 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Val\u00e9rie Verhaeghe opticien", + "num_voies": "2", + "nom_voies": "rue lavigne", + "structure": "Boutique" + }, + { + "geo_point_2d": { + "lon": 1.399088363000172, + "lat": 43.63539658144575 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399088363000172, + 43.63539658144575 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Cin\u00e9ma Rex", + "num_voies": null, + "nom_voies": null, + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.451883003915262, + "lat": 43.61101843726909 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.451883003915262, + 43.61101843726909 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "La Ripaille", + "num_voies": "72", + "nom_voies": "rue de bayard", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.4439223434844957, + "lat": 43.59494463548234 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.443922343484496, + 43.59494463548234 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 5, + "noms": "Kopi Coffee Shop", + "num_voies": "20", + "nom_voies": "place du Salin", + "structure": "Restaurant / Caf\u00e9 / Bar" + }, + { + "geo_point_2d": { + "lon": 1.346649187249569, + "lat": 43.582816204665505 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.346649187249569, + 43.582816204665505 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Accueil Mairie", + "num_voies": "1", + "nom_voies": "all albert camus", + "structure": null + }, + { + "geo_point_2d": { + "lon": 1.3991845160483931, + "lat": 43.63330983755907 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399184516048393, + 43.63330983755907 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "D\u00e9partement Manifestations", + "num_voies": "1", + "nom_voies": "pl herisson", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3880079209709846, + "lat": 43.64118726506995 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.388007920970985, + 43.64118726506995 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Tutti Pizza", + "num_voies": "154", + "nom_voies": "rte de grenade", + "structure": "Restaurant" + }, + { + "geo_point_2d": { + "lon": 1.4549583597026683, + "lat": 43.64254095391889 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.454958359702668, + 43.64254095391889 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 68, + "noms": "Agence Tiss\u00e9o Borderouge", + "num_voies": null, + "nom_voies": "Bd Andr\u00e9 Netwiller", + "structure": "Agence Commerciale TISSEO" + }, + { + "geo_point_2d": { + "lon": 1.4504311319276686, + "lat": 43.60558254919474 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.450431131927669, + 43.60558254919474 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Connexion Live", + "num_voies": "8", + "nom_voies": "rue gabriel peri", + "structure": "Etablissement de nuit" + }, + { + "geo_point_2d": { + "lon": 1.3956028490120886, + "lat": 43.6346839891338 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.395602849012089, + 43.6346839891338 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Mini Beaut\u00e9 Institut", + "num_voies": "16", + "nom_voies": "rue pasteur", + "structure": "Esth\u00e9tique" + }, + { + "geo_point_2d": { + "lon": 1.4531135648590787, + "lat": 43.603175153612575 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.453113564859079, + 43.603175153612575 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Espace diversit\u00e9s la\u00efcit\u00e9", + "num_voies": "38", + "nom_voies": "rue d aubuisson", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3147203538354233, + "lat": 43.57554175967364 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.314720353835423, + 43.57554175967364 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Maison de quartier de Qu\u00e9fets", + "num_voies": "1", + "nom_voies": "bd alain savary", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3425249881211694, + "lat": 43.581455385090486 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.342524988121169, + 43.581455385090486 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Auchan", + "num_voies": "5", + "nom_voies": "rue bertrand panouse", + "structure": "Magasin alimentaire" + }, + { + "geo_point_2d": { + "lon": 1.448898996355101, + "lat": 43.594211194792805 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.448898996355101, + 43.594211194792805 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Mus\u00e9um de Toulouse", + "num_voies": "35", + "nom_voies": "allees jules guesde", + "structure": "Mus\u00e9e" + }, + { + "geo_point_2d": { + "lon": 1.4031397114904482, + "lat": 43.570815303224336 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.403139711490448, + 43.570815303224336 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Association Parle Avec Elles", + "num_voies": "5", + "nom_voies": "rue de kiev", + "structure": "Association" + }, + { + "geo_point_2d": { + "lon": 1.4531559227087003, + "lat": 43.59158360684302 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.4531559227087, + 43.59158360684302 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Monument \u00e0 la gloire de la R\u00e9sistance - Dir. mus\u00e9es et monuments", + "num_voies": "4", + "nom_voies": "allees frederic mistral", + "structure": "Site Mairie" + }, + { + "geo_point_2d": { + "lon": 1.43012285232143, + "lat": 43.59781908756934 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.43012285232143, + 43.59781908756934 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 43, + "noms": "MdC Rive Gauche", + "num_voies": "20", + "nom_voies": "place Jean Diebold", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4388116191526394, + "lat": 43.578248287058045 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.438811619152639, + 43.578248287058045 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 80, + "noms": "Centre culturel Brique Rouge", + "num_voies": "9", + "nom_voies": "Rue Maria Mombiola", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.4186942766796513, + "lat": 43.59308172407422 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.418694276679651, + 43.59308172407422 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 52, + "noms": "Agence Tisseo Ar\u00e8nes", + "num_voies": null, + "nom_voies": "Pl. Agapito Nadal", + "structure": "Agence Commerciale TISSEO" + }, + { + "geo_point_2d": { + "lon": 1.4505615920452153, + "lat": 43.59475789309618 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.450561592045215, + 43.59475789309618 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 79, + "noms": "Quai des Savoirs", + "num_voies": "39", + "nom_voies": "allees jules guesde", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.408355904105332, + "lat": 43.616849707362 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.408355904105332, + 43.616849707362 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": 63, + "noms": "Centre culturel Espace Job", + "num_voies": "105", + "nom_voies": "Rte de Blagnac", + "structure": "Mairie" + }, + { + "geo_point_2d": { + "lon": 1.3994048756278865, + "lat": 43.63295360402012 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.399404875627887, + 43.63295360402012 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Le Bistrophile", + "num_voies": "6B", + "nom_voies": "rue felix debax", + "structure": "Restaurant" + }, + { + "geo_point_2d": { + "lon": 1.3803644341056476, + "lat": 43.63068984748725 + }, + "geo_shape": { + "type": "Feature", + "geometry": { + "coordinates": [ + [ + 1.380364434105648, + 43.63068984748725 + ] + ], + "type": "MultiPoint" + }, + "properties": {} + }, + "id": -9999, + "noms": "Radisson Blu Hotel Airport", + "num_voies": "2", + "nom_voies": "rue dieudonne costes", + "structure": "H\u00f4tel" + } +] \ No newline at end of file diff --git a/mappings/converters/configAskAngela.ts b/mappings/converters/configAskAngela.ts new file mode 100644 index 0000000..abf6a2d --- /dev/null +++ b/mappings/converters/configAskAngela.ts @@ -0,0 +1,60 @@ +/** + * commerces adhérant à Ask Angela + * https://wiki.openstreetmap.org/wiki/FR:Tag:harassment_prevention%3Dask_angela + */ +import MappingConfigType from "../mapping-config.type"; + +const MappingAskAngela: MappingConfigType = { + config_name: "mappingRouenParkingVelos", + config_author: "tykayn ", + default_properties_of_point: { + 'harassment_prevention': 'ask_angela', + }, + source: { + geojson_path: '', + url: '' + }, + filters: { + // exclude_point_if_tag_not_empty: ['id_osm'], // on peut exclure des données converties celles qui sont déjà avec un identifiant openstreetmap afin de favoriser l'intégration san avoir à gérer les doublons + // offset: 50 + }, + add_not_mapped_tags_too: false, + boolean_keys: [], + tags_to_ignore_if_value_is: ['Non renseigne'], + tags: { + // ******* opendata de toulouse START ************** + structure: { + remove_original_key: true, + conditional_values: { + "Hôtel": { + tags_to_add: { + 'tourism': 'hotel' + } + }, + "Restaurant": { + tags_to_add: { + 'amenity': 'restaurant' + } + }, + } + }, + 'id': 'ref:FR:Toulouse:ask_angela_id', + noms: 'name', + // ******* opendata de toulouse END ************** + // ******* opendata de poitiers START ************** + '_id': 'ref:FR:Poitiers:ask_angela_id', + // ******* opendata de poitiers END ************** + + + // ******* opendata de bordeaux START ************** + 'gid': 'ref:FR:Bordeaux:ask_angela_id', + 'libelle': 'name', + 'url': 'contact:website', + 'cdate': 'start_date:ask_angela', + 'mdate': 'check_date:ask_angela', + // ******* opendata de bordeaux END ************** + + } +} + +export default MappingAskAngela;