diff --git a/convert_to_osm_tags.ts b/convert_to_osm_tags.ts index aab5a69..3b17ba0 100644 --- a/convert_to_osm_tags.ts +++ b/convert_to_osm_tags.ts @@ -18,7 +18,6 @@ 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 = [ @@ -29,6 +28,7 @@ const allowed_configs = [ ]; import minimist = require('minimist'); +import MappingAskAngela from "./mappings/converters/configAskAngela"; const debugLog = utils.debugLog; @@ -77,6 +77,9 @@ if (mini_arguments['engine-config']) { let Mapping_engine: any; let outname = 'converted_' +if (mini_arguments['output-file']) { + outname = mini_arguments['output-file']; +} if (mini_arguments['outname']) { outname = mini_arguments['outname']; } @@ -125,8 +128,11 @@ let output_folder = 'output'; * @param fileContent */ function writeFile(fileName: string, fileContent: any) { + if(outname){ + fileName = ''+outname; + } let write_path = `./${output_folder}/${fileName}` - debugLog("write file \n", outname + fileName, write_path) + debugLog("write file \n", fileName, write_path) console.log("-------- write file \n", fileName, "\n", write_path) @@ -198,7 +204,36 @@ function convertDataFromSource(sourceFilePath: string, mapping: MappingConfigTyp let regex_filter_test_result = true let remove_original_key = false; - feature_point.properties.tags?.forEach((tagKey: string, tagValue: string) => { + + // fix des jeux de données qui ne sont pas des geojson + + let properties_list:any = Object.keys(feature_point) + + if(feature_point.geo_point_2d){ + feature_point["type"] = "Feature" + + feature_point["geometry"]={ + "coordinates": feature_point.geo_point_2d[0], + "type": "Point" + } + } + + if(feature_point['properties']){ + properties_list = feature_point.properties + if(feature_point.properties['tags']){ + properties_list = feature_point.properties.tags + } + } + if(!feature_point["properties"]){ + let properties_list_to_move:any = Object.keys(feature_point) + feature_point["properties"] = {} + + properties_list_to_move.forEach((tagKey: string, tagValue: any)=> { + feature_point["properties"][tagKey] = feature_point[tagKey] + }) + } + + properties_list?.forEach((tagKey: string, tagValue: string) => { if (mapping.filters && mapping.filters.exclude_point_if_tag_not_empty?.indexOf(tagKey) !== -1 && tagValue.length && tagValue !== 'null') { diff --git a/docs/ask_angela.md b/docs/ask_angela.md index cef8322..624ba11 100644 --- a/docs/ask_angela.md +++ b/docs/ask_angela.md @@ -4,7 +4,7 @@ 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 +ts-node convert_to_osm_tags.ts --source=etalab_data/askangela/toulouse_askangela.json --output-file=toulouse_askangela.json --engine-config=MappingAskAngela ``` ## Conversion des données de Bordeaux diff --git a/etalab_data/askangela/toulouse_askangela.json b/etalab_data/askangela/toulouse_askangela.json index c0a8936..51b5af7 100644 --- a/etalab_data/askangela/toulouse_askangela.json +++ b/etalab_data/askangela/toulouse_askangela.json @@ -1,4370 +1,4373 @@ -[ - { - "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 +{ + "type": "FeatureCollection", + "features": [ + { + "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" + } + ] +} diff --git a/mappings/converters/configAskAngela.ts b/mappings/converters/configAskAngela.ts index abf6a2d..e64a8cf 100644 --- a/mappings/converters/configAskAngela.ts +++ b/mappings/converters/configAskAngela.ts @@ -16,7 +16,7 @@ const MappingAskAngela: MappingConfigType = { }, 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 + // offset: 1 }, add_not_mapped_tags_too: false, boolean_keys: [], diff --git a/output/toulouse_askangela.json b/output/toulouse_askangela.json new file mode 100644 index 0000000..e7d7dac --- /dev/null +++ b/output/toulouse_askangela.json @@ -0,0 +1,2020 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "McDonald's Arènes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Starbucks CC Gramont" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Ibis Toulouse Gare Matabiau", + "tourism": "hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Les boutiques Saint Georges" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Pharmacie du Capitole" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Feeling Conduite" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 69, + "name": "Brasserie La Ripaille" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Espace Germaine Chaumel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Club de prévention spécialisée Faourette" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Confédération de l'Artisanat et des Petites Entreprises du Bâtiment de la Haute-Garonne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "L'Amandier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Boucherie Michael" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "NH Toulouse Airport", + "tourism": "hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Espace famille" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Police municipale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 78, + "name": "MJC pont des Demoiselles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre d’accueil thérapeutique à temps partiel Saint-Michel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Médiathèque" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Washoku", + "amenity": "restaurant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Chapelle des Carmélites (Direction des musées et monuments)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 25, + "name": "MdC Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 28, + "name": "Direction de la Sécurité Civile et des Risques Majeurs" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre Social Soupetard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre Social Izard-Borderouge Caf Haute-Garonne Toulouse Les-Izards" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Association Espoir" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Espace Santé Saint Etienne - CPAM" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 44, + "name": "Galerie du château d'eau" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 75, + "name": "MdC Est" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 91, + "name": "Centre culturel Saint Simon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 38, + "name": "Quality Hôtel Toulouse Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 10, + "name": "Pitaya Capitole" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 13, + "name": "Le Roll" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 17, + "name": "MERCURE Toulouse Saint Georges" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 51, + "name": "Centre social Bagatelle -ASSQOT" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 15, + "name": "Café associatif L'Escabel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 64, + "name": "Pharmacie de La Croix du Sud" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 67, + "name": "Maison municipale des familles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Union Immobilière des Organismes de Sécurité Sociale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de Quartier Lalande" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Conservatoire" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Appart-hôtel Saint Exupery", + "tourism": "hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Pièce Unique" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Patinoire" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Pierre Passion" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "CAF de Haute-Garonne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Pradere coiffeur" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de Quartier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Starbucks - Rangueil" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Café Oz" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 9, + "name": "McDonald's Toulouse Roosevelt" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 90, + "name": "Centre social Reynerie-CAF" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Boutique TFC Centre-ville" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de l'Emploi et de la Solidarité" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Profession Beauté" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Musée des Augustins" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 24, + "name": "Centre culturel Bellegarde" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Agence Bagatelle - CPAM Haute-Garonne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 71, + "name": "Agence Tisséo Marengo-SNCF" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 86, + "name": "Agence Tisseo Basso Cambo" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 76, + "name": "Mongelli Côté pavée" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 12, + "name": "Restaurant Les Illustres" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 81, + "name": "Le Castelet" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 37, + "name": "Quality Hôtel Toulouse Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 39, + "name": "Favoris Boutique Vintage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 48, + "name": "McDonald's Toulouse Arènes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 57, + "name": "La Passerelle Negreneys" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "MDC Sud-Est Niel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Pôle territorial Ouest" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Face B Friperie" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Au temps libre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Accueil DGRH / point info" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "La Clef des Charmes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Optique Croix Blanche" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "MS Coiffeurs Passionnés de Blagnac" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Service social" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Pharmacie de La Croix du Sud" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 50, + "name": "Foyer d'Education Populaire Etienne Billières" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Appart-hôtel Clément Ader", + "tourism": "hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de Justice et du Droit" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de quartier de Pahin" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre Communale d'Action Sociale - CCAS" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Guichet Familles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "TotalEnergies - Relais Blagnac Lomagne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Les domaines qui montent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Vabene" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le Coin des Ginettes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Pullman Toulouse Aéroport", + "tourism": "hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "MJC des Ponts Jumeaux" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de quartier de Paderne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le pavillon des anémones" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "MJC Roguet" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 26, + "name": "Accueil du Capitole" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de Quartier Rangueil" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "CeSaMe (Centre Enipse de ressources en santé mentale LGBT+)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 42, + "name": "Centre culturel Saint Cyprien" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 85, + "name": "Centre culturel Pradettes-Bordeblanche" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 87, + "name": "Centre culturel Alban Minville" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 89, + "name": "MdCOuest" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 2, + "name": "Chéri Suki" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 8, + "name": "McDonald's Toulouse Jeanne D'Arc Originals" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 16, + "name": "Hôtel de Brienne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Chapelle de la Grave" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 62, + "name": "Centre social Nord Alliances et Cultures" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 58, + "name": "Le Chameau Sauvage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 60, + "name": "MdC Nord" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Les 3 Tenors", + "amenity": "restaurant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Grand Café Le Florida" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le J'Go" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Grand Hôtel d'Orléans" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le Temps du CBD" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Ribouldingue", + "amenity": "restaurant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Résidence Inn Toulouse Blagnac", + "tourism": "hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Piscine des Ramiers" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 55, + "name": "Pitaya Thaï Street Food - Toulouse Cartoucherie" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 22, + "name": "Gym & Zen" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "MJC Ancely" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le Quai" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "CAF Haute-Garonne Toulouse-Empalot" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Hervé Coiffure" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre Thiêu Lâm" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "McDonald's Toulouse Capitole" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Boutique TFC Stadium" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Musée Saint-Raymond" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Bistrot Marcel-André" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "MJC Ancely Toulouse" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Carrefour City" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 77, + "name": "B612 - Centre d'innovation Toulouse Aérospace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Chapelle des Carmélites" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "La Fée Bobo" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre Social APSAR" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre Social Jolimont" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "McDonald's Saint Michel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Agence Centrale - CPAM Haute Garonne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 4, + "name": "Halles de la cité" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 49, + "name": "Centre culturel Henri Desbals" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 70, + "name": "Centre culturel Bonnefoy" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 73, + "name": "Centre culturel Soupetard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 74, + "name": "Le Lido - Centre Des Arts Du Cirque" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 83, + "name": "MJC Empalot" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 88, + "name": "Centre culturel Reynerie" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 30, + "name": "Accueil Urbanisme" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 7, + "name": "McDonald's Toulouse Esquirol" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 1, + "name": "Chéri Chéri" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 11, + "name": "Pizzeria Osteria Le Bellini" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 34, + "name": "Café Authié" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 56, + "name": "Les 500" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 59, + "name": "Théâtre des Mazades" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 65, + "name": "Centre culturel Renan" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "DG Aménagement" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le Bon Vivre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Didier Commincas" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le Toucan", + "amenity": "restaurant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "La Vigne est belle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Medialudo" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Chambre des Métiers et de l'Artisanat de Haute-Garonne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Centre Social Mirail U Pradettes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "COSAT" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "L'Archipel - Tiers Lieu Educatif" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Barrelle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Valérie Verhaeghe opticien" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Cinéma Rex" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "La Ripaille" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 5, + "name": "Kopi Coffee Shop" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Accueil Mairie" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Département Manifestations" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Tutti Pizza", + "amenity": "restaurant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 68, + "name": "Agence Tisséo Borderouge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Connexion Live" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Mini Beauté Institut" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Espace diversités laïcité" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Maison de quartier de Quéfets" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Auchan" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Muséum de Toulouse" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Association Parle Avec Elles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Monument à la gloire de la Résistance - Dir. musées et monuments" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 43, + "name": "MdC Rive Gauche" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 80, + "name": "Centre culturel Brique Rouge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 52, + "name": "Agence Tisseo Arènes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 79, + "name": "Quai des Savoirs" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": 63, + "name": "Centre culturel Espace Job" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Le Bistrophile", + "amenity": "restaurant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point" + }, + "properties": { + "harassment_prevention": "ask_angela", + "ref:FR:Toulouse:ask_angela_id": -9999, + "name": "Radisson Blu Hotel Airport", + "tourism": "hotel" + } + } + ] +} \ No newline at end of file