diff --git a/backend/src/landmarks_manager.py b/backend/src/landmarks_manager.py index a45c910..b22fbb0 100644 --- a/backend/src/landmarks_manager.py +++ b/backend/src/landmarks_manager.py @@ -111,6 +111,15 @@ def take_most_important(L: List[Landmark]) -> List[Landmark] : # Remove duplicate elements and elements with low score def remove_duplicates(L: List[Landmark]) -> List[Landmark] : + """ + Removes duplicate landmarks based on their names from the given list. + + Parameters: + L (List[Landmark]): A list of Landmark objects. + + Returns: + List[Landmark]: A list of unique Landmark objects based on their names. + """ L_clean = [] names = [] @@ -180,124 +189,6 @@ def create_bbox(coordinates: Tuple[float, float], side_length: int) -> Tuple[flo return min_lat, min_lon, max_lat, max_lon -# Generates the list of landmarks for a given Landmarktype. Needs coordinates, a list of amenities and the corresponding LandmarkType -def get_landmarks_coords(coordinates: Tuple[float, float], list_amenity: list, landmarktype: LandmarkType) -> List[Landmark]: - - # Read the parameters from the file - with open (os.path.dirname(os.path.abspath(__file__)) + '/parameters/landmarks_manager.params', "r") as f : - parameters = json.loads(f.read()) - tag_coeff = parameters['tag coeff'] - park_coeff = parameters['park coeff'] - church_coeff = parameters['church coeff'] - radius = parameters['radius close to'] - bbox_side = parameters['city bbox side'] - - # Generate a bbox around current coordinates - bbox = create_bbox(coordinates, bbox_side) - - # Initialize some variables - overpass = Overpass() - N = 0 - L = [] - - for amenity in list_amenity : - query = overpassQueryBuilder(bbox=bbox, elementType=['way', 'relation'], selector=amenity, includeCenter=True, out='body') - result = overpass.query(query) - N += result.countElements() - - for elem in result.elements(): - - name = elem.tag('name') # Add name, decode to ASCII - location = (elem.centerLat(), elem.centerLon()) # Add coordinates (lat, lon) - - # Skip if unprecise location - if name is None or location[0] is None: - continue - - # Skip if unused - if 'disused:leisure' in elem.tags().keys(): - continue - - else : - osm_type = elem.type() # Add type : 'way' or 'relation' - osm_id = elem.id() # Add OSM id - elem_type = landmarktype # Add the landmark type as 'sightseeing - n_tags = len(elem.tags().keys()) # Add number of tags - - # Add score of given landmark based on the number of surrounding elements. Penalty for churches as there are A LOT - if amenity == "'amenity'='place_of_worship'" : - score = int((count_elements_within_radius(location, radius) + n_tags*tag_coeff )*church_coeff) - elif amenity == "'leisure'='park'" : - score = int((count_elements_within_radius(location, radius) + n_tags*tag_coeff )*park_coeff) - else : - score = count_elements_within_radius(location, radius) + n_tags*tag_coeff - - if score is not None : - # Generate the landmark and append it to the list - landmark = Landmark(name=name, type=elem_type, location=location, osm_type=osm_type, osm_id=osm_id, attractiveness=score, must_do=False, n_tags=n_tags) - L.append(landmark) - - return L - -def get_landmarks_nominatim(city_country: str, list_amenity: list, landmarktype: LandmarkType) -> List[Landmark] : - - # Read the parameters from the file - with open (os.path.dirname(os.path.abspath(__file__)) + '/parameters/landmarks_manager.params', "r") as f : - parameters = json.loads(f.read()) - tag_coeff = parameters['tag coeff'] - park_coeff = parameters['park coeff'] - church_coeff = parameters['church coeff'] - radius = parameters['radius close to'] - - overpass = Overpass() - nominatim = Nominatim() - areaId = nominatim.query(city_country).areaId() - - # Initialize some variables - N = 0 - L = [] - - for amenity in list_amenity : - query = overpassQueryBuilder(area=areaId, elementType=['way', 'relation'], selector=amenity, includeCenter=True, out='body') - result = overpass.query(query) - N += result.countElements() - - for elem in result.elements(): - - name = elem.tag('name') # Add name - location = (elem.centerLat(), elem.centerLon()) # Add coordinates (lat, lon) - - # skip if unprecise location - if name is None or location[0] is None: - continue - - # skip if unused - if 'disused:leisure' in elem.tags().keys(): - continue - - else : - osm_type = elem.type() # Add type : 'way' or 'relation' - osm_id = elem.id() # Add OSM id - elem_type = landmarktype # Add the landmark type as 'sightseeing - n_tags = len(elem.tags().keys()) # Add number of tags - - # Add score of given landmark based on the number of surrounding elements. Penalty for churches as there are A LOT - if amenity == "'amenity'='place_of_worship'" : - score = int((count_elements_within_radius(location, radius) + n_tags*tag_coeff )*church_coeff) - elif amenity == "'leisure'='park'" : - score = int((count_elements_within_radius(location, radius) + n_tags*tag_coeff )*park_coeff) - else : - score = count_elements_within_radius(location, radius) + n_tags*tag_coeff - - if score is not None : - # Generate the landmark and append it to the list - landmark = Landmark(name=name, type=elem_type, location=location, osm_type=osm_type, osm_id=osm_id, attractiveness=score, must_do=False, n_tags=n_tags) - L.append(landmark) - - return L - - - def get_landmarks(list_amenity: list, landmarktype: LandmarkType, city_country: str = None, coordinates: Tuple[float, float] = None) -> List[Landmark] : diff --git a/backend/src/parameters/landmarks_manager.params b/backend/src/parameters/landmarks_manager.params index a80693c..087525e 100644 --- a/backend/src/parameters/landmarks_manager.params +++ b/backend/src/parameters/landmarks_manager.params @@ -2,7 +2,7 @@ "city bbox side" : 10, "radius close to" : 27.5, "church coeff" : 0.6, - "park coeff" : 1.4, + "park coeff" : 1.5, "tag coeff" : 100, "N important" : 30 } \ No newline at end of file diff --git a/backend/src/tester.py b/backend/src/tester.py index 294ed72..bc8fc4b 100644 --- a/backend/src/tester.py +++ b/backend/src/tester.py @@ -80,7 +80,7 @@ def test4(coordinates: tuple[float, float]) -> List[Landmark]: landmarks, landmarks_short = generate_landmarks(preferences=preferences, city_country=city_country, coordinates=coordinates) - #write_data(landmarks) + write_data(landmarks) start = Landmark(name='start', type=LandmarkType(landmark_type='start'), location=(48.8375946, 2.2949904), osm_type='start', osm_id=0, attractiveness=0, must_do=True, n_tags = 0) diff --git a/landmarks.txt b/landmarks.txt index 7b7d15f..da2c309 100644 --- a/landmarks.txt +++ b/landmarks.txt @@ -10,7 +10,7 @@ ], "osm_type":"way", "osm_id":17954721, - "attractiveness":18, + "attractiveness":30, "must_do":false, "n_tags":30, "time_to_reach":0 @@ -26,7 +26,7 @@ ], "osm_type":"way", "osm_id":19856722, - "attractiveness":19, + "attractiveness":32, "must_do":false, "n_tags":32, "time_to_reach":0 @@ -42,7 +42,7 @@ ], "osm_type":"way", "osm_id":21999357, - "attractiveness":10, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 @@ -58,7 +58,7 @@ ], "osm_type":"way", "osm_id":21999454, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 @@ -74,7 +74,7 @@ ], "osm_type":"way", "osm_id":22870791, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 @@ -90,12 +90,28 @@ ], "osm_type":"way", "osm_id":23644147, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, "6":{ + "name":"Halle Saint-Pierre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8848435, + 2.3445246 + ], + "osm_type":"way", + "osm_id":45073393, + "attractiveness":13, + "must_do":false, + "n_tags":13, + "time_to_reach":0 + }, + "7":{ "name":"Jeu de Paume", "type":{ "landmark_type":"sightseeing" @@ -106,12 +122,12 @@ ], "osm_type":"way", "osm_id":54188994, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "7":{ + "8":{ "name":"Musée de l'Orangerie", "type":{ "landmark_type":"sightseeing" @@ -122,12 +138,12 @@ ], "osm_type":"way", "osm_id":54188996, - "attractiveness":14, + "attractiveness":24, "must_do":false, "n_tags":24, "time_to_reach":0 }, - "8":{ + "9":{ "name":"Atelier Brancusi", "type":{ "landmark_type":"sightseeing" @@ -138,12 +154,12 @@ ], "osm_type":"way", "osm_id":55503399, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "9":{ + "10":{ "name":"Lafayette Anticipations", "type":{ "landmark_type":"sightseeing" @@ -154,12 +170,12 @@ ], "osm_type":"way", "osm_id":55865819, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "10":{ + "11":{ "name":"Grand Palais", "type":{ "landmark_type":"sightseeing" @@ -170,12 +186,12 @@ ], "osm_type":"way", "osm_id":56185523, - "attractiveness":13, + "attractiveness":22, "must_do":false, "n_tags":22, "time_to_reach":0 }, - "11":{ + "12":{ "name":"Pavillon de l'Arsenal", "type":{ "landmark_type":"sightseeing" @@ -186,12 +202,12 @@ ], "osm_type":"way", "osm_id":56186898, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":19, "time_to_reach":0 }, - "12":{ + "13":{ "name":"Musée de Cluny", "type":{ "landmark_type":"sightseeing" @@ -202,12 +218,12 @@ ], "osm_type":"way", "osm_id":56640163, - "attractiveness":10, + "attractiveness":18, "must_do":false, - "n_tags":17, + "n_tags":18, "time_to_reach":0 }, - "13":{ + "14":{ "name":"Musée d'art et d'histoire du Judaïsme", "type":{ "landmark_type":"sightseeing" @@ -218,12 +234,12 @@ ], "osm_type":"way", "osm_id":56687783, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "14":{ + "15":{ "name":"Musée national Picasso-Paris", "type":{ "landmark_type":"sightseeing" @@ -234,12 +250,12 @@ ], "osm_type":"way", "osm_id":57745741, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "15":{ + "16":{ "name":"Musée Cognacq-Jay", "type":{ "landmark_type":"sightseeing" @@ -250,12 +266,28 @@ ], "osm_type":"way", "osm_id":57781649, - "attractiveness":10, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "16":{ + "17":{ + "name":"Argonaute", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8945348, + 2.3895646 + ], + "osm_type":"way", + "osm_id":58169110, + "attractiveness":16, + "must_do":false, + "n_tags":16, + "time_to_reach":0 + }, + "18":{ "name":"Orangerie du Sénat", "type":{ "landmark_type":"sightseeing" @@ -266,12 +298,12 @@ ], "osm_type":"way", "osm_id":62848404, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "17":{ + "19":{ "name":"Musée d'Orsay", "type":{ "landmark_type":"sightseeing" @@ -282,12 +314,28 @@ ], "osm_type":"way", "osm_id":63178753, - "attractiveness":28, + "attractiveness":47, "must_do":false, "n_tags":47, "time_to_reach":0 }, - "18":{ + "20":{ + "name":"Les Réserves du Musée des Arts et Métiers", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9142687, + 2.3604902 + ], + "osm_type":"way", + "osm_id":63992928, + "attractiveness":4, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "21":{ "name":"Musée Ernest-Hébert (en travaux)", "type":{ "landmark_type":"sightseeing" @@ -298,12 +346,12 @@ ], "osm_type":"way", "osm_id":64314872, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "19":{ + "22":{ "name":"Musée Nissim de Camondo", "type":{ "landmark_type":"sightseeing" @@ -314,12 +362,12 @@ ], "osm_type":"way", "osm_id":68353844, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "20":{ + "23":{ "name":"Musée Cernuschi", "type":{ "landmark_type":"sightseeing" @@ -330,12 +378,12 @@ ], "osm_type":"way", "osm_id":68353920, - "attractiveness":11, + "attractiveness":18, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "21":{ + "24":{ "name":"Musée Jacquemart-André", "type":{ "landmark_type":"sightseeing" @@ -346,12 +394,12 @@ ], "osm_type":"way", "osm_id":68804399, - "attractiveness":13, + "attractiveness":23, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "22":{ + "25":{ "name":"Pagoda Paris", "type":{ "landmark_type":"sightseeing" @@ -362,12 +410,28 @@ ], "osm_type":"way", "osm_id":68828954, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "23":{ + "26":{ + "name":"Pavillon de Vendôme", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9047868, + 2.3038403 + ], + "osm_type":"way", + "osm_id":74468585, + "attractiveness":17, + "must_do":false, + "n_tags":17, + "time_to_reach":0 + }, + "27":{ "name":"Galerie des Gobelins", "type":{ "landmark_type":"sightseeing" @@ -378,12 +442,12 @@ ], "osm_type":"way", "osm_id":78407170, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "24":{ + "28":{ "name":"Musée Yves Saint Laurent Paris", "type":{ "landmark_type":"sightseeing" @@ -394,12 +458,12 @@ ], "osm_type":"way", "osm_id":79219238, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "25":{ + "29":{ "name":"Musée d'Art Moderne de Paris", "type":{ "landmark_type":"sightseeing" @@ -410,28 +474,12 @@ ], "osm_type":"way", "osm_id":79219308, - "attractiveness":18, + "attractiveness":30, "must_do":false, "n_tags":30, "time_to_reach":0 }, - "26":{ - "name":"Palais de Tokyo", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8641085, - 2.2964122 - ], - "osm_type":"way", - "osm_id":79219351, - "attractiveness":11, - "must_do":false, - "n_tags":18, - "time_to_reach":0 - }, - "27":{ + "30":{ "name":"Fondation Cartier pour l'art contemporain", "type":{ "landmark_type":"sightseeing" @@ -442,124 +490,28 @@ ], "osm_type":"way", "osm_id":79616736, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "28":{ - "name":"Musée de la Libération de Paris", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8340943, - 2.3317055 - ], - "osm_type":"way", - "osm_id":79633987, - "attractiveness":12, - "must_do":false, - "n_tags":19, - "time_to_reach":0 - }, - "29":{ - "name":"Hôtel d'Heidelbach", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8663491, - 2.2944214 - ], - "osm_type":"way", - "osm_id":79641978, - "attractiveness":5, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "30":{ - "name":"Musée Guimet", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8653886, - 2.2935591 - ], - "osm_type":"way", - "osm_id":79641993, - "attractiveness":10, - "must_do":false, - "n_tags":17, - "time_to_reach":0 - }, "31":{ - "name":"Maison Chana Orloff", + "name":"Centre Tignous d'Art Contemporain", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8260871, - 2.3327019 + 48.8567341, + 2.4270255 ], "osm_type":"way", - "osm_id":79805060, - "attractiveness":10, + "osm_id":81767364, + "attractiveness":8, "must_do":false, - "n_tags":16, + "n_tags":8, "time_to_reach":0 }, "32":{ - "name":"Musée d'Ennery", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8715059, - 2.2814214 - ], - "osm_type":"way", - "osm_id":80848762, - "attractiveness":4, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "33":{ - "name":"Maison de la Photographie - Robert Doisneau", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8143, - 2.3476025 - ], - "osm_type":"way", - "osm_id":81091490, - "attractiveness":6, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "34":{ - "name":"Musée Marmottan Monet", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.859404, - 2.2672517 - ], - "osm_type":"way", - "osm_id":83422695, - "attractiveness":4, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "35":{ "name":"Grande Galerie de l'Évolution", "type":{ "landmark_type":"sightseeing" @@ -570,44 +522,44 @@ ], "osm_type":"way", "osm_id":83913793, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "36":{ - "name":"Maison de Balzac", + "33":{ + "name":"Musée national Jean-Jacques Henner", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8551953, - 2.2808684 + 48.8829326, + 2.3076157 ], "osm_type":"way", - "osm_id":84511129, - "attractiveness":16, + "osm_id":84326105, + "attractiveness":11, "must_do":false, - "n_tags":27, + "n_tags":11, "time_to_reach":0 }, - "37":{ - "name":"Pavillon de l'Eau", + "34":{ + "name":"Musée de la Vie Romantique", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8463579, - 2.2732198 + 48.881203, + 2.333519 ], "osm_type":"way", - "osm_id":86428524, - "attractiveness":9, + "osm_id":84511123, + "attractiveness":22, "must_do":false, - "n_tags":15, + "n_tags":22, "time_to_reach":0 }, - "38":{ + "35":{ "name":"Mémorial de la Shoah", "type":{ "landmark_type":"sightseeing" @@ -618,28 +570,12 @@ ], "osm_type":"way", "osm_id":124052479, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "39":{ - "name":"Maison de la Culture du Japon", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8547298, - 2.2897641 - ], - "osm_type":"way", - "osm_id":151074455, - "attractiveness":8, - "must_do":false, - "n_tags":14, - "time_to_reach":0 - }, - "40":{ + "36":{ "name":"Musée Zadkine", "type":{ "landmark_type":"sightseeing" @@ -650,12 +586,28 @@ ], "osm_type":"way", "osm_id":153776401, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "41":{ + "37":{ + "name":"Musée de Montmartre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8880654, + 2.3406347 + ], + "osm_type":"way", + "osm_id":154679327, + "attractiveness":14, + "must_do":false, + "n_tags":14, + "time_to_reach":0 + }, + "38":{ "name":"Musée de la chasse et de la nature", "type":{ "landmark_type":"sightseeing" @@ -666,12 +618,12 @@ ], "osm_type":"way", "osm_id":156973373, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "42":{ + "39":{ "name":"Crypte Archéologique du Parvis Notre-Dame", "type":{ "landmark_type":"sightseeing" @@ -682,12 +634,12 @@ ], "osm_type":"way", "osm_id":159896046, - "attractiveness":11, + "attractiveness":18, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "43":{ + "40":{ "name":"Manufacture des Gobelins", "type":{ "landmark_type":"sightseeing" @@ -698,12 +650,12 @@ ], "osm_type":"way", "osm_id":161119956, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "44":{ + "41":{ "name":"Musée du Luxembourg", "type":{ "landmark_type":"sightseeing" @@ -714,12 +666,12 @@ ], "osm_type":"way", "osm_id":170226810, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "45":{ + "42":{ "name":"Palais de la découverte", "type":{ "landmark_type":"sightseeing" @@ -730,12 +682,12 @@ ], "osm_type":"way", "osm_id":188108997, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "46":{ + "43":{ "name":"Institut suédois", "type":{ "landmark_type":"sightseeing" @@ -746,28 +698,12 @@ ], "osm_type":"way", "osm_id":243973065, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "47":{ - "name":"Fondation Louis Vuitton", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8766546, - 2.2633259 - ], - "osm_type":"way", - "osm_id":309626332, - "attractiveness":12, - "must_do":false, - "n_tags":21, - "time_to_reach":0 - }, - "48":{ + "44":{ "name":"Musée national Eugène Delacroix", "type":{ "landmark_type":"sightseeing" @@ -778,12 +714,12 @@ ], "osm_type":"way", "osm_id":395785603, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "49":{ + "45":{ "name":"Musée Rodin", "type":{ "landmark_type":"sightseeing" @@ -794,12 +730,28 @@ ], "osm_type":"way", "osm_id":472159547, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "50":{ + "46":{ + "name":"Géoroom", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8454453, + 2.4238848 + ], + "osm_type":"way", + "osm_id":541473683, + "attractiveness":9, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "47":{ "name":"Musée des Moulages", "type":{ "landmark_type":"sightseeing" @@ -810,28 +762,12 @@ ], "osm_type":"way", "osm_id":692817231, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "51":{ - "name":"MAC VAL", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7931596, - 2.3875245 - ], - "osm_type":"way", - "osm_id":791930774, - "attractiveness":10, - "must_do":false, - "n_tags":17, - "time_to_reach":0 - }, - "52":{ + "48":{ "name":"Grand palais éphémère", "type":{ "landmark_type":"sightseeing" @@ -842,28 +778,28 @@ ], "osm_type":"way", "osm_id":854459034, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":19, "time_to_reach":0 }, - "53":{ - "name":"Les Étincelles du Palais de la Découverte", + "49":{ + "name":"Mémorial de Bobigny", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8410223, - 2.2795637 + 48.9095992, + 2.4295813 ], "osm_type":"way", - "osm_id":951204355, + "osm_id":1236950476, "attractiveness":7, "must_do":false, - "n_tags":13, + "n_tags":7, "time_to_reach":0 }, - "54":{ + "50":{ "name":"Hôtel de Sully", "type":{ "landmark_type":"sightseeing" @@ -874,12 +810,12 @@ ], "osm_type":"relation", "osm_id":403146, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "55":{ + "51":{ "name":"Fondation Henri Cartier-Bresson", "type":{ "landmark_type":"sightseeing" @@ -890,12 +826,12 @@ ], "osm_type":"relation", "osm_id":551459, - "attractiveness":13, + "attractiveness":22, "must_do":false, "n_tags":22, "time_to_reach":0 }, - "56":{ + "52":{ "name":"Hôtel de la Monnaie", "type":{ "landmark_type":"sightseeing" @@ -906,28 +842,12 @@ ], "osm_type":"relation", "osm_id":967664, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "57":{ - "name":"Palais Galliera", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8657061, - 2.2966614 - ], - "osm_type":"relation", - "osm_id":1191057, - "attractiveness":14, - "must_do":false, - "n_tags":24, - "time_to_reach":0 - }, - "58":{ + "53":{ "name":"Musée Bourdelle", "type":{ "landmark_type":"sightseeing" @@ -938,12 +858,12 @@ ], "osm_type":"relation", "osm_id":1212876, - "attractiveness":14, + "attractiveness":23, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "59":{ + "54":{ "name":"Institut Giacometti", "type":{ "landmark_type":"sightseeing" @@ -954,12 +874,12 @@ ], "osm_type":"relation", "osm_id":1213090, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "60":{ + "55":{ "name":"Musée Carnavalet", "type":{ "landmark_type":"sightseeing" @@ -970,12 +890,12 @@ ], "osm_type":"relation", "osm_id":2405955, - "attractiveness":15, + "attractiveness":25, "must_do":false, "n_tags":25, "time_to_reach":0 }, - "61":{ + "56":{ "name":"Petit Palais", "type":{ "landmark_type":"sightseeing" @@ -986,12 +906,12 @@ ], "osm_type":"relation", "osm_id":2778854, - "attractiveness":22, + "attractiveness":37, "must_do":false, "n_tags":32, "time_to_reach":0 }, - "62":{ + "57":{ "name":"Sainte-Chapelle", "type":{ "landmark_type":"sightseeing" @@ -1002,12 +922,12 @@ ], "osm_type":"relation", "osm_id":3344870, - "attractiveness":34, + "attractiveness":57, "must_do":false, "n_tags":54, "time_to_reach":0 }, - "63":{ + "58":{ "name":"Musée du Louvre", "type":{ "landmark_type":"sightseeing" @@ -1018,28 +938,12 @@ ], "osm_type":"relation", "osm_id":7515426, - "attractiveness":20, + "attractiveness":34, "must_do":false, "n_tags":33, "time_to_reach":0 }, - "64":{ - "name":"Musée de la Carte à Jouer et Galerie d'Histoire de la Ville", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8227375, - 2.273349 - ], - "osm_type":"relation", - "osm_id":12903823, - "attractiveness":2, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "65":{ + "59":{ "name":"Muséum national d'histoire naturelle", "type":{ "landmark_type":"sightseeing" @@ -1050,12 +954,12 @@ ], "osm_type":"relation", "osm_id":13611998, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "66":{ + "60":{ "name":"Champ de Mars", "type":{ "landmark_type":"sightseeing" @@ -1066,12 +970,12 @@ ], "osm_type":"way", "osm_id":4208595, - "attractiveness":35, + "attractiveness":41, "must_do":false, "n_tags":25, "time_to_reach":0 }, - "67":{ + "61":{ "name":"Jardin des Plantes", "type":{ "landmark_type":"sightseeing" @@ -1082,12 +986,12 @@ ], "osm_type":"way", "osm_id":4221369, - "attractiveness":31, + "attractiveness":36, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "68":{ + "62":{ "name":"Jardin du Palais Royal", "type":{ "landmark_type":"sightseeing" @@ -1098,12 +1002,12 @@ ], "osm_type":"way", "osm_id":4263203, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "69":{ + "63":{ "name":"Université Paris 1 Panthéon-Sorbonne - Centre Sorbonne", "type":{ "landmark_type":"sightseeing" @@ -1114,28 +1018,12 @@ ], "osm_type":"way", "osm_id":4433289, - "attractiveness":10, + "attractiveness":17, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "70":{ - "name":"Tour Eiffel", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8582603, - 2.2945008 - ], - "osm_type":"way", - "osm_id":5013364, - "attractiveness":57, - "must_do":false, - "n_tags":94, - "time_to_reach":0 - }, - "71":{ + "64":{ "name":"Cimetière du Père-Lachaise", "type":{ "landmark_type":"sightseeing" @@ -1146,12 +1034,12 @@ ], "osm_type":"way", "osm_id":13859706, - "attractiveness":14, + "attractiveness":24, "must_do":false, "n_tags":24, "time_to_reach":0 }, - "72":{ + "65":{ "name":"Tour Montparnasse", "type":{ "landmark_type":"sightseeing" @@ -1162,12 +1050,12 @@ ], "osm_type":"way", "osm_id":16406633, - "attractiveness":21, + "attractiveness":36, "must_do":false, "n_tags":36, "time_to_reach":0 }, - "73":{ + "66":{ "name":"Panthéon", "type":{ "landmark_type":"sightseeing" @@ -1178,12 +1066,12 @@ ], "osm_type":"way", "osm_id":16407465, - "attractiveness":23, + "attractiveness":38, "must_do":false, "n_tags":32, "time_to_reach":0 }, - "74":{ + "67":{ "name":"Jardin Atlantique", "type":{ "landmark_type":"sightseeing" @@ -1194,12 +1082,12 @@ ], "osm_type":"way", "osm_id":16923782, - "attractiveness":19, + "attractiveness":22, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "75":{ + "68":{ "name":"Tour Saint-Jacques", "type":{ "landmark_type":"sightseeing" @@ -1210,12 +1098,44 @@ ], "osm_type":"way", "osm_id":20326709, - "attractiveness":19, + "attractiveness":33, "must_do":false, "n_tags":31, "time_to_reach":0 }, - "76":{ + "69":{ + "name":"Château de Vincennes", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8427637, + 2.4358888 + ], + "osm_type":"way", + "osm_id":23032971, + "attractiveness":15, + "must_do":false, + "n_tags":15, + "time_to_reach":0 + }, + "70":{ + "name":"Basilique du Sacré-Cœur", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8867961, + 2.3430272 + ], + "osm_type":"way", + "osm_id":23762981, + "attractiveness":42, + "must_do":false, + "n_tags":40, + "time_to_reach":0 + }, + "71":{ "name":"Collège des Bernardins", "type":{ "landmark_type":"sightseeing" @@ -1226,12 +1146,12 @@ ], "osm_type":"way", "osm_id":26584053, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "77":{ + "72":{ "name":"Ancienne faisanderie", "type":{ "landmark_type":"sightseeing" @@ -1242,12 +1162,12 @@ ], "osm_type":"way", "osm_id":42332649, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "78":{ + "73":{ "name":"Reptiles", "type":{ "landmark_type":"sightseeing" @@ -1258,12 +1178,12 @@ ], "osm_type":"way", "osm_id":42332651, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "79":{ + "74":{ "name":"Église Saint-Roch", "type":{ "landmark_type":"sightseeing" @@ -1274,12 +1194,12 @@ ], "osm_type":"way", "osm_id":42722202, - "attractiveness":16, + "attractiveness":26, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "80":{ + "75":{ "name":"Hôtel Lebrun", "type":{ "landmark_type":"sightseeing" @@ -1290,12 +1210,12 @@ ], "osm_type":"way", "osm_id":43020667, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "81":{ + "76":{ "name":"Pont Neuf", "type":{ "landmark_type":"sightseeing" @@ -1306,12 +1226,12 @@ ], "osm_type":"way", "osm_id":53574149, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "82":{ + "77":{ "name":"Pont au Change", "type":{ "landmark_type":"sightseeing" @@ -1322,12 +1242,12 @@ ], "osm_type":"way", "osm_id":53582123, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "83":{ + "78":{ "name":"Comédie Française", "type":{ "landmark_type":"sightseeing" @@ -1338,12 +1258,12 @@ ], "osm_type":"way", "osm_id":54053052, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "84":{ + "79":{ "name":"Fontaine Molière", "type":{ "landmark_type":"sightseeing" @@ -1354,12 +1274,12 @@ ], "osm_type":"way", "osm_id":54097804, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "85":{ + "80":{ "name":"Place Vendôme", "type":{ "landmark_type":"sightseeing" @@ -1370,12 +1290,12 @@ ], "osm_type":"way", "osm_id":54175774, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "86":{ + "81":{ "name":"Église de la Madeleine", "type":{ "landmark_type":"sightseeing" @@ -1386,12 +1306,12 @@ ], "osm_type":"way", "osm_id":54180046, - "attractiveness":19, + "attractiveness":33, "must_do":false, "n_tags":33, "time_to_reach":0 }, - "87":{ + "82":{ "name":"Opéra Garnier", "type":{ "landmark_type":"sightseeing" @@ -1402,12 +1322,12 @@ ], "osm_type":"way", "osm_id":54667456, - "attractiveness":16, + "attractiveness":26, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "88":{ + "83":{ "name":"Hôtel de Lauzun", "type":{ "landmark_type":"sightseeing" @@ -1418,12 +1338,12 @@ ], "osm_type":"way", "osm_id":55292128, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "89":{ + "84":{ "name":"Presbytère", "type":{ "landmark_type":"sightseeing" @@ -1434,12 +1354,12 @@ ], "osm_type":"way", "osm_id":55341527, - "attractiveness":10, + "attractiveness":17, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "90":{ + "85":{ "name":"Centre Georges Pompidou", "type":{ "landmark_type":"sightseeing" @@ -1450,12 +1370,12 @@ ], "osm_type":"way", "osm_id":55503397, - "attractiveness":26, + "attractiveness":43, "must_do":false, "n_tags":43, "time_to_reach":0 }, - "91":{ + "86":{ "name":"Centre Wallonie-Bruxelles", "type":{ "landmark_type":"sightseeing" @@ -1466,12 +1386,12 @@ ], "osm_type":"way", "osm_id":55751636, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "92":{ + "87":{ "name":"Immeuble Henri Sauvage", "type":{ "landmark_type":"sightseeing" @@ -1482,28 +1402,28 @@ ], "osm_type":"way", "osm_id":63711049, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "93":{ - "name":"Pyramide de Cassini", + "88":{ + "name":"Rotonde de la Villette", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.7983124, - 2.3662311 + 48.8834633, + 2.3695457 ], "osm_type":"way", - "osm_id":64414723, - "attractiveness":5, + "osm_id":63971487, + "attractiveness":15, "must_do":false, - "n_tags":9, + "n_tags":14, "time_to_reach":0 }, - "94":{ + "89":{ "name":"Cathédrale Saint-Louis des Invalides", "type":{ "landmark_type":"sightseeing" @@ -1514,12 +1434,12 @@ ], "osm_type":"way", "osm_id":64955027, - "attractiveness":11, + "attractiveness":18, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "95":{ + "90":{ "name":"Paris Story", "type":{ "landmark_type":"sightseeing" @@ -1530,12 +1450,28 @@ ], "osm_type":"way", "osm_id":69226411, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "96":{ + "91":{ + "name":"Anciennes maisons de vignerons", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8611097, + 2.405355 + ], + "osm_type":"way", + "osm_id":70147402, + "attractiveness":6, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "92":{ "name":"Obélisque de Louxor", "type":{ "landmark_type":"sightseeing" @@ -1546,11 +1482,75 @@ ], "osm_type":"way", "osm_id":72937686, - "attractiveness":13, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, + "93":{ + "name":"Maison de Tristan Tzara", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8880392, + 2.3356771 + ], + "osm_type":"way", + "osm_id":77780351, + "attractiveness":19, + "must_do":false, + "n_tags":19, + "time_to_reach":0 + }, + "94":{ + "name":"Moulin de la Galette", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8876533, + 2.336297 + ], + "osm_type":"way", + "osm_id":77780940, + "attractiveness":17, + "must_do":false, + "n_tags":16, + "time_to_reach":0 + }, + "95":{ + "name":"Vigne du Clos Montmartre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8882459, + 2.3402042 + ], + "osm_type":"way", + "osm_id":77784652, + "attractiveness":9, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "96":{ + "name":"Piscine des Amiraux", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8943494, + 2.3510361 + ], + "osm_type":"way", + "osm_id":78020880, + "attractiveness":20, + "must_do":false, + "n_tags":20, + "time_to_reach":0 + }, "97":{ "name":"Les Docks - Cité de la Mode et du Design", "type":{ @@ -1562,92 +1562,12 @@ ], "osm_type":"way", "osm_id":78535563, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, "98":{ - "name":"Maison Planeix", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8233199, - 2.3737873 - ], - "osm_type":"way", - "osm_id":79084394, - "attractiveness":11, - "must_do":false, - "n_tags":18, - "time_to_reach":0 - }, - "99":{ - "name":"Cité-refuge de l'Armée du Salut", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8268194, - 2.3769443 - ], - "osm_type":"way", - "osm_id":79084623, - "attractiveness":9, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "100":{ - "name":"Moulin", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8179315, - 2.3734807 - ], - "osm_type":"way", - "osm_id":79147884, - "attractiveness":10, - "must_do":false, - "n_tags":16, - "time_to_reach":0 - }, - "101":{ - "name":"Jardin Japonais", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8664457, - 2.2941266 - ], - "osm_type":"way", - "osm_id":79641991, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "102":{ - "name":"Canots du lac", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8780099, - 2.2633681 - ], - "osm_type":"way", - "osm_id":83059104, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "103":{ "name":"Grande Volière", "type":{ "landmark_type":"sightseeing" @@ -1658,12 +1578,12 @@ ], "osm_type":"way", "osm_id":83976054, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "104":{ + "99":{ "name":"Dodo manège", "type":{ "landmark_type":"sightseeing" @@ -1674,76 +1594,12 @@ ], "osm_type":"way", "osm_id":83976101, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "105":{ - "name":"Hôtel Mezzara", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8506693, - 2.2707591 - ], - "osm_type":"way", - "osm_id":84262071, - "attractiveness":10, - "must_do":false, - "n_tags":17, - "time_to_reach":0 - }, - "106":{ - "name":"Jardin des serres d’Auteuil", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.846698, - 2.2526288 - ], - "osm_type":"way", - "osm_id":86260473, - "attractiveness":30, - "must_do":false, - "n_tags":21, - "time_to_reach":0 - }, - "107":{ - "name":"Laboratoire d'aérodynamisme de Gustave Eiffel", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8423031, - 2.2630722 - ], - "osm_type":"way", - "osm_id":87443668, - "attractiveness":13, - "must_do":false, - "n_tags":21, - "time_to_reach":0 - }, - "108":{ - "name":"La Tour aux Figures", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8285049, - 2.2584698 - ], - "osm_type":"way", - "osm_id":105152323, - "attractiveness":9, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "109":{ + "100":{ "name":"École Militaire", "type":{ "landmark_type":"sightseeing" @@ -1754,12 +1610,12 @@ ], "osm_type":"way", "osm_id":106312008, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "110":{ + "101":{ "name":"Église du Dôme", "type":{ "landmark_type":"sightseeing" @@ -1770,12 +1626,12 @@ ], "osm_type":"way", "osm_id":112452790, - "attractiveness":15, + "attractiveness":25, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "111":{ + "102":{ "name":"Place d’Aligre", "type":{ "landmark_type":"sightseeing" @@ -1786,12 +1642,28 @@ ], "osm_type":"way", "osm_id":118759777, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "112":{ + "103":{ + "name":"Grande cascade", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8796564, + 2.3837284 + ], + "osm_type":"way", + "osm_id":125420674, + "attractiveness":3, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "104":{ "name":"Jardin du Luxembourg", "type":{ "landmark_type":"sightseeing" @@ -1802,12 +1674,12 @@ ], "osm_type":"way", "osm_id":128206209, - "attractiveness":32, + "attractiveness":37, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "113":{ + "105":{ "name":"Jardin Catherine Labouré", "type":{ "landmark_type":"sightseeing" @@ -1818,12 +1690,12 @@ ], "osm_type":"way", "osm_id":148481812, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "114":{ + "106":{ "name":"École nationale supérieure des beaux-arts", "type":{ "landmark_type":"sightseeing" @@ -1834,12 +1706,28 @@ ], "osm_type":"way", "osm_id":148485612, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "115":{ + "107":{ + "name":"Carrousel de Montmartre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8846882, + 2.3432257 + ], + "osm_type":"way", + "osm_id":163689495, + "attractiveness":11, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "108":{ "name":"Assemblée nationale", "type":{ "landmark_type":"sightseeing" @@ -1850,12 +1738,12 @@ ], "osm_type":"way", "osm_id":175448742, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "116":{ + "109":{ "name":"Bateaux-Mouches", "type":{ "landmark_type":"sightseeing" @@ -1866,12 +1754,12 @@ ], "osm_type":"way", "osm_id":182821008, - "attractiveness":7, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "117":{ + "110":{ "name":"Cathédrale Notre-Dame de Paris", "type":{ "landmark_type":"sightseeing" @@ -1882,44 +1770,12 @@ ], "osm_type":"way", "osm_id":201611261, - "attractiveness":33, + "attractiveness":55, "must_do":false, "n_tags":54, "time_to_reach":0 }, - "118":{ - "name":"Arc de Triomphe", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8737782, - 2.2950354 - ], - "osm_type":"way", - "osm_id":226413508, - "attractiveness":30, - "must_do":false, - "n_tags":49, - "time_to_reach":0 - }, - "119":{ - "name":"Plan du quartier Jeanne d'Arc", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8296027, - 2.3656495 - ], - "osm_type":"way", - "osm_id":226644735, - "attractiveness":1, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "120":{ + "111":{ "name":"Arc de Triomphe du Carrousel", "type":{ "landmark_type":"sightseeing" @@ -1930,28 +1786,44 @@ ], "osm_type":"way", "osm_id":227483542, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "121":{ - "name":"Carrousel de la Tour Eiffel", + "112":{ + "name":"Théâtre équestre Zingaro", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8589211, - 2.2926215 + 48.9126799, + 2.4030614 ], "osm_type":"way", - "osm_id":239873024, - "attractiveness":2, + "osm_id":244847783, + "attractiveness":5, "must_do":false, - "n_tags":3, + "n_tags":5, "time_to_reach":0 }, - "122":{ + "113":{ + "name":"Rue du Mont Cenis", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8878142, + 2.3416721 + ], + "osm_type":"way", + "osm_id":246993053, + "attractiveness":11, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "114":{ "name":"Salle du Livre d'Or", "type":{ "landmark_type":"sightseeing" @@ -1962,60 +1834,12 @@ ], "osm_type":"way", "osm_id":261881547, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "123":{ - "name":"Pavillon Eiffel", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8584222, - 2.2947295 - ], - "osm_type":"way", - "osm_id":308145258, - "attractiveness":8, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "124":{ - "name":"Pavillon Ferrié", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8581023, - 2.2942531 - ], - "osm_type":"way", - "osm_id":308145259, - "attractiveness":8, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "125":{ - "name":"Tombe du Soldat inconnu", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8737505, - 2.295133 - ], - "osm_type":"way", - "osm_id":339016618, - "attractiveness":10, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "126":{ + "115":{ "name":"Pyramide du Louvre", "type":{ "landmark_type":"sightseeing" @@ -2026,12 +1850,12 @@ ], "osm_type":"way", "osm_id":375076234, - "attractiveness":16, + "attractiveness":27, "must_do":false, "n_tags":27, "time_to_reach":0 }, - "127":{ + "116":{ "name":"Cavae des Arènes de Lutèce", "type":{ "landmark_type":"sightseeing" @@ -2042,12 +1866,12 @@ ], "osm_type":"way", "osm_id":406229046, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "128":{ + "117":{ "name":"Place de la Concorde", "type":{ "landmark_type":"sightseeing" @@ -2058,12 +1882,12 @@ ], "osm_type":"way", "osm_id":432819047, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "129":{ + "118":{ "name":"Grande Mosquée de Paris", "type":{ "landmark_type":"sightseeing" @@ -2074,12 +1898,12 @@ ], "osm_type":"way", "osm_id":437812893, - "attractiveness":17, + "attractiveness":29, "must_do":false, "n_tags":28, "time_to_reach":0 }, - "130":{ + "119":{ "name":"Place de la République", "type":{ "landmark_type":"sightseeing" @@ -2090,12 +1914,12 @@ ], "osm_type":"way", "osm_id":450130138, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "131":{ + "120":{ "name":"Méridienne de l'Observatoire de Paris", "type":{ "landmark_type":"sightseeing" @@ -2106,12 +1930,12 @@ ], "osm_type":"way", "osm_id":515068430, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "132":{ + "121":{ "name":"Passerelle Mornay", "type":{ "landmark_type":"sightseeing" @@ -2122,28 +1946,12 @@ ], "osm_type":"way", "osm_id":568554914, - "attractiveness":3, + "attractiveness":7, "must_do":false, - "n_tags":5, + "n_tags":7, "time_to_reach":0 }, - "133":{ - "name":"Ferme urbaine pédagogique", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8178673, - 2.3562649 - ], - "osm_type":"way", - "osm_id":568915825, - "attractiveness":2, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "134":{ + "122":{ "name":"Ancienne Crèmerie", "type":{ "landmark_type":"sightseeing" @@ -2154,12 +1962,12 @@ ], "osm_type":"way", "osm_id":936891354, - "attractiveness":7, + "attractiveness":11, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "135":{ + "123":{ "name":"Limonaire Frères", "type":{ "landmark_type":"sightseeing" @@ -2170,12 +1978,12 @@ ], "osm_type":"way", "osm_id":1071482635, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "136":{ + "124":{ "name":"Labyrinthe", "type":{ "landmark_type":"sightseeing" @@ -2186,60 +1994,12 @@ ], "osm_type":"way", "osm_id":1087988490, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "137":{ - "name":"L'Astrolabe", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8785283, - 2.2653786 - ], - "osm_type":"way", - "osm_id":1094525772, - "attractiveness":2, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "138":{ - "name":"Les As du Volant", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8785422, - 2.2649061 - ], - "osm_type":"way", - "osm_id":1094525773, - "attractiveness":2, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "139":{ - "name":"Les Speed rockets", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8783575, - 2.2657497 - ], - "osm_type":"way", - "osm_id":1094525775, - "attractiveness":2, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "140":{ + "125":{ "name":"Maison dite « de Jacques Cœur »", "type":{ "landmark_type":"sightseeing" @@ -2250,12 +2010,12 @@ ], "osm_type":"way", "osm_id":1121066634, - "attractiveness":2, + "attractiveness":3, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "141":{ + "126":{ "name":"Maison à l'enseigne du Faucheur", "type":{ "landmark_type":"sightseeing" @@ -2266,12 +2026,12 @@ ], "osm_type":"way", "osm_id":1123456865, - "attractiveness":7, + "attractiveness":13, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "142":{ + "127":{ "name":"Maison à l'enseigne du Mouton", "type":{ "landmark_type":"sightseeing" @@ -2282,12 +2042,60 @@ ], "osm_type":"way", "osm_id":1123456866, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "143":{ + "128":{ + "name":"Batman Escape", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8966537, + 2.3889026 + ], + "osm_type":"way", + "osm_id":1242464921, + "attractiveness":5, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "129":{ + "name":"Shuffled", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8964051, + 2.3885577 + ], + "osm_type":"way", + "osm_id":1242464922, + "attractiveness":4, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "130":{ + "name":"Quiz Room", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8960863, + 2.3889322 + ], + "osm_type":"way", + "osm_id":1242464924, + "attractiveness":4, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "131":{ "name":"Les Grandes Serres du Jardin des Plantes", "type":{ "landmark_type":"sightseeing" @@ -2298,12 +2106,12 @@ ], "osm_type":"way", "osm_id":1288442711, - "attractiveness":7, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "144":{ + "132":{ "name":"Hôtel de Ville", "type":{ "landmark_type":"sightseeing" @@ -2314,12 +2122,12 @@ ], "osm_type":"relation", "osm_id":284089, - "attractiveness":20, + "attractiveness":34, "must_do":false, "n_tags":32, "time_to_reach":0 }, - "145":{ + "133":{ "name":"Palais de Justice de Paris", "type":{ "landmark_type":"sightseeing" @@ -2330,12 +2138,12 @@ ], "osm_type":"relation", "osm_id":536982, - "attractiveness":14, + "attractiveness":24, "must_do":false, "n_tags":24, "time_to_reach":0 }, - "146":{ + "134":{ "name":"Maison de Nicolas Flamel", "type":{ "landmark_type":"sightseeing" @@ -2346,12 +2154,12 @@ ], "osm_type":"relation", "osm_id":550881, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "147":{ + "135":{ "name":"Place des Vosges", "type":{ "landmark_type":"sightseeing" @@ -2362,12 +2170,12 @@ ], "osm_type":"relation", "osm_id":571765, - "attractiveness":26, + "attractiveness":30, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "148":{ + "136":{ "name":"Palais de l'Élysée", "type":{ "landmark_type":"sightseeing" @@ -2378,12 +2186,12 @@ ], "osm_type":"relation", "osm_id":1060803, - "attractiveness":19, + "attractiveness":32, "must_do":false, "n_tags":32, "time_to_reach":0 }, - "149":{ + "137":{ "name":"Hôtel de la Marine", "type":{ "landmark_type":"sightseeing" @@ -2394,12 +2202,12 @@ ], "osm_type":"relation", "osm_id":1060822, - "attractiveness":10, + "attractiveness":18, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "150":{ + "138":{ "name":"Hôtel des Invalides", "type":{ "landmark_type":"sightseeing" @@ -2410,12 +2218,28 @@ ], "osm_type":"relation", "osm_id":1463538, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "151":{ + "139":{ + "name":"Rotonde de Chartres", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8802542, + 2.3090835 + ], + "osm_type":"relation", + "osm_id":3066029, + "attractiveness":14, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "140":{ "name":"La Samaritaine", "type":{ "landmark_type":"sightseeing" @@ -2426,12 +2250,12 @@ ], "osm_type":"relation", "osm_id":3075632, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "152":{ + "141":{ "name":"Palais du Louvre", "type":{ "landmark_type":"sightseeing" @@ -2442,12 +2266,12 @@ ], "osm_type":"relation", "osm_id":3262297, - "attractiveness":19, + "attractiveness":32, "must_do":false, "n_tags":32, "time_to_reach":0 }, - "153":{ + "142":{ "name":"Palais Royal", "type":{ "landmark_type":"sightseeing" @@ -2458,12 +2282,12 @@ ], "osm_type":"relation", "osm_id":3300400, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "154":{ + "143":{ "name":"Hôtel de Soubise", "type":{ "landmark_type":"sightseeing" @@ -2474,44 +2298,12 @@ ], "osm_type":"relation", "osm_id":3371164, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "155":{ - "name":"Parc Montsouris", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8222357, - 2.3380114 - ], - "osm_type":"relation", - "osm_id":4050160, - "attractiveness":16, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "156":{ - "name":"Palais de Chaillot", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8618668, - 2.288865 - ], - "osm_type":"relation", - "osm_id":6826569, - "attractiveness":15, - "must_do":false, - "n_tags":25, - "time_to_reach":0 - }, - "157":{ + "144":{ "name":"Mémorial des Martyrs de la Déportation", "type":{ "landmark_type":"sightseeing" @@ -2522,12 +2314,12 @@ ], "osm_type":"relation", "osm_id":9396191, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "158":{ + "145":{ "name":"Jardins des Champs-Élysées", "type":{ "landmark_type":"sightseeing" @@ -2538,12 +2330,12 @@ ], "osm_type":"relation", "osm_id":10142349, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "159":{ + "146":{ "name":"Cloître des Billettes", "type":{ "landmark_type":"sightseeing" @@ -2554,12 +2346,12 @@ ], "osm_type":"way", "osm_id":55942659, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "160":{ + "147":{ "name":"Galerie J. Kugel", "type":{ "landmark_type":"sightseeing" @@ -2570,12 +2362,28 @@ ], "osm_type":"way", "osm_id":63564054, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "161":{ + "148":{ + "name":"Galerie Montmartre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8862806, + 2.3406794 + ], + "osm_type":"way", + "osm_id":70716925, + "attractiveness":4, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "149":{ "name":"Cinémathèque Française", "type":{ "landmark_type":"sightseeing" @@ -2586,28 +2394,28 @@ ], "osm_type":"way", "osm_id":78271385, - "attractiveness":15, + "attractiveness":26, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "162":{ - "name":"Open Bach", + "150":{ + "name":"Espace Louise Michel", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8309981, - 2.3651523 + 48.8717602, + 2.3914301 ], "osm_type":"way", - "osm_id":154801656, - "attractiveness":2, + "osm_id":389174690, + "attractiveness":9, "must_do":false, - "n_tags":4, + "n_tags":8, "time_to_reach":0 }, - "163":{ + "151":{ "name":"Galerie Jeanne Bucher", "type":{ "landmark_type":"sightseeing" @@ -2618,12 +2426,28 @@ ], "osm_type":"way", "osm_id":563066953, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "164":{ + "152":{ + "name":"Galerie Lara Vincy", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8551889, + 2.3371175 + ], + "osm_type":"relation", + "osm_id":1401754, + "attractiveness":4, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "153":{ "name":"Pont Alexandre III", "type":{ "landmark_type":"sightseeing" @@ -2634,12 +2458,12 @@ ], "osm_type":"way", "osm_id":17067006, - "attractiveness":12, + "attractiveness":20, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "165":{ + "154":{ "name":"Passage Brady", "type":{ "landmark_type":"sightseeing" @@ -2650,12 +2474,28 @@ ], "osm_type":"way", "osm_id":29709952, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "166":{ + "155":{ + "name":"Fort de Romainville", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8858276, + 2.4235273 + ], + "osm_type":"way", + "osm_id":38767074, + "attractiveness":6, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "156":{ "name":"Fontaine Saint-Michel", "type":{ "landmark_type":"sightseeing" @@ -2666,12 +2506,12 @@ ], "osm_type":"way", "osm_id":40579862, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "167":{ + "157":{ "name":"Cabinet d'Histoire (Hôtel de Magny)", "type":{ "landmark_type":"sightseeing" @@ -2682,28 +2522,12 @@ ], "osm_type":"way", "osm_id":42332581, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "168":{ - "name":"Aqueduc de la Vanne", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8003982, - 2.3329791 - ], - "osm_type":"way", - "osm_id":44427217, - "attractiveness":11, - "must_do":false, - "n_tags":18, - "time_to_reach":0 - }, - "169":{ + "158":{ "name":"Fontaine des Innocents", "type":{ "landmark_type":"sightseeing" @@ -2714,12 +2538,12 @@ ], "osm_type":"way", "osm_id":52469222, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "170":{ + "159":{ "name":"Ministère de la Justice", "type":{ "landmark_type":"sightseeing" @@ -2730,12 +2554,12 @@ ], "osm_type":"way", "osm_id":54175265, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "171":{ + "160":{ "name":"Hôtel Saint-Florentin", "type":{ "landmark_type":"sightseeing" @@ -2746,12 +2570,12 @@ ], "osm_type":"way", "osm_id":54177935, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "172":{ + "161":{ "name":"Palais Brongniart", "type":{ "landmark_type":"sightseeing" @@ -2762,12 +2586,12 @@ ], "osm_type":"way", "osm_id":54657155, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":19, "time_to_reach":0 }, - "173":{ + "162":{ "name":"Théâtre Daunou", "type":{ "landmark_type":"sightseeing" @@ -2778,12 +2602,12 @@ ], "osm_type":"way", "osm_id":54730662, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "174":{ + "163":{ "name":"Hôtel de Sens", "type":{ "landmark_type":"sightseeing" @@ -2794,12 +2618,12 @@ ], "osm_type":"way", "osm_id":55541122, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "175":{ + "164":{ "name":"Mur des Justes", "type":{ "landmark_type":"sightseeing" @@ -2810,12 +2634,12 @@ ], "osm_type":"way", "osm_id":55620179, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "176":{ + "165":{ "name":"Hôtel d'Ourscamp", "type":{ "landmark_type":"sightseeing" @@ -2826,12 +2650,12 @@ ], "osm_type":"way", "osm_id":55620201, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "177":{ + "166":{ "name":"Hôtel de Chavigny", "type":{ "landmark_type":"sightseeing" @@ -2842,12 +2666,12 @@ ], "osm_type":"way", "osm_id":56040595, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "178":{ + "167":{ "name":"Pavillon Curie", "type":{ "landmark_type":"sightseeing" @@ -2858,12 +2682,12 @@ ], "osm_type":"way", "osm_id":56066139, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "179":{ + "168":{ "name":"Pavillon des Sources", "type":{ "landmark_type":"sightseeing" @@ -2874,12 +2698,12 @@ ], "osm_type":"way", "osm_id":56066142, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "180":{ + "169":{ "name":"Pavillon Pasteur", "type":{ "landmark_type":"sightseeing" @@ -2890,12 +2714,12 @@ ], "osm_type":"way", "osm_id":56066152, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "181":{ + "170":{ "name":"Statue de Beaumarchais", "type":{ "landmark_type":"sightseeing" @@ -2906,12 +2730,12 @@ ], "osm_type":"way", "osm_id":56080370, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "182":{ + "171":{ "name":"Fontaine du Pot-de-Fer", "type":{ "landmark_type":"sightseeing" @@ -2922,12 +2746,12 @@ ], "osm_type":"way", "osm_id":57687072, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "183":{ + "172":{ "name":"Hôtel de Marle", "type":{ "landmark_type":"sightseeing" @@ -2938,12 +2762,12 @@ ], "osm_type":"way", "osm_id":57781646, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "184":{ + "173":{ "name":"Regard Saint-Magloire", "type":{ "landmark_type":"sightseeing" @@ -2954,44 +2778,12 @@ ], "osm_type":"way", "osm_id":60264673, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "185":{ - "name":"Centre Maï Politzer", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8027963, - 2.3302595 - ], - "osm_type":"way", - "osm_id":61360943, - "attractiveness":5, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "186":{ - "name":"Arcueil 1", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8047265, - 2.3308294 - ], - "osm_type":"way", - "osm_id":61887176, - "attractiveness":2, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "187":{ + "174":{ "name":"Temple de l'Amitié", "type":{ "landmark_type":"sightseeing" @@ -3002,12 +2794,12 @@ ], "osm_type":"way", "osm_id":62288099, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "188":{ + "175":{ "name":"Paul Verlaine", "type":{ "landmark_type":"sightseeing" @@ -3018,12 +2810,12 @@ ], "osm_type":"way", "osm_id":62848416, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "189":{ + "176":{ "name":"Gustave Flaubert", "type":{ "landmark_type":"sightseeing" @@ -3034,12 +2826,12 @@ ], "osm_type":"way", "osm_id":62874967, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "190":{ + "177":{ "name":"Charles Baudelaire", "type":{ "landmark_type":"sightseeing" @@ -3050,12 +2842,12 @@ ], "osm_type":"way", "osm_id":62874970, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "191":{ + "178":{ "name":"Hôtel de Rosambo", "type":{ "landmark_type":"sightseeing" @@ -3066,12 +2858,12 @@ ], "osm_type":"way", "osm_id":63202689, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "192":{ + "179":{ "name":"Hôtel Leblanc-Barbedienne", "type":{ "landmark_type":"sightseeing" @@ -3082,12 +2874,44 @@ ], "osm_type":"way", "osm_id":63202751, - "attractiveness":7, + "attractiveness":13, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "193":{ + "180":{ + "name":"Regard des Maussins", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8775024, + 2.4070003 + ], + "osm_type":"way", + "osm_id":63224543, + "attractiveness":13, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "181":{ + "name":"Temple de la Sybille", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8810739, + 2.3830756 + ], + "osm_type":"way", + "osm_id":63224946, + "attractiveness":7, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "182":{ "name":"Hôtel de Beauharnais", "type":{ "landmark_type":"sightseeing" @@ -3098,12 +2922,12 @@ ], "osm_type":"way", "osm_id":63564160, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "194":{ + "183":{ "name":"Hôtel de Seignelay", "type":{ "landmark_type":"sightseeing" @@ -3114,12 +2938,12 @@ ], "osm_type":"way", "osm_id":63564188, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "195":{ + "184":{ "name":"Dix Solférino", "type":{ "landmark_type":"sightseeing" @@ -3130,60 +2954,28 @@ ], "osm_type":"way", "osm_id":63564201, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "196":{ - "name":"Maison Renaissance", + "185":{ + "name":"Barrière du Trône - Saint-Louis", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.7993111, - 2.3320961 + 48.8483388, + 2.3985035 ], "osm_type":"way", - "osm_id":63651999, - "attractiveness":8, + "osm_id":63638975, + "attractiveness":15, "must_do":false, - "n_tags":13, + "n_tags":14, "time_to_reach":0 }, - "197":{ - "name":"Château Raspail", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7951116, - 2.3331152 - ], - "osm_type":"way", - "osm_id":63654009, - "attractiveness":7, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "198":{ - "name":"Pont-Aqueduc d'Arcueil", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8003978, - 2.332997 - ], - "osm_type":"way", - "osm_id":63656243, - "attractiveness":6, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "199":{ + "186":{ "name":"Statue du Maréchal Ney", "type":{ "landmark_type":"sightseeing" @@ -3194,12 +2986,12 @@ ], "osm_type":"way", "osm_id":63844704, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "200":{ + "187":{ "name":"Statue de Gribeauval", "type":{ "landmark_type":"sightseeing" @@ -3210,12 +3002,12 @@ ], "osm_type":"way", "osm_id":64955010, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "201":{ + "188":{ "name":"Restaurant Inter-administratif de La Tour-Maubourg", "type":{ "landmark_type":"sightseeing" @@ -3226,12 +3018,12 @@ ], "osm_type":"way", "osm_id":64955021, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "202":{ + "189":{ "name":"Hôtel de Broglie", "type":{ "landmark_type":"sightseeing" @@ -3242,12 +3034,12 @@ ], "osm_type":"way", "osm_id":65090089, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "203":{ + "190":{ "name":"Chapelle des Catéchismes", "type":{ "landmark_type":"sightseeing" @@ -3258,12 +3050,12 @@ ], "osm_type":"way", "osm_id":65104255, - "attractiveness":10, + "attractiveness":17, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "204":{ + "191":{ "name":"Hôtel de Choiseul-Praslin", "type":{ "landmark_type":"sightseeing" @@ -3274,12 +3066,12 @@ ], "osm_type":"way", "osm_id":65756922, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "205":{ + "192":{ "name":"Hôtel de Pontalba", "type":{ "landmark_type":"sightseeing" @@ -3290,12 +3082,12 @@ ], "osm_type":"way", "osm_id":67106757, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "206":{ + "193":{ "name":"Hôtel Perrinet de Jars", "type":{ "landmark_type":"sightseeing" @@ -3306,12 +3098,12 @@ ], "osm_type":"way", "osm_id":67106925, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "207":{ + "194":{ "name":"Hôtel de Coislin", "type":{ "landmark_type":"sightseeing" @@ -3322,12 +3114,12 @@ ], "osm_type":"way", "osm_id":67109756, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "208":{ + "195":{ "name":"Hôtel de Marigny", "type":{ "landmark_type":"sightseeing" @@ -3338,12 +3130,12 @@ ], "osm_type":"way", "osm_id":67356259, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "209":{ + "196":{ "name":"Hôtel de Montalivet", "type":{ "landmark_type":"sightseeing" @@ -3354,12 +3146,12 @@ ], "osm_type":"way", "osm_id":67356828, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "210":{ + "197":{ "name":"Hôtel d'Avaray", "type":{ "landmark_type":"sightseeing" @@ -3370,12 +3162,12 @@ ], "osm_type":"way", "osm_id":67356863, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "211":{ + "198":{ "name":"Hôtel de Beauffremont", "type":{ "landmark_type":"sightseeing" @@ -3386,12 +3178,12 @@ ], "osm_type":"way", "osm_id":67356892, - "attractiveness":7, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "212":{ + "199":{ "name":"Statue équestre de Jeanne D'Arc", "type":{ "landmark_type":"sightseeing" @@ -3402,12 +3194,12 @@ ], "osm_type":"way", "osm_id":67501479, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "213":{ + "200":{ "name":"Chapelle expiatoire", "type":{ "landmark_type":"sightseeing" @@ -3418,12 +3210,28 @@ ], "osm_type":"way", "osm_id":67557301, - "attractiveness":16, + "attractiveness":27, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "214":{ + "201":{ + "name":"Monument du Maréchal Moncey", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8835207, + 2.3274296 + ], + "osm_type":"way", + "osm_id":68247750, + "attractiveness":6, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "202":{ "name":"Ambroise Thomas", "type":{ "landmark_type":"sightseeing" @@ -3434,12 +3242,12 @@ ], "osm_type":"way", "osm_id":68335779, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "215":{ + "203":{ "name":"Charles Gounod", "type":{ "landmark_type":"sightseeing" @@ -3450,12 +3258,12 @@ ], "osm_type":"way", "osm_id":68335800, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "216":{ + "204":{ "name":"Statue de Jules Simon", "type":{ "landmark_type":"sightseeing" @@ -3466,12 +3274,12 @@ ], "osm_type":"way", "osm_id":68507719, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "217":{ + "205":{ "name":"Hôtel de Broglie-Haussonville", "type":{ "landmark_type":"sightseeing" @@ -3482,12 +3290,12 @@ ], "osm_type":"way", "osm_id":68568652, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "218":{ + "206":{ "name":"Hôtel Biron", "type":{ "landmark_type":"sightseeing" @@ -3498,12 +3306,12 @@ ], "osm_type":"way", "osm_id":68568682, - "attractiveness":7, + "attractiveness":13, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "219":{ + "207":{ "name":"Hôtel de Clermont", "type":{ "landmark_type":"sightseeing" @@ -3514,12 +3322,12 @@ ], "osm_type":"way", "osm_id":68568751, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "220":{ + "208":{ "name":"Hôtel de Boisgelin", "type":{ "landmark_type":"sightseeing" @@ -3530,12 +3338,12 @@ ], "osm_type":"way", "osm_id":68571250, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "221":{ + "209":{ "name":"Hôtel de Cassini", "type":{ "landmark_type":"sightseeing" @@ -3546,12 +3354,12 @@ ], "osm_type":"way", "osm_id":68571376, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "222":{ + "210":{ "name":"Monument aux morts de la guerre de 1870", "type":{ "landmark_type":"sightseeing" @@ -3562,12 +3370,12 @@ ], "osm_type":"way", "osm_id":68906600, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "223":{ + "211":{ "name":"Lucien Guitry", "type":{ "landmark_type":"sightseeing" @@ -3578,12 +3386,12 @@ ], "osm_type":"way", "osm_id":69034522, - "attractiveness":4, + "attractiveness":7, "must_do":false, - "n_tags":6, + "n_tags":7, "time_to_reach":0 }, - "224":{ + "212":{ "name":"foyer de l'Union chrétienne des Jeunes Gens de Paris", "type":{ "landmark_type":"sightseeing" @@ -3594,12 +3402,12 @@ ], "osm_type":"way", "osm_id":69220148, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "225":{ + "213":{ "name":"Jules Ferry", "type":{ "landmark_type":"sightseeing" @@ -3610,12 +3418,12 @@ ], "osm_type":"way", "osm_id":69289019, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "226":{ + "214":{ "name":"Monument de la reconnaissance de la Belgique à la France", "type":{ "landmark_type":"sightseeing" @@ -3626,12 +3434,12 @@ ], "osm_type":"way", "osm_id":69325365, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "227":{ + "215":{ "name":"Synagogue Buffault", "type":{ "landmark_type":"sightseeing" @@ -3642,12 +3450,12 @@ ], "osm_type":"way", "osm_id":69417432, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "228":{ + "216":{ "name":"Hôtel de Béhague", "type":{ "landmark_type":"sightseeing" @@ -3658,44 +3466,108 @@ ], "osm_type":"way", "osm_id":69859760, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "229":{ - "name":"Les Chardons", + "217":{ + "name":"Regard Saint-Martin", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8589282, - 2.2822768 + 48.8714699, + 2.3914759 ], "osm_type":"way", - "osm_id":70184787, - "attractiveness":10, + "osm_id":70001651, + "attractiveness":14, "must_do":false, - "n_tags":16, + "n_tags":13, "time_to_reach":0 }, - "230":{ - "name":"Adolphe Schneider", + "218":{ + "name":"Regard de la Prise des Eaux du Pré Saint-Gervais", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8050635, - 2.2590049 + 48.8830678, + 2.4035516 ], "osm_type":"way", - "osm_id":73584482, - "attractiveness":2, + "osm_id":73248961, + "attractiveness":12, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "219":{ + "name":"Monument aux Morts", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8824789, + 2.4117533 + ], + "osm_type":"way", + "osm_id":73429126, + "attractiveness":3, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "231":{ + "220":{ + "name":"Château de Saint-Ouen", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9165342, + 2.3295132 + ], + "osm_type":"way", + "osm_id":73835424, + "attractiveness":15, + "must_do":false, + "n_tags":15, + "time_to_reach":0 + }, + "221":{ + "name":"Maison du Peuple", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9013075, + 2.3146603 + ], + "osm_type":"way", + "osm_id":74472720, + "attractiveness":16, + "must_do":false, + "n_tags":16, + "time_to_reach":0 + }, + "222":{ + "name":"Église Saint-Michel des Batignolles", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8890756, + 2.3246346 + ], + "osm_type":"way", + "osm_id":75748771, + "attractiveness":15, + "must_do":false, + "n_tags":15, + "time_to_reach":0 + }, + "223":{ "name":"Buste de Frédérick Lemaître", "type":{ "landmark_type":"sightseeing" @@ -3706,12 +3578,28 @@ ], "osm_type":"way", "osm_id":76910105, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "232":{ + "224":{ + "name":"Barrière du Trône - Philippe Auguste", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8479768, + 2.3984297 + ], + "osm_type":"way", + "osm_id":77385192, + "attractiveness":15, + "must_do":false, + "n_tags":14, + "time_to_reach":0 + }, + "225":{ "name":"Lafayette", "type":{ "landmark_type":"sightseeing" @@ -3722,12 +3610,12 @@ ], "osm_type":"way", "osm_id":77441324, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "233":{ + "226":{ "name":"Georges Clemenceau", "type":{ "landmark_type":"sightseeing" @@ -3738,12 +3626,12 @@ ], "osm_type":"way", "osm_id":77441328, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "234":{ + "227":{ "name":"Sir Winston Churchill", "type":{ "landmark_type":"sightseeing" @@ -3754,12 +3642,12 @@ ], "osm_type":"way", "osm_id":77441386, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "235":{ + "228":{ "name":"Charles de Gaulle", "type":{ "landmark_type":"sightseeing" @@ -3770,12 +3658,12 @@ ], "osm_type":"way", "osm_id":77441401, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "236":{ + "229":{ "name":"La Petite Mairie", "type":{ "landmark_type":"sightseeing" @@ -3786,12 +3674,12 @@ ], "osm_type":"way", "osm_id":78146411, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "237":{ + "230":{ "name":"Chapelle Saint-Louis de la Salpêtrière", "type":{ "landmark_type":"sightseeing" @@ -3802,12 +3690,12 @@ ], "osm_type":"way", "osm_id":78535716, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "238":{ + "231":{ "name":"Buste de Johann Strauss", "type":{ "landmark_type":"sightseeing" @@ -3818,12 +3706,12 @@ ], "osm_type":"way", "osm_id":78548940, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "239":{ + "232":{ "name":"Buste du Baron Taylor", "type":{ "landmark_type":"sightseeing" @@ -3834,60 +3722,12 @@ ], "osm_type":"way", "osm_id":78548956, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "240":{ - "name":"Maison de Madeleine Delbrêl", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8110079, - 2.3881767 - ], - "osm_type":"way", - "osm_id":79148826, - "attractiveness":5, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "241":{ - "name":"Église Saint-Pierre - Saint-Paul", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8109596, - 2.3828632 - ], - "osm_type":"way", - "osm_id":79150389, - "attractiveness":14, - "must_do":false, - "n_tags":23, - "time_to_reach":0 - }, - "242":{ - "name":"Comte de Rochambeau", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8663382, - 2.2966974 - ], - "osm_type":"way", - "osm_id":79232734, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "243":{ + "233":{ "name":"Hôtel de Massa", "type":{ "landmark_type":"sightseeing" @@ -3898,12 +3738,12 @@ ], "osm_type":"way", "osm_id":79611188, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "244":{ + "234":{ "name":"François Arago", "type":{ "landmark_type":"sightseeing" @@ -3914,12 +3754,12 @@ ], "osm_type":"way", "osm_id":79611253, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "245":{ + "235":{ "name":"Maison du Fontainier", "type":{ "landmark_type":"sightseeing" @@ -3930,236 +3770,12 @@ ], "osm_type":"way", "osm_id":79611339, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "246":{ - "name":"Inspection Générale des Carrières", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8338392, - 2.3324158 - ], - "osm_type":"way", - "osm_id":79628544, - "attractiveness":4, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "247":{ - "name":"A. Charlet 1792-1845", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8337503, - 2.3327347 - ], - "osm_type":"way", - "osm_id":79628916, - "attractiveness":4, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "248":{ - "name":"Le Lion de Belfort", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.834332, - 2.3324661 - ], - "osm_type":"way", - "osm_id":79629168, - "attractiveness":12, - "must_do":false, - "n_tags":19, - "time_to_reach":0 - }, - "249":{ - "name":"Monument aux Volontaires Américains", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8677505, - 2.2950168 - ], - "osm_type":"way", - "osm_id":79657347, - "attractiveness":4, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "250":{ - "name":"Thomas Paine", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8202423, - 2.3399353 - ], - "osm_type":"way", - "osm_id":79805243, - "attractiveness":8, - "must_do":false, - "n_tags":13, - "time_to_reach":0 - }, - "251":{ - "name":"Statue de José de San Martín", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8206863, - 2.3381782 - ], - "osm_type":"way", - "osm_id":79805415, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "252":{ - "name":"Alphand", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8736766, - 2.2898597 - ], - "osm_type":"way", - "osm_id":80376667, - "attractiveness":5, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "253":{ - "name":"Monument à Émile Levassor", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8766042, - 2.2803402 - ], - "osm_type":"way", - "osm_id":80536797, - "attractiveness":4, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "254":{ - "name":"Immeuble dit Fondation Thiers", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8707974, - 2.2792207 - ], - "osm_type":"way", - "osm_id":80839971, - "attractiveness":8, - "must_do":false, - "n_tags":13, - "time_to_reach":0 - }, - "255":{ - "name":"Château de Madrid", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8747231, - 2.2548868 - ], - "osm_type":"way", - "osm_id":81233776, - "attractiveness":4, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "256":{ - "name":"Monument aux Morts de la Guerre 1914-1918", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8625946, - 2.2862275 - ], - "osm_type":"way", - "osm_id":81779009, - "attractiveness":5, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "257":{ - "name":"Immeuble des frères Perret", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8607079, - 2.2858606 - ], - "osm_type":"way", - "osm_id":82683207, - "attractiveness":12, - "must_do":false, - "n_tags":20, - "time_to_reach":0 - }, - "258":{ - "name":"Château de la Muette", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8614496, - 2.2693531 - ], - "osm_type":"way", - "osm_id":83203039, - "attractiveness":4, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "259":{ - "name":"Monument aux morts", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8171949, - 2.3187866 - ], - "osm_type":"way", - "osm_id":83238165, - "attractiveness":3, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "260":{ + "236":{ "name":"Laboratoire de Marie Curie", "type":{ "landmark_type":"sightseeing" @@ -4170,12 +3786,12 @@ ], "osm_type":"way", "osm_id":83976060, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "261":{ + "237":{ "name":"Lamarck et sa fille Aménaïde Cornélie", "type":{ "landmark_type":"sightseeing" @@ -4186,44 +3802,12 @@ ], "osm_type":"way", "osm_id":83976069, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "262":{ - "name":"Atelier du Sculpteur Quillivic", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8501727, - 2.2619985 - ], - "osm_type":"way", - "osm_id":85333454, - "attractiveness":5, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "263":{ - "name":"Abbaye Sainte-Marie de Paris", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8512137, - 2.2686078 - ], - "osm_type":"way", - "osm_id":85427345, - "attractiveness":6, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "264":{ + "238":{ "name":"Théophile Roussel", "type":{ "landmark_type":"sightseeing" @@ -4234,92 +3818,12 @@ ], "osm_type":"way", "osm_id":87334030, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "265":{ - "name":"À Nos Morts", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8045553, - 2.2902087 - ], - "osm_type":"way", - "osm_id":87394497, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "266":{ - "name":"Folie Desmares", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.801032, - 2.2900951 - ], - "osm_type":"way", - "osm_id":87395174, - "attractiveness":8, - "must_do":false, - "n_tags":13, - "time_to_reach":0 - }, - "267":{ - "name":"Hôtel Roszé", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8446493, - 2.2635514 - ], - "osm_type":"way", - "osm_id":87420164, - "attractiveness":3, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "268":{ - "name":"Glacière - Chapelle", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8187357, - 2.2822902 - ], - "osm_type":"way", - "osm_id":87989167, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "269":{ - "name":"Monument aux Morts", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7918725, - 2.2871805 - ], - "osm_type":"way", - "osm_id":91810431, - "attractiveness":2, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "270":{ + "239":{ "name":"Albert Ier de Belgique", "type":{ "landmark_type":"sightseeing" @@ -4330,12 +3834,12 @@ ], "osm_type":"way", "osm_id":92316083, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "271":{ + "240":{ "name":"L'Épopée de Défense Polonaise", "type":{ "landmark_type":"sightseeing" @@ -4346,12 +3850,12 @@ ], "osm_type":"way", "osm_id":92316086, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "272":{ + "241":{ "name":"Hommage à Komitas et aux victimes du Génocide arménien", "type":{ "landmark_type":"sightseeing" @@ -4362,12 +3866,12 @@ ], "osm_type":"way", "osm_id":92316090, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "273":{ + "242":{ "name":"Monument à Barye", "type":{ "landmark_type":"sightseeing" @@ -4378,12 +3882,12 @@ ], "osm_type":"way", "osm_id":92316091, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "274":{ + "243":{ "name":"Flamme de la Liberté", "type":{ "landmark_type":"sightseeing" @@ -4394,12 +3898,12 @@ ], "osm_type":"way", "osm_id":92316094, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "275":{ + "244":{ "name":"La Seine", "type":{ "landmark_type":"sightseeing" @@ -4410,12 +3914,12 @@ ], "osm_type":"way", "osm_id":92316098, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "276":{ + "245":{ "name":"Enceinte de Philippe Auguste", "type":{ "landmark_type":"sightseeing" @@ -4426,12 +3930,12 @@ ], "osm_type":"way", "osm_id":92316120, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "277":{ + "246":{ "name":"Statue de Frémiet", "type":{ "landmark_type":"sightseeing" @@ -4442,12 +3946,12 @@ ], "osm_type":"way", "osm_id":95475832, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "278":{ + "247":{ "name":"Monument à Charles Perrault", "type":{ "landmark_type":"sightseeing" @@ -4458,12 +3962,12 @@ ], "osm_type":"way", "osm_id":96156210, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "279":{ + "248":{ "name":"Jeanne d'Arc", "type":{ "landmark_type":"sightseeing" @@ -4474,44 +3978,28 @@ ], "osm_type":"way", "osm_id":96156233, - "attractiveness":10, + "attractiveness":16, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "280":{ - "name":"Ludovic Trarieux", + "249":{ + "name":"Le Triomphe de la République", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.834359, - 2.3314481 + 48.8483868, + 2.3959148 ], "osm_type":"way", - "osm_id":102222433, - "attractiveness":5, + "osm_id":114877477, + "attractiveness":15, "must_do":false, - "n_tags":8, + "n_tags":12, "time_to_reach":0 }, - "281":{ - "name":"Colonne de la Paix Armée", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8236718, - 2.3363883 - ], - "osm_type":"way", - "osm_id":102226138, - "attractiveness":1, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "282":{ + "250":{ "name":"Alfred de Musset - Le Rêve du Poète", "type":{ "landmark_type":"sightseeing" @@ -4522,12 +4010,12 @@ ], "osm_type":"way", "osm_id":115310616, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "283":{ + "251":{ "name":"Le Jardin des Souvenirs", "type":{ "landmark_type":"sightseeing" @@ -4538,12 +4026,12 @@ ], "osm_type":"way", "osm_id":116797447, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "284":{ + "252":{ "name":"Enceinte de Philippe-Auguste", "type":{ "landmark_type":"sightseeing" @@ -4554,12 +4042,12 @@ ], "osm_type":"way", "osm_id":124066210, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "285":{ + "253":{ "name":"Hôtel de Poulpry - Maison des Polytechniciens", "type":{ "landmark_type":"sightseeing" @@ -4570,44 +4058,12 @@ ], "osm_type":"way", "osm_id":143381183, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "286":{ - "name":"Église Saint-Hermeland", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7964504, - 2.3024281 - ], - "osm_type":"way", - "osm_id":146243264, - "attractiveness":11, - "must_do":false, - "n_tags":18, - "time_to_reach":0 - }, - "287":{ - "name":"Maison de Richelieu", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7959994, - 2.3046895 - ], - "osm_type":"way", - "osm_id":146243437, - "attractiveness":9, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "288":{ + "254":{ "name":"Hôtel de Bourvallais", "type":{ "landmark_type":"sightseeing" @@ -4618,12 +4074,12 @@ ], "osm_type":"way", "osm_id":148573267, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "289":{ + "255":{ "name":"Tour de la Liberté", "type":{ "landmark_type":"sightseeing" @@ -4634,12 +4090,12 @@ ], "osm_type":"way", "osm_id":149749643, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "290":{ + "256":{ "name":"Couvent des Cordelières", "type":{ "landmark_type":"sightseeing" @@ -4650,12 +4106,28 @@ ], "osm_type":"way", "osm_id":154161345, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "291":{ + "257":{ + "name":"Adolphe Thiers", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8611197, + 2.3929715 + ], + "osm_type":"way", + "osm_id":156649519, + "attractiveness":8, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "258":{ "name":"Enceinte de Charles V", "type":{ "landmark_type":"sightseeing" @@ -4666,28 +4138,12 @@ ], "osm_type":"way", "osm_id":159220788, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "292":{ - "name":"Statue du général Leclerc", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.821068, - 2.3249582 - ], - "osm_type":"way", - "osm_id":162670438, - "attractiveness":3, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "293":{ + "259":{ "name":"La Naissance des formes", "type":{ "landmark_type":"sightseeing" @@ -4698,12 +4154,12 @@ ], "osm_type":"way", "osm_id":169987897, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "294":{ + "260":{ "name":"Hôtel de Lassay", "type":{ "landmark_type":"sightseeing" @@ -4714,12 +4170,12 @@ ], "osm_type":"way", "osm_id":175448743, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "295":{ + "261":{ "name":"Auguste Comte", "type":{ "landmark_type":"sightseeing" @@ -4730,12 +4186,12 @@ ], "osm_type":"way", "osm_id":182697261, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "296":{ + "262":{ "name":"Pelletier et Caventou", "type":{ "landmark_type":"sightseeing" @@ -4746,12 +4202,12 @@ ], "osm_type":"way", "osm_id":182697269, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "297":{ + "263":{ "name":"Henri IV", "type":{ "landmark_type":"sightseeing" @@ -4762,12 +4218,12 @@ ], "osm_type":"way", "osm_id":200452259, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "298":{ + "264":{ "name":"Tour Sud", "type":{ "landmark_type":"sightseeing" @@ -4778,12 +4234,12 @@ ], "osm_type":"way", "osm_id":201611269, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "299":{ + "265":{ "name":"Tour Nord", "type":{ "landmark_type":"sightseeing" @@ -4794,12 +4250,28 @@ ], "osm_type":"way", "osm_id":201754180, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "300":{ + "266":{ + "name":"Monument à Eugène Flachat", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8869533, + 2.3007728 + ], + "osm_type":"way", + "osm_id":208763266, + "attractiveness":6, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "267":{ "name":"Chapelle Notre-Dame-des-Anges", "type":{ "landmark_type":"sightseeing" @@ -4810,28 +4282,12 @@ ], "osm_type":"way", "osm_id":219378497, - "attractiveness":10, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "301":{ - "name":"Bastion n°1 de l'enceinte de Thiers", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8284459, - 2.3897653 - ], - "osm_type":"way", - "osm_id":225410145, - "attractiveness":4, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "302":{ + "268":{ "name":"Colonne de Juillet", "type":{ "landmark_type":"sightseeing" @@ -4842,12 +4298,12 @@ ], "osm_type":"way", "osm_id":227757683, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "303":{ + "269":{ "name":"Colonne Vendôme", "type":{ "landmark_type":"sightseeing" @@ -4858,12 +4314,12 @@ ], "osm_type":"way", "osm_id":227762241, - "attractiveness":15, + "attractiveness":25, "must_do":false, "n_tags":24, "time_to_reach":0 }, - "304":{ + "270":{ "name":"Colonnes de Buren", "type":{ "landmark_type":"sightseeing" @@ -4874,44 +4330,12 @@ ], "osm_type":"way", "osm_id":244102108, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "305":{ - "name":"Poterne des Peupliers", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8214088, - 2.352562 - ], - "osm_type":"way", - "osm_id":254642464, - "attractiveness":6, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "306":{ - "name":"Ossuaire Militaire", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8389373, - 2.284187 - ], - "osm_type":"way", - "osm_id":257638612, - "attractiveness":1, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "307":{ + "271":{ "name":"Fontaine du Palmier", "type":{ "landmark_type":"sightseeing" @@ -4922,12 +4346,28 @@ ], "osm_type":"way", "osm_id":261092850, - "attractiveness":14, + "attractiveness":23, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "308":{ + "272":{ + "name":"Élisabeth Alexandrovna Stroganoff", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8595742, + 2.3949387 + ], + "osm_type":"way", + "osm_id":267099784, + "attractiveness":9, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "273":{ "name":"Hôtel de Villeroy", "type":{ "landmark_type":"sightseeing" @@ -4938,12 +4378,76 @@ ], "osm_type":"way", "osm_id":303824076, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "309":{ + "274":{ + "name":"Monument aux morts", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8609064, + 2.3919064 + ], + "osm_type":"way", + "osm_id":311412497, + "attractiveness":12, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "275":{ + "name":"Félix de Beaujour", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8631336, + 2.3933669 + ], + "osm_type":"way", + "osm_id":312059802, + "attractiveness":8, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "276":{ + "name":"Héloïse et Abélard", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8591931, + 2.391914 + ], + "osm_type":"way", + "osm_id":313811735, + "attractiveness":9, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "277":{ + "name":"René Panhard", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8583882, + 2.3956719 + ], + "osm_type":"way", + "osm_id":314136876, + "attractiveness":7, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "278":{ "name":"Sarcophage d'Abou Roach", "type":{ "landmark_type":"sightseeing" @@ -4954,12 +4458,12 @@ ], "osm_type":"way", "osm_id":338651010, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "310":{ + "279":{ "name":"Statue équestre de Louis XIV", "type":{ "landmark_type":"sightseeing" @@ -4970,44 +4474,12 @@ ], "osm_type":"way", "osm_id":368793311, - "attractiveness":7, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "311":{ - "name":"Mémorial 1914-1918", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8071305, - 2.3796609 - ], - "osm_type":"way", - "osm_id":378316046, - "attractiveness":4, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "312":{ - "name":"Regard de Saux", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8318898, - 2.3329819 - ], - "osm_type":"way", - "osm_id":384036445, - "attractiveness":2, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "313":{ + "280":{ "name":"Gradins", "type":{ "landmark_type":"sightseeing" @@ -5018,12 +4490,12 @@ ], "osm_type":"way", "osm_id":406229048, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "314":{ + "281":{ "name":"Mur de Charles V", "type":{ "landmark_type":"sightseeing" @@ -5034,12 +4506,12 @@ ], "osm_type":"way", "osm_id":427097154, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "315":{ + "282":{ "name":"Monument commémoratif de la campagne de Tunisie 1942-1943", "type":{ "landmark_type":"sightseeing" @@ -5050,12 +4522,12 @@ ], "osm_type":"way", "osm_id":427592604, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "316":{ + "283":{ "name":"Hôtel du ministre des Affaires étrangères", "type":{ "landmark_type":"sightseeing" @@ -5066,28 +4538,44 @@ ], "osm_type":"way", "osm_id":448794899, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "317":{ - "name":"Monument aux mères françaises", + "284":{ + "name":"Aqueduc de la Dhuis", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8198979, - 2.3559529 + 48.8823637, + 2.4664022 ], "osm_type":"way", - "osm_id":479861151, - "attractiveness":3, + "osm_id":511817523, + "attractiveness":10, "must_do":false, - "n_tags":4, + "n_tags":6, "time_to_reach":0 }, - "318":{ + "285":{ + "name":"Porte", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9048399, + 2.3048258 + ], + "osm_type":"way", + "osm_id":552438660, + "attractiveness":4, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "286":{ "name":"Monument a Garibaldi", "type":{ "landmark_type":"sightseeing" @@ -5098,44 +4586,12 @@ ], "osm_type":"way", "osm_id":553396448, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "319":{ - "name":"Monument à Alexandre Ier de Yougoslavie et Pierre Ier de Serbie", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8634596, - 2.2681353 - ], - "osm_type":"way", - "osm_id":573363031, - "attractiveness":3, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "320":{ - "name":"Aqueduc Médicis", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7747354, - 2.3380802 - ], - "osm_type":"way", - "osm_id":607735321, - "attractiveness":10, - "must_do":false, - "n_tags":16, - "time_to_reach":0 - }, - "321":{ + "287":{ "name":"Monument aux morts de la Première Guerre Mondiale", "type":{ "landmark_type":"sightseeing" @@ -5146,92 +4602,92 @@ ], "osm_type":"way", "osm_id":643177282, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "322":{ - "name":"Monument aux morts pour la France en opérations extérieures", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8381439, - 2.2769554 - ], - "osm_type":"way", - "osm_id":672001632, "attractiveness":5, "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "323":{ - "name":"Chapelle des Franciscains", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8091333, - 2.3311572 - ], - "osm_type":"way", - "osm_id":680378608, - "attractiveness":9, - "must_do":false, - "n_tags":16, - "time_to_reach":0 - }, - "324":{ - "name":"Regard de Gentilly", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8155972, - 2.3456206 - ], - "osm_type":"way", - "osm_id":704999419, - "attractiveness":3, - "must_do":false, "n_tags":5, "time_to_reach":0 }, - "325":{ - "name":"Regard de la ferme de la Santé", + "288":{ + "name":"Aqueduc Médicis", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8263708, - 2.3376282 + 48.8330712, + 2.3347603 ], "osm_type":"way", - "osm_id":704999420, - "attractiveness":2, + "osm_id":755054078, + "attractiveness":15, "must_do":false, - "n_tags":4, + "n_tags":15, "time_to_reach":0 }, - "326":{ - "name":"Mémorial national de la guerre d'Algérie et des combats du Maroc et de la Tunisie", + "289":{ + "name":"Eugène Carrière", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8605872, - 2.2949719 + 48.8894615, + 2.3372122 ], "osm_type":"way", - "osm_id":814263041, - "attractiveness":2, + "osm_id":868154414, + "attractiveness":3, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "327":{ + "290":{ + "name":"Folie Janvier N8", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8904535, + 2.392291 + ], + "osm_type":"way", + "osm_id":869111628, + "attractiveness":4, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "291":{ + "name":"Folie douce N7", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8913598, + 2.3913515 + ], + "osm_type":"way", + "osm_id":869111631, + "attractiveness":3, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "292":{ + "name":"Au Général Leclerc", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8466972, + 2.4179431 + ], + "osm_type":"way", + "osm_id":875834736, + "attractiveness":5, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "293":{ "name":"Colonne Médicis", "type":{ "landmark_type":"sightseeing" @@ -5242,12 +4698,28 @@ ], "osm_type":"way", "osm_id":942543401, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "328":{ + "294":{ + "name":"Casimir Périer", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8600309, + 2.3936438 + ], + "osm_type":"way", + "osm_id":948640834, + "attractiveness":7, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "295":{ "name":"Louis XIII", "type":{ "landmark_type":"sightseeing" @@ -5258,12 +4730,12 @@ ], "osm_type":"way", "osm_id":948652816, - "attractiveness":13, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "329":{ + "296":{ "name":"Tour Montgomery", "type":{ "landmark_type":"sightseeing" @@ -5274,12 +4746,12 @@ ], "osm_type":"way", "osm_id":1029627185, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "330":{ + "297":{ "name":"Monument de l'Assistance publique", "type":{ "landmark_type":"sightseeing" @@ -5290,12 +4762,28 @@ ], "osm_type":"way", "osm_id":1067962575, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "331":{ + "298":{ + "name":"Monument bombardement", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9128785, + 2.3392332 + ], + "osm_type":"way", + "osm_id":1087597077, + "attractiveness":4, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "299":{ "name":"Famille Boucicaut", "type":{ "landmark_type":"sightseeing" @@ -5306,12 +4794,12 @@ ], "osm_type":"way", "osm_id":1197780546, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "332":{ + "300":{ "name":"Auguste Rubin 1841-1909", "type":{ "landmark_type":"sightseeing" @@ -5322,12 +4810,12 @@ ], "osm_type":"way", "osm_id":1197815657, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "333":{ + "301":{ "name":"Famille Spiegel", "type":{ "landmark_type":"sightseeing" @@ -5338,12 +4826,12 @@ ], "osm_type":"way", "osm_id":1197815658, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "334":{ + "302":{ "name":"Famille Depaux", "type":{ "landmark_type":"sightseeing" @@ -5354,12 +4842,12 @@ ], "osm_type":"way", "osm_id":1197815659, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "335":{ + "303":{ "name":"Famille Gautier", "type":{ "landmark_type":"sightseeing" @@ -5370,12 +4858,12 @@ ], "osm_type":"way", "osm_id":1197815660, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "336":{ + "304":{ "name":"Famille Louis Giffaut", "type":{ "landmark_type":"sightseeing" @@ -5386,12 +4874,12 @@ ], "osm_type":"way", "osm_id":1197815661, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "337":{ + "305":{ "name":"Famille Levrat", "type":{ "landmark_type":"sightseeing" @@ -5402,12 +4890,12 @@ ], "osm_type":"way", "osm_id":1197815662, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "338":{ + "306":{ "name":"Famille Pouyadou", "type":{ "landmark_type":"sightseeing" @@ -5418,12 +4906,12 @@ ], "osm_type":"way", "osm_id":1197815663, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "339":{ + "307":{ "name":"Charles Robert 1827-1899", "type":{ "landmark_type":"sightseeing" @@ -5434,12 +4922,12 @@ ], "osm_type":"way", "osm_id":1197815664, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "340":{ + "308":{ "name":"Famille Minazzoli", "type":{ "landmark_type":"sightseeing" @@ -5450,12 +4938,12 @@ ], "osm_type":"way", "osm_id":1197815665, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "341":{ + "309":{ "name":"Honore Champion", "type":{ "landmark_type":"sightseeing" @@ -5466,12 +4954,12 @@ ], "osm_type":"way", "osm_id":1197824735, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "342":{ + "310":{ "name":"Famille Raspail", "type":{ "landmark_type":"sightseeing" @@ -5482,12 +4970,12 @@ ], "osm_type":"way", "osm_id":1197824736, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "343":{ + "311":{ "name":"Madame Jourdain de Sainte Preuve", "type":{ "landmark_type":"sightseeing" @@ -5498,12 +4986,12 @@ ], "osm_type":"way", "osm_id":1197824740, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "344":{ + "312":{ "name":"leon Cinain 1826-1898", "type":{ "landmark_type":"sightseeing" @@ -5514,12 +5002,12 @@ ], "osm_type":"way", "osm_id":1197824741, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "345":{ + "313":{ "name":"Famille Valentin", "type":{ "landmark_type":"sightseeing" @@ -5530,12 +5018,12 @@ ], "osm_type":"way", "osm_id":1197824742, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "346":{ + "314":{ "name":"Alex Berdal", "type":{ "landmark_type":"sightseeing" @@ -5546,12 +5034,12 @@ ], "osm_type":"way", "osm_id":1197824743, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "347":{ + "315":{ "name":"François Gérard", "type":{ "landmark_type":"sightseeing" @@ -5562,12 +5050,12 @@ ], "osm_type":"way", "osm_id":1197824744, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "348":{ + "316":{ "name":"Francois Rude", "type":{ "landmark_type":"sightseeing" @@ -5578,12 +5066,12 @@ ], "osm_type":"way", "osm_id":1197824745, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "349":{ + "317":{ "name":"Gérard Barthélémy", "type":{ "landmark_type":"sightseeing" @@ -5594,12 +5082,12 @@ ], "osm_type":"way", "osm_id":1197824746, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "350":{ + "318":{ "name":"Antoine Haumont", "type":{ "landmark_type":"sightseeing" @@ -5610,12 +5098,12 @@ ], "osm_type":"way", "osm_id":1197824747, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "351":{ + "319":{ "name":"La défense passive à ses morts", "type":{ "landmark_type":"sightseeing" @@ -5626,12 +5114,12 @@ ], "osm_type":"way", "osm_id":1197824748, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "352":{ + "320":{ "name":"Alexandre Duval", "type":{ "landmark_type":"sightseeing" @@ -5642,12 +5130,12 @@ ], "osm_type":"way", "osm_id":1197824749, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "353":{ + "321":{ "name":"Famille Lormand", "type":{ "landmark_type":"sightseeing" @@ -5658,12 +5146,12 @@ ], "osm_type":"way", "osm_id":1197824751, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "354":{ + "322":{ "name":"Famille Cohen Jonathan", "type":{ "landmark_type":"sightseeing" @@ -5674,12 +5162,12 @@ ], "osm_type":"way", "osm_id":1197824752, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "355":{ + "323":{ "name":"Famille Merle", "type":{ "landmark_type":"sightseeing" @@ -5690,12 +5178,12 @@ ], "osm_type":"way", "osm_id":1197824755, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "356":{ + "324":{ "name":"Famille Gavarry", "type":{ "landmark_type":"sightseeing" @@ -5706,12 +5194,12 @@ ], "osm_type":"way", "osm_id":1197824756, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "357":{ + "325":{ "name":"Famille Reville", "type":{ "landmark_type":"sightseeing" @@ -5722,12 +5210,12 @@ ], "osm_type":"way", "osm_id":1197824760, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "358":{ + "326":{ "name":"Henri Langlois", "type":{ "landmark_type":"sightseeing" @@ -5738,12 +5226,12 @@ ], "osm_type":"way", "osm_id":1197824761, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "359":{ + "327":{ "name":"Pierre Larousse", "type":{ "landmark_type":"sightseeing" @@ -5754,12 +5242,12 @@ ], "osm_type":"way", "osm_id":1197824762, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "360":{ + "328":{ "name":"Leopold Kretz", "type":{ "landmark_type":"sightseeing" @@ -5770,12 +5258,12 @@ ], "osm_type":"way", "osm_id":1197824763, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "361":{ + "329":{ "name":"Ricardo Menon", "type":{ "landmark_type":"sightseeing" @@ -5786,12 +5274,12 @@ ], "osm_type":"way", "osm_id":1197824764, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "362":{ + "330":{ "name":"Famille Swiczka", "type":{ "landmark_type":"sightseeing" @@ -5802,12 +5290,12 @@ ], "osm_type":"way", "osm_id":1197824765, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "363":{ + "331":{ "name":"Bettina", "type":{ "landmark_type":"sightseeing" @@ -5818,12 +5306,12 @@ ], "osm_type":"way", "osm_id":1197824766, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "364":{ + "332":{ "name":"Famille Crémieux", "type":{ "landmark_type":"sightseeing" @@ -5834,12 +5322,12 @@ ], "osm_type":"way", "osm_id":1197824767, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "365":{ + "333":{ "name":"Amille Gunzburg", "type":{ "landmark_type":"sightseeing" @@ -5850,12 +5338,12 @@ ], "osm_type":"way", "osm_id":1197824768, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "366":{ + "334":{ "name":"La Convention Nationale", "type":{ "landmark_type":"sightseeing" @@ -5866,12 +5354,460 @@ ], "osm_type":"way", "osm_id":1200936137, - "attractiveness":12, + "attractiveness":19, "must_do":false, - "n_tags":16, + "n_tags":15, "time_to_reach":0 }, - "367":{ + "335":{ + "name":"Honoré de Balzac", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8627626, + 2.3931052 + ], + "osm_type":"way", + "osm_id":1210561807, + "attractiveness":9, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "336":{ + "name":"Pierre Frédéric Dorian", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8626729, + 2.3925292 + ], + "osm_type":"way", + "osm_id":1210561822, + "attractiveness":6, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "337":{ + "name":"Famille J.F. Cail", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8631997, + 2.3912443 + ], + "osm_type":"way", + "osm_id":1210561855, + "attractiveness":6, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "338":{ + "name":"ROITEL ROSSIGNOL CHAVONNET", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8633785, + 2.3910919 + ], + "osm_type":"way", + "osm_id":1210561856, + "attractiveness":4, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "339":{ + "name":"Allan Kardec et Amélie Gabrielle Boudet", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8623201, + 2.3943486 + ], + "osm_type":"way", + "osm_id":1210651131, + "attractiveness":8, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "340":{ + "name":"Émile Souvestre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.862803, + 2.3931495 + ], + "osm_type":"way", + "osm_id":1210651173, + "attractiveness":8, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "341":{ + "name":"Jack Vanarsky", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8600215, + 2.3929328 + ], + "osm_type":"way", + "osm_id":1210797346, + "attractiveness":8, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "342":{ + "name":"Arman", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.860538, + 2.3925304 + ], + "osm_type":"way", + "osm_id":1210797354, + "attractiveness":7, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "343":{ + "name":"Michel de Trétaigne", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8604514, + 2.3930627 + ], + "osm_type":"way", + "osm_id":1210797355, + "attractiveness":5, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "344":{ + "name":"Miłosz Magin", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8596959, + 2.3928033 + ], + "osm_type":"way", + "osm_id":1210797361, + "attractiveness":8, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "345":{ + "name":"Hyacinthe Loyson", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8607659, + 2.3942863 + ], + "osm_type":"way", + "osm_id":1210797368, + "attractiveness":7, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "346":{ + "name":"Famille Bertereau", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8607767, + 2.3942685 + ], + "osm_type":"way", + "osm_id":1210797373, + "attractiveness":4, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "347":{ + "name":"François Hippolyte Debon", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8607806, + 2.3941922 + ], + "osm_type":"way", + "osm_id":1210797374, + "attractiveness":7, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "348":{ + "name":"James Pradier", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8607815, + 2.3942204 + ], + "osm_type":"way", + "osm_id":1210797375, + "attractiveness":8, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "349":{ + "name":"Louis Joseph Gay-Lussac", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8606664, + 2.3946804 + ], + "osm_type":"way", + "osm_id":1210797381, + "attractiveness":8, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "350":{ + "name":"Alphonse Daudet", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8601739, + 2.3953057 + ], + "osm_type":"way", + "osm_id":1210797385, + "attractiveness":9, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "351":{ + "name":"Sylvie Fournier et Jean-Louis Fournier", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8599047, + 2.3929231 + ], + "osm_type":"way", + "osm_id":1211895423, + "attractiveness":6, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "352":{ + "name":"Fernand Arbelot", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8607317, + 2.3927862 + ], + "osm_type":"way", + "osm_id":1211895427, + "attractiveness":6, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "353":{ + "name":"La mémoire nécropolitaine", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8603933, + 2.3934057 + ], + "osm_type":"way", + "osm_id":1211895428, + "attractiveness":9, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "354":{ + "name":"Gaspard Monge", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8603102, + 2.3936584 + ], + "osm_type":"way", + "osm_id":1211895435, + "attractiveness":11, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "355":{ + "name":"Famille Mure", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.85862, + 2.3933043 + ], + "osm_type":"way", + "osm_id":1211901758, + "attractiveness":5, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "356":{ + "name":"Famille CASSEREAU", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8586122, + 2.3933254 + ], + "osm_type":"way", + "osm_id":1211901759, + "attractiveness":4, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "357":{ + "name":"Famille DE LAMOTTE", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8592889, + 2.3936936 + ], + "osm_type":"way", + "osm_id":1211901771, + "attractiveness":8, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "358":{ + "name":"Baguet et Löwenhielm", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8592851, + 2.3935512 + ], + "osm_type":"way", + "osm_id":1211902115, + "attractiveness":5, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "359":{ + "name":"Guillerville", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8606854, + 2.3910067 + ], + "osm_type":"way", + "osm_id":1212093957, + "attractiveness":8, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "360":{ + "name":"Famille Dantan", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.860668, + 2.3909754 + ], + "osm_type":"way", + "osm_id":1212093958, + "attractiveness":7, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "361":{ + "name":"Charles Ernest Beulé", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.860652, + 2.3909309 + ], + "osm_type":"way", + "osm_id":1212093959, + "attractiveness":6, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "362":{ + "name":"Louis Visconti", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8606449, + 2.390878 + ], + "osm_type":"way", + "osm_id":1212093961, + "attractiveness":6, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "363":{ "name":"Famille Pagenel", "type":{ "landmark_type":"sightseeing" @@ -5882,12 +5818,12 @@ ], "osm_type":"way", "osm_id":1212094003, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "368":{ + "364":{ "name":"Famille Chalier", "type":{ "landmark_type":"sightseeing" @@ -5898,12 +5834,12 @@ ], "osm_type":"way", "osm_id":1212094025, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "369":{ + "365":{ "name":"Famille Grouffal", "type":{ "landmark_type":"sightseeing" @@ -5914,12 +5850,12 @@ ], "osm_type":"way", "osm_id":1212094027, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "370":{ + "366":{ "name":"Famille Prieur", "type":{ "landmark_type":"sightseeing" @@ -5930,12 +5866,12 @@ ], "osm_type":"way", "osm_id":1212094029, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "371":{ + "367":{ "name":"Famille Establie", "type":{ "landmark_type":"sightseeing" @@ -5946,44 +5882,28 @@ ], "osm_type":"way", "osm_id":1212094030, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "372":{ - "name":"Flamme du Souvenir", + "368":{ + "name":"Mémorial de l'ancienne Gare de Déportation de Bobigny", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8737575, - 2.295108 + 48.9105038, + 2.429875 ], "osm_type":"way", - "osm_id":1222868263, - "attractiveness":11, - "must_do":false, - "n_tags":17, - "time_to_reach":0 - }, - "373":{ - "name":"Redoute des Hautes Bruyères", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7910468, - 2.3464826 - ], - "osm_type":"way", - "osm_id":1266113360, - "attractiveness":2, + "osm_id":1236950477, + "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "374":{ + "369":{ "name":"Hôtel de Trudon", "type":{ "landmark_type":"sightseeing" @@ -5994,12 +5914,12 @@ ], "osm_type":"relation", "osm_id":538976, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "375":{ + "370":{ "name":"Ancien hôtel de Latour-Maubourg", "type":{ "landmark_type":"sightseeing" @@ -6010,12 +5930,12 @@ ], "osm_type":"relation", "osm_id":542284, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "376":{ + "371":{ "name":"Palais Cambon", "type":{ "landmark_type":"sightseeing" @@ -6026,12 +5946,12 @@ ], "osm_type":"relation", "osm_id":542460, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "377":{ + "372":{ "name":"Hôtel de Gourgues", "type":{ "landmark_type":"sightseeing" @@ -6042,12 +5962,12 @@ ], "osm_type":"relation", "osm_id":551488, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "378":{ + "373":{ "name":"Hôtel de Gillier", "type":{ "landmark_type":"sightseeing" @@ -6058,12 +5978,12 @@ ], "osm_type":"relation", "osm_id":554046, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "379":{ + "374":{ "name":"Hôtel Le Vau", "type":{ "landmark_type":"sightseeing" @@ -6074,12 +5994,12 @@ ], "osm_type":"relation", "osm_id":554059, - "attractiveness":7, + "attractiveness":13, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "380":{ + "375":{ "name":"Hôtel Lambert", "type":{ "landmark_type":"sightseeing" @@ -6090,12 +6010,12 @@ ], "osm_type":"relation", "osm_id":554060, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "381":{ + "376":{ "name":"Abbaye Sainte-Geneviève de Paris", "type":{ "landmark_type":"sightseeing" @@ -6106,12 +6026,12 @@ ], "osm_type":"relation", "osm_id":721757, - "attractiveness":7, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "382":{ + "377":{ "name":"Palais du Luxembourg", "type":{ "landmark_type":"sightseeing" @@ -6122,12 +6042,12 @@ ], "osm_type":"relation", "osm_id":975955, - "attractiveness":18, + "attractiveness":31, "must_do":false, "n_tags":31, "time_to_reach":0 }, - "383":{ + "378":{ "name":"Noviciat des Dominicains", "type":{ "landmark_type":"sightseeing" @@ -6138,12 +6058,12 @@ ], "osm_type":"relation", "osm_id":1002118, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "384":{ + "379":{ "name":"Palais Bourbon", "type":{ "landmark_type":"sightseeing" @@ -6154,12 +6074,12 @@ ], "osm_type":"relation", "osm_id":1019368, - "attractiveness":10, + "attractiveness":16, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "385":{ + "380":{ "name":"Hôtel Kinski", "type":{ "landmark_type":"sightseeing" @@ -6170,12 +6090,12 @@ ], "osm_type":"relation", "osm_id":1020040, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "386":{ + "381":{ "name":"Hôtel de Crillon", "type":{ "landmark_type":"sightseeing" @@ -6186,12 +6106,12 @@ ], "osm_type":"relation", "osm_id":1060804, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":19, "time_to_reach":0 }, - "387":{ + "382":{ "name":"Hôtel de Plessis-Bellière", "type":{ "landmark_type":"sightseeing" @@ -6202,12 +6122,12 @@ ], "osm_type":"relation", "osm_id":1060806, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "388":{ + "383":{ "name":"Hôtel de Castries", "type":{ "landmark_type":"sightseeing" @@ -6218,12 +6138,12 @@ ], "osm_type":"relation", "osm_id":1076763, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "389":{ + "384":{ "name":"Hôtel de Matignon", "type":{ "landmark_type":"sightseeing" @@ -6234,12 +6154,12 @@ ], "osm_type":"relation", "osm_id":1076880, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "390":{ + "385":{ "name":"Hôtel de la Païva", "type":{ "landmark_type":"sightseeing" @@ -6250,12 +6170,28 @@ ], "osm_type":"relation", "osm_id":1086118, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "391":{ + "386":{ + "name":"Hôtel Gaillard", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8817972, + 2.3105214 + ], + "osm_type":"relation", + "osm_id":1261334, + "attractiveness":21, + "must_do":false, + "n_tags":21, + "time_to_reach":0 + }, + "387":{ "name":"Ligne de Petite Ceinture", "type":{ "landmark_type":"sightseeing" @@ -6266,12 +6202,28 @@ ], "osm_type":"relation", "osm_id":1536589, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "392":{ + "388":{ + "name":"Châtelet du Château de Vincennes", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8426709, + 2.4347268 + ], + "osm_type":"relation", + "osm_id":1559341, + "attractiveness":9, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "389":{ "name":"Porte Saint-Denis", "type":{ "landmark_type":"sightseeing" @@ -6282,12 +6234,12 @@ ], "osm_type":"relation", "osm_id":3170072, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":19, "time_to_reach":0 }, - "393":{ + "390":{ "name":"Porte Saint-Martin", "type":{ "landmark_type":"sightseeing" @@ -6298,28 +6250,12 @@ ], "osm_type":"relation", "osm_id":3178897, - "attractiveness":10, + "attractiveness":17, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "394":{ - "name":"Fort d'Ivry", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8023358, - 2.3901941 - ], - "osm_type":"relation", - "osm_id":5658089, - "attractiveness":4, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "395":{ + "391":{ "name":"Square des Arènes de Lutèce et Capitan", "type":{ "landmark_type":"sightseeing" @@ -6330,12 +6266,12 @@ ], "osm_type":"relation", "osm_id":6087528, - "attractiveness":18, + "attractiveness":21, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "396":{ + "392":{ "name":"Hôpital Saint-Louis", "type":{ "landmark_type":"sightseeing" @@ -6346,12 +6282,12 @@ ], "osm_type":"relation", "osm_id":10714750, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "397":{ + "393":{ "name":"Voie Romaine Paris -Dreux", "type":{ "landmark_type":"sightseeing" @@ -6362,12 +6298,12 @@ ], "osm_type":"relation", "osm_id":15488534, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "398":{ + "394":{ "name":"Césure", "type":{ "landmark_type":"sightseeing" @@ -6378,12 +6314,12 @@ ], "osm_type":"way", "osm_id":17044233, - "attractiveness":13, + "attractiveness":22, "must_do":false, "n_tags":22, "time_to_reach":0 }, - "399":{ + "395":{ "name":"Carreau du Temple", "type":{ "landmark_type":"sightseeing" @@ -6394,12 +6330,12 @@ ], "osm_type":"way", "osm_id":30612670, - "attractiveness":12, + "attractiveness":21, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "400":{ + "396":{ "name":"Centre culturel de Serbie", "type":{ "landmark_type":"sightseeing" @@ -6410,12 +6346,12 @@ ], "osm_type":"way", "osm_id":55751632, - "attractiveness":7, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "401":{ + "397":{ "name":"Halle des Blancs-Manteaux", "type":{ "landmark_type":"sightseeing" @@ -6426,12 +6362,12 @@ ], "osm_type":"way", "osm_id":55997982, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "402":{ + "398":{ "name":"Centre Culturel Marocain", "type":{ "landmark_type":"sightseeing" @@ -6442,28 +6378,28 @@ ], "osm_type":"way", "osm_id":60272030, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "403":{ - "name":"Anis Gras", + "399":{ + "name":"La Gare Expérimentale", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8090092, - 2.3297627 + 48.8784984, + 2.4063687 ], "osm_type":"way", - "osm_id":62081844, - "attractiveness":7, + "osm_id":63224605, + "attractiveness":11, "must_do":false, - "n_tags":12, + "n_tags":11, "time_to_reach":0 }, - "404":{ + "400":{ "name":"Institut hongrois", "type":{ "landmark_type":"sightseeing" @@ -6474,28 +6410,60 @@ ], "osm_type":"way", "osm_id":63354216, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "405":{ - "name":"École Municipale des Beaux-Arts", + "401":{ + "name":"Grande Halle de la Villette", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8028577, - 2.3641168 + 48.8909125, + 2.3908221 ], "osm_type":"way", - "osm_id":64405276, - "attractiveness":5, + "osm_id":63971649, + "attractiveness":14, "must_do":false, - "n_tags":9, + "n_tags":14, "time_to_reach":0 }, - "406":{ + "402":{ + "name":"Cours Florent", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8914135, + 2.3730389 + ], + "osm_type":"way", + "osm_id":64040285, + "attractiveness":6, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "403":{ + "name":"WIP Villette", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8958997, + 2.385039 + ], + "osm_type":"way", + "osm_id":64040324, + "attractiveness":11, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "404":{ "name":"Espace Fondation EDF", "type":{ "landmark_type":"sightseeing" @@ -6506,12 +6474,12 @@ ], "osm_type":"way", "osm_id":64941360, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "407":{ + "405":{ "name":"Centre Culturel Canadien", "type":{ "landmark_type":"sightseeing" @@ -6522,28 +6490,28 @@ ], "osm_type":"way", "osm_id":65100171, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "408":{ - "name":"Conservatoire intercommunal du Val de Bièvre", + "406":{ + "name":"Centre national de la danse", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.808838, - 2.3604123 + 48.8954653, + 2.4021216 ], "osm_type":"way", - "osm_id":67283972, - "attractiveness":7, + "osm_id":67561076, + "attractiveness":13, "must_do":false, - "n_tags":11, + "n_tags":13, "time_to_reach":0 }, - "409":{ + "407":{ "name":"Centre Culturel Coréen", "type":{ "landmark_type":"sightseeing" @@ -6554,12 +6522,12 @@ ], "osm_type":"way", "osm_id":67725937, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "410":{ + "408":{ "name":"Conservatoire Municipal Nadia et Lili Boulanger", "type":{ "landmark_type":"sightseeing" @@ -6570,12 +6538,12 @@ ], "osm_type":"way", "osm_id":69418226, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "411":{ + "409":{ "name":"Villa Belleville", "type":{ "landmark_type":"sightseeing" @@ -6586,12 +6554,12 @@ ], "osm_type":"way", "osm_id":69999925, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "412":{ + "410":{ "name":"Conservatoire municipal Georges Bizet", "type":{ "landmark_type":"sightseeing" @@ -6602,12 +6570,156 @@ ], "osm_type":"way", "osm_id":69999947, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, + "411":{ + "name":"Pavillon Carré de Baudouin", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.870081, + 2.3939858 + ], + "osm_type":"way", + "osm_id":70000298, + "attractiveness":22, + "must_do":false, + "n_tags":21, + "time_to_reach":0 + }, + "412":{ + "name":"La Bellevilloise", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8683098, + 2.3920151 + ], + "osm_type":"way", + "osm_id":70004207, + "attractiveness":10, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, "413":{ + "name":"Maison Revel", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.90221, + 2.3920317 + ], + "osm_type":"way", + "osm_id":73112211, + "attractiveness":12, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "414":{ + "name":"Soukmachine", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9041572, + 2.401025 + ], + "osm_type":"way", + "osm_id":73113433, + "attractiveness":9, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "415":{ + "name":"CNAP La nouvelle adresse", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9018571, + 2.4039975 + ], + "osm_type":"way", + "osm_id":73113678, + "attractiveness":10, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "416":{ + "name":"La Dynamo de Banlieues Bleues", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9033501, + 2.3933072 + ], + "osm_type":"way", + "osm_id":73114280, + "attractiveness":11, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "417":{ + "name":"Conservatoire Léo Delibes", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9022746, + 2.3066126 + ], + "osm_type":"way", + "osm_id":74475750, + "attractiveness":5, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "418":{ + "name":"Le BAL", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8852691, + 2.327352 + ], + "osm_type":"way", + "osm_id":76031543, + "attractiveness":16, + "must_do":false, + "n_tags":15, + "time_to_reach":0 + }, + "419":{ + "name":"Le Hasard Ludique", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8957023, + 2.3286954 + ], + "osm_type":"way", + "osm_id":77670163, + "attractiveness":20, + "must_do":false, + "n_tags":20, + "time_to_reach":0 + }, + "420":{ "name":"Maison des ensembles", "type":{ "landmark_type":"sightseeing" @@ -6618,140 +6730,44 @@ ], "osm_type":"way", "osm_id":78146448, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "414":{ - "name":"La Maison des Cinq Sens", + "421":{ + "name":"Espace Albatros", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8312048, - 2.3702611 + 48.854154, + 2.4330489 ], "osm_type":"way", - "osm_id":79084804, - "attractiveness":2, + "osm_id":81770452, + "attractiveness":13, "must_do":false, - "n_tags":4, + "n_tags":13, "time_to_reach":0 }, - "415":{ - "name":"Le Hangar", + "422":{ + "name":"Instants Chavirés", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8116385, - 2.388069 + 48.8541944, + 2.4192381 ], "osm_type":"way", - "osm_id":79152237, - "attractiveness":4, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "416":{ - "name":"La Générale", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8327433, - 2.3254358 - ], - "osm_type":"way", - "osm_id":79633738, - "attractiveness":5, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "417":{ - "name":"Paris Anim' Brancion", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8265146, - 2.2999889 - ], - "osm_type":"way", - "osm_id":80144728, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "418":{ - "name":"Beffroi", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8194461, - 2.3198299 - ], - "osm_type":"way", - "osm_id":83237621, - "attractiveness":16, - "must_do":false, - "n_tags":26, - "time_to_reach":0 - }, - "419":{ - "name":"Maison des Arts", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8180664, - 2.307911 - ], - "osm_type":"way", - "osm_id":83790469, - "attractiveness":9, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "420":{ - "name":"Conservatoire Francis Poulenc", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8520333, - 2.2747876 - ], - "osm_type":"way", - "osm_id":83934823, - "attractiveness":5, + "osm_id":81837290, + "attractiveness":10, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "421":{ - "name":"Maison des Arts et de la Nature", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7993819, - 2.2912237 - ], - "osm_type":"way", - "osm_id":87387128, - "attractiveness":2, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "422":{ + "423":{ "name":"Centre Culturel Irlandais", "type":{ "landmark_type":"sightseeing" @@ -6762,12 +6778,12 @@ ], "osm_type":"way", "osm_id":148568804, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "423":{ + "424":{ "name":"Maison de l’Amérique latine", "type":{ "landmark_type":"sightseeing" @@ -6778,60 +6794,60 @@ ], "osm_type":"way", "osm_id":166220702, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "424":{ - "name":"Maison des Pratiques Artistiques Amateurs Broussais", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.827051, - 2.3133718 - ], - "osm_type":"way", - "osm_id":181911602, - "attractiveness":9, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, "425":{ - "name":"Espace Culturel André Malraux", + "name":"Conservatoire De Musique de Danse et d'Art Dramatique d'Aubervilliers La Courneuve", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8089469, - 2.3605686 + 48.9103441, + 2.3829444 ], "osm_type":"way", - "osm_id":239059353, - "attractiveness":4, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "426":{ - "name":"Maison Pour Tous Jules Vallès", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8053316, - 2.3667111 - ], - "osm_type":"way", - "osm_id":252696572, - "attractiveness":4, + "osm_id":228362260, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, + "426":{ + "name":"Galerie Thaddaeus Ropac", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8995242, + 2.407969 + ], + "osm_type":"way", + "osm_id":239775793, + "attractiveness":11, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, "427":{ + "name":"Le Cent Quatre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8902444, + 2.3700712 + ], + "osm_type":"way", + "osm_id":278632326, + "attractiveness":17, + "must_do":false, + "n_tags":17, + "time_to_reach":0 + }, + "428":{ "name":"Institut culturel italien", "type":{ "landmark_type":"sightseeing" @@ -6842,12 +6858,28 @@ ], "osm_type":"way", "osm_id":330244281, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "428":{ + "429":{ + "name":"Sheds Cartier-Bresson", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9062952, + 2.3971653 + ], + "osm_type":"way", + "osm_id":399969522, + "attractiveness":10, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "430":{ "name":"Quai de la photo", "type":{ "landmark_type":"sightseeing" @@ -6858,12 +6890,12 @@ ], "osm_type":"way", "osm_id":618744163, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "429":{ + "431":{ "name":"Bateau Daphné", "type":{ "landmark_type":"sightseeing" @@ -6874,12 +6906,12 @@ ], "osm_type":"way", "osm_id":618750321, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "430":{ + "432":{ "name":"Atelier des Lumières", "type":{ "landmark_type":"sightseeing" @@ -6890,12 +6922,12 @@ ], "osm_type":"way", "osm_id":973123037, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "431":{ + "433":{ "name":"Maison du Val d'Aoste", "type":{ "landmark_type":"sightseeing" @@ -6906,12 +6938,12 @@ ], "osm_type":"relation", "osm_id":537232, - "attractiveness":7, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "432":{ + "434":{ "name":"La Gaîté lyrique", "type":{ "landmark_type":"sightseeing" @@ -6922,12 +6954,12 @@ ], "osm_type":"relation", "osm_id":550514, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "433":{ + "435":{ "name":"Conservatoire Hector Berlioz", "type":{ "landmark_type":"sightseeing" @@ -6938,12 +6970,12 @@ ], "osm_type":"relation", "osm_id":983783, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "434":{ + "436":{ "name":"Les Plateaux Sauvages", "type":{ "landmark_type":"sightseeing" @@ -6954,12 +6986,12 @@ ], "osm_type":"relation", "osm_id":1103386, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "435":{ + "437":{ "name":"Maison des Métallos", "type":{ "landmark_type":"sightseeing" @@ -6970,43 +7002,11 @@ ], "osm_type":"relation", "osm_id":2864839, - "attractiveness":12, + "attractiveness":20, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "436":{ - "name":"Auditorium de la Maison de la Radio", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8523516, - 2.2789601 - ], - "osm_type":"relation", - "osm_id":3071867, - "attractiveness":7, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "437":{ - "name":"Palais des Congrès", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8792198, - 2.2832217 - ], - "osm_type":"relation", - "osm_id":3074644, - "attractiveness":6, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, "438":{ "name":"Cité Internationale des Arts", "type":{ @@ -7018,28 +7018,12 @@ ], "osm_type":"relation", "osm_id":3514193, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":11, "time_to_reach":0 }, "439":{ - "name":"Bercy Beaucoup", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8293968, - 2.3918793 - ], - "osm_type":"relation", - "osm_id":15608165, - "attractiveness":4, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "440":{ "name":"Église Saint-Lambert de Vaugirard", "type":{ "landmark_type":"sightseeing" @@ -7050,28 +7034,12 @@ ], "osm_type":"way", "osm_id":14349317, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "441":{ - "name":"Église Saint-Léon", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8509237, - 2.2966106 - ], - "osm_type":"way", - "osm_id":15912913, - "attractiveness":4, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "442":{ + "440":{ "name":"Église Saint-Sulpice", "type":{ "landmark_type":"sightseeing" @@ -7082,28 +7050,12 @@ ], "osm_type":"way", "osm_id":16077204, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":25, "time_to_reach":0 }, - "443":{ - "name":"Église Saint-Pierre de Montrouge", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8287685, - 2.3270872 - ], - "osm_type":"way", - "osm_id":16929093, - "attractiveness":9, - "must_do":false, - "n_tags":26, - "time_to_reach":0 - }, - "444":{ + "441":{ "name":"Église Saint-Séverin", "type":{ "landmark_type":"sightseeing" @@ -7114,12 +7066,12 @@ ], "osm_type":"way", "osm_id":19740659, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":25, "time_to_reach":0 }, - "445":{ + "442":{ "name":"Église Saint-Julien-le-Pauvre", "type":{ "landmark_type":"sightseeing" @@ -7130,28 +7082,28 @@ ], "osm_type":"way", "osm_id":19741083, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "446":{ - "name":"Église Saint-Jean-Baptiste de Grenelle", + "443":{ + "name":"Église Saint-Pierre de Montmartre", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8432427, - 2.2926241 + 48.8867199, + 2.3420645 ], "osm_type":"way", - "osm_id":23811420, - "attractiveness":3, + "osm_id":23884336, + "attractiveness":8, "must_do":false, - "n_tags":10, + "n_tags":14, "time_to_reach":0 }, - "447":{ + "444":{ "name":"Église Notre-Dame de l'Arche d'Alliance", "type":{ "landmark_type":"sightseeing" @@ -7162,12 +7114,12 @@ ], "osm_type":"way", "osm_id":24303512, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "448":{ + "445":{ "name":"Église Saint-Ignace", "type":{ "landmark_type":"sightseeing" @@ -7178,12 +7130,12 @@ ], "osm_type":"way", "osm_id":24310193, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "449":{ + "446":{ "name":"Église Saint-Médard", "type":{ "landmark_type":"sightseeing" @@ -7194,12 +7146,12 @@ ], "osm_type":"way", "osm_id":24406636, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "450":{ + "447":{ "name":"Église Notre-Dame-de-Lorette", "type":{ "landmark_type":"sightseeing" @@ -7210,12 +7162,12 @@ ], "osm_type":"way", "osm_id":25688622, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "451":{ + "448":{ "name":"Temple de l'Oratoire du Louvre", "type":{ "landmark_type":"sightseeing" @@ -7226,28 +7178,44 @@ ], "osm_type":"way", "osm_id":30622528, - "attractiveness":12, + "attractiveness":20, "must_do":false, "n_tags":32, "time_to_reach":0 }, - "452":{ - "name":"Chapelle Saint-Sauveur", + "449":{ + "name":"Église Notre-Dame de Clignancourt", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.828574, - 2.2780766 + 48.89314, + 2.3450441 ], "osm_type":"way", - "osm_id":42268952, - "attractiveness":3, + "osm_id":36855293, + "attractiveness":6, "must_do":false, - "n_tags":9, + "n_tags":10, "time_to_reach":0 }, - "453":{ + "450":{ + "name":"Synagogue de la rue Sainte-Isaure", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8936801, + 2.3438876 + ], + "osm_type":"way", + "osm_id":41506069, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "451":{ "name":"Synagogue Chivté Israël", "type":{ "landmark_type":"sightseeing" @@ -7258,28 +7226,12 @@ ], "osm_type":"way", "osm_id":42311107, - "attractiveness":2, + "attractiveness":3, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "454":{ - "name":"Temple Protestant Espace Protestant Isséen (EPI)", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.826206, - 2.2719916 - ], - "osm_type":"way", - "osm_id":42675715, - "attractiveness":3, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "455":{ + "452":{ "name":"Église Saint-Nicolas du Chardonnet", "type":{ "landmark_type":"sightseeing" @@ -7290,12 +7242,28 @@ ], "osm_type":"way", "osm_id":43877261, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "456":{ + "453":{ + "name":"Église Sainte-Hélène", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8965278, + 2.342435 + ], + "osm_type":"way", + "osm_id":48974965, + "attractiveness":4, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "454":{ "name":"Synagogue de la rue des Tournelles", "type":{ "landmark_type":"sightseeing" @@ -7306,12 +7274,12 @@ ], "osm_type":"way", "osm_id":49734642, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "457":{ + "455":{ "name":"Église de la Sainte-Trinité", "type":{ "landmark_type":"sightseeing" @@ -7322,12 +7290,12 @@ ], "osm_type":"way", "osm_id":49872150, - "attractiveness":7, + "attractiveness":11, "must_do":false, "n_tags":19, "time_to_reach":0 }, - "458":{ + "456":{ "name":"Église Saint-Eugène Sainte-Cécile", "type":{ "landmark_type":"sightseeing" @@ -7338,12 +7306,12 @@ ], "osm_type":"way", "osm_id":50371917, - "attractiveness":12, + "attractiveness":20, "must_do":false, "n_tags":33, "time_to_reach":0 }, - "459":{ + "457":{ "name":"Église luthérienne de la Résurrection", "type":{ "landmark_type":"sightseeing" @@ -7354,44 +7322,12 @@ ], "osm_type":"way", "osm_id":53262890, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "460":{ - "name":"Église Saint-Christophe de Javel", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8446667, - 2.2793091 - ], - "osm_type":"way", - "osm_id":53400775, - "attractiveness":6, - "must_do":false, - "n_tags":16, - "time_to_reach":0 - }, - "461":{ - "name":"Église de la Présentation de la Très Sainte Mère de Dieu au temple", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8320652, - 2.2937886 - ], - "osm_type":"way", - "osm_id":53724149, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "462":{ + "458":{ "name":"Église Saint-Eustache", "type":{ "landmark_type":"sightseeing" @@ -7402,12 +7338,12 @@ ], "osm_type":"way", "osm_id":53762963, - "attractiveness":10, + "attractiveness":18, "must_do":false, "n_tags":29, "time_to_reach":0 }, - "463":{ + "459":{ "name":"Église Saint-Germain l'Auxerrois", "type":{ "landmark_type":"sightseeing" @@ -7418,12 +7354,12 @@ ], "osm_type":"way", "osm_id":53770908, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":27, "time_to_reach":0 }, - "464":{ + "460":{ "name":"Église Saint-Leu - Saint-Gilles", "type":{ "landmark_type":"sightseeing" @@ -7434,44 +7370,12 @@ ], "osm_type":"way", "osm_id":53933240, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "465":{ - "name":"Église Notre-Dame des Pauvres", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8271424, - 2.2679851 - ], - "osm_type":"way", - "osm_id":54047170, - "attractiveness":6, - "must_do":false, - "n_tags":18, - "time_to_reach":0 - }, - "466":{ - "name":"Chapelle Notre-Dame de Grâce", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8486035, - 2.2912517 - ], - "osm_type":"way", - "osm_id":54118568, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "467":{ + "461":{ "name":"Église Notre-Dame-de-l'Assomption", "type":{ "landmark_type":"sightseeing" @@ -7482,12 +7386,12 @@ ], "osm_type":"way", "osm_id":54168792, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":24, "time_to_reach":0 }, - "468":{ + "462":{ "name":"Basilique Notre-Dame-des-Victoires", "type":{ "landmark_type":"sightseeing" @@ -7498,12 +7402,12 @@ ], "osm_type":"way", "osm_id":54661742, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":24, "time_to_reach":0 }, - "469":{ + "463":{ "name":"Église Notre-Dame-de-Bonne-Nouvelle", "type":{ "landmark_type":"sightseeing" @@ -7514,12 +7418,12 @@ ], "osm_type":"way", "osm_id":55178129, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":22, "time_to_reach":0 }, - "470":{ + "464":{ "name":"Église Saint-Louis-en-l'Île", "type":{ "landmark_type":"sightseeing" @@ -7530,12 +7434,12 @@ ], "osm_type":"way", "osm_id":55314295, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "471":{ + "465":{ "name":"Église Saint-Étienne-du-Mont", "type":{ "landmark_type":"sightseeing" @@ -7546,12 +7450,12 @@ ], "osm_type":"way", "osm_id":55343672, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "472":{ + "466":{ "name":"Église Saint-Éphrem-le-Syriaque", "type":{ "landmark_type":"sightseeing" @@ -7562,12 +7466,12 @@ ], "osm_type":"way", "osm_id":55359253, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "473":{ + "467":{ "name":"Église Orthodoxe Roumaine des Saints Archanges", "type":{ "landmark_type":"sightseeing" @@ -7578,12 +7482,12 @@ ], "osm_type":"way", "osm_id":55366403, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "474":{ + "468":{ "name":"Église Saint-Gervais", "type":{ "landmark_type":"sightseeing" @@ -7594,12 +7498,12 @@ ], "osm_type":"way", "osm_id":55477164, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "475":{ + "469":{ "name":"Église Saint-Merri", "type":{ "landmark_type":"sightseeing" @@ -7610,12 +7514,12 @@ ], "osm_type":"way", "osm_id":55742120, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "476":{ + "470":{ "name":"Église Luthérienne des Billettes", "type":{ "landmark_type":"sightseeing" @@ -7626,12 +7530,12 @@ ], "osm_type":"way", "osm_id":55942658, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "477":{ + "471":{ "name":"Église Notre-Dame-des-Blancs-Manteaux", "type":{ "landmark_type":"sightseeing" @@ -7642,12 +7546,12 @@ ], "osm_type":"way", "osm_id":55984117, - "attractiveness":7, + "attractiveness":13, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "478":{ + "472":{ "name":"Synagogue", "type":{ "landmark_type":"sightseeing" @@ -7658,12 +7562,12 @@ ], "osm_type":"way", "osm_id":56040608, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "479":{ + "473":{ "name":"Église Saint-Paul-Saint-Louis", "type":{ "landmark_type":"sightseeing" @@ -7674,12 +7578,12 @@ ], "osm_type":"way", "osm_id":56046786, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "480":{ + "474":{ "name":"Chapelle", "type":{ "landmark_type":"sightseeing" @@ -7690,12 +7594,12 @@ ], "osm_type":"way", "osm_id":56159605, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "481":{ + "475":{ "name":"Temple du Marais", "type":{ "landmark_type":"sightseeing" @@ -7706,12 +7610,12 @@ ], "osm_type":"way", "osm_id":56206112, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "482":{ + "476":{ "name":"Église Saint-Nicolas-des-Champs", "type":{ "landmark_type":"sightseeing" @@ -7722,12 +7626,12 @@ ], "osm_type":"way", "osm_id":56290843, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "483":{ + "477":{ "name":"Synagogue Nazareth", "type":{ "landmark_type":"sightseeing" @@ -7738,12 +7642,12 @@ ], "osm_type":"way", "osm_id":56435813, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "484":{ + "478":{ "name":"Église Sainte-Elisabeth", "type":{ "landmark_type":"sightseeing" @@ -7754,12 +7658,12 @@ ], "osm_type":"way", "osm_id":56457505, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "485":{ + "479":{ "name":"Synagogue Vauquelin", "type":{ "landmark_type":"sightseeing" @@ -7770,12 +7674,12 @@ ], "osm_type":"way", "osm_id":56693739, - "attractiveness":2, + "attractiveness":3, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "486":{ + "480":{ "name":"Chapelle de la congrégation du Saint-Esprit", "type":{ "landmark_type":"sightseeing" @@ -7786,12 +7690,12 @@ ], "osm_type":"way", "osm_id":56771095, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "487":{ + "481":{ "name":"Maison Fraternelle", "type":{ "landmark_type":"sightseeing" @@ -7802,12 +7706,12 @@ ], "osm_type":"way", "osm_id":57380517, - "attractiveness":2, + "attractiveness":3, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "488":{ + "482":{ "name":"Cathédrale Sainte-Croix de Paris des Arméniens", "type":{ "landmark_type":"sightseeing" @@ -7818,12 +7722,12 @@ ], "osm_type":"way", "osm_id":57403533, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "489":{ + "483":{ "name":"Église Saint-Denis du Saint-Sacrement", "type":{ "landmark_type":"sightseeing" @@ -7834,12 +7738,12 @@ ], "osm_type":"way", "osm_id":58150045, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "490":{ + "484":{ "name":"Église du Val-de-Grâce", "type":{ "landmark_type":"sightseeing" @@ -7850,12 +7754,12 @@ ], "osm_type":"way", "osm_id":59846865, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "491":{ + "485":{ "name":"Église Luthérienne Saint-Marcel", "type":{ "landmark_type":"sightseeing" @@ -7866,12 +7770,12 @@ ], "osm_type":"way", "osm_id":60209197, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "492":{ + "486":{ "name":"Église Saint-Jacques-du-Haut-Pas", "type":{ "landmark_type":"sightseeing" @@ -7882,28 +7786,44 @@ ], "osm_type":"way", "osm_id":60279510, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "493":{ - "name":"Église Saint-Denys", + "487":{ + "name":"Église Notre-Dame-des-Vertus", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.802462, - 2.3319525 + 48.9145379, + 2.3826684 ], "osm_type":"way", - "osm_id":61312692, - "attractiveness":5, + "osm_id":61981374, + "attractiveness":10, + "must_do":false, + "n_tags":17, + "time_to_reach":0 + }, + "488":{ + "name":"Église Saint-Ouen", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9189423, + 2.3315386 + ], + "osm_type":"way", + "osm_id":62003063, + "attractiveness":9, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "494":{ + "489":{ "name":"Église Saint-Germain des Prés", "type":{ "landmark_type":"sightseeing" @@ -7914,12 +7834,12 @@ ], "osm_type":"way", "osm_id":62287173, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "495":{ + "490":{ "name":"Cathédrale Ukrainienne Saint-Vladimir-le-Grand", "type":{ "landmark_type":"sightseeing" @@ -7930,12 +7850,12 @@ ], "osm_type":"way", "osm_id":62296389, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "496":{ + "491":{ "name":"Chapelle Notre-Dame de la Sagesse", "type":{ "landmark_type":"sightseeing" @@ -7946,12 +7866,12 @@ ], "osm_type":"way", "osm_id":62379741, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "497":{ + "492":{ "name":"Église Evangélique Baptiste", "type":{ "landmark_type":"sightseeing" @@ -7962,12 +7882,12 @@ ], "osm_type":"way", "osm_id":63149138, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "498":{ + "493":{ "name":"Église Saint-Vincent-de-Paul", "type":{ "landmark_type":"sightseeing" @@ -7978,12 +7898,12 @@ ], "osm_type":"way", "osm_id":63197162, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "499":{ + "494":{ "name":"Église Saint-Laurent", "type":{ "landmark_type":"sightseeing" @@ -7994,12 +7914,12 @@ ], "osm_type":"way", "osm_id":63200612, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "500":{ + "495":{ "name":"Chapelle de l'hôpital Saint-Louis", "type":{ "landmark_type":"sightseeing" @@ -8010,12 +7930,12 @@ ], "osm_type":"way", "osm_id":63200644, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "501":{ + "496":{ "name":"Église Saint-Martin des Champs", "type":{ "landmark_type":"sightseeing" @@ -8026,12 +7946,28 @@ ], "osm_type":"way", "osm_id":63201579, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "502":{ + "497":{ + "name":"Église Saint-Joseph-Artisan", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8813655, + 2.3677357 + ], + "osm_type":"way", + "osm_id":63203063, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "498":{ "name":"Temple de la Rencontre", "type":{ "landmark_type":"sightseeing" @@ -8042,12 +7978,12 @@ ], "osm_type":"way", "osm_id":63203792, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "503":{ + "499":{ "name":"Église Saint-Jean-Baptiste de Belleville", "type":{ "landmark_type":"sightseeing" @@ -8058,12 +7994,156 @@ ], "osm_type":"way", "osm_id":63212231, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":23, "time_to_reach":0 }, + "500":{ + "name":"Synagogue Michkenot Israël", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8825966, + 2.3733068 + ], + "osm_type":"way", + "osm_id":63212274, + "attractiveness":3, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "501":{ + "name":"Salle de Prière La Villette", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.884785, + 2.3838436 + ], + "osm_type":"way", + "osm_id":63212789, + "attractiveness":4, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "502":{ + "name":"Église Notre-Dame-de-l'Assomption des Buttes-Chaumont", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8840257, + 2.3785052 + ], + "osm_type":"way", + "osm_id":63213611, + "attractiveness":7, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "503":{ + "name":"Église luthérienne Saint-Pierre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8810534, + 2.3798892 + ], + "osm_type":"way", + "osm_id":63224657, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, "504":{ + "name":"Église Notre-Dame-de-Fatima", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8792584, + 2.402704 + ], + "osm_type":"way", + "osm_id":63233599, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "505":{ + "name":"Église Saint-François-d'Assise", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8803349, + 2.39154 + ], + "osm_type":"way", + "osm_id":63233916, + "attractiveness":6, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "506":{ + "name":"Église Sainte-Claire d'Assise", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8888017, + 2.3950208 + ], + "osm_type":"way", + "osm_id":63234079, + "attractiveness":9, + "must_do":false, + "n_tags":15, + "time_to_reach":0 + }, + "507":{ + "name":"Temple Antoiniste", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.878948, + 2.3975957 + ], + "osm_type":"way", + "osm_id":63234870, + "attractiveness":4, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "508":{ + "name":"Église Saint-Serge", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8833592, + 2.3837675 + ], + "osm_type":"way", + "osm_id":63237639, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "509":{ "name":"Église Saint-Georges de la Villette", "type":{ "landmark_type":"sightseeing" @@ -8074,12 +8154,12 @@ ], "osm_type":"way", "osm_id":63239488, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "505":{ + "510":{ "name":"Église Saint-Joseph des Carmes", "type":{ "landmark_type":"sightseeing" @@ -8090,12 +8170,12 @@ ], "osm_type":"way", "osm_id":63370983, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "506":{ + "511":{ "name":"Église Saint-Thomas d'Aquin", "type":{ "landmark_type":"sightseeing" @@ -8106,12 +8186,12 @@ ], "osm_type":"way", "osm_id":63536576, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "507":{ + "512":{ "name":"Église Saint-Ambroise", "type":{ "landmark_type":"sightseeing" @@ -8122,12 +8202,12 @@ ], "osm_type":"way", "osm_id":63638108, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "508":{ + "513":{ "name":"Mosquée Omar bn El Khattab", "type":{ "landmark_type":"sightseeing" @@ -8138,12 +8218,12 @@ ], "osm_type":"way", "osm_id":63638391, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "509":{ + "514":{ "name":"Chapelle Notre-Dame-Réconciliatrice de la Salette", "type":{ "landmark_type":"sightseeing" @@ -8154,12 +8234,12 @@ ], "osm_type":"way", "osm_id":63638499, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "510":{ + "515":{ "name":"Synagogue Don Isaac Abravanel", "type":{ "landmark_type":"sightseeing" @@ -8170,12 +8250,12 @@ ], "osm_type":"way", "osm_id":63640089, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "511":{ + "516":{ "name":"Basilique Notre-Dame du Perpétuel Secours", "type":{ "landmark_type":"sightseeing" @@ -8186,12 +8266,12 @@ ], "osm_type":"way", "osm_id":63640725, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "512":{ + "517":{ "name":"Sfânta Genoveva și Sfântul Martin", "type":{ "landmark_type":"sightseeing" @@ -8202,12 +8282,12 @@ ], "osm_type":"way", "osm_id":63640910, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "513":{ + "518":{ "name":"Église protestante chinoise de Paris", "type":{ "landmark_type":"sightseeing" @@ -8218,12 +8298,12 @@ ], "osm_type":"way", "osm_id":63645155, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "514":{ + "519":{ "name":"Église Notre-Dame d'Espérance", "type":{ "landmark_type":"sightseeing" @@ -8234,12 +8314,12 @@ ], "osm_type":"way", "osm_id":63646922, - "attractiveness":4, + "attractiveness":8, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "515":{ + "520":{ "name":"Temple protestant du Foyer de l'Âme", "type":{ "landmark_type":"sightseeing" @@ -8250,60 +8330,12 @@ ], "osm_type":"way", "osm_id":63648393, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "516":{ - "name":"Église Saint-Jean", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.791985, - 2.3224463 - ], - "osm_type":"way", - "osm_id":63652836, - "attractiveness":3, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "517":{ - "name":"Église Sainte-Germaine", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7921031, - 2.3343501 - ], - "osm_type":"way", - "osm_id":63655132, - "attractiveness":4, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "518":{ - "name":"Mosquée Falah", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7947944, - 2.3392937 - ], - "osm_type":"way", - "osm_id":63655614, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "519":{ + "521":{ "name":"Église Réformée du Luxembourg", "type":{ "landmark_type":"sightseeing" @@ -8314,12 +8346,76 @@ ], "osm_type":"way", "osm_id":63681841, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "520":{ + "522":{ + "name":"Église Saint-Jean-des-Grésillons", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9189774, + 2.3003288 + ], + "osm_type":"way", + "osm_id":63957950, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "523":{ + "name":"Église Sainte-Geneviève", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9082792, + 2.3574826 + ], + "osm_type":"way", + "osm_id":63982213, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "524":{ + "name":"Église Saint-Jacques Saint-Christophe", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8892855, + 2.3797641 + ], + "osm_type":"way", + "osm_id":64037954, + "attractiveness":7, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "525":{ + "name":"Église Notre-Dame des Foyers", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8869224, + 2.3699944 + ], + "osm_type":"way", + "osm_id":64038747, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "526":{ "name":"Église Notre-Dame des Champs", "type":{ "landmark_type":"sightseeing" @@ -8330,12 +8426,12 @@ ], "osm_type":"way", "osm_id":64121803, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "521":{ + "527":{ "name":"Centre Quaker International", "type":{ "landmark_type":"sightseeing" @@ -8346,76 +8442,12 @@ ], "osm_type":"way", "osm_id":64315031, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "522":{ - "name":"Église Sainte-Thérèse-de-l'Enfant-Jésus", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8027876, - 2.361861 - ], - "osm_type":"way", - "osm_id":64404630, - "attractiveness":3, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "523":{ - "name":"Oratoire Beth Yoel", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8033791, - 2.36911 - ], - "osm_type":"way", - "osm_id":64411151, - "attractiveness":2, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "524":{ - "name":"Église copte orthodoxe de l'Archange Michel et Saint-Georges", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7896646, - 2.3683584 - ], - "osm_type":"way", - "osm_id":64418701, - "attractiveness":4, - "must_do":false, - "n_tags":13, - "time_to_reach":0 - }, - "525":{ - "name":"Église Saint-Cyr et Sainte-Julitte", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7921955, - 2.3637757 - ], - "osm_type":"way", - "osm_id":64420480, - "attractiveness":6, - "must_do":false, - "n_tags":17, - "time_to_reach":0 - }, - "526":{ + "528":{ "name":"Basilique Sainte-Clotilde", "type":{ "landmark_type":"sightseeing" @@ -8426,12 +8458,28 @@ ], "osm_type":"way", "osm_id":64952290, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "527":{ + "529":{ + "name":"Église Saint-Yves-des-Quatre-Routes", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9195187, + 2.4123168 + ], + "osm_type":"way", + "osm_id":67181873, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "530":{ "name":"Église anglicane Saint-Michael", "type":{ "landmark_type":"sightseeing" @@ -8442,28 +8490,12 @@ ], "osm_type":"way", "osm_id":67233894, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "528":{ - "name":"Église de la Sainte-Famille", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8109609, - 2.3591353 - ], - "osm_type":"way", - "osm_id":67283221, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "529":{ + "531":{ "name":"Église protestante unie du Saint-Esprit", "type":{ "landmark_type":"sightseeing" @@ -8474,12 +8506,12 @@ ], "osm_type":"way", "osm_id":67350058, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "530":{ + "532":{ "name":"Temple de Pentemont", "type":{ "landmark_type":"sightseeing" @@ -8490,12 +8522,12 @@ ], "osm_type":"way", "osm_id":67353449, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "531":{ + "533":{ "name":"Église Saint-Augustin", "type":{ "landmark_type":"sightseeing" @@ -8506,12 +8538,28 @@ ], "osm_type":"way", "osm_id":67501490, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "532":{ + "534":{ + "name":"Église Saint-André de l'Europe", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8815247, + 2.3258345 + ], + "osm_type":"way", + "osm_id":68256672, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "535":{ "name":"Église Saint-Philippe du Roule", "type":{ "landmark_type":"sightseeing" @@ -8522,12 +8570,12 @@ ], "osm_type":"way", "osm_id":68831257, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "533":{ + "536":{ "name":"Chapelle Baltard", "type":{ "landmark_type":"sightseeing" @@ -8538,12 +8586,12 @@ ], "osm_type":"way", "osm_id":68831265, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "534":{ + "537":{ "name":"Église Saint-François-Xavier", "type":{ "landmark_type":"sightseeing" @@ -8554,12 +8602,12 @@ ], "osm_type":"way", "osm_id":68893289, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "535":{ + "538":{ "name":"Chapelle Notre-Dame de l'Annonciation", "type":{ "landmark_type":"sightseeing" @@ -8570,12 +8618,12 @@ ], "osm_type":"way", "osm_id":68991281, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "536":{ + "539":{ "name":"Église Américaine", "type":{ "landmark_type":"sightseeing" @@ -8586,12 +8634,12 @@ ], "osm_type":"way", "osm_id":69049385, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "537":{ + "540":{ "name":"Église Saint-Pierre du Gros Caillou", "type":{ "landmark_type":"sightseeing" @@ -8602,12 +8650,12 @@ ], "osm_type":"way", "osm_id":69072238, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "538":{ + "541":{ "name":"Temple de la Rédemption", "type":{ "landmark_type":"sightseeing" @@ -8618,12 +8666,12 @@ ], "osm_type":"way", "osm_id":69220900, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "539":{ + "542":{ "name":"Synagogue Rashi", "type":{ "landmark_type":"sightseeing" @@ -8634,12 +8682,12 @@ ], "osm_type":"way", "osm_id":69221039, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "540":{ + "543":{ "name":"Église Saint-Louis-d'Antin", "type":{ "landmark_type":"sightseeing" @@ -8650,12 +8698,12 @@ ], "osm_type":"way", "osm_id":69226577, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "541":{ + "544":{ "name":"Église évangélique allemande de Paris « Christuskirche »", "type":{ "landmark_type":"sightseeing" @@ -8666,12 +8714,12 @@ ], "osm_type":"way", "osm_id":69257726, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "542":{ + "545":{ "name":"Church of Scotland", "type":{ "landmark_type":"sightseeing" @@ -8682,12 +8730,12 @@ ], "osm_type":"way", "osm_id":69329965, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "543":{ + "546":{ "name":"Chapelle Notre-Dame-de-Consolation", "type":{ "landmark_type":"sightseeing" @@ -8698,12 +8746,12 @@ ], "osm_type":"way", "osm_id":69332061, - "attractiveness":11, + "attractiveness":19, "must_do":false, "n_tags":31, "time_to_reach":0 }, - "544":{ + "547":{ "name":"Cathédrale arménienne Saint-Jean-Baptiste", "type":{ "landmark_type":"sightseeing" @@ -8714,12 +8762,12 @@ ], "osm_type":"way", "osm_id":69332080, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "545":{ + "548":{ "name":"Grande Synagogue de la Victoire", "type":{ "landmark_type":"sightseeing" @@ -8730,12 +8778,12 @@ ], "osm_type":"way", "osm_id":69363730, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "546":{ + "549":{ "name":"Consistoire", "type":{ "landmark_type":"sightseeing" @@ -8746,12 +8794,12 @@ ], "osm_type":"way", "osm_id":69363791, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "547":{ + "550":{ "name":"Cathédrale américaine de Paris", "type":{ "landmark_type":"sightseeing" @@ -8762,12 +8810,12 @@ ], "osm_type":"way", "osm_id":69485169, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "548":{ + "551":{ "name":"Église Luthérienne Saint-Jean", "type":{ "landmark_type":"sightseeing" @@ -8778,12 +8826,12 @@ ], "osm_type":"way", "osm_id":69884208, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "549":{ + "552":{ "name":"Chapelle Saint-Vincent-de-Paul", "type":{ "landmark_type":"sightseeing" @@ -8794,12 +8842,12 @@ ], "osm_type":"way", "osm_id":69884667, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "550":{ + "553":{ "name":"Église Protestante Unie de Paris-Belleville", "type":{ "landmark_type":"sightseeing" @@ -8810,12 +8858,28 @@ ], "osm_type":"way", "osm_id":69999948, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "551":{ + "554":{ + "name":"Église Notre-Dame-des-Coptes", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.871209, + 2.3937576 + ], + "osm_type":"way", + "osm_id":70000860, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "555":{ "name":"Or-Hahaim", "type":{ "landmark_type":"sightseeing" @@ -8826,12 +8890,28 @@ ], "osm_type":"way", "osm_id":70001194, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "552":{ + "556":{ + "name":"Église Notre-Dame-des-Otages", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8741661, + 2.4028427 + ], + "osm_type":"way", + "osm_id":70001758, + "attractiveness":9, + "must_do":false, + "n_tags":15, + "time_to_reach":0 + }, + "557":{ "name":"Église Notre-Dame-de-la-Croix", "type":{ "landmark_type":"sightseeing" @@ -8842,12 +8922,156 @@ ], "osm_type":"way", "osm_id":70001850, - "attractiveness":9, + "attractiveness":16, "must_do":false, "n_tags":26, "time_to_reach":0 }, - "553":{ + "558":{ + "name":"Église protestante évangélique de Télégraphe", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8731202, + 2.4012087 + ], + "osm_type":"way", + "osm_id":70002610, + "attractiveness":4, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "559":{ + "name":"Église du Cœur Eucharistique de Jésus", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8677441, + 2.406442 + ], + "osm_type":"way", + "osm_id":70003069, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "560":{ + "name":"Mosquée Madina", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8668192, + 2.4059128 + ], + "osm_type":"way", + "osm_id":70003490, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "561":{ + "name":"Église Saint-Germain-de-Charonne", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8605116, + 2.4040386 + ], + "osm_type":"way", + "osm_id":70147142, + "attractiveness":9, + "must_do":false, + "n_tags":15, + "time_to_reach":0 + }, + "562":{ + "name":"Église Saint-Gabriel", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8486664, + 2.4060717 + ], + "osm_type":"way", + "osm_id":70147593, + "attractiveness":6, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "563":{ + "name":"Église Saint-Jean-Bosco", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8552365, + 2.3979568 + ], + "osm_type":"way", + "osm_id":70148329, + "attractiveness":12, + "must_do":false, + "n_tags":21, + "time_to_reach":0 + }, + "564":{ + "name":"Chapelle de l'Est", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8612372, + 2.3928928 + ], + "osm_type":"way", + "osm_id":70148655, + "attractiveness":6, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "565":{ + "name":"Temple de Béthanie", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8610451, + 2.4001214 + ], + "osm_type":"way", + "osm_id":70151576, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "566":{ + "name":"Église Saint-Cyrille et Saint-Méthode", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8603726, + 2.404802 + ], + "osm_type":"way", + "osm_id":70152156, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "567":{ "name":"Chapelle du Corpus-Christi", "type":{ "landmark_type":"sightseeing" @@ -8858,12 +9082,12 @@ ], "osm_type":"way", "osm_id":70185807, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "554":{ + "568":{ "name":"Église Protestante Danoise", "type":{ "landmark_type":"sightseeing" @@ -8874,12 +9098,12 @@ ], "osm_type":"way", "osm_id":70187665, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "555":{ + "569":{ "name":"Cathédrale Saint-Alexandre-Nevsky", "type":{ "landmark_type":"sightseeing" @@ -8890,12 +9114,12 @@ ], "osm_type":"way", "osm_id":70192893, - "attractiveness":8, + "attractiveness":14, "must_do":false, "n_tags":22, "time_to_reach":0 }, - "556":{ + "570":{ "name":"Saint-Joseph's Church (mission anglophone)", "type":{ "landmark_type":"sightseeing" @@ -8906,76 +9130,316 @@ ], "osm_type":"way", "osm_id":70223975, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "557":{ - "name":"Batiment Rabelais", + "571":{ + "name":"Temple protestant", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.789659, - 2.2536967 + 48.9144278, + 2.3805593 ], "osm_type":"way", - "osm_id":71858521, - "attractiveness":3, + "osm_id":72998330, + "attractiveness":6, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "572":{ + "name":"Église Saint-Paul-du-Montfort", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9170219, + 2.4001222 + ], + "osm_type":"way", + "osm_id":73007918, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "558":{ - "name":"Église Saint-Pierre-Saint-Paul", + "573":{ + "name":"Église Saint-Germain", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.7991651, - 2.2632283 + 48.8928543, + 2.4132525 ], "osm_type":"way", - "osm_id":73584429, - "attractiveness":5, + "osm_id":73113040, + "attractiveness":9, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "559":{ - "name":"La Chapelle", + "574":{ + "name":"Centre communautaire Ohel-Yossef", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.7976277, - 2.2579443 + 48.8880068, + 2.4112554 ], "osm_type":"way", - "osm_id":73587360, - "attractiveness":2, + "osm_id":73113060, + "attractiveness":3, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "560":{ - "name":"Chapelle Saint-Pierre", + "575":{ + "name":"Assoc Ligue amicale des cultures et de recherche scientifique", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8331283, - 2.2551651 + 48.9039706, + 2.3950487 ], "osm_type":"way", - "osm_id":74005541, - "attractiveness":3, + "osm_id":73114961, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "576":{ + "name":"Église Sainte-Marthe", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9057121, + 2.3951559 + ], + "osm_type":"way", + "osm_id":73119238, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "577":{ + "name":"Oratoire de Padre Pio", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9033824, + 2.3946926 + ], + "osm_type":"way", + "osm_id":73121140, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "561":{ + "578":{ + "name":"Église de la Sainte-Famille", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8859818, + 2.4028045 + ], + "osm_type":"way", + "osm_id":73249060, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "579":{ + "name":"Église Notre-Dame-du-Rosaire", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8798767, + 2.4146163 + ], + "osm_type":"way", + "osm_id":73433670, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "580":{ + "name":"Chapelle Sainte-Solange", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8914496, + 2.4331888 + ], + "osm_type":"way", + "osm_id":73617812, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "581":{ + "name":"Église de Jésus-Christ des saints des derniers jours", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9094149, + 2.3302012 + ], + "osm_type":"way", + "osm_id":73835465, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "582":{ + "name":"Église du Sacré-Cœur", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9057281, + 2.3433234 + ], + "osm_type":"way", + "osm_id":73839340, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "583":{ + "name":"Église Notre-Dame-Auxiliatrice", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9011609, + 2.3139807 + ], + "osm_type":"way", + "osm_id":74470553, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "584":{ + "name":"Chapelle Saint-Pierre - Saint-Paul", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.899563, + 2.3657971 + ], + "osm_type":"way", + "osm_id":75220961, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "585":{ + "name":"Église Saint-Joseph des Épinettes", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8935748, + 2.3205585 + ], + "osm_type":"way", + "osm_id":75747135, + "attractiveness":8, + "must_do":false, + "n_tags":14, + "time_to_reach":0 + }, + "586":{ + "name":"Temple des Batignolles", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8829281, + 2.3226644 + ], + "osm_type":"way", + "osm_id":75748174, + "attractiveness":7, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "587":{ + "name":"Église Sainte-Marie-des-Batignolles", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8867918, + 2.3178565 + ], + "osm_type":"way", + "osm_id":75750389, + "attractiveness":11, + "must_do":false, + "n_tags":18, + "time_to_reach":0 + }, + "588":{ + "name":"Église de l'Immaculée Conception", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8459791, + 2.4034956 + ], + "osm_type":"way", + "osm_id":77385186, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "589":{ + "name":"Église Sainte-Geneviève des Grandes-Carrières", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.894851, + 2.3340131 + ], + "osm_type":"way", + "osm_id":77670243, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "590":{ "name":"Chapelle Orthodoxe", "type":{ "landmark_type":"sightseeing" @@ -8986,12 +9450,12 @@ ], "osm_type":"way", "osm_id":77739478, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "562":{ + "591":{ "name":"Église Sainte-Rita", "type":{ "landmark_type":"sightseeing" @@ -9002,12 +9466,60 @@ ], "osm_type":"way", "osm_id":77743146, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "563":{ + "592":{ + "name":"Église Saint-Jean de Montmartre", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.884243, + 2.3378793 + ], + "osm_type":"way", + "osm_id":77807770, + "attractiveness":17, + "must_do":false, + "n_tags":27, + "time_to_reach":0 + }, + "593":{ + "name":"Église Saint-Bernard-de-La-Chapelle", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8860532, + 2.3549746 + ], + "osm_type":"way", + "osm_id":78005074, + "attractiveness":10, + "must_do":false, + "n_tags":17, + "time_to_reach":0 + }, + "594":{ + "name":"Chapelle Notre-Dame de la Paix", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8442314, + 2.3972578 + ], + "osm_type":"way", + "osm_id":78006792, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "595":{ "name":"Église Saint-Éloi", "type":{ "landmark_type":"sightseeing" @@ -9018,12 +9530,44 @@ ], "osm_type":"way", "osm_id":78019585, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":20, "time_to_reach":0 }, - "564":{ + "596":{ + "name":"Église Notre-Dame du Bon Conseil", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.895063, + 2.3500907 + ], + "osm_type":"way", + "osm_id":78020496, + "attractiveness":6, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "597":{ + "name":"Église Saint-Sava", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8937115, + 2.3499834 + ], + "osm_type":"way", + "osm_id":78020644, + "attractiveness":14, + "must_do":false, + "n_tags":23, + "time_to_reach":0 + }, + "598":{ "name":"Église Notre-Dame de Bercy", "type":{ "landmark_type":"sightseeing" @@ -9034,28 +9578,12 @@ ], "osm_type":"way", "osm_id":78271179, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":21, "time_to_reach":0 }, - "565":{ - "name":"Église Orthodoxe de France - cathédrale Saint-Irénée", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8313842, - 2.3453082 - ], - "osm_type":"way", - "osm_id":78406523, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "566":{ + "599":{ "name":"Église réformée Port-Royal Quartier Latin", "type":{ "landmark_type":"sightseeing" @@ -9066,28 +9594,12 @@ ], "osm_type":"way", "osm_id":78406890, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "567":{ - "name":"Église Sainte-Rosalie", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8300981, - 2.3497071 - ], - "osm_type":"way", - "osm_id":78407279, - "attractiveness":3, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "568":{ + "600":{ "name":"Église réformée Port-Royal", "type":{ "landmark_type":"sightseeing" @@ -9098,76 +9610,12 @@ ], "osm_type":"way", "osm_id":78407284, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "569":{ - "name":"Église Saint-Albert le Grand", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8281047, - 2.3420248 - ], - "osm_type":"way", - "osm_id":78469927, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "570":{ - "name":"Église Sainte-Anne de la Butte-aux-Cailles", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8261636, - 2.349991 - ], - "osm_type":"way", - "osm_id":78470232, - "attractiveness":5, - "must_do":false, - "n_tags":16, - "time_to_reach":0 - }, - "571":{ - "name":"Temple Antoiniste", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8273857, - 2.3453119 - ], - "osm_type":"way", - "osm_id":78470555, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "572":{ - "name":"Église Luthérienne de la Trinité", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8318443, - 2.3578146 - ], - "osm_type":"way", - "osm_id":78534147, - "attractiveness":3, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "573":{ + "601":{ "name":"Église Saint-Marcel", "type":{ "landmark_type":"sightseeing" @@ -9178,124 +9626,12 @@ ], "osm_type":"way", "osm_id":78534351, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "574":{ - "name":"Église Passage National", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8238305, - 2.3694228 - ], - "osm_type":"way", - "osm_id":79083459, - "attractiveness":3, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "575":{ - "name":"Synagogue Avoth Ouvanim", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.828209, - 2.3662826 - ], - "osm_type":"way", - "osm_id":79083501, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "576":{ - "name":"Église Notre-Dame-de-Chine", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8214938, - 2.362635 - ], - "osm_type":"way", - "osm_id":79084032, - "attractiveness":2, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "577":{ - "name":"Église Notre-Dame de la Gare", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8298279, - 2.3683033 - ], - "osm_type":"way", - "osm_id":79084116, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "578":{ - "name":"Église Saint-Hippolyte", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8213641, - 2.363021 - ], - "osm_type":"way", - "osm_id":79084388, - "attractiveness":4, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "579":{ - "name":"Église Notre-Dame de l'Espérance", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.81777, - 2.3719943 - ], - "osm_type":"way", - "osm_id":79148867, - "attractiveness":5, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "580":{ - "name":"Église Saint-Jean-Baptiste du Plateau", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8039026, - 2.3780277 - ], - "osm_type":"way", - "osm_id":79149245, - "attractiveness":5, - "must_do":false, - "n_tags":16, - "time_to_reach":0 - }, - "581":{ + "602":{ "name":"Cathédrale Saint-Étienne", "type":{ "landmark_type":"sightseeing" @@ -9306,12 +9642,12 @@ ], "osm_type":"way", "osm_id":79232285, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "582":{ + "603":{ "name":"Église Saint-Pierre de Chaillot", "type":{ "landmark_type":"sightseeing" @@ -9322,60 +9658,12 @@ ], "osm_type":"way", "osm_id":79276832, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "583":{ - "name":"Église Anglicane Saint-Georges", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8705972, - 2.2961633 - ], - "osm_type":"way", - "osm_id":79368469, - "attractiveness":2, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "584":{ - "name":"Chapelle Sainte-Anne", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.828768, - 2.3377897 - ], - "osm_type":"way", - "osm_id":79626475, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "585":{ - "name":"Église Saint-Dominique", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8320894, - 2.3350179 - ], - "osm_type":"way", - "osm_id":79626601, - "attractiveness":4, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "586":{ + "604":{ "name":"Chapelle Saint-Jean", "type":{ "landmark_type":"sightseeing" @@ -9386,12 +9674,12 @@ ], "osm_type":"way", "osm_id":79633343, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "587":{ + "605":{ "name":"Église Notre-Dame-du-Travail", "type":{ "landmark_type":"sightseeing" @@ -9402,12 +9690,12 @@ ], "osm_type":"way", "osm_id":79687825, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "588":{ + "606":{ "name":"Paroisse de Plaisance", "type":{ "landmark_type":"sightseeing" @@ -9418,108 +9706,12 @@ ], "osm_type":"way", "osm_id":79688125, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "589":{ - "name":"Église Notre-Dame-du-Rosaire", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8292677, - 2.3078658 - ], - "osm_type":"way", - "osm_id":79717909, - "attractiveness":5, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "590":{ - "name":"Paris Alésia", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.827421, - 2.3232317 - ], - "osm_type":"way", - "osm_id":79718987, - "attractiveness":2, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "591":{ - "name":"Église Baptiste du Centre", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8241388, - 2.3293748 - ], - "osm_type":"way", - "osm_id":79804529, - "attractiveness":5, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "592":{ - "name":"Église Évangélique Libre", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8274592, - 2.3274621 - ], - "osm_type":"way", - "osm_id":79804659, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "593":{ - "name":"Église de Saint-Antoine de Padoue", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8297428, - 2.2943273 - ], - "osm_type":"way", - "osm_id":80144693, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "594":{ - "name":"Église Notre-Dame-Réconciliatrice", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8338197, - 2.3000761 - ], - "osm_type":"way", - "osm_id":80152077, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "595":{ + "607":{ "name":"Chapelle Notre-Dame-du-Lys", "type":{ "landmark_type":"sightseeing" @@ -9530,12 +9722,12 @@ ], "osm_type":"way", "osm_id":80237236, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "596":{ + "608":{ "name":"Église Orthodoxe Saint-Séraphin de Sarov", "type":{ "landmark_type":"sightseeing" @@ -9546,12 +9738,12 @@ ], "osm_type":"way", "osm_id":80237345, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "597":{ + "609":{ "name":"Église Saint-Jean-Baptiste-de-La-Salle", "type":{ "landmark_type":"sightseeing" @@ -9562,524 +9754,268 @@ ], "osm_type":"way", "osm_id":80266257, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "598":{ - "name":"Église Saint-Honoré d'Eylau", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8691233, - 2.2846795 - ], - "osm_type":"way", - "osm_id":80853671, - "attractiveness":3, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "599":{ - "name":"Église Saint-Saturnin", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8154932, - 2.3515928 - ], - "osm_type":"way", - "osm_id":81089089, - "attractiveness":5, - "must_do":false, - "n_tags":14, - "time_to_reach":0 - }, - "600":{ - "name":"Église du Sacré-Cœur", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8161597, - 2.336323 - ], - "osm_type":"way", - "osm_id":81089773, - "attractiveness":5, - "must_do":false, - "n_tags":14, - "time_to_reach":0 - }, - "601":{ - "name":"Maison du Won-Bouddhisme", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8107971, - 2.349308 - ], - "osm_type":"way", - "osm_id":81092340, - "attractiveness":2, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "602":{ - "name":"Église protestante unie de l'Annonciation", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.861911, - 2.2804833 - ], - "osm_type":"way", - "osm_id":81792421, - "attractiveness":5, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "603":{ - "name":"Église Évangelique de Salem", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.810885, - 2.3079518 - ], - "osm_type":"way", - "osm_id":83233532, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "604":{ - "name":"Église Saint-Joseph-Saint-Raymond", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8145944, - 2.3095679 - ], - "osm_type":"way", - "osm_id":83233825, - "attractiveness":5, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "605":{ - "name":"Église Saint-Jacques-le-Majeur", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8181396, - 2.3204543 - ], - "osm_type":"way", - "osm_id":83236772, - "attractiveness":10, - "must_do":false, - "n_tags":28, - "time_to_reach":0 - }, - "606":{ - "name":"Église Notre-Dame-de-l'Assomption de Passy", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.855615, - 2.2665151 - ], - "osm_type":"way", - "osm_id":83715715, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "607":{ - "name":"Église Saint-Marc", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8143147, - 2.2926097 - ], - "osm_type":"way", - "osm_id":83790199, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "608":{ - "name":"Chapelle du Sacré-Cœur", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8138042, - 2.2832671 - ], - "osm_type":"way", - "osm_id":83791292, - "attractiveness":3, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "609":{ - "name":"Église de Jésus-Christ des Derniers Jours", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8200772, - 2.3078123 - ], - "osm_type":"way", - "osm_id":83793766, - "attractiveness":3, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, "610":{ - "name":"Église Notre-Dame-de-la-Médaille-Miraculeuse", + "name":"Église de Tous-les-Saints", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8201876, - 2.3051728 + 48.9116813, + 2.4165316 ], "osm_type":"way", - "osm_id":83795285, - "attractiveness":3, + "osm_id":81279191, + "attractiveness":6, "must_do":false, - "n_tags":9, + "n_tags":10, "time_to_reach":0 }, "611":{ - "name":"Église Notre-Dame de Grâce de Passy", + "name":"Chapelle Notre-Dame-de-l'Étoile", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8564447, - 2.2802337 + 48.913236, + 2.428905 ], "osm_type":"way", - "osm_id":83830759, - "attractiveness":4, + "osm_id":81287493, + "attractiveness":6, "must_do":false, - "n_tags":11, + "n_tags":10, "time_to_reach":0 }, "612":{ - "name":"Chapelle Sainte-Thérèse", + "name":"Chapelle Saint-Jacques", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8516666, - 2.2709871 + 48.8753562, + 2.4312381 ], "osm_type":"way", - "osm_id":84262198, - "attractiveness":3, + "osm_id":81614017, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, "613":{ - "name":"Temple Réformé de l'Etoile", + "name":"Église Saint-Leu-Saint-Gilles", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8768831, - 2.2870709 + 48.8703087, + 2.4206749 ], "osm_type":"way", - "osm_id":84322974, - "attractiveness":5, + "osm_id":81617177, + "attractiveness":9, "must_do":false, - "n_tags":14, + "n_tags":15, "time_to_reach":0 }, "614":{ - "name":"Église Saint-Ferdinand des Ternes", + "name":"Chapelle des Saints-Apôtres", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8786276, - 2.2908454 + 48.8716935, + 2.4193345 ], "osm_type":"way", - "osm_id":84325824, + "osm_id":81618230, "attractiveness":5, "must_do":false, - "n_tags":14, + "n_tags":8, "time_to_reach":0 }, "615":{ - "name":"Église Notre-Dame d'Auteuil", + "name":"Église Saint-André", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8471651, - 2.2695111 + 48.8538772, + 2.4228563 ], "osm_type":"way", - "osm_id":85615121, - "attractiveness":3, + "osm_id":81831259, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, "616":{ - "name":"Chapelle Sainte-Bernadette", + "name":"Église Saint-Louis", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.847882, - 2.268781 + 48.8480265, + 2.4191578 ], "osm_type":"way", - "osm_id":85616170, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "617":{ - "name":"Église Saint-François de Molitor", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8455074, - 2.2600499 - ], - "osm_type":"way", - "osm_id":86277623, - "attractiveness":3, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "618":{ - "name":"Église des Saints Nouveaux Martyrs et Confesseurs de Russie", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8261789, - 2.2911871 - ], - "osm_type":"way", - "osm_id":87141492, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "619":{ - "name":"Église Saint-Rémy", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8210242, - 2.2862316 - ], - "osm_type":"way", - "osm_id":87376851, - "attractiveness":6, - "must_do":false, - "n_tags":15, - "time_to_reach":0 - }, - "620":{ - "name":"Centre communautaire israélite de Châtillon", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8067093, - 2.2865843 - ], - "osm_type":"way", - "osm_id":87388252, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "621":{ - "name":"Église Notre-Dame-du-Calvaire", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8077749, - 2.2843291 - ], - "osm_type":"way", - "osm_id":87389346, - "attractiveness":6, + "osm_id":83818861, + "attractiveness":10, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "622":{ - "name":"Église Saint-Philippe-Saint-Jacques", + "617":{ + "name":"Temple (ERF)", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.7998764, - 2.2901513 + 48.8494565, + 2.4324623 ], "osm_type":"way", - "osm_id":87393672, + "osm_id":83819099, + "attractiveness":4, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "618":{ + "name":"Église Saint-Denys de la Chapelle", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.891341, + 2.3603495 + ], + "osm_type":"way", + "osm_id":84153309, "attractiveness":5, "must_do":false, - "n_tags":15, + "n_tags":9, + "time_to_reach":0 + }, + "619":{ + "name":"Église Saint-François-de-Sales (ancienne église)", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8844851, + 2.3048254 + ], + "osm_type":"way", + "osm_id":84317434, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "620":{ + "name":"Église Luthérienne de l'Ascension", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8855199, + 2.3157231 + ], + "osm_type":"way", + "osm_id":84320043, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "621":{ + "name":"Foyer Culturel Myriam Zana", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8816083, + 2.3033735 + ], + "osm_type":"way", + "osm_id":84322557, + "attractiveness":2, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "622":{ + "name":"Église Saint-Charles-de-Monceau", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.882705, + 2.3127685 + ], + "osm_type":"way", + "osm_id":84324974, + "attractiveness":10, + "must_do":false, + "n_tags":17, "time_to_reach":0 }, "623":{ - "name":"Chapelle Sainte-Thérèse-de-l'Enfant-Jésus", + "name":"Église du Christ", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.7965617, - 2.2770309 + 48.8857929, + 2.3103556 ], "osm_type":"way", - "osm_id":87395592, - "attractiveness":3, + "osm_id":84326182, + "attractiveness":5, "must_do":false, - "n_tags":9, + "n_tags":8, "time_to_reach":0 }, "624":{ - "name":"Église Saint-Luc", + "name":"Église Saint-François-de-Sales (nouvelle église)", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8231552, - 2.2885463 + 48.8848939, + 2.3050098 ], "osm_type":"way", - "osm_id":87507680, - "attractiveness":6, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "625":{ - "name":"Église Polonaise Sainte-Geneviève", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8415339, - 2.2613852 - ], - "osm_type":"way", - "osm_id":87841263, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "626":{ - "name":"Église Sainte-Jeanne-de-Chantal", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8387677, - 2.2561412 - ], - "osm_type":"way", - "osm_id":87959071, + "osm_id":84326196, "attractiveness":5, "must_do":false, - "n_tags":13, - "time_to_reach":0 - }, - "627":{ - "name":"Église Orthodoxe Russe", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8409621, - 2.2614873 - ], - "osm_type":"way", - "osm_id":87982529, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "628":{ - "name":"Église Saint-François d'Assise", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8244181, - 2.2950351 - ], - "osm_type":"way", - "osm_id":88058402, - "attractiveness":3, - "must_do":false, "n_tags":9, "time_to_reach":0 }, - "629":{ - "name":"Église Saint-Pierre et Saint-Paul", + "625":{ + "name":"Mosquée de Drancy", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.7909521, - 2.2898824 + 48.9199821, + 2.4253046 ], "osm_type":"way", - "osm_id":91808442, + "osm_id":84455398, "attractiveness":3, "must_do":false, - "n_tags":8, + "n_tags":6, "time_to_reach":0 }, - "630":{ + "626":{ "name":"Chapelle de la Visitation", "type":{ "landmark_type":"sightseeing" @@ -10090,12 +10026,12 @@ ], "osm_type":"way", "osm_id":93664894, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "631":{ + "627":{ "name":"Église Saint-Antoine des Quinze-Vingts", "type":{ "landmark_type":"sightseeing" @@ -10106,12 +10042,12 @@ ], "osm_type":"way", "osm_id":94236417, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "632":{ + "628":{ "name":"Chapelle Sainte-Ursule", "type":{ "landmark_type":"sightseeing" @@ -10122,12 +10058,12 @@ ], "osm_type":"way", "osm_id":95860808, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":22, "time_to_reach":0 }, - "633":{ + "629":{ "name":"Notre-Dame-du-Liban", "type":{ "landmark_type":"sightseeing" @@ -10138,28 +10074,12 @@ ], "osm_type":"way", "osm_id":95869425, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "634":{ - "name":"Église Saint-Bruno", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8188075, - 2.262923 - ], - "osm_type":"way", - "osm_id":96568125, - "attractiveness":3, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "635":{ + "630":{ "name":"Chapelle de l'Épiphanie", "type":{ "landmark_type":"sightseeing" @@ -10170,28 +10090,12 @@ ], "osm_type":"way", "osm_id":104339971, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "636":{ - "name":"Nouvelle Église Notre-Dame-de-Grâce de Passy", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8563283, - 2.280665 - ], - "osm_type":"way", - "osm_id":104904040, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "637":{ + "631":{ "name":"Chapelle Laennec", "type":{ "landmark_type":"sightseeing" @@ -10202,204 +10106,44 @@ ], "osm_type":"way", "osm_id":105220265, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "638":{ - "name":"Église Notre-Dame-de-Nazareth", + "632":{ + "name":"Basilique Sainte-Jeanne-d’Arc", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8361323, - 2.2839222 + 48.8915499, + 2.360526 ], "osm_type":"way", - "osm_id":105535815, - "attractiveness":5, - "must_do":false, - "n_tags":14, - "time_to_reach":0 - }, - "639":{ - "name":"Église apostolique arménienne Sainte-Marie-Mère-de-Dieu", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.821568, - 2.2641225 - ], - "osm_type":"way", - "osm_id":107530891, - "attractiveness":3, + "osm_id":112358505, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "640":{ - "name":"Église Apostolique Arménienne", + "633":{ + "name":"Église Notre-Dame-de-Lourdes", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8221345, - 2.267592 + 48.870752, + 2.3995332 ], "osm_type":"way", - "osm_id":107530896, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "641":{ - "name":"Chapelle rose", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8226295, - 2.274989 - ], - "osm_type":"way", - "osm_id":111797202, - "attractiveness":2, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "642":{ - "name":"La Solitude", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.823093, - 2.277287 - ], - "osm_type":"way", - "osm_id":111826152, - "attractiveness":2, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "643":{ - "name":"Église Saint-Joseph", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8084815, - 2.267683 - ], - "osm_type":"way", - "osm_id":112209202, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "644":{ - "name":"Église nouvelle Saint-Honoré d'Eylau", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.86841, - 2.2864027 - ], - "osm_type":"way", - "osm_id":112237139, - "attractiveness":4, + "osm_id":112461793, + "attractiveness":7, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "645":{ - "name":"Chapelle Saint-François d'Assise", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8262227, - 2.3303812 - ], - "osm_type":"way", - "osm_id":112263440, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "646":{ - "name":"Chapelle Notre-Dame-du-Saint-Sacrement", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8620284, - 2.2797894 - ], - "osm_type":"way", - "osm_id":112461792, - "attractiveness":6, - "must_do":false, - "n_tags":17, - "time_to_reach":0 - }, - "647":{ - "name":"Chapelle Notre-Dame-de-Toutes-Grâces", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.82346, - 2.278597 - ], - "osm_type":"way", - "osm_id":114654265, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "648":{ - "name":"Notre-Dame de Toutes Grâces", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8252935, - 2.278172 - ], - "osm_type":"way", - "osm_id":114654286, - "attractiveness":2, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "649":{ - "name":"Le Nymphée", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8252135, - 2.2779635 - ], - "osm_type":"way", - "osm_id":114654318, - "attractiveness":2, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "650":{ + "634":{ "name":"Église Sainte-Marguerite", "type":{ "landmark_type":"sightseeing" @@ -10410,44 +10154,12 @@ ], "osm_type":"way", "osm_id":115804138, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "651":{ - "name":"MJLF", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8493861, - 2.2841436 - ], - "osm_type":"way", - "osm_id":115878693, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "652":{ - "name":"Chapelle Sainte-Jeanne-d'Arc", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8255156, - 2.3392912 - ], - "osm_type":"way", - "osm_id":118528607, - "attractiveness":4, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "653":{ + "635":{ "name":"Église du Bon Secours", "type":{ "landmark_type":"sightseeing" @@ -10458,12 +10170,60 @@ ], "osm_type":"way", "osm_id":118650031, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":18, "time_to_reach":0 }, - "654":{ + "636":{ + "name":"Église du Saint-Esprit", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8381748, + 2.3976366 + ], + "osm_type":"way", + "osm_id":130906379, + "attractiveness":12, + "must_do":false, + "n_tags":20, + "time_to_reach":0 + }, + "637":{ + "name":"Église Notre-Dame-de-Pontmain", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8601441, + 2.4200508 + ], + "osm_type":"way", + "osm_id":133610564, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "638":{ + "name":"Prieuré Saint-Benoît", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8875038, + 2.3421102 + ], + "osm_type":"way", + "osm_id":137884617, + "attractiveness":5, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "639":{ "name":"Église Orthodoxe des Trois-Saints-Docteurs", "type":{ "landmark_type":"sightseeing" @@ -10474,92 +10234,76 @@ ], "osm_type":"way", "osm_id":137884620, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "655":{ - "name":"Chapelle de la clinique Blomet", + "640":{ + "name":"Église Protestante Suédoise", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8396505, - 2.2961266 + 48.8807628, + 2.3031693 ], "osm_type":"way", - "osm_id":137884646, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "656":{ - "name":"Église Saint-Roger", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.797651, - 2.379125 - ], - "osm_type":"way", - "osm_id":139561242, - "attractiveness":3, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "657":{ - "name":"Chùa Khánh Anh", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7984236, - 2.3095506 - ], - "osm_type":"way", - "osm_id":146243136, - "attractiveness":2, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "658":{ - "name":"Mosquée Omar Ibn Khattab à Bagneux", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7958953, - 2.3164416 - ], - "osm_type":"way", - "osm_id":146251083, - "attractiveness":3, + "osm_id":137884622, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "659":{ - "name":"Chapelle Saint-Yves", + "641":{ + "name":"Église du Bon Pasteur", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8254721, - 2.3329981 + 48.8565315, + 2.3918695 ], "osm_type":"way", - "osm_id":155071057, + "osm_id":145591022, "attractiveness":5, "must_do":false, - "n_tags":14, + "n_tags":9, "time_to_reach":0 }, - "660":{ + "642":{ + "name":"Notre-Dame de Saint-Mandé", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8395436, + 2.4170098 + ], + "osm_type":"way", + "osm_id":148101704, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "643":{ + "name":"Église luthérienne Saint-Paul", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8908265, + 2.3499846 + ], + "osm_type":"way", + "osm_id":148524233, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "644":{ "name":"Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France", "type":{ "landmark_type":"sightseeing" @@ -10570,92 +10314,44 @@ ], "osm_type":"way", "osm_id":166684921, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":16, "time_to_reach":0 }, - "661":{ - "name":"Grande Chapelle", + "645":{ + "name":"Chapelle Saint-Charles", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.825435, - 2.2779395 + 48.8541404, + 2.4077935 ], "osm_type":"way", - "osm_id":184127778, - "attractiveness":3, + "osm_id":205699441, + "attractiveness":7, "must_do":false, - "n_tags":6, + "n_tags":12, "time_to_reach":0 }, - "662":{ - "name":"Église Saint-Benoît", + "646":{ + "name":"Chapelle Saint-Louis", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8288116, - 2.2811921 + 48.8662111, + 2.4021275 ], "osm_type":"way", - "osm_id":184156452, + "osm_id":212269821, "attractiveness":4, "must_do":false, - "n_tags":11, + "n_tags":8, "time_to_reach":0 }, - "663":{ - "name":"Chapelle Sainte-Bathilde", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8223651, - 2.2830446 - ], - "osm_type":"way", - "osm_id":198765990, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "664":{ - "name":"Église Saint-Étienne", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8228885, - 2.276745 - ], - "osm_type":"way", - "osm_id":199694468, - "attractiveness":8, - "must_do":false, - "n_tags":22, - "time_to_reach":0 - }, - "665":{ - "name":"Chapelle de l'hôpital", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7968291, - 2.3617208 - ], - "osm_type":"way", - "osm_id":223128200, - "attractiveness":2, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "666":{ + "647":{ "name":"Chapelle Notre-Dame de la Médaille Miraculeuse", "type":{ "landmark_type":"sightseeing" @@ -10666,44 +10362,60 @@ ], "osm_type":"way", "osm_id":244749667, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "667":{ - "name":"Église Notre-Dame-de-La-Salette", + "648":{ + "name":"Communauté évangélique Paris Daumesnil", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8337081, - 2.3004333 + 48.83697, + 2.3923213 ], "osm_type":"way", - "osm_id":304186825, + "osm_id":257039232, "attractiveness":4, "must_do":false, - "n_tags":12, + "n_tags":7, "time_to_reach":0 }, - "668":{ - "name":"Chapelle des petites sœurs de l'Assomption", + "649":{ + "name":"Église Saint-Luc", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.846193, - 2.2921986 + 48.8938055, + 2.3754218 ], "osm_type":"way", - "osm_id":320707523, - "attractiveness":3, + "osm_id":259039017, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "650":{ + "name":"Église Saint-Paul de la Plaine", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9152153, + 2.3632191 + ], + "osm_type":"way", + "osm_id":284196003, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "669":{ + "651":{ "name":"Notre-Dame-de-Belleville", "type":{ "landmark_type":"sightseeing" @@ -10714,12 +10426,12 @@ ], "osm_type":"way", "osm_id":328240241, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "670":{ + "652":{ "name":"Michkenot Yaacov", "type":{ "landmark_type":"sightseeing" @@ -10730,28 +10442,28 @@ ], "osm_type":"way", "osm_id":329195478, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "671":{ - "name":"Chapelle Sainte-Marie", + "653":{ + "name":"Synagogue Kedouchat Levy", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8511845, - 2.2689215 + 48.888419, + 2.3509459 ], "osm_type":"way", - "osm_id":337382904, - "attractiveness":3, + "osm_id":329896847, + "attractiveness":4, "must_do":false, - "n_tags":9, + "n_tags":7, "time_to_reach":0 }, - "672":{ + "654":{ "name":"Chapelle Notre-Dame-de-Joye", "type":{ "landmark_type":"sightseeing" @@ -10762,12 +10474,12 @@ ], "osm_type":"way", "osm_id":356802944, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "673":{ + "655":{ "name":"Chapelle Saint-Vincent", "type":{ "landmark_type":"sightseeing" @@ -10778,12 +10490,12 @@ ], "osm_type":"way", "osm_id":377136997, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "674":{ + "656":{ "name":"Chapelle de la Vierge", "type":{ "landmark_type":"sightseeing" @@ -10794,12 +10506,12 @@ ], "osm_type":"way", "osm_id":377137007, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "675":{ + "657":{ "name":"Chapelle du Bon Pasteur", "type":{ "landmark_type":"sightseeing" @@ -10810,12 +10522,12 @@ ], "osm_type":"way", "osm_id":377137015, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "676":{ + "658":{ "name":"Chapelle Sainte-Geneviève", "type":{ "landmark_type":"sightseeing" @@ -10826,28 +10538,28 @@ ], "osm_type":"way", "osm_id":377137025, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "677":{ - "name":"Chapelle Saint-Paul", + "659":{ + "name":"Ass Culturelle Fraternité De Pantin", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8242125, - 2.3224661 + 48.9032414, + 2.3950124 ], "osm_type":"way", - "osm_id":399204077, - "attractiveness":3, + "osm_id":400021698, + "attractiveness":5, "must_do":false, - "n_tags":9, + "n_tags":8, "time_to_reach":0 }, - "678":{ + "660":{ "name":"Chapelle Saint-Bernard", "type":{ "landmark_type":"sightseeing" @@ -10858,12 +10570,44 @@ ], "osm_type":"way", "osm_id":410503747, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "679":{ + "661":{ + "name":"Mosquée de Bagnolet", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8703604, + 2.4141025 + ], + "osm_type":"way", + "osm_id":419731839, + "attractiveness":4, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "662":{ + "name":"Mosquée du foyer", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9002722, + 2.3938434 + ], + "osm_type":"way", + "osm_id":427207483, + "attractiveness":2, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "663":{ "name":"Chapelle de la Trinité", "type":{ "landmark_type":"sightseeing" @@ -10874,28 +10618,12 @@ ], "osm_type":"way", "osm_id":439916874, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "680":{ - "name":"Église du Saint-Curé-d'Ars", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8047696, - 2.3466976 - ], - "osm_type":"way", - "osm_id":447028265, - "attractiveness":2, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "681":{ + "664":{ "name":"Cathédrale de la Sainte-Trinité", "type":{ "landmark_type":"sightseeing" @@ -10906,28 +10634,28 @@ ], "osm_type":"way", "osm_id":449077939, - "attractiveness":6, + "attractiveness":11, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "682":{ - "name":"Église espagnole du Coeur Immaculé de Marie", + "665":{ + "name":"JW - Salle du Royaume", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8623106, - 2.2757229 + 48.8776705, + 2.4239713 ], "osm_type":"way", - "osm_id":462398675, - "attractiveness":3, + "osm_id":460236839, + "attractiveness":4, "must_do":false, - "n_tags":8, + "n_tags":7, "time_to_reach":0 }, - "683":{ + "666":{ "name":"Chapelle Saint-Symphorien", "type":{ "landmark_type":"sightseeing" @@ -10938,12 +10666,28 @@ ], "osm_type":"way", "osm_id":495635817, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "684":{ + "667":{ + "name":"Grande Mosquée de Saint-Ouen Al Hashimi", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.907291, + 2.3257897 + ], + "osm_type":"way", + "osm_id":616809276, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "668":{ "name":"Église Mariavite Sainte-Marie", "type":{ "landmark_type":"sightseeing" @@ -10954,28 +10698,92 @@ ], "osm_type":"way", "osm_id":678987698, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "685":{ - "name":"Église Saint-Jean des Deux Moulins", + "669":{ + "name":"Église chinoise protestante de France", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8308895, - 2.3607507 + 48.8548174, + 2.4303501 ], "osm_type":"way", - "osm_id":962298895, - "attractiveness":3, + "osm_id":860430821, + "attractiveness":4, "must_do":false, - "n_tags":8, + "n_tags":7, "time_to_reach":0 }, - "686":{ + "670":{ + "name":"Mosquée Islah", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.9117605, + 2.415003 + ], + "osm_type":"way", + "osm_id":866064131, + "attractiveness":3, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "671":{ + "name":"Centre Évangélique Philadelphia", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8549884, + 2.3931272 + ], + "osm_type":"way", + "osm_id":878120243, + "attractiveness":3, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "672":{ + "name":"Grande Mosquée de Gennevilliers", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.919566, + 2.3033097 + ], + "osm_type":"way", + "osm_id":952413288, + "attractiveness":3, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "673":{ + "name":"Chapelle Sainte-Bernadette", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8463762, + 2.4128077 + ], + "osm_type":"way", + "osm_id":1056814460, + "attractiveness":6, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "674":{ "name":"Église Orthodoxe Notre-Dame-Joie-des-Affligés-et-Sainte-Geneviève", "type":{ "landmark_type":"sightseeing" @@ -10986,12 +10794,12 @@ ], "osm_type":"way", "osm_id":1056837934, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "687":{ + "675":{ "name":"Chapelle Saint-Patrick", "type":{ "landmark_type":"sightseeing" @@ -11002,12 +10810,28 @@ ], "osm_type":"way", "osm_id":1056864734, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "688":{ + "676":{ + "name":"Crypte du Martyrium de Saint-Denis", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8840251, + 2.3401578 + ], + "osm_type":"way", + "osm_id":1056870587, + "attractiveness":7, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "677":{ "name":"Mosquée de bercy", "type":{ "landmark_type":"sightseeing" @@ -11018,12 +10842,12 @@ ], "osm_type":"way", "osm_id":1197529267, - "attractiveness":4, + "attractiveness":6, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "689":{ + "678":{ "name":"Association Culturelle Islamique Kurdes", "type":{ "landmark_type":"sightseeing" @@ -11034,12 +10858,12 @@ ], "osm_type":"relation", "osm_id":983065, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "690":{ + "679":{ "name":"Centre Culturel Islamique", "type":{ "landmark_type":"sightseeing" @@ -11050,28 +10874,12 @@ ], "osm_type":"relation", "osm_id":983153, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "691":{ - "name":"Séminaire Polonais de Paris", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8219215, - 2.2769665 - ], - "osm_type":"relation", - "osm_id":1442432, - "attractiveness":3, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "692":{ + "680":{ "name":"Église Saint-Joseph des Nations", "type":{ "landmark_type":"sightseeing" @@ -11082,12 +10890,28 @@ ], "osm_type":"relation", "osm_id":1589962, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "693":{ + "681":{ + "name":"ACIP Vincennes", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8477171, + 2.4197605 + ], + "osm_type":"relation", + "osm_id":12023085, + "attractiveness":5, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "682":{ "name":"Grand Bassin Rond", "type":{ "landmark_type":"sightseeing" @@ -11098,12 +10922,12 @@ ], "osm_type":"way", "osm_id":14037695, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "694":{ + "683":{ "name":"Fontaine des quatre évêques", "type":{ "landmark_type":"sightseeing" @@ -11114,12 +10938,12 @@ ], "osm_type":"way", "osm_id":40068036, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "695":{ + "684":{ "name":"Grand Bassin Octogonal", "type":{ "landmark_type":"sightseeing" @@ -11130,12 +10954,12 @@ ], "osm_type":"way", "osm_id":54188993, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "696":{ + "685":{ "name":"Vivier nord", "type":{ "landmark_type":"sightseeing" @@ -11146,12 +10970,12 @@ ], "osm_type":"way", "osm_id":54201241, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "697":{ + "686":{ "name":"Vivier sud", "type":{ "landmark_type":"sightseeing" @@ -11162,12 +10986,12 @@ ], "osm_type":"way", "osm_id":54201242, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "698":{ + "687":{ "name":"Fontaine du Vert Bois", "type":{ "landmark_type":"sightseeing" @@ -11178,12 +11002,12 @@ ], "osm_type":"way", "osm_id":54964126, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "699":{ + "688":{ "name":"Monument d'Eugène Delacroix", "type":{ "landmark_type":"sightseeing" @@ -11194,12 +11018,12 @@ ], "osm_type":"way", "osm_id":62848407, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "700":{ + "689":{ "name":"Fontaine de la Roquette", "type":{ "landmark_type":"sightseeing" @@ -11210,28 +11034,12 @@ ], "osm_type":"way", "osm_id":63639456, - "attractiveness":7, + "attractiveness":12, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "701":{ - "name":"Fontaine Couverte", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.7939121, - 2.3417654 - ], - "osm_type":"way", - "osm_id":63655269, - "attractiveness":3, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "702":{ + "690":{ "name":"Fontaine Miroir d'eau, la Seine et ses affluents", "type":{ "landmark_type":"sightseeing" @@ -11242,12 +11050,12 @@ ], "osm_type":"way", "osm_id":66758129, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "703":{ + "691":{ "name":"Fontaine du Cirque", "type":{ "landmark_type":"sightseeing" @@ -11258,12 +11066,12 @@ ], "osm_type":"way", "osm_id":67036988, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "704":{ + "692":{ "name":"Fontaine des Ambassadeurs", "type":{ "landmark_type":"sightseeing" @@ -11274,12 +11082,12 @@ ], "osm_type":"way", "osm_id":67091995, - "attractiveness":5, + "attractiveness":8, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "705":{ + "693":{ "name":"Fontaine de la Grille du Coq", "type":{ "landmark_type":"sightseeing" @@ -11290,12 +11098,12 @@ ], "osm_type":"way", "osm_id":67092064, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "706":{ + "694":{ "name":"Fontaine des Fleuves", "type":{ "landmark_type":"sightseeing" @@ -11306,12 +11114,12 @@ ], "osm_type":"way", "osm_id":72937684, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "707":{ + "695":{ "name":"Fontaine des Mers", "type":{ "landmark_type":"sightseeing" @@ -11322,12 +11130,28 @@ ], "osm_type":"way", "osm_id":72937685, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "708":{ + "696":{ + "name":"Fontaine aux Lions", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8895664, + 2.3922773 + ], + "osm_type":"way", + "osm_id":81752247, + "attractiveness":9, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "697":{ "name":"Exèdre sud", "type":{ "landmark_type":"sightseeing" @@ -11338,44 +11162,44 @@ ], "osm_type":"way", "osm_id":96156168, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "709":{ - "name":"Fontaine de l'Avril", + "698":{ + "name":"Fontaine Marta Pan", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.865286, - 2.2967164 + 48.876741, + 2.3938898 ], "osm_type":"way", - "osm_id":262367200, - "attractiveness":4, + "osm_id":149743024, + "attractiveness":5, "must_do":false, - "n_tags":7, + "n_tags":4, "time_to_reach":0 }, - "710":{ - "name":"Fontaine des Polypores", + "699":{ + "name":"Place des Jets", "type":{ "landmark_type":"sightseeing" }, "location":[ - 48.8383866, - 2.2786394 + 48.8914571, + 2.3139757 ], "osm_type":"way", - "osm_id":291115567, - "attractiveness":4, + "osm_id":172641884, + "attractiveness":3, "must_do":false, - "n_tags":6, + "n_tags":3, "time_to_reach":0 }, - "711":{ + "700":{ "name":"Miroir d'Eau", "type":{ "landmark_type":"sightseeing" @@ -11386,28 +11210,12 @@ ], "osm_type":"way", "osm_id":313420244, - "attractiveness":2, + "attractiveness":4, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "712":{ - "name":"Miroir d'eau", - "type":{ - "landmark_type":"sightseeing" - }, - "location":[ - 48.8183066, - 2.2677813 - ], - "osm_type":"way", - "osm_id":418306479, - "attractiveness":2, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "713":{ + "701":{ "name":"Fontaine Trogneux", "type":{ "landmark_type":"sightseeing" @@ -11418,12 +11226,12 @@ ], "osm_type":"way", "osm_id":435298569, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "714":{ + "702":{ "name":"Exèdre nord", "type":{ "landmark_type":"sightseeing" @@ -11434,12 +11242,12 @@ ], "osm_type":"way", "osm_id":576724335, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "715":{ + "703":{ "name":"Fontaine de la Baleine Bleue", "type":{ "landmark_type":"sightseeing" @@ -11450,12 +11258,12 @@ ], "osm_type":"way", "osm_id":661816194, - "attractiveness":1, + "attractiveness":2, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "716":{ + "704":{ "name":"Fontaine du Théâtre Français - Nymphe marine", "type":{ "landmark_type":"sightseeing" @@ -11466,12 +11274,12 @@ ], "osm_type":"way", "osm_id":664173645, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "717":{ + "705":{ "name":"Fontaine du Théâtre Français - Nymphe fluviale", "type":{ "landmark_type":"sightseeing" @@ -11482,12 +11290,12 @@ ], "osm_type":"way", "osm_id":664173647, - "attractiveness":4, + "attractiveness":7, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "718":{ + "706":{ "name":"L'embâcle", "type":{ "landmark_type":"sightseeing" @@ -11498,12 +11306,12 @@ ], "osm_type":"way", "osm_id":664223075, - "attractiveness":3, + "attractiveness":5, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "719":{ + "707":{ "name":"Fontaine du Bassin Soufflot", "type":{ "landmark_type":"sightseeing" @@ -11514,12 +11322,12 @@ ], "osm_type":"way", "osm_id":685770760, - "attractiveness":5, + "attractiveness":9, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "720":{ + "708":{ "name":"La fontaine de la Vierge", "type":{ "landmark_type":"sightseeing" @@ -11530,12 +11338,12 @@ ], "osm_type":"way", "osm_id":948654101, - "attractiveness":3, + "attractiveness":6, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "721":{ + "709":{ "name":"Fontaine de Diane", "type":{ "landmark_type":"sightseeing" @@ -11546,12 +11354,12 @@ ], "osm_type":"way", "osm_id":1136105125, - "attractiveness":6, + "attractiveness":10, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "722":{ + "710":{ "name":"Fontaine de la Paix", "type":{ "landmark_type":"sightseeing" @@ -11562,12 +11370,12 @@ ], "osm_type":"way", "osm_id":1200013023, - "attractiveness":8, + "attractiveness":13, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "723":{ + "711":{ "name":"Fontaine du Marché-aux-Carmes", "type":{ "landmark_type":"sightseeing" @@ -11578,12 +11386,28 @@ ], "osm_type":"way", "osm_id":1200620877, - "attractiveness":9, + "attractiveness":15, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "724":{ + "712":{ + "name":"Fontaine Saussure", + "type":{ + "landmark_type":"sightseeing" + }, + "location":[ + 48.8885895, + 2.3075212 + ], + "osm_type":"way", + "osm_id":1255942976, + "attractiveness":2, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "713":{ "name":"Parc de Bercy", "type":{ "landmark_type":"nature" @@ -11594,12 +11418,12 @@ ], "osm_type":"way", "osm_id":4083189, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "725":{ + "714":{ "name":"Square Samuel Paty", "type":{ "landmark_type":"nature" @@ -11610,76 +11434,12 @@ ], "osm_type":"way", "osm_id":4433291, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "726":{ - "name":"Parc Rodin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8183911, - 2.2588269 - ], - "osm_type":"way", - "osm_id":4788836, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "727":{ - "name":"Parc de l'île Saint-Germain", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8265644, - 2.2552576 - ], - "osm_type":"way", - "osm_id":4791756, - "attractiveness":10, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "728":{ - "name":"Parc Henri Barbusse", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.820526, - 2.2666228 - ], - "osm_type":"way", - "osm_id":4810516, - "attractiveness":11, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "729":{ - "name":"Parc Saint-Jean-Paul II", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8236965, - 2.2793221 - ], - "osm_type":"way", - "osm_id":4810522, - "attractiveness":11, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "730":{ + "715":{ "name":"Square Maurice Gardette", "type":{ "landmark_type":"nature" @@ -11690,28 +11450,12 @@ ], "osm_type":"way", "osm_id":5095262, - "attractiveness":22, + "attractiveness":25, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "731":{ - "name":"Jardin Lionel Assouad", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8279358, - 2.3228193 - ], - "osm_type":"way", - "osm_id":13611905, - "attractiveness":17, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "732":{ + "716":{ "name":"Jardin de l'Arsenal", "type":{ "landmark_type":"nature" @@ -11722,28 +11466,12 @@ ], "osm_type":"way", "osm_id":13862204, - "attractiveness":15, + "attractiveness":17, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "733":{ - "name":"Parc Suzanne Lenglen", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8305377, - 2.2720184 - ], - "osm_type":"way", - "osm_id":14036411, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "734":{ + "717":{ "name":"Square Necker", "type":{ "landmark_type":"nature" @@ -11754,12 +11482,12 @@ ], "osm_type":"way", "osm_id":14320763, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "735":{ + "718":{ "name":"Square de l'Oiseau Lunaire", "type":{ "landmark_type":"nature" @@ -11770,12 +11498,12 @@ ], "osm_type":"way", "osm_id":14321381, - "attractiveness":19, + "attractiveness":22, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "736":{ + "719":{ "name":"Square Jean Chérioux", "type":{ "landmark_type":"nature" @@ -11786,28 +11514,12 @@ ], "osm_type":"way", "osm_id":14334838, - "attractiveness":8, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "737":{ - "name":"Square Yvette-Chauviré", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8450282, - 2.2929506 - ], - "osm_type":"way", - "osm_id":14348928, - "attractiveness":11, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "738":{ + "720":{ "name":"Square Gerbert-Blomet", "type":{ "landmark_type":"nature" @@ -11823,7 +11535,7 @@ "n_tags":3, "time_to_reach":0 }, - "739":{ + "721":{ "name":"Jardin Bargue-Platon", "type":{ "landmark_type":"nature" @@ -11834,12 +11546,12 @@ ], "osm_type":"way", "osm_id":14349803, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "740":{ + "722":{ "name":"Square Pierre-Adrien Dalpayrat", "type":{ "landmark_type":"nature" @@ -11850,92 +11562,12 @@ ], "osm_type":"way", "osm_id":14349861, - "attractiveness":7, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "741":{ - "name":"Square Castagnary", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8297441, - 2.3047281 - ], - "osm_type":"way", - "osm_id":14351065, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "742":{ - "name":"Square Violet", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8440427, - 2.2897951 - ], - "osm_type":"way", - "osm_id":14378202, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "743":{ - "name":"Jardin Caroline Aigle", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8408477, - 2.2793259 - ], - "osm_type":"way", - "osm_id":14455132, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "744":{ - "name":"Jardin des Cévennes", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8435019, - 2.2758519 - ], - "osm_type":"way", - "osm_id":14457178, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "745":{ - "name":"Square du Clos Feuquières", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8367392, - 2.2909774 - ], - "osm_type":"way", - "osm_id":14507873, - "attractiveness":15, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "746":{ + "723":{ "name":"Jardin d'Alleray", "type":{ "landmark_type":"nature" @@ -11946,76 +11578,12 @@ ], "osm_type":"way", "osm_id":14646518, - "attractiveness":12, + "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "747":{ - "name":"Square du Docteur Calmette", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8286953, - 2.2978023 - ], - "osm_type":"way", - "osm_id":15091888, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "748":{ - "name":"Square de la Porte de la Plaine", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8285308, - 2.2931383 - ], - "osm_type":"way", - "osm_id":15091910, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "749":{ - "name":"Square du Cardinal Verdier", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8296919, - 2.2940863 - ], - "osm_type":"way", - "osm_id":15091961, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "750":{ - "name":"Square Béla-Bartók", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8510564, - 2.285734 - ], - "osm_type":"way", - "osm_id":15273713, - "attractiveness":8, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "751":{ + "724":{ "name":"Square Jules Ferry", "type":{ "landmark_type":"nature" @@ -12026,12 +11594,12 @@ ], "osm_type":"way", "osm_id":15275096, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "752":{ + "725":{ "name":"Square Samuel de Champlain", "type":{ "landmark_type":"nature" @@ -12042,12 +11610,28 @@ ], "osm_type":"way", "osm_id":15410302, - "attractiveness":14, + "attractiveness":16, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "753":{ + "726":{ + "name":"Square Édouard-Vaillant", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8656404, + 2.4003007 + ], + "osm_type":"way", + "osm_id":15410871, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "727":{ "name":"Jardin May Picqueray", "type":{ "landmark_type":"nature" @@ -12058,12 +11642,12 @@ ], "osm_type":"way", "osm_id":15459294, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "754":{ + "728":{ "name":"Jardinet de l'Oeil du Canal", "type":{ "landmark_type":"nature" @@ -12074,28 +11658,12 @@ ], "osm_type":"way", "osm_id":15459327, - "attractiveness":5, + "attractiveness":6, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "755":{ - "name":"Square Frédéric Bazille", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8302203, - 2.3168887 - ], - "osm_type":"way", - "osm_id":15799349, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "756":{ + "729":{ "name":"Square Gaston Baty", "type":{ "landmark_type":"nature" @@ -12106,12 +11674,12 @@ ], "osm_type":"way", "osm_id":15800289, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "757":{ + "730":{ "name":"Square Jacques Antoine", "type":{ "landmark_type":"nature" @@ -12122,60 +11690,12 @@ ], "osm_type":"way", "osm_id":15800393, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "758":{ - "name":"Square Franck Bauer", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8512111, - 2.2957761 - ], - "osm_type":"way", - "osm_id":15807896, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "759":{ - "name":"Square Nicole de Hauteclocque", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8521943, - 2.2943621 - ], - "osm_type":"way", - "osm_id":15807969, - "attractiveness":16, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "760":{ - "name":"Square Pablo Casals", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8488726, - 2.2860227 - ], - "osm_type":"way", - "osm_id":15808271, - "attractiveness":8, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "761":{ + "731":{ "name":"Square de la Tour Saint-Jacques", "type":{ "landmark_type":"nature" @@ -12186,12 +11706,12 @@ ], "osm_type":"way", "osm_id":15895172, - "attractiveness":18, + "attractiveness":21, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "762":{ + "732":{ "name":"Square des Missions Étrangères", "type":{ "landmark_type":"nature" @@ -12202,12 +11722,12 @@ ], "osm_type":"way", "osm_id":16190318, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "763":{ + "733":{ "name":"Jardin Villemin - Mahsa Jîna Amini", "type":{ "landmark_type":"nature" @@ -12218,12 +11738,12 @@ ], "osm_type":"way", "osm_id":16405088, - "attractiveness":15, + "attractiveness":17, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "764":{ + "734":{ "name":"Square Cambronne", "type":{ "landmark_type":"nature" @@ -12239,7 +11759,7 @@ "n_tags":3, "time_to_reach":0 }, - "765":{ + "735":{ "name":"Square Garibaldi", "type":{ "landmark_type":"nature" @@ -12250,12 +11770,12 @@ ], "osm_type":"way", "osm_id":16811756, - "attractiveness":5, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "766":{ + "736":{ "name":"Square du Temple- Elie Wiesel", "type":{ "landmark_type":"nature" @@ -12266,12 +11786,12 @@ ], "osm_type":"way", "osm_id":16877048, - "attractiveness":17, + "attractiveness":20, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "767":{ + "737":{ "name":"Esplanade Gaston Monnerville", "type":{ "landmark_type":"nature" @@ -12282,44 +11802,12 @@ ], "osm_type":"way", "osm_id":16924247, - "attractiveness":7, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "768":{ - "name":"Square Étienne Jarousse", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8245992, - 2.2921874 - ], - "osm_type":"way", - "osm_id":17040699, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "769":{ - "name":"Parc Frédéric Pic", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8187562, - 2.2817103 - ], - "osm_type":"way", - "osm_id":17244850, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "770":{ + "738":{ "name":"Square Marie Trintignant", "type":{ "landmark_type":"nature" @@ -12330,12 +11818,28 @@ ], "osm_type":"way", "osm_id":17249266, - "attractiveness":21, + "attractiveness":24, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "771":{ + "739":{ + "name":"Parc de la Butte du Chapeau Rouge", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8817945, + 2.3985077 + ], + "osm_type":"way", + "osm_id":19578842, + "attractiveness":18, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "740":{ "name":"Square de Cluny", "type":{ "landmark_type":"nature" @@ -12351,7 +11855,7 @@ "n_tags":3, "time_to_reach":0 }, - "772":{ + "741":{ "name":"Square André Lefèvre", "type":{ "landmark_type":"nature" @@ -12362,12 +11866,12 @@ ], "osm_type":"way", "osm_id":20105409, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "773":{ + "742":{ "name":"Square Jean XXIII", "type":{ "landmark_type":"nature" @@ -12378,12 +11882,12 @@ ], "osm_type":"way", "osm_id":20444455, - "attractiveness":22, + "attractiveness":25, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "774":{ + "743":{ "name":"Square de l'Île-de-France", "type":{ "landmark_type":"nature" @@ -12394,28 +11898,12 @@ ], "osm_type":"way", "osm_id":20444469, - "attractiveness":12, + "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "775":{ - "name":"Parc Kellermann", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8184469, - 2.3552745 - ], - "osm_type":"way", - "osm_id":21001359, - "attractiveness":8, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "776":{ + "744":{ "name":"Square du Cardinal-Wyszyński", "type":{ "landmark_type":"nature" @@ -12426,12 +11914,12 @@ ], "osm_type":"way", "osm_id":22051814, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "777":{ + "745":{ "name":"Square René Le Gall", "type":{ "landmark_type":"nature" @@ -12442,12 +11930,12 @@ ], "osm_type":"way", "osm_id":22054912, - "attractiveness":32, + "attractiveness":37, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "778":{ + "746":{ "name":"Jardin des Grands-Explorateurs Marco Polo et Robert Cavelier-de-la-Salle", "type":{ "landmark_type":"nature" @@ -12458,12 +11946,12 @@ ], "osm_type":"way", "osm_id":22732250, - "attractiveness":18, + "attractiveness":21, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "779":{ + "747":{ "name":"Square Robert Montagne", "type":{ "landmark_type":"nature" @@ -12474,28 +11962,12 @@ ], "osm_type":"way", "osm_id":22946834, - "attractiveness":4, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "780":{ - "name":"Square Gustave Mesureur", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8337517, - 2.3624196 - ], - "osm_type":"way", - "osm_id":23017558, - "attractiveness":16, - "must_do":false, - "n_tags":11, - "time_to_reach":0 - }, - "781":{ + "748":{ "name":"Square Saint-Éloi", "type":{ "landmark_type":"nature" @@ -12506,12 +11978,12 @@ ], "osm_type":"way", "osm_id":23032336, - "attractiveness":16, + "attractiveness":19, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "782":{ + "749":{ "name":"Jardin des Trois Cornets", "type":{ "landmark_type":"nature" @@ -12527,7 +11999,7 @@ "n_tags":3, "time_to_reach":0 }, - "783":{ + "750":{ "name":"Square Danielle Mitterrand", "type":{ "landmark_type":"nature" @@ -12538,12 +12010,12 @@ ], "osm_type":"way", "osm_id":23071565, - "attractiveness":11, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "784":{ + "751":{ "name":"Jardin de l'Abbé Lemire", "type":{ "landmark_type":"nature" @@ -12554,236 +12026,12 @@ ], "osm_type":"way", "osm_id":23097586, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "785":{ - "name":"Jardin du Moulin de la Vierge - Carole Roussopoulos", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8335509, - 2.3135841 - ], - "osm_type":"way", - "osm_id":23114922, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "786":{ - "name":"Jardin Chérifa", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8317728, - 2.3132111 - ], - "osm_type":"way", - "osm_id":23114950, - "attractiveness":7, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "787":{ - "name":"Jardin Maudy Piot-Jacomet", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8310322, - 2.3142435 - ], - "osm_type":"way", - "osm_id":23114966, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "788":{ - "name":"Place Louise-Losserand", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8311547, - 2.3133491 - ], - "osm_type":"way", - "osm_id":23114968, "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "789":{ - "name":"Square Vercingetorix-Jonquilles", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8300284, - 2.3081848 - ], - "osm_type":"way", - "osm_id":23114982, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "790":{ - "name":"Jardin Paturle", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8287901, - 2.3067783 - ], - "osm_type":"way", - "osm_id":23115026, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "791":{ - "name":"Jardin du Père Plumier", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8336742, - 2.3121798 - ], - "osm_type":"way", - "osm_id":23115921, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "792":{ - "name":"Jardin Henri et Achille Duchène", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8321861, - 2.3101269 - ], - "osm_type":"way", - "osm_id":23115927, - "attractiveness":4, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "793":{ - "name":"Jardin Maurice Noguès", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8252894, - 2.3049173 - ], - "osm_type":"way", - "osm_id":23123595, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "794":{ - "name":"Square Julia Bartet", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8263439, - 2.3036844 - ], - "osm_type":"way", - "osm_id":23123602, - "attractiveness":12, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "795":{ - "name":"Mail de Bièvre", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8296832, - 2.3448747 - ], - "osm_type":"way", - "osm_id":23163227, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "796":{ - "name":"Jardin Marie-Thérèse Auffray", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8263714, - 2.3378862 - ], - "osm_type":"way", - "osm_id":23203001, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "797":{ - "name":"Jardin du Moulin de la Pointe - Paul Quilès", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8209299, - 2.3574747 - ], - "osm_type":"way", - "osm_id":23245272, - "attractiveness":11, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "798":{ - "name":"Jardin Juan Miro", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8202299, - 2.360582 - ], - "osm_type":"way", - "osm_id":23245275, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "799":{ + "752":{ "name":"Square d'Estienne d'Orves", "type":{ "landmark_type":"nature" @@ -12794,28 +12042,12 @@ ], "osm_type":"way", "osm_id":23272397, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "800":{ - "name":"Jardin des Mères et Grands-Mères de la Place de Mai", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8455472, - 2.2766187 - ], - "osm_type":"way", - "osm_id":23692345, - "attractiveness":11, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "801":{ + "753":{ "name":"Square Roger-Stéphane", "type":{ "landmark_type":"nature" @@ -12826,60 +12058,60 @@ ], "osm_type":"way", "osm_id":23736351, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "802":{ - "name":"Jardin du Monument aux Mères Françaises", + "754":{ + "name":"Square Sarah Bernhardt", "type":{ "landmark_type":"nature" }, "location":[ - 48.8200436, - 2.3559974 + 48.849403, + 2.403903 ], "osm_type":"way", - "osm_id":23782577, - "attractiveness":5, + "osm_id":23757948, + "attractiveness":8, "must_do":false, - "n_tags":3, + "n_tags":5, "time_to_reach":0 }, - "803":{ - "name":"Square Hélène Boucher", + "755":{ + "name":"Square Rejane", "type":{ "landmark_type":"nature" }, "location":[ - 48.8184709, - 2.3603333 + 48.848411, + 2.4045857 ], "osm_type":"way", - "osm_id":23782701, - "attractiveness":10, + "osm_id":23757975, + "attractiveness":7, "must_do":false, - "n_tags":6, + "n_tags":4, "time_to_reach":0 }, - "804":{ - "name":"Square Robert Bajac", + "756":{ + "name":"Jardin Casque-d’Or", "type":{ "landmark_type":"nature" }, "location":[ - 48.8185109, - 2.358838 + 48.8542134, + 2.4012585 ], "osm_type":"way", - "osm_id":23782719, - "attractiveness":11, + "osm_id":23973895, + "attractiveness":16, "must_do":false, - "n_tags":7, + "n_tags":10, "time_to_reach":0 }, - "805":{ + "757":{ "name":"Square Émile Chautemps", "type":{ "landmark_type":"nature" @@ -12890,60 +12122,12 @@ ], "osm_type":"way", "osm_id":23981951, - "attractiveness":22, + "attractiveness":25, "must_do":false, "n_tags":14, "time_to_reach":0 }, - "806":{ - "name":"Square Rosalind-Franklin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8392156, - 2.2827926 - ], - "osm_type":"way", - "osm_id":24000240, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "807":{ - "name":"Square Héloïse et Abélard", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8313645, - 2.3701044 - ], - "osm_type":"way", - "osm_id":24241484, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "808":{ - "name":"Square de l'Hopital Vaugirard", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8346214, - 2.2931405 - ], - "osm_type":"way", - "osm_id":24277437, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "809":{ + "758":{ "name":"Jardin d'Alleray-Procession", "type":{ "landmark_type":"nature" @@ -12954,12 +12138,12 @@ ], "osm_type":"way", "osm_id":24303504, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "810":{ + "759":{ "name":"Square d'Alleray Labrouste-Saint-Amand", "type":{ "landmark_type":"nature" @@ -12970,92 +12154,60 @@ ], "osm_type":"way", "osm_id":24303537, + "attractiveness":12, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "760":{ + "name":"Parc Abel-Mézières", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9160265, + 2.3299291 + ], + "osm_type":"way", + "osm_id":24604305, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "761":{ + "name":"Parc François Mitterrand", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9029374, + 2.324142 + ], + "osm_type":"way", + "osm_id":24606663, "attractiveness":10, "must_do":false, - "n_tags":7, + "n_tags":6, "time_to_reach":0 }, - "811":{ - "name":"Jardin Berthe-Morisot", + "762":{ + "name":"Jardin Henri-Sauvage", "type":{ "landmark_type":"nature" }, "location":[ - 48.8260662, - 2.3751067 + 48.894058, + 2.352202 ], "osm_type":"way", - "osm_id":24325918, - "attractiveness":13, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "812":{ - "name":"Square Thomas Jefferson", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8679736, - 2.2942228 - ], - "osm_type":"way", - "osm_id":24928306, - "attractiveness":7, + "osm_id":25092574, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "813":{ - "name":"Square Paul Gilot", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.844065, - 2.2804391 - ], - "osm_type":"way", - "osm_id":25370787, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "814":{ - "name":"Nouvelle Place Dépinoy", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8218611, - 2.3063627 - ], - "osm_type":"way", - "osm_id":25415932, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "815":{ - "name":"Jardin de la Place Souham", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8287537, - 2.3678308 - ], - "osm_type":"way", - "osm_id":25422948, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "816":{ + "763":{ "name":"Square Léo Ferré", "type":{ "landmark_type":"nature" @@ -13066,60 +12218,28 @@ ], "osm_type":"way", "osm_id":25423021, - "attractiveness":11, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "817":{ - "name":"Jardin du Centenaire de Malakoff", + "764":{ + "name":"Square des Epinettes", "type":{ "landmark_type":"nature" }, "location":[ - 48.8227626, - 2.3086604 + 48.894366, + 2.3265728 ], "osm_type":"way", - "osm_id":25458658, - "attractiveness":3, + "osm_id":25765947, + "attractiveness":16, "must_do":false, - "n_tags":2, + "n_tags":10, "time_to_reach":0 }, - "818":{ - "name":"Square du Sentier du Tir", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8232916, - 2.306801 - ], - "osm_type":"way", - "osm_id":25490900, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "819":{ - "name":"Square Carlo Sarabezolles", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8372707, - 2.27273 - ], - "osm_type":"way", - "osm_id":25848058, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "820":{ + "765":{ "name":"Square Claude Nicolas Ledoux", "type":{ "landmark_type":"nature" @@ -13130,12 +12250,12 @@ ], "osm_type":"way", "osm_id":25861852, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "821":{ + "766":{ "name":"Square Federico-García-Lorca", "type":{ "landmark_type":"nature" @@ -13146,44 +12266,12 @@ ], "osm_type":"way", "osm_id":25992413, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "822":{ - "name":"Square Jean Cocteau", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8387105, - 2.2804997 - ], - "osm_type":"way", - "osm_id":26203118, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "823":{ - "name":"Parc Léon Salagnac", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8132171, - 2.2920616 - ], - "osm_type":"way", - "osm_id":26224563, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "824":{ + "767":{ "name":"Square Louvois", "type":{ "landmark_type":"nature" @@ -13194,12 +12282,12 @@ ], "osm_type":"way", "osm_id":26277958, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "825":{ + "768":{ "name":"Jardin Toussaint Louverture", "type":{ "landmark_type":"nature" @@ -13210,12 +12298,12 @@ ], "osm_type":"way", "osm_id":26580004, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "826":{ + "769":{ "name":"Square Laurent Prache", "type":{ "landmark_type":"nature" @@ -13226,12 +12314,12 @@ ], "osm_type":"way", "osm_id":26583593, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "827":{ + "770":{ "name":"Square Jacques Grynberg", "type":{ "landmark_type":"nature" @@ -13242,12 +12330,12 @@ ], "osm_type":"way", "osm_id":26799003, - "attractiveness":5, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "828":{ + "771":{ "name":"Square Eugène Varlin", "type":{ "landmark_type":"nature" @@ -13258,12 +12346,12 @@ ], "osm_type":"way", "osm_id":26954399, - "attractiveness":14, + "attractiveness":17, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "829":{ + "772":{ "name":"Square Henri Christiné", "type":{ "landmark_type":"nature" @@ -13274,60 +12362,76 @@ ], "osm_type":"way", "osm_id":26954406, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "830":{ - "name":"Parc Henri Matisse", + "773":{ + "name":"Square Albert Besnard", "type":{ "landmark_type":"nature" }, "location":[ - 48.7998406, - 2.2926914 + 48.8849414, + 2.2973032 ], "osm_type":"way", - "osm_id":27521401, - "attractiveness":5, + "osm_id":27089043, + "attractiveness":12, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "774":{ + "name":"Jardin Claire Motte", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8917722, + 2.3046556 + ], + "osm_type":"way", + "osm_id":27618948, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "831":{ - "name":"Parc des Sarments", + "775":{ + "name":"Square de Clignancourt", "type":{ "landmark_type":"nature" }, "location":[ - 48.8015823, - 2.2896212 + 48.8930338, + 2.3465149 ], "osm_type":"way", - "osm_id":27521523, - "attractiveness":4, + "osm_id":28804468, + "attractiveness":9, "must_do":false, - "n_tags":2, + "n_tags":5, "time_to_reach":0 }, - "832":{ - "name":"Square Théophile Gautier", + "776":{ + "name":"Parc municipal Lucie-Aubrac", "type":{ "landmark_type":"nature" }, "location":[ - 48.8476565, - 2.2703201 + 48.878186, + 2.4172315 ], "osm_type":"way", - "osm_id":27611972, + "osm_id":28887274, "attractiveness":6, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "833":{ + "777":{ "name":"Jardin James Joyce", "type":{ "landmark_type":"nature" @@ -13338,44 +12442,12 @@ ], "osm_type":"way", "osm_id":29023035, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "834":{ - "name":"Jardin Cyprian-Norwid", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8282741, - 2.3772735 - ], - "osm_type":"way", - "osm_id":29064338, - "attractiveness":14, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "835":{ - "name":"Jardin Brassaï", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8286995, - 2.3495963 - ], - "osm_type":"way", - "osm_id":29275665, - "attractiveness":7, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "836":{ + "778":{ "name":"Jardin Gabriële Buffet", "type":{ "landmark_type":"nature" @@ -13386,12 +12458,12 @@ ], "osm_type":"way", "osm_id":29386804, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "837":{ + "779":{ "name":"Square Aristide Cavaillé-Coll", "type":{ "landmark_type":"nature" @@ -13402,12 +12474,12 @@ ], "osm_type":"way", "osm_id":29700227, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "838":{ + "780":{ "name":"La Jardinère", "type":{ "landmark_type":"nature" @@ -13418,28 +12490,12 @@ ], "osm_type":"way", "osm_id":29733337, - "attractiveness":14, + "attractiveness":16, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "839":{ - "name":"Parc Pablo Neruda", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7912924, - 2.3636088 - ], - "osm_type":"way", - "osm_id":29850506, - "attractiveness":10, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "840":{ + "781":{ "name":"Jardin des rues Maronites-Pressoir", "type":{ "landmark_type":"nature" @@ -13450,44 +12506,76 @@ ], "osm_type":"way", "osm_id":29857475, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "841":{ - "name":"Square de la place Etienne Pernet", + "782":{ + "name":"Square Saint-Bernard - Saïd Bouziri", "type":{ "landmark_type":"nature" }, "location":[ - 48.84287, - 2.2923037 + 48.8861141, + 2.3560988 ], "osm_type":"way", - "osm_id":30781734, + "osm_id":29880464, + "attractiveness":12, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "783":{ + "name":"Place Salvador Allende", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8973902, + 2.400923 + ], + "osm_type":"way", + "osm_id":30066116, + "attractiveness":12, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "784":{ + "name":"Jardin Rachmaninov", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8953201, + 2.3642267 + ], + "osm_type":"way", + "osm_id":30091005, "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "842":{ - "name":"Jardin Françoise Héritier", + "785":{ + "name":"Square Serge Reggiani", "type":{ "landmark_type":"nature" }, "location":[ - 48.8339261, - 2.3196835 + 48.8889585, + 2.3791325 ], "osm_type":"way", - "osm_id":30904451, - "attractiveness":9, + "osm_id":30097285, + "attractiveness":12, "must_do":false, - "n_tags":6, + "n_tags":7, "time_to_reach":0 }, - "843":{ + "786":{ "name":"Square Georges Lamarque", "type":{ "landmark_type":"nature" @@ -13498,28 +12586,220 @@ ], "osm_type":"way", "osm_id":30992402, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "844":{ - "name":"Parc du 8 mai 1945", + "787":{ + "name":"Square Emmanuel Fleury", "type":{ "landmark_type":"nature" }, "location":[ - 48.797396, - 2.3523969 + 48.8705546, + 2.411767 ], "osm_type":"way", - "osm_id":32622250, + "osm_id":31150070, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "788":{ + "name":"Square Séverine", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8656133, + 2.4102296 + ], + "osm_type":"way", + "osm_id":31150082, + "attractiveness":12, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "789":{ + "name":"Jardin de la Gare de Charonne", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8520047, + 2.4096163 + ], + "osm_type":"way", + "osm_id":31150090, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "790":{ + "name":"Jardin de l'Hospice Debrousse", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8620243, + 2.4069055 + ], + "osm_type":"way", + "osm_id":31150105, + "attractiveness":11, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "791":{ + "name":"Square Charles Hermite", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8999857, + 2.3668797 + ], + "osm_type":"way", + "osm_id":31153132, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "792":{ + "name":"Jardin Anaïs Nin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8993002, + 2.3707214 + ], + "osm_type":"way", + "osm_id":31153158, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "793":{ + "name":"Square de Stalingrad", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9114634, + 2.3835834 + ], + "osm_type":"way", + "osm_id":31159294, + "attractiveness":16, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "794":{ + "name":"Square Lucien Brun", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9160162, + 2.3879732 + ], + "osm_type":"way", + "osm_id":31252204, "attractiveness":3, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "845":{ + "795":{ + "name":"Parc Eli Lotar", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9180651, + 2.3716982 + ], + "osm_type":"way", + "osm_id":31297128, + "attractiveness":8, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "796":{ + "name":"Parc Josette et Maurice Audin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8742718, + 2.4226243 + ], + "osm_type":"way", + "osm_id":31352451, + "attractiveness":6, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "797":{ + "name":"Parc Diderot", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9068122, + 2.3974827 + ], + "osm_type":"way", + "osm_id":31353320, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "798":{ + "name":"Espaces Verts des Courtillères", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9127656, + 2.4115218 + ], + "osm_type":"way", + "osm_id":31353371, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "799":{ + "name":"Square Edmond Pépin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8837465, + 2.4028979 + ], + "osm_type":"way", + "osm_id":31353825, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "800":{ "name":"Square Barye", "type":{ "landmark_type":"nature" @@ -13530,44 +12810,12 @@ ], "osm_type":"way", "osm_id":33189664, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "846":{ - "name":"Square Normandie-Niémen", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8188643, - 2.2942911 - ], - "osm_type":"way", - "osm_id":33636518, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "847":{ - "name":"Parc de Choisy", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.828072, - 2.3602842 - ], - "osm_type":"way", - "osm_id":34056444, - "attractiveness":18, - "must_do":false, - "n_tags":13, - "time_to_reach":0 - }, - "848":{ + "801":{ "name":"Square Pierre de Gaulle", "type":{ "landmark_type":"nature" @@ -13578,28 +12826,76 @@ ], "osm_type":"way", "osm_id":34107132, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "849":{ - "name":"Parc André Malraux", + "802":{ + "name":"Square d'Anvers - Jean-Claude-Carrière", "type":{ "landmark_type":"nature" }, "location":[ - 48.7982143, - 2.2801887 + 48.8821787, + 2.3443692 ], "osm_type":"way", - "osm_id":35003702, - "attractiveness":4, + "osm_id":34675527, + "attractiveness":18, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "803":{ + "name":"Square Sergent Aurélie Salel", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8670535, + 2.3915986 + ], + "osm_type":"way", + "osm_id":34932338, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "804":{ + "name":"Square du Docteur Jacques-Joseph Grancher", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8654226, + 2.394151 + ], + "osm_type":"way", + "osm_id":34932377, + "attractiveness":15, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "805":{ + "name":"Square Marcel Sembat", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8987453, + 2.338316 + ], + "osm_type":"way", + "osm_id":35194283, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "850":{ + "806":{ "name":"Jardin Yacine-Kateb", "type":{ "landmark_type":"nature" @@ -13610,124 +12906,188 @@ ], "osm_type":"way", "osm_id":35329502, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "851":{ - "name":"Jardin de la Raffinerie Say", + "807":{ + "name":"Square Léon-Frapié", "type":{ "landmark_type":"nature" }, "location":[ - 48.83198, - 2.3615094 + 48.8728678, + 2.4118129 ], "osm_type":"way", - "osm_id":35341750, - "attractiveness":18, + "osm_id":35537824, + "attractiveness":10, "must_do":false, - "n_tags":13, + "n_tags":6, "time_to_reach":0 }, - "852":{ - "name":"Parc Renaudel", + "808":{ + "name":"Square de la Marseillaise", "type":{ "landmark_type":"nature" }, "location":[ - 48.8130022, - 2.3071681 + 48.8871768, + 2.3975596 ], "osm_type":"way", - "osm_id":36071906, - "attractiveness":12, + "osm_id":35631119, + "attractiveness":11, "must_do":false, - "n_tags":8, + "n_tags":7, "time_to_reach":0 }, - "853":{ - "name":"Parc de la Maison Blanche", + "809":{ + "name":"Square Léon-Serpollet", "type":{ "landmark_type":"nature" }, "location":[ - 48.8026411, - 2.2679174 + 48.8921879, + 2.3384235 ], "osm_type":"way", - "osm_id":37655575, + "osm_id":36855294, + "attractiveness":13, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "810":{ + "name":"Parc Roger Salengro", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.904745, + 2.311665 + ], + "osm_type":"way", + "osm_id":36894633, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "811":{ + "name":"Jardin des Buttes", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8663875, + 2.4223022 + ], + "osm_type":"way", + "osm_id":36911930, "attractiveness":4, "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "854":{ - "name":"Square du capitaine Alfred Dreyfus", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8247797, - 2.272543 - ], - "osm_type":"way", - "osm_id":38821120, - "attractiveness":3, - "must_do":false, "n_tags":2, "time_to_reach":0 }, - "855":{ - "name":"Jardin panoramique du Coteau", + "812":{ + "name":"Square des Saint-Simoniens - Ménilmontant", "type":{ "landmark_type":"nature" }, "location":[ - 48.7908338, - 2.3430107 + 48.8706364, + 2.3966401 ], "osm_type":"way", - "osm_id":39213847, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "856":{ - "name":"Parc Paul Vaillant-Couturier", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8029378, - 2.3304951 - ], - "osm_type":"way", - "osm_id":39523874, + "osm_id":36953982, "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "857":{ - "name":"Jardin de la Place du Docteur Navarre", + "813":{ + "name":"Square Léon", "type":{ "landmark_type":"nature" }, "location":[ - 48.8278872, - 2.3662216 + 48.8861024, + 2.3534296 ], "osm_type":"way", - "osm_id":40000050, - "attractiveness":7, + "osm_id":37134121, + "attractiveness":12, "must_do":false, - "n_tags":5, + "n_tags":7, "time_to_reach":0 }, - "858":{ + "814":{ + "name":"Jardin de la Gare de Reuilly - Julien Lauprêtre", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8409618, + 2.3923863 + ], + "osm_type":"way", + "osm_id":39231149, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "815":{ + "name":"Parc des Sports", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9236649, + 2.3024406 + ], + "osm_type":"way", + "osm_id":39838933, + "attractiveness":6, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "816":{ + "name":"Parc Chenard et Walcker", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9204775, + 2.3001107 + ], + "osm_type":"way", + "osm_id":39839715, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "817":{ + "name":"Allées Missak-Manouchian", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9197655, + 2.3009839 + ], + "osm_type":"way", + "osm_id":39923800, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "818":{ "name":"Square Eugène Thomas", "type":{ "landmark_type":"nature" @@ -13738,92 +13098,172 @@ ], "osm_type":"way", "osm_id":40496627, - "attractiveness":11, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "859":{ - "name":"Jardin Pablo Picasso", + "819":{ + "name":"Jardin Lesseps", "type":{ "landmark_type":"nature" }, "location":[ - 48.8123595, - 2.34568 + 48.8591648, + 2.4000813 ], "osm_type":"way", - "osm_id":41856667, - "attractiveness":13, + "osm_id":40650819, + "attractiveness":8, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "820":{ + "name":"Le Jardin du Couchant", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8473806, + 2.4298026 + ], + "osm_type":"way", + "osm_id":41416345, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "860":{ - "name":"Square de Verdun", + "821":{ + "name":"Jardin Ilan-Halimi", "type":{ "landmark_type":"nature" }, "location":[ - 48.8195016, - 2.301372 + 48.8360513, + 2.401527 ], "osm_type":"way", - "osm_id":42207923, - "attractiveness":4, + "osm_id":41917771, + "attractiveness":12, "must_do":false, - "n_tags":3, + "n_tags":7, "time_to_reach":0 }, - "861":{ - "name":"Place des Vins de France", + "822":{ + "name":"square Jules Ferry", "type":{ "landmark_type":"nature" }, "location":[ - 48.8323617, - 2.3874695 + 48.8593802, + 2.4175069 ], "osm_type":"way", - "osm_id":42448013, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "862":{ - "name":"Parc Georges Brassens", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8314646, - 2.2998427 - ], - "osm_type":"way", - "osm_id":43324060, - "attractiveness":18, - "must_do":false, - "n_tags":12, - "time_to_reach":0 - }, - "863":{ - "name":"Jardin Audigeois", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7914492, - 2.3910521 - ], - "osm_type":"way", - "osm_id":44204005, + "osm_id":43103577, "attractiveness":3, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "864":{ + "823":{ + "name":"Parc Robinson", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9088537, + 2.2949154 + ], + "osm_type":"way", + "osm_id":43447638, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "824":{ + "name":"Square Denise Buisson", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8570277, + 2.4271928 + ], + "osm_type":"way", + "osm_id":43476880, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "825":{ + "name":"Square Schnarbach", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8673792, + 2.4208847 + ], + "osm_type":"way", + "osm_id":44774327, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "826":{ + "name":"Square Louise Michel", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8853618, + 2.3438234 + ], + "osm_type":"way", + "osm_id":45189726, + "attractiveness":16, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "827":{ + "name":"Square Ernest Gouin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.894104, + 2.3183239 + ], + "osm_type":"way", + "osm_id":47032962, + "attractiveness":14, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "828":{ + "name":"Square Helbronner", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9106744, + 2.3414253 + ], + "osm_type":"way", + "osm_id":49860508, + "attractiveness":9, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "829":{ "name":"Square Ozanam", "type":{ "landmark_type":"nature" @@ -13834,12 +13274,28 @@ ], "osm_type":"way", "osm_id":50385010, - "attractiveness":17, + "attractiveness":20, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "865":{ + "830":{ + "name":"Parc Aimé Césaire", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9101774, + 2.3760838 + ], + "osm_type":"way", + "osm_id":50828902, + "attractiveness":15, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "831":{ "name":"Square Saint-Laurent", "type":{ "landmark_type":"nature" @@ -13850,12 +13306,60 @@ ], "osm_type":"way", "osm_id":52525931, - "attractiveness":16, + "attractiveness":18, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "866":{ + "832":{ + "name":"Square des Acrobates", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9167975, + 2.3537291 + ], + "osm_type":"way", + "osm_id":52982345, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "833":{ + "name":"Les Jardins Wilson", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9168312, + 2.3576065 + ], + "osm_type":"way", + "osm_id":52982644, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "834":{ + "name":"Jardin des Droits de l'Enfant", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9169547, + 2.3623472 + ], + "osm_type":"way", + "osm_id":52983425, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "835":{ "name":"Place Dauphine", "type":{ "landmark_type":"nature" @@ -13866,12 +13370,12 @@ ], "osm_type":"way", "osm_id":53567907, - "attractiveness":14, + "attractiveness":17, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "867":{ + "836":{ "name":"Square du Vert Galant", "type":{ "landmark_type":"nature" @@ -13882,28 +13386,12 @@ ], "osm_type":"way", "osm_id":53570787, - "attractiveness":14, + "attractiveness":16, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "868":{ - "name":"Promenade Pereire", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8791438, - 2.2864474 - ], - "osm_type":"way", - "osm_id":53746544, - "attractiveness":8, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "869":{ + "837":{ "name":"Jardin des Tuileries", "type":{ "landmark_type":"nature" @@ -13914,12 +13402,12 @@ ], "osm_type":"way", "osm_id":53820452, - "attractiveness":32, + "attractiveness":37, "must_do":false, "n_tags":23, "time_to_reach":0 }, - "870":{ + "838":{ "name":"Jardinet place du lieutenant Henri-Karcher", "type":{ "landmark_type":"nature" @@ -13930,12 +13418,44 @@ ], "osm_type":"way", "osm_id":53826866, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "871":{ + "839":{ + "name":"Parc Mozart", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9047926, + 2.3174309 + ], + "osm_type":"way", + "osm_id":54378396, + "attractiveness":6, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "840":{ + "name":"Parc Théodore Monod", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9103645, + 2.309488 + ], + "osm_type":"way", + "osm_id":54380826, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "841":{ "name":"Square Jacques Bidault", "type":{ "landmark_type":"nature" @@ -13946,12 +13466,12 @@ ], "osm_type":"way", "osm_id":55263339, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "872":{ + "842":{ "name":"Square Charles Victor Langlois", "type":{ "landmark_type":"nature" @@ -13962,12 +13482,28 @@ ], "osm_type":"way", "osm_id":55848929, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "873":{ + "843":{ + "name":"Square du Maréchal de Lattre de Tassigny", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9143086, + 2.3069584 + ], + "osm_type":"way", + "osm_id":56322347, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "844":{ "name":"Square Georges-Cain", "type":{ "landmark_type":"nature" @@ -13978,44 +13514,28 @@ ], "osm_type":"way", "osm_id":57832958, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "874":{ - "name":"Square François Mitterrand", + "845":{ + "name":"Jardin Serge Gainsbourg", "type":{ "landmark_type":"nature" }, "location":[ - 48.8142238, - 2.3634047 + 48.8786669, + 2.4080907 ], "osm_type":"way", - "osm_id":61100649, - "attractiveness":5, + "osm_id":61320151, + "attractiveness":11, "must_do":false, - "n_tags":3, + "n_tags":6, "time_to_reach":0 }, - "875":{ - "name":"Parc Philippe Pinel", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8116737, - 2.3554131 - ], - "osm_type":"way", - "osm_id":61102770, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "876":{ + "846":{ "name":"Square Alban Satragne", "type":{ "landmark_type":"nature" @@ -14026,28 +13546,12 @@ ], "osm_type":"way", "osm_id":61406614, - "attractiveness":14, + "attractiveness":16, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "877":{ - "name":"Jardin Baudricourt", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8230915, - 2.3643093 - ], - "osm_type":"way", - "osm_id":62092170, - "attractiveness":7, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "878":{ + "847":{ "name":"Square Gabriel Pierné", "type":{ "landmark_type":"nature" @@ -14058,12 +13562,12 @@ ], "osm_type":"way", "osm_id":62238366, - "attractiveness":9, + "attractiveness":11, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "879":{ + "848":{ "name":"Square Félix Desruelles", "type":{ "landmark_type":"nature" @@ -14074,12 +13578,12 @@ ], "osm_type":"way", "osm_id":62287123, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "880":{ + "849":{ "name":"Square Honoré Champion", "type":{ "landmark_type":"nature" @@ -14090,12 +13594,12 @@ ], "osm_type":"way", "osm_id":62297777, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "881":{ + "850":{ "name":"Square Francis Poulenc", "type":{ "landmark_type":"nature" @@ -14106,12 +13610,12 @@ ], "osm_type":"way", "osm_id":62522583, - "attractiveness":11, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "882":{ + "851":{ "name":"Jardin de l'Hôpital Saint-Louis", "type":{ "landmark_type":"nature" @@ -14122,28 +13626,28 @@ ], "osm_type":"way", "osm_id":63198315, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "883":{ - "name":"Square Erik Satie", + "852":{ + "name":"Square Marcel Mouloudji", "type":{ "landmark_type":"nature" }, "location":[ - 48.8022155, - 2.3369459 + 48.8854008, + 2.3771778 ], "osm_type":"way", - "osm_id":63841851, - "attractiveness":4, + "osm_id":63246416, + "attractiveness":17, "must_do":false, - "n_tags":3, + "n_tags":10, "time_to_reach":0 }, - "884":{ + "853":{ "name":"Square Jean Morin", "type":{ "landmark_type":"nature" @@ -14154,12 +13658,12 @@ ], "osm_type":"way", "osm_id":65237132, - "attractiveness":13, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "885":{ + "854":{ "name":"Square Taras Chevtchenko", "type":{ "landmark_type":"nature" @@ -14170,12 +13674,12 @@ ], "osm_type":"way", "osm_id":66608003, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "886":{ + "855":{ "name":"Square Marcel Pagnol", "type":{ "landmark_type":"nature" @@ -14186,12 +13690,12 @@ ], "osm_type":"way", "osm_id":67725863, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "887":{ + "856":{ "name":"Place du Guatémala", "type":{ "landmark_type":"nature" @@ -14202,12 +13706,12 @@ ], "osm_type":"way", "osm_id":68507724, - "attractiveness":7, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "888":{ + "857":{ "name":"Jardin de l’Hôtel Salomon de Rothschild", "type":{ "landmark_type":"nature" @@ -14218,76 +13722,28 @@ ], "osm_type":"way", "osm_id":68995097, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "889":{ - "name":"Parc départemental Maurice Thorez", + "858":{ + "name":"Square de la rue Hélène", "type":{ "landmark_type":"nature" }, "location":[ - 48.813503, - 2.3873173 + 48.8864786, + 2.324743 ], "osm_type":"way", - "osm_id":69218979, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "890":{ - "name":"Jardin de la Dalle d'Ivry", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8225832, - 2.3649019 - ], - "osm_type":"way", - "osm_id":71213551, - "attractiveness":6, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "891":{ - "name":"Promenade des petits bois", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8143072, - 2.379995 - ], - "osm_type":"way", - "osm_id":71900172, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "892":{ - "name":"Jardin Choisy Caillaux", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8226415, - 2.3622254 - ], - "osm_type":"way", - "osm_id":73545020, - "attractiveness":8, + "osm_id":75750052, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "893":{ + "859":{ "name":"Square des Recollets", "type":{ "landmark_type":"nature" @@ -14298,12 +13754,12 @@ ], "osm_type":"way", "osm_id":76910069, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "894":{ + "860":{ "name":"Square Frédérick Lemaître", "type":{ "landmark_type":"nature" @@ -14314,44 +13770,12 @@ ], "osm_type":"way", "osm_id":76910095, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "895":{ - "name":"Jardin des Grands Moulins - Abbé Pierre", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8289647, - 2.3792433 - ], - "osm_type":"way", - "osm_id":77607229, - "attractiveness":8, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "896":{ - "name":"Jardin des Écoles", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.830045, - 2.3796568 - ], - "osm_type":"way", - "osm_id":77646233, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "897":{ + "861":{ "name":"Square Samuel Rousseau", "type":{ "landmark_type":"nature" @@ -14362,12 +13786,12 @@ ], "osm_type":"way", "osm_id":77708549, - "attractiveness":10, + "attractiveness":11, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "898":{ + "862":{ "name":"Parc Juliette Dodu", "type":{ "landmark_type":"nature" @@ -14378,12 +13802,28 @@ ], "osm_type":"way", "osm_id":77727267, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "899":{ + "863":{ + "name":"Square Alain Bashung", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.885345, + 2.3561989 + ], + "osm_type":"way", + "osm_id":78009019, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "864":{ "name":"Jardin Hector Malot", "type":{ "landmark_type":"nature" @@ -14394,12 +13834,12 @@ ], "osm_type":"way", "osm_id":78146247, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "900":{ + "865":{ "name":"Coulée verte René-Dumont", "type":{ "landmark_type":"nature" @@ -14410,300 +13850,28 @@ ], "osm_type":"way", "osm_id":78148984, - "attractiveness":12, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "901":{ - "name":"Place du Maréchal de Lattre de Tassigny", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8716219, - 2.2749197 - ], - "osm_type":"way", - "osm_id":81041449, - "attractiveness":9, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "902":{ - "name":"Square Robert Schuman", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8690899, - 2.2727856 - ], - "osm_type":"way", - "osm_id":81130668, - "attractiveness":16, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "903":{ - "name":"Jardin du Général Anselin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8687422, - 2.2723416 - ], - "osm_type":"way", - "osm_id":81132628, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "904":{ - "name":"Jardin Maurice Barlier", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8689108, - 2.2741672 - ], - "osm_type":"way", - "osm_id":81208044, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "905":{ - "name":"Square Lamartine", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.864897, - 2.2751646 - ], - "osm_type":"way", - "osm_id":81305633, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "906":{ - "name":"Square Alexandre 1er de Yougoslavie", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8636323, - 2.2682044 - ], - "osm_type":"way", - "osm_id":82325107, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "907":{ - "name":"Square de Yorktown", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8615851, - 2.2864292 - ], - "osm_type":"way", - "osm_id":82683449, - "attractiveness":7, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "908":{ - "name":"Square des Combattants d'Afrique du Nord", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8193787, - 2.3242863 - ], - "osm_type":"way", - "osm_id":83290878, "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "909":{ - "name":"Square des Écrivains Combattants Morts pour la France", + "866":{ + "name":"Les Jardins du Ruisseau", "type":{ "landmark_type":"nature" }, "location":[ - 48.8596268, - 2.2653877 + 48.8974781, + 2.342714 ], "osm_type":"way", - "osm_id":83664978, - "attractiveness":8, + "osm_id":86602632, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "910":{ - "name":"Parc de Passy", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8557318, - 2.2836801 - ], - "osm_type":"way", - "osm_id":83862956, - "attractiveness":9, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "911":{ - "name":"Square Henri Collet", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8519099, - 2.2752741 - ], - "osm_type":"way", - "osm_id":83934819, - "attractiveness":9, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "912":{ - "name":"Square Tolstoï", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8530339, - 2.2611555 - ], - "osm_type":"way", - "osm_id":85891809, - "attractiveness":11, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "913":{ - "name":"Square Henry Bataille", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8552043, - 2.2625547 - ], - "osm_type":"way", - "osm_id":85891822, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "914":{ - "name":"Square Alfred Capus", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8509003, - 2.2599091 - ], - "osm_type":"way", - "osm_id":85893149, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "915":{ - "name":"Square Malherbe", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8493697, - 2.2587931 - ], - "osm_type":"way", - "osm_id":85900099, - "attractiveness":9, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "916":{ - "name":"Square Racan", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8498167, - 2.2590625 - ], - "osm_type":"way", - "osm_id":85900108, - "attractiveness":9, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "917":{ - "name":"Jardin des Poètes", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8474633, - 2.2555879 - ], - "osm_type":"way", - "osm_id":86260472, - "attractiveness":10, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "918":{ - "name":"Square du 19 Mars 1962", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8092418, - 2.3425661 - ], - "osm_type":"way", - "osm_id":86355947, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "919":{ + "867":{ "name":"Jardin public de l'Observatoire de Paris", "type":{ "landmark_type":"nature" @@ -14714,28 +13882,12 @@ ], "osm_type":"way", "osm_id":87334036, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "920":{ - "name":"Square de la Bresse", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8373075, - 2.2625642 - ], - "osm_type":"way", - "osm_id":88298212, - "attractiveness":10, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "921":{ + "868":{ "name":"Jardin de l'Église Saint-Éloi", "type":{ "landmark_type":"nature" @@ -14746,28 +13898,12 @@ ], "osm_type":"way", "osm_id":93903779, - "attractiveness":4, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "922":{ - "name":"Place des Onze Arpents", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7911186, - 2.3521076 - ], - "osm_type":"way", - "osm_id":94452182, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "923":{ + "869":{ "name":"Cour Pasteur", "type":{ "landmark_type":"nature" @@ -14783,7 +13919,7 @@ "n_tags":2, "time_to_reach":0 }, - "924":{ + "870":{ "name":"Cour aux Ernest", "type":{ "landmark_type":"nature" @@ -14794,12 +13930,12 @@ ], "osm_type":"way", "osm_id":95195271, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "925":{ + "871":{ "name":"Square Auguste Mariette-Pacha", "type":{ "landmark_type":"nature" @@ -14810,12 +13946,12 @@ ], "osm_type":"way", "osm_id":97602191, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "926":{ + "872":{ "name":"Square Michel Foucault", "type":{ "landmark_type":"nature" @@ -14826,12 +13962,12 @@ ], "osm_type":"way", "osm_id":97602192, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "927":{ + "873":{ "name":"Square Yves Coppens", "type":{ "landmark_type":"nature" @@ -14842,28 +13978,28 @@ ], "osm_type":"way", "osm_id":97602197, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "928":{ - "name":"Square du Tchad", + "874":{ + "name":"Square des Grès", "type":{ "landmark_type":"nature" }, "location":[ - 48.8464571, - 2.2555371 + 48.8595609, + 2.4061357 ], "osm_type":"way", - "osm_id":99701607, - "attractiveness":13, + "osm_id":99577109, + "attractiveness":9, "must_do":false, - "n_tags":9, + "n_tags":5, "time_to_reach":0 }, - "929":{ + "875":{ "name":"Square Théodore Monod", "type":{ "landmark_type":"nature" @@ -14874,28 +14010,12 @@ ], "osm_type":"way", "osm_id":100183214, - "attractiveness":14, + "attractiveness":17, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "930":{ - "name":"Place Salvador Allende", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8577775, - 2.3104707 - ], - "osm_type":"way", - "osm_id":103196817, - "attractiveness":11, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "931":{ + "876":{ "name":"Square Santiago du Chili", "type":{ "landmark_type":"nature" @@ -14906,12 +14026,12 @@ ], "osm_type":"way", "osm_id":103214099, - "attractiveness":15, + "attractiveness":17, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "932":{ + "877":{ "name":"Square de l'Abbé Esquerré", "type":{ "landmark_type":"nature" @@ -14922,28 +14042,44 @@ ], "osm_type":"way", "osm_id":103344111, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "933":{ - "name":"Parc Jean Moulin", + "878":{ + "name":"Square Paganini", "type":{ "landmark_type":"nature" }, "location":[ - 48.813228, - 2.3269044 + 48.851646, + 2.4114825 ], "osm_type":"way", - "osm_id":105728837, - "attractiveness":13, + "osm_id":105480109, + "attractiveness":9, "must_do":false, - "n_tags":8, + "n_tags":5, "time_to_reach":0 }, - "934":{ + "879":{ + "name":"Square des Deux Nèthes", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8856573, + 2.3274074 + ], + "osm_type":"way", + "osm_id":106587163, + "attractiveness":10, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "880":{ "name":"Square Alex Biscarre", "type":{ "landmark_type":"nature" @@ -14954,12 +14090,76 @@ ], "osm_type":"way", "osm_id":107257915, - "attractiveness":8, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "935":{ + "881":{ + "name":"Square Hector Berlioz", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8831619, + 2.3298581 + ], + "osm_type":"way", + "osm_id":107351766, + "attractiveness":17, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "882":{ + "name":"Square Henri-Karcher", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8598335, + 2.4007923 + ], + "osm_type":"way", + "osm_id":107420896, + "attractiveness":15, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "883":{ + "name":"Square Louise de Marillac", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8847174, + 2.3600291 + ], + "osm_type":"way", + "osm_id":112072675, + "attractiveness":16, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "884":{ + "name":"Square de Jessaint", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8846714, + 2.3586794 + ], + "osm_type":"way", + "osm_id":112072676, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "885":{ "name":"Jardin Amadou Hampâté Bâ", "type":{ "landmark_type":"nature" @@ -14970,12 +14170,12 @@ ], "osm_type":"way", "osm_id":112705281, - "attractiveness":16, + "attractiveness":18, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "936":{ + "886":{ "name":"Square Jules Verne", "type":{ "landmark_type":"nature" @@ -14986,12 +14186,44 @@ ], "osm_type":"way", "osm_id":113735650, - "attractiveness":16, + "attractiveness":18, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "937":{ + "887":{ + "name":"Square Salvador Allende", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8860212, + 2.4035519 + ], + "osm_type":"way", + "osm_id":114446149, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "888":{ + "name":"Point vert de la place Roosevelt, Schaeffer, Noyers", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9173593, + 2.3798109 + ], + "osm_type":"way", + "osm_id":114705404, + "attractiveness":7, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "889":{ "name":"Square Marcel Rajman", "type":{ "landmark_type":"nature" @@ -15002,12 +14234,12 @@ ], "osm_type":"way", "osm_id":114992323, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "938":{ + "890":{ "name":"Square de la Roquette", "type":{ "landmark_type":"nature" @@ -15018,12 +14250,12 @@ ], "osm_type":"way", "osm_id":114992325, - "attractiveness":16, + "attractiveness":18, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "939":{ + "891":{ "name":"Jardin de l'Intendant", "type":{ "landmark_type":"nature" @@ -15034,12 +14266,12 @@ ], "osm_type":"way", "osm_id":115022783, - "attractiveness":8, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "940":{ + "892":{ "name":"Jardin du Cloître", "type":{ "landmark_type":"nature" @@ -15050,12 +14282,12 @@ ], "osm_type":"way", "osm_id":115643938, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "941":{ + "893":{ "name":"Square Francis Lemarque", "type":{ "landmark_type":"nature" @@ -15066,12 +14298,12 @@ ], "osm_type":"way", "osm_id":115671979, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "942":{ + "894":{ "name":"Jardin Louis Majorelle", "type":{ "landmark_type":"nature" @@ -15082,12 +14314,12 @@ ], "osm_type":"way", "osm_id":115804143, - "attractiveness":16, + "attractiveness":18, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "943":{ + "895":{ "name":"Square Raoul Nordling", "type":{ "landmark_type":"nature" @@ -15098,28 +14330,12 @@ ], "osm_type":"way", "osm_id":115804160, - "attractiveness":11, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "944":{ - "name":"Square Duranton", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8411342, - 2.2856427 - ], - "osm_type":"way", - "osm_id":116823214, - "attractiveness":10, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "945":{ + "896":{ "name":"Jardin de la Folie Titon", "type":{ "landmark_type":"nature" @@ -15130,12 +14346,12 @@ ], "osm_type":"way", "osm_id":117887012, - "attractiveness":18, + "attractiveness":20, "must_do":false, "n_tags":12, "time_to_reach":0 }, - "946":{ + "897":{ "name":"Jardin Émile Gallé", "type":{ "landmark_type":"nature" @@ -15146,28 +14362,28 @@ ], "osm_type":"way", "osm_id":117990783, - "attractiveness":8, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "947":{ - "name":"Square des Chamaillards", + "898":{ + "name":"Jardin Damia", "type":{ "landmark_type":"nature" }, "location":[ - 48.8253516, - 2.3692146 + 48.854895, + 2.3945985 ], "osm_type":"way", - "osm_id":118767352, - "attractiveness":7, + "osm_id":118651574, + "attractiveness":8, "must_do":false, - "n_tags":4, + "n_tags":5, "time_to_reach":0 }, - "948":{ + "899":{ "name":"Square Albert Tournaire", "type":{ "landmark_type":"nature" @@ -15178,12 +14394,12 @@ ], "osm_type":"way", "osm_id":118852153, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "949":{ + "900":{ "name":"Square Trousseau", "type":{ "landmark_type":"nature" @@ -15194,12 +14410,28 @@ ], "osm_type":"way", "osm_id":118878250, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "950":{ + "901":{ + "name":"Espace Édouard Vaillant", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9019175, + 2.3333031 + ], + "osm_type":"way", + "osm_id":119637302, + "attractiveness":8, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "902":{ "name":"Square Yves Klein", "type":{ "landmark_type":"nature" @@ -15210,28 +14442,12 @@ ], "osm_type":"way", "osm_id":122389763, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "951":{ - "name":"Square de Macerata", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8263334, - 2.2701582 - ], - "osm_type":"way", - "osm_id":124352831, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "952":{ + "903":{ "name":"Square Frédéric Rossif", "type":{ "landmark_type":"nature" @@ -15242,12 +14458,124 @@ ], "osm_type":"way", "osm_id":129148726, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "953":{ + "904":{ + "name":"Jardin Debergue - Rendez-Vous", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8462933, + 2.4046646 + ], + "osm_type":"way", + "osm_id":129881942, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "905":{ + "name":"Square Courteline", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8449581, + 2.4022524 + ], + "osm_type":"way", + "osm_id":129890096, + "attractiveness":12, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "906":{ + "name":"Square Georges Méliès", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8412134, + 2.4097978 + ], + "osm_type":"way", + "osm_id":130697130, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "907":{ + "name":"Square Émile Cohl", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8420942, + 2.4102484 + ], + "osm_type":"way", + "osm_id":130697131, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "908":{ + "name":"Square Pierre Pasquier", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8358723, + 2.4081721 + ], + "osm_type":"way", + "osm_id":130888996, + "attractiveness":6, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "909":{ + "name":"Square Van Vollenhoven", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8345779, + 2.4067941 + ], + "osm_type":"way", + "osm_id":131549198, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "910":{ + "name":"Square Emily Dickinson", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8509192, + 2.40017 + ], + "osm_type":"way", + "osm_id":131979604, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "911":{ "name":"Jardinières angles des rues Daumesnil - Charenton", "type":{ "landmark_type":"nature" @@ -15263,55 +14591,71 @@ "n_tags":2, "time_to_reach":0 }, - "954":{ - "name":"Jardin Biopark", + "912":{ + "name":"Bois de Vincennes", "type":{ "landmark_type":"nature" }, "location":[ - 48.8277592, - 2.3828761 + 48.8315046, + 2.4347158 ], "osm_type":"way", - "osm_id":141048432, - "attractiveness":6, + "osm_id":142107768, + "attractiveness":14, "must_do":false, - "n_tags":4, + "n_tags":9, "time_to_reach":0 }, - "955":{ - "name":"Square Georges Duhamel", + "913":{ + "name":"Square Jehan Rictus", "type":{ "landmark_type":"nature" }, "location":[ - 48.8320347, - 2.3782213 + 48.884868, + 2.3387222 ], "osm_type":"way", - "osm_id":141048438, - "attractiveness":7, + "osm_id":142320229, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "956":{ - "name":"Square Elstree-Borehamwood", + "914":{ + "name":"Square Marcel-Bleustein-Blanchet", "type":{ "landmark_type":"nature" }, "location":[ - 48.7948159, - 2.2926152 + 48.8878483, + 2.3437578 ], "osm_type":"way", - "osm_id":145346313, - "attractiveness":3, + "osm_id":148523783, + "attractiveness":13, "must_do":false, - "n_tags":2, + "n_tags":8, "time_to_reach":0 }, - "957":{ + "915":{ + "name":"Square Claude-Charpentier", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8875022, + 2.3418023 + ], + "osm_type":"way", + "osm_id":148890976, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "916":{ "name":"Jardin rue des Couronnes", "type":{ "landmark_type":"nature" @@ -15322,76 +14666,60 @@ ], "osm_type":"way", "osm_id":149164759, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "958":{ - "name":"Jardin Le Vallon", + "917":{ + "name":"Square Simplon", "type":{ "landmark_type":"nature" }, "location":[ - 48.7965954, - 2.3338809 + 48.8940576, + 2.3497473 ], "osm_type":"way", - "osm_id":150697498, - "attractiveness":5, + "osm_id":149737323, + "attractiveness":4, "must_do":false, - "n_tags":3, + "n_tags":2, "time_to_reach":0 }, - "959":{ - "name":"Parc André Citroën", + "918":{ + "name":"Square Monseigneur Maillet", "type":{ "landmark_type":"nature" }, "location":[ - 48.8413065, - 2.2746384 + 48.8769508, + 2.3933291 ], "osm_type":"way", - "osm_id":151567211, - "attractiveness":11, + "osm_id":149743025, + "attractiveness":13, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "919":{ + "name":"Square Suzanne Buisson", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8882157, + 2.3372454 + ], + "osm_type":"way", + "osm_id":154690027, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "960":{ - "name":"Square Pierre Larousse", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8226959, - 2.3026932 - ], - "osm_type":"way", - "osm_id":153410232, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "961":{ - "name":"Jardins Abbé Pierre - Grands Moulins", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8292665, - 2.3801404 - ], - "osm_type":"way", - "osm_id":154754263, - "attractiveness":21, - "must_do":false, - "n_tags":14, - "time_to_reach":0 - }, - "962":{ + "920":{ "name":"Parc de Belleville", "type":{ "landmark_type":"nature" @@ -15402,28 +14730,28 @@ ], "osm_type":"way", "osm_id":154892778, - "attractiveness":17, + "attractiveness":20, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "963":{ - "name":"Jardin Paul Nizan", + "921":{ + "name":"Square Sainte-Hélène", "type":{ "landmark_type":"nature" }, "location":[ - 48.822618, - 2.357489 + 48.8962254, + 2.3430597 ], "osm_type":"way", - "osm_id":157953364, - "attractiveness":8, + "osm_id":155119480, + "attractiveness":12, "must_do":false, - "n_tags":5, + "n_tags":7, "time_to_reach":0 }, - "964":{ + "922":{ "name":"Jardin Nelson Mandela", "type":{ "landmark_type":"nature" @@ -15434,12 +14762,12 @@ ], "osm_type":"way", "osm_id":159103475, - "attractiveness":22, + "attractiveness":25, "must_do":false, "n_tags":15, "time_to_reach":0 }, - "965":{ + "923":{ "name":"Square d'Alleray La Quintinie", "type":{ "landmark_type":"nature" @@ -15450,124 +14778,140 @@ ], "osm_type":"way", "osm_id":160276699, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "966":{ - "name":"Square Rue de la Paix", + "924":{ + "name":"Square Les Z'Arts", "type":{ "landmark_type":"nature" }, "location":[ - 48.8135059, - 2.3422228 + 48.905328, + 2.3396687 ], "osm_type":"way", - "osm_id":163755259, + "osm_id":161687382, + "attractiveness":8, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "925":{ + "name":"Jardin de la rue Ginette Neveu", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9000048, + 2.3452328 + ], + "osm_type":"way", + "osm_id":161718854, + "attractiveness":10, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "926":{ + "name":"Jardin René Binet", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8997243, + 2.338398 + ], + "osm_type":"way", + "osm_id":163131785, "attractiveness":6, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "967":{ - "name":"Îlot Vert", + "927":{ + "name":"Square Antoine Blondin", "type":{ "landmark_type":"nature" }, "location":[ - 48.8137637, - 2.3416716 + 48.8607016, + 2.4053074 ], "osm_type":"way", - "osm_id":163755260, - "attractiveness":9, + "osm_id":164373084, + "attractiveness":16, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "928":{ + "name":"Square Montgolfier", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8933447, + 2.4031291 + ], + "osm_type":"way", + "osm_id":167647007, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "968":{ - "name":"Square Jean-Claude Nicolas Forestier", + "929":{ + "name":"Square Hilaire Hega Penda", "type":{ "landmark_type":"nature" }, "location":[ - 48.8192571, - 2.3478177 + 48.8564256, + 2.428672 ], "osm_type":"way", - "osm_id":165814454, - "attractiveness":13, + "osm_id":167865907, + "attractiveness":7, "must_do":false, - "n_tags":8, + "n_tags":4, "time_to_reach":0 }, - "969":{ - "name":"Square Jean Moulin", + "930":{ + "name":"Terrain d'aventures", "type":{ "landmark_type":"nature" }, "location":[ - 48.8239254, - 2.3187109 + 48.8518026, + 2.4278557 ], "osm_type":"way", - "osm_id":166054977, - "attractiveness":11, + "osm_id":167897709, + "attractiveness":7, "must_do":false, - "n_tags":7, + "n_tags":4, "time_to_reach":0 }, - "970":{ - "name":"Jardin Monique Wittig", + "931":{ + "name":"Square du 19 Mars 1962", "type":{ "landmark_type":"nature" }, "location":[ - 48.828303, - 2.3054034 + 48.8709071, + 2.4228943 ], "osm_type":"way", - "osm_id":166054978, - "attractiveness":9, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "971":{ - "name":"Square Marin la Meslée", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8346932, - 2.2839353 - ], - "osm_type":"way", - "osm_id":167103323, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "972":{ - "name":"Place de Chateaubriand", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7910523, - 2.3245137 - ], - "osm_type":"way", - "osm_id":170524032, - "attractiveness":4, + "osm_id":170855057, + "attractiveness":3, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "973":{ + "932":{ "name":"Parc des Buttes-Chaumont", "type":{ "landmark_type":"nature" @@ -15578,12 +14922,12 @@ ], "osm_type":"way", "osm_id":173204460, - "attractiveness":25, + "attractiveness":28, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "974":{ + "933":{ "name":"Jardin de l'hôtel-Lamoignon - Mark-Ashton", "type":{ "landmark_type":"nature" @@ -15594,396 +14938,332 @@ ], "osm_type":"way", "osm_id":175660392, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "975":{ - "name":"Square Georges Pompidou", + "934":{ + "name":"Square des Batignolles", "type":{ "landmark_type":"nature" }, "location":[ - 48.7910152, - 2.2871767 + 48.887481, + 2.3163402 ], "osm_type":"way", - "osm_id":181439037, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "976":{ - "name":"Jardin sous-lieutenante Eugénie-Malika Djendi", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8382704, - 2.2769284 - ], - "osm_type":"way", - "osm_id":182761369, - "attractiveness":8, + "osm_id":176234171, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "977":{ - "name":"Jardin de l'ancien hôpital Boucicaut", + "935":{ + "name":"Square de la Madone", "type":{ "landmark_type":"nature" }, "location":[ - 48.8420212, - 2.2840694 + 48.8926884, + 2.3614964 ], "osm_type":"way", - "osm_id":183534028, - "attractiveness":10, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "978":{ - "name":"Jardin de la Montgolfière", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8269975, - 2.3539479 - ], - "osm_type":"way", - "osm_id":183628959, - "attractiveness":13, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "979":{ - "name":"Espace vert Robespierre", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8100776, - 2.3842533 - ], - "osm_type":"way", - "osm_id":194079368, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "980":{ - "name":"Square Léo Malet", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8049331, - 2.2953604 - ], - "osm_type":"way", - "osm_id":196944696, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "981":{ - "name":"Square de la République", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8155699, - 2.3185524 - ], - "osm_type":"way", - "osm_id":200280035, - "attractiveness":15, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "982":{ - "name":"Square du Serment de Koufra", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8215755, - 2.3231347 - ], - "osm_type":"way", - "osm_id":202297815, - "attractiveness":10, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "983":{ - "name":"Jardin de la Roseraie", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8184022, - 2.3220178 - ], - "osm_type":"way", - "osm_id":202541159, - "attractiveness":12, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "984":{ - "name":"Parc du Coteau", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7895125, - 2.3856342 - ], - "osm_type":"way", - "osm_id":203768953, - "attractiveness":2, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "985":{ - "name":"Jardin Michel Germa", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7935629, - 2.3871403 - ], - "osm_type":"way", - "osm_id":205895284, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "986":{ - "name":"Square Jules Coutant", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.81281, - 2.3884092 - ], - "osm_type":"way", - "osm_id":207598649, - "attractiveness":6, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "987":{ - "name":"Square Florence Blumenthal", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.827655, - 2.3673477 - ], - "osm_type":"way", - "osm_id":211636671, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "988":{ - "name":"Parc Départemental des Hautes Bruyères", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7896719, - 2.3492176 - ], - "osm_type":"way", - "osm_id":211971688, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "989":{ - "name":"Théâtre en plein air", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8033151, - 2.2552342 - ], - "osm_type":"way", - "osm_id":213862441, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "990":{ - "name":"Jardin Anna-Marly", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8250675, - 2.3031369 - ], - "osm_type":"way", - "osm_id":218842377, - "attractiveness":8, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "991":{ - "name":"Jardin des Deux Moulins", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8304951, - 2.3579059 - ], - "osm_type":"way", - "osm_id":220011097, - "attractiveness":7, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "992":{ - "name":"Square Pasteur", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8045082, - 2.367116 - ], - "osm_type":"way", - "osm_id":220949556, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "993":{ - "name":"Parc du Puits Saint-Étienne", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7962826, - 2.3038995 - ], - "osm_type":"way", - "osm_id":223143742, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "994":{ - "name":"Parc Richelieu", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7962998, - 2.3053623 - ], - "osm_type":"way", - "osm_id":223143743, - "attractiveness":2, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "995":{ - "name":"Square Robert Doisneau", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8129247, - 2.3231532 - ], - "osm_type":"way", - "osm_id":223387716, - "attractiveness":11, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "996":{ - "name":"Square Galloy", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8121297, - 2.3516714 - ], - "osm_type":"way", - "osm_id":224844048, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "997":{ - "name":"Square Saint-Etienne", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8002846, - 2.2676843 - ], - "osm_type":"way", - "osm_id":227573030, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "998":{ - "name":"Jardin Périer-Ginoux", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8133329, - 2.3195216 - ], - "osm_type":"way", - "osm_id":227933855, + "osm_id":180355685, "attractiveness":11, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "999":{ + "936":{ + "name":"Square Ernest-Chausson", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8873875, + 2.3250098 + ], + "osm_type":"way", + "osm_id":180688616, + "attractiveness":15, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "937":{ + "name":"Square du Docteur Variot", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8761496, + 2.4066262 + ], + "osm_type":"way", + "osm_id":183535184, + "attractiveness":12, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "938":{ + "name":"Square Curial", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8956419, + 2.374963 + ], + "osm_type":"way", + "osm_id":183821262, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "939":{ + "name":"Square Dampierre-Rouvet", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8939967, + 2.384231 + ], + "osm_type":"way", + "osm_id":183821348, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "940":{ + "name":"Jardin André-Ulmann", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8895026, + 2.2986088 + ], + "osm_type":"way", + "osm_id":185760173, + "attractiveness":19, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "941":{ + "name":"Jardin Pierre-Seghers", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8698168, + 2.3982236 + ], + "osm_type":"way", + "osm_id":188374132, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "942":{ + "name":"Square André-Malraux", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8412889, + 2.4332771 + ], + "osm_type":"way", + "osm_id":193131723, + "attractiveness":7, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "943":{ + "name":"Square de Montjoie", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9116384, + 2.3594605 + ], + "osm_type":"way", + "osm_id":193160754, + "attractiveness":8, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "944":{ + "name":"Square Diderot", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9079727, + 2.3617019 + ], + "osm_type":"way", + "osm_id":196098232, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "945":{ + "name":"Square Petit", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8850845, + 2.3820568 + ], + "osm_type":"way", + "osm_id":198055405, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "946":{ + "name":"Jardin Luc-Hoffmann", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8867839, + 2.37057 + ], + "osm_type":"way", + "osm_id":199023600, + "attractiveness":14, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "947":{ + "name":"Parc Alsace", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8921504, + 2.2985502 + ], + "osm_type":"way", + "osm_id":208037010, + "attractiveness":7, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "948":{ + "name":"Square Françoise-Hélène Jourda", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8865799, + 2.3622552 + ], + "osm_type":"way", + "osm_id":216269238, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "949":{ + "name":"Square Marc-Seguin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8919489, + 2.3611955 + ], + "osm_type":"way", + "osm_id":216269243, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "950":{ + "name":"Square Claude Bernard", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8993363, + 2.3751976 + ], + "osm_type":"way", + "osm_id":217621811, + "attractiveness":26, + "must_do":false, + "n_tags":16, + "time_to_reach":0 + }, + "951":{ + "name":"Square de l'Évangile", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8924402, + 2.3618463 + ], + "osm_type":"way", + "osm_id":218118748, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "952":{ + "name":"Square de la Cristallerie", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9133226, + 2.3622312 + ], + "osm_type":"way", + "osm_id":224495131, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "953":{ + "name":"Jardin Pédagogique Debain", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9027795, + 2.3491875 + ], + "osm_type":"way", + "osm_id":227286835, + "attractiveness":6, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "954":{ "name":"Le viaduc des arts", "type":{ "landmark_type":"nature" @@ -15994,92 +15274,44 @@ ], "osm_type":"way", "osm_id":228005266, - "attractiveness":9, + "attractiveness":11, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1000":{ - "name":"Jardin de la Marne", + "955":{ + "name":"Square Carpeaux", "type":{ "landmark_type":"nature" }, "location":[ - 48.8131871, - 2.3039034 + 48.8916885, + 2.3316484 ], "osm_type":"way", - "osm_id":228990953, - "attractiveness":10, + "osm_id":232871805, + "attractiveness":11, "must_do":false, - "n_tags":7, + "n_tags":6, "time_to_reach":0 }, - "1001":{ - "name":"Promenade d'Australie", + "956":{ + "name":"Square René Dewerpe", "type":{ "landmark_type":"nature" }, "location":[ - 48.8562709, - 2.2897202 + 48.9160939, + 2.4313941 ], "osm_type":"way", - "osm_id":230125065, - "attractiveness":8, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "1002":{ - "name":"Square des Guipons", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8049896, - 2.3627337 - ], - "osm_type":"way", - "osm_id":232113937, - "attractiveness":8, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1003":{ - "name":"Parc Jean-Loup Metton", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8167993, - 2.3145947 - ], - "osm_type":"way", - "osm_id":236116735, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "1004":{ - "name":"fruitier Paris", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8514171, - 2.2950533 - ], - "osm_type":"way", - "osm_id":236368242, + "osm_id":235877322, "attractiveness":4, "must_do":false, - "n_tags":3, + "n_tags":2, "time_to_reach":0 }, - "1005":{ + "957":{ "name":"Square René Viviani", "type":{ "landmark_type":"nature" @@ -16090,28 +15322,60 @@ ], "osm_type":"way", "osm_id":236820131, - "attractiveness":14, + "attractiveness":16, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "1006":{ - "name":"Square de l'Avenue de la Marne", + "958":{ + "name":"Square Belleville-Télégraphe", "type":{ "landmark_type":"nature" }, "location":[ - 48.8145023, - 2.3050789 + 48.8753414, + 2.3995673 ], "osm_type":"way", - "osm_id":240667817, - "attractiveness":15, + "osm_id":239050610, + "attractiveness":9, "must_do":false, - "n_tags":10, + "n_tags":5, "time_to_reach":0 }, - "1007":{ + "959":{ + "name":"Square Paul Robin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8936084, + 2.363358 + ], + "osm_type":"way", + "osm_id":239486233, + "attractiveness":6, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "960":{ + "name":"Jardin Pixérécourt", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8734518, + 2.396321 + ], + "osm_type":"way", + "osm_id":240931585, + "attractiveness":21, + "must_do":false, + "n_tags":13, + "time_to_reach":0 + }, + "961":{ "name":"Square Madeleine Tribolati", "type":{ "landmark_type":"nature" @@ -16122,76 +15386,124 @@ ], "osm_type":"way", "osm_id":241898171, - "attractiveness":14, + "attractiveness":16, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "1008":{ - "name":"Jardin Basch-Floquet", + "962":{ + "name":"Grand Parc des Docks de Saint-Ouen", "type":{ "landmark_type":"nature" }, "location":[ - 48.8116174, - 2.3198755 + 48.9156406, + 2.3273831 ], "osm_type":"way", - "osm_id":241953496, - "attractiveness":12, + "osm_id":241970652, + "attractiveness":11, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1009":{ - "name":"Promenade du Quai André Citroën", + "963":{ + "name":"Jardin du Carré de Baudouin", "type":{ "landmark_type":"nature" }, "location":[ - 48.8463173, - 2.2778146 + 48.8699315, + 2.3936038 ], "osm_type":"way", - "osm_id":253670807, + "osm_id":243557584, + "attractiveness":17, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "964":{ + "name":"Parc de la Manufacture des tabacs", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8930921, + 2.4151577 + ], + "osm_type":"way", + "osm_id":244813369, + "attractiveness":15, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "965":{ + "name":"Square de l’Église", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8917709, + 2.4134948 + ], + "osm_type":"way", + "osm_id":244822475, + "attractiveness":18, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "966":{ + "name":"Square Sainte Marguerite", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9019871, + 2.392207 + ], + "osm_type":"way", + "osm_id":245210084, + "attractiveness":14, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "967":{ + "name":"Square Raymond-Queneau", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.895822, + 2.3610383 + ], + "osm_type":"way", + "osm_id":245462496, "attractiveness":6, "must_do":false, - "n_tags":3, + "n_tags":4, "time_to_reach":0 }, - "1010":{ - "name":"Square Charles de Gaulle", + "968":{ + "name":"Square grand Auger", "type":{ "landmark_type":"nature" }, "location":[ - 48.8163781, - 2.3277485 + 48.891099, + 2.4005743 ], "osm_type":"way", - "osm_id":256327425, - "attractiveness":10, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "1011":{ - "name":"Square du Petit Arpajonnais", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8177734, - 2.3307567 - ], - "osm_type":"way", - "osm_id":256336307, + "osm_id":245948822, "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1012":{ + "969":{ "name":"Square Élisa Borey", "type":{ "landmark_type":"nature" @@ -16202,44 +15514,60 @@ ], "osm_type":"way", "osm_id":256437620, - "attractiveness":5, + "attractiveness":6, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1013":{ - "name":"Ferme urbaine de Malakoff", + "970":{ + "name":"Square de la rue des Mûriers", "type":{ "landmark_type":"nature" }, "location":[ - 48.8195982, - 2.2994207 + 48.8647232, + 2.3907489 ], "osm_type":"way", - "osm_id":258962402, - "attractiveness":11, + "osm_id":256969688, + "attractiveness":12, "must_do":false, - "n_tags":8, + "n_tags":7, "time_to_reach":0 }, - "1014":{ - "name":"Square Marc Lanvin", + "971":{ + "name":"Jardin Jane Vialle", "type":{ "landmark_type":"nature" }, "location":[ - 48.8194461, - 2.2983269 + 48.8951778, + 2.3536558 ], "osm_type":"way", - "osm_id":258962403, - "attractiveness":4, + "osm_id":257564771, + "attractiveness":11, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "972":{ + "name":"Jardinet de l'église Saint-Germain de Charonne", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.860255, + 2.4037142 + ], + "osm_type":"way", + "osm_id":259195540, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1015":{ + "973":{ "name":"Jardin des Colonnes - Ricardo Bofill", "type":{ "landmark_type":"nature" @@ -16250,76 +15578,92 @@ ], "osm_type":"way", "osm_id":261450265, - "attractiveness":10, + "attractiveness":11, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1016":{ - "name":"Square Eugène Féburier", + "974":{ + "name":"Jardin Nicole Maestracci", "type":{ "landmark_type":"nature" }, "location":[ - 48.8167205, - 2.2947625 + 48.8608675, + 2.410439 ], "osm_type":"way", - "osm_id":265281962, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1017":{ - "name":"Square Pierre Valette", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.816886, - 2.302319 - ], - "osm_type":"way", - "osm_id":266377593, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1018":{ - "name":"Mail Maurice Thorez", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8176404, - 2.2995984 - ], - "osm_type":"way", - "osm_id":268661677, + "osm_id":264441415, "attractiveness":13, "must_do":false, - "n_tags":9, + "n_tags":8, "time_to_reach":0 }, - "1019":{ - "name":"Parc François Mitterrand", + "975":{ + "name":"Jardin Emmi Pikler", "type":{ "landmark_type":"nature" }, "location":[ - 48.7907295, - 2.3105472 + 48.8716353, + 2.3952381 ], "osm_type":"way", - "osm_id":272170189, - "attractiveness":3, + "osm_id":264593957, + "attractiveness":9, "must_do":false, - "n_tags":2, + "n_tags":5, "time_to_reach":0 }, - "1020":{ + "976":{ + "name":"Jardin de la Justice", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8682927, + 2.4085101 + ], + "osm_type":"way", + "osm_id":268400319, + "attractiveness":9, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "977":{ + "name":"Jardin Frida Kahlo", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8722619, + 2.4129546 + ], + "osm_type":"way", + "osm_id":270368321, + "attractiveness":12, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "978":{ + "name":"Jardins Rosa Luxemburg", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8887662, + 2.3631392 + ], + "osm_type":"way", + "osm_id":272407912, + "attractiveness":16, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "979":{ "name":"La Petite Ceinture du 20e", "type":{ "landmark_type":"nature" @@ -16330,44 +15674,108 @@ ], "osm_type":"way", "osm_id":272547170, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1021":{ - "name":"Espace vert Marat", + "980":{ + "name":"Jardin des Orteaux", "type":{ "landmark_type":"nature" }, "location":[ - 48.8091353, - 2.3861241 + 48.8553708, + 2.4093557 ], "osm_type":"way", - "osm_id":276210118, - "attractiveness":3, + "osm_id":277586683, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "981":{ + "name":"Promenade Amália Rodrigues", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8815777, + 2.400215 + ], + "osm_type":"way", + "osm_id":278108936, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "982":{ + "name":"Place Charles Monselet", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8793053, + 2.4007452 + ], + "osm_type":"way", + "osm_id":278108961, + "attractiveness":4, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1022":{ - "name":"La Petite Ceinture du 15e", + "983":{ + "name":"Jardin Hérold", "type":{ "landmark_type":"nature" }, "location":[ - 48.8343945, - 2.2852377 + 48.882621, + 2.3950114 ], "osm_type":"way", - "osm_id":277811053, - "attractiveness":11, + "osm_id":278572868, + "attractiveness":10, "must_do":false, - "n_tags":8, + "n_tags":6, "time_to_reach":0 }, - "1023":{ + "984":{ + "name":"Jardin de l'îlot Riquet", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.889487, + 2.3736631 + ], + "osm_type":"way", + "osm_id":278876868, + "attractiveness":11, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "985":{ + "name":"Square Jean Leclaire", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8960028, + 2.3256518 + ], + "osm_type":"way", + "osm_id":281320579, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "986":{ "name":"Square Marius-Constant", "type":{ "landmark_type":"nature" @@ -16378,44 +15786,28 @@ ], "osm_type":"way", "osm_id":281323266, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1024":{ - "name":"Promenade du Fort", + "987":{ + "name":"Jardin des Petites Rigoles", "type":{ "landmark_type":"nature" }, "location":[ - 48.8049975, - 2.3909128 + 48.8711431, + 2.3915288 ], "osm_type":"way", - "osm_id":282933004, - "attractiveness":2, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1025":{ - "name":"Square Marie-Poussepin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8399096, - 2.2916834 - ], - "osm_type":"way", - "osm_id":289189169, - "attractiveness":11, + "osm_id":286449809, + "attractiveness":14, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1026":{ + "988":{ "name":"Square Georges Sarre", "type":{ "landmark_type":"nature" @@ -16426,12 +15818,28 @@ ], "osm_type":"way", "osm_id":289451440, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1027":{ + "989":{ + "name":"Square Eugénie Cotton", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.878513, + 2.3934603 + ], + "osm_type":"way", + "osm_id":289601041, + "attractiveness":8, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "990":{ "name":"Jardin de la rue du Chalet", "type":{ "landmark_type":"nature" @@ -16442,44 +15850,44 @@ ], "osm_type":"way", "osm_id":290586931, - "attractiveness":5, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1028":{ - "name":"Parc Monmousseau", + "991":{ + "name":"Square de la Paix", "type":{ "landmark_type":"nature" }, "location":[ - 48.8052921, - 2.3818085 + 48.848785, + 2.4157805 ], "osm_type":"way", - "osm_id":291761497, + "osm_id":290606579, + "attractiveness":9, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "992":{ + "name":"Square Georges Valbon", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.879081, + 2.4159816 + ], + "osm_type":"way", + "osm_id":293462525, "attractiveness":7, "must_do":false, - "n_tags":5, + "n_tags":4, "time_to_reach":0 }, - "1029":{ - "name":"Square des Acacias", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8065688, - 2.3733416 - ], - "osm_type":"way", - "osm_id":292903197, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1030":{ + "993":{ "name":"Square Colbert", "type":{ "landmark_type":"nature" @@ -16490,12 +15898,92 @@ ], "osm_type":"way", "osm_id":296037215, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "1031":{ + "994":{ + "name":"Square Henri Huchard", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8996911, + 2.3307321 + ], + "osm_type":"way", + "osm_id":296037217, + "attractiveness":11, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "995":{ + "name":"Square Compans", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.878015, + 2.392647 + ], + "osm_type":"way", + "osm_id":296939041, + "attractiveness":6, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "996":{ + "name":"Square du Petit-Bois", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8857602, + 2.3926619 + ], + "osm_type":"way", + "osm_id":300328218, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "997":{ + "name":"Square Jean-Moulin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8793154, + 2.4102407 + ], + "osm_type":"way", + "osm_id":302424722, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "998":{ + "name":"Square Henri Sellier", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8835696, + 2.4095194 + ], + "osm_type":"way", + "osm_id":302430135, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "999":{ "name":"Square Edmée Chandon", "type":{ "landmark_type":"nature" @@ -16506,28 +15994,28 @@ ], "osm_type":"way", "osm_id":304423650, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "1032":{ - "name":"Jardin des Nouzeaux", + "1000":{ + "name":"Jardin des Oiseaux", "type":{ "landmark_type":"nature" }, "location":[ - 48.8150471, - 2.2879139 + 48.8616297, + 2.4006267 ], "osm_type":"way", - "osm_id":307348464, - "attractiveness":4, + "osm_id":306857285, + "attractiveness":8, "must_do":false, - "n_tags":3, + "n_tags":4, "time_to_reach":0 }, - "1033":{ + "1001":{ "name":"Square Rébeval", "type":{ "landmark_type":"nature" @@ -16538,60 +16026,44 @@ ], "osm_type":"way", "osm_id":307363485, - "attractiveness":9, + "attractiveness":11, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1034":{ - "name":"Square du 11 Novembre 1918", + "1002":{ + "name":"Jardin Django Reinhardt", "type":{ "landmark_type":"nature" }, "location":[ - 48.8232159, - 2.2971525 + 48.85132, + 2.4213144 ], "osm_type":"way", - "osm_id":308432950, - "attractiveness":4, + "osm_id":308868069, + "attractiveness":6, "must_do":false, - "n_tags":3, + "n_tags":4, "time_to_reach":0 }, - "1035":{ - "name":"Square Louis Vicat", + "1003":{ + "name":"Square Georges Gay", "type":{ "landmark_type":"nature" }, "location":[ - 48.8252521, - 2.2999713 + 48.88301, + 2.4180549 ], "osm_type":"way", - "osm_id":308436943, - "attractiveness":4, + "osm_id":311824309, + "attractiveness":6, "must_do":false, - "n_tags":3, + "n_tags":4, "time_to_reach":0 }, - "1036":{ - "name":"Promenade Jean Moulin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8079828, - 2.3558295 - ], - "osm_type":"way", - "osm_id":312497782, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1037":{ + "1004":{ "name":"Jardin de la Folie-Regnault", "type":{ "landmark_type":"nature" @@ -16602,140 +16074,44 @@ ], "osm_type":"way", "osm_id":313144545, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1038":{ - "name":"Square de l'Insurrection", + "1005":{ + "name":"Square Saint-Louis", "type":{ "landmark_type":"nature" }, "location":[ - 48.8208835, - 2.2913443 + 48.8485868, + 2.4235826 ], "osm_type":"way", - "osm_id":313867045, - "attractiveness":6, + "osm_id":315611807, + "attractiveness":11, "must_do":false, - "n_tags":3, + "n_tags":6, "time_to_reach":0 }, - "1039":{ - "name":"Place du 8 Mai 1945", + "1006":{ + "name":"Square Louis Lumière", "type":{ "landmark_type":"nature" }, "location":[ - 48.8248335, - 2.2951116 + 48.859953, + 2.4116314 ], "osm_type":"way", - "osm_id":313996098, - "attractiveness":4, + "osm_id":320863521, + "attractiveness":8, "must_do":false, - "n_tags":3, + "n_tags":5, "time_to_reach":0 }, - "1040":{ - "name":"Square des Hautes Bruyères", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8246698, - 2.295971 - ], - "osm_type":"way", - "osm_id":313996099, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1041":{ - "name":"Square du Général de Gaulle", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8232566, - 2.2956164 - ], - "osm_type":"way", - "osm_id":314004767, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1042":{ - "name":"Square des Combattants de l'Afrique du Nord et des Territoires d'Outre-Mer", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8205988, - 2.2937639 - ], - "osm_type":"way", - "osm_id":314010934, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1043":{ - "name":"Espace extérieurs cité Louis Bertrand", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8161404, - 2.3788975 - ], - "osm_type":"way", - "osm_id":314437192, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1044":{ - "name":"Halte des peupliers", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8060778, - 2.3775739 - ], - "osm_type":"way", - "osm_id":314449486, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1045":{ - "name":"Square du Colombier", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8080503, - 2.3888052 - ], - "osm_type":"way", - "osm_id":314452951, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1046":{ + "1007":{ "name":"Square Léopold Achille", "type":{ "landmark_type":"nature" @@ -16746,60 +16122,44 @@ ], "osm_type":"way", "osm_id":322758768, - "attractiveness":16, + "attractiveness":18, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "1047":{ - "name":"Jardin des Thermopyles", + "1008":{ + "name":"Jardin sauvage Saint-Vincent", "type":{ "landmark_type":"nature" }, "location":[ - 48.8322169, - 2.3195123 + 48.8881743, + 2.3411511 ], "osm_type":"way", - "osm_id":327106745, - "attractiveness":10, + "osm_id":330237014, + "attractiveness":8, "must_do":false, - "n_tags":6, + "n_tags":4, "time_to_reach":0 }, - "1048":{ - "name":"Park Nelson Mandela", + "1009":{ + "name":"Square Lucienne Noublanche", "type":{ "landmark_type":"nature" }, "location":[ - 48.8042768, - 2.3144582 + 48.8852757, + 2.4000986 ], "osm_type":"way", - "osm_id":331894595, - "attractiveness":4, + "osm_id":331686334, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1049":{ - "name":"Jardin Charles-Trenet", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8218248, - 2.348488 - ], - "osm_type":"way", - "osm_id":334993212, - "attractiveness":9, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "1050":{ + "1010":{ "name":"Jardin Truillot", "type":{ "landmark_type":"nature" @@ -16810,60 +16170,12 @@ ], "osm_type":"way", "osm_id":336409585, - "attractiveness":12, + "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1051":{ - "name":"Square des Varennes", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8298202, - 2.2825687 - ], - "osm_type":"way", - "osm_id":337990696, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1052":{ - "name":"Parc du Coteau de Bièvre", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8064323, - 2.3426117 - ], - "osm_type":"way", - "osm_id":338195958, - "attractiveness":11, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "1053":{ - "name":"La Petite Ceinture du 14e", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8259152, - 2.3198321 - ], - "osm_type":"way", - "osm_id":339366085, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1054":{ + "1011":{ "name":"Square Alexandre-Luquet", "type":{ "landmark_type":"nature" @@ -16874,28 +16186,76 @@ ], "osm_type":"way", "osm_id":342601519, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1055":{ - "name":"Square Charles et Suzanne Comaille", + "1012":{ + "name":"Jardin de Vitaly", "type":{ "landmark_type":"nature" }, "location":[ - 48.7991238, - 2.3195174 + 48.85714, + 2.4016754 ], "osm_type":"way", - "osm_id":345727098, - "attractiveness":4, + "osm_id":344727547, + "attractiveness":11, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "1013":{ + "name":"Square Joël Le Tac", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8892411, + 2.338154 + ], + "osm_type":"way", + "osm_id":347398395, + "attractiveness":12, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "1014":{ + "name":"Square éphémère Le Point Virgule", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9024155, + 2.397356 + ], + "osm_type":"way", + "osm_id":349887549, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1056":{ + "1015":{ + "name":"Square Roland Dorgelès", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8884891, + 2.3395705 + ], + "osm_type":"way", + "osm_id":349925623, + "attractiveness":8, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "1016":{ "name":"Jardin des Archives Nationales", "type":{ "landmark_type":"nature" @@ -16906,12 +16266,12 @@ ], "osm_type":"way", "osm_id":350179508, - "attractiveness":5, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1057":{ + "1017":{ "name":"Jardin Lazare-Rachline", "type":{ "landmark_type":"nature" @@ -16922,28 +16282,60 @@ ], "osm_type":"way", "osm_id":350599788, + "attractiveness":9, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1018":{ + "name":"Jardin Jean Moulin", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9031663, + 2.3065682 + ], + "osm_type":"way", + "osm_id":352986799, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1019":{ + "name":"Bois Dormoy", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8874452, + 2.3588658 + ], + "osm_type":"way", + "osm_id":357402153, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1020":{ + "name":"Parc Marcel Bich", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8970032, + 2.3047018 + ], + "osm_type":"way", + "osm_id":358375852, "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1058":{ - "name":"Square de Kirovakan", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7975959, - 2.3022867 - ], - "osm_type":"way", - "osm_id":351907216, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1059":{ + "1021":{ "name":"Jardin de Reuilly - Paul-Pernin", "type":{ "landmark_type":"nature" @@ -16954,12 +16346,12 @@ ], "osm_type":"way", "osm_id":358417047, - "attractiveness":12, + "attractiveness":14, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "1060":{ + "1022":{ "name":"Square Saint-Gilles Grand Veneur - Pauline-Roland", "type":{ "landmark_type":"nature" @@ -16970,44 +16362,12 @@ ], "osm_type":"way", "osm_id":364239668, - "attractiveness":9, + "attractiveness":11, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1061":{ - "name":"Place des Droits de l'Enfant", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7967338, - 2.3032315 - ], - "osm_type":"way", - "osm_id":364772826, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1062":{ - "name":"Jardin Municipal des Monceaux", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7941012, - 2.3055783 - ], - "osm_type":"way", - "osm_id":365358396, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "1063":{ + "1023":{ "name":"Jardin des Rosiers – Joseph-Migneret", "type":{ "landmark_type":"nature" @@ -17018,92 +16378,76 @@ ], "osm_type":"way", "osm_id":365878540, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1064":{ - "name":"Square Toussaint Louverture", + "1024":{ + "name":"Jardin Léon Zyguel", "type":{ "landmark_type":"nature" }, "location":[ - 48.8080205, - 2.369053 + 48.8744297, + 2.3953666 ], "osm_type":"way", - "osm_id":372327300, - "attractiveness":10, + "osm_id":366942718, + "attractiveness":11, "must_do":false, - "n_tags":7, + "n_tags":6, "time_to_reach":0 }, - "1065":{ - "name":"Square de l'Abbé Derry", + "1025":{ + "name":"Jardin du Souvenir", "type":{ "landmark_type":"nature" }, "location":[ - 48.8229283, - 2.2796857 + 48.9132001, + 2.3394217 ], "osm_type":"way", - "osm_id":376210894, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1066":{ - "name":"Jardin d'Arménie", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.795433, - 2.3334496 - ], - "osm_type":"way", - "osm_id":378994035, - "attractiveness":6, + "osm_id":367811692, + "attractiveness":7, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1067":{ - "name":"Square Malleret-Joinville", + "1026":{ + "name":"Parc Le Temps des Cerises", "type":{ "landmark_type":"nature" }, "location":[ - 48.8114479, - 2.2813592 + 48.9200575, + 2.3537459 ], "osm_type":"way", - "osm_id":386993942, - "attractiveness":7, + "osm_id":374922654, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1068":{ - "name":"Square de Soweto", + "1027":{ + "name":"Square de la Villa Sainte-Croix", "type":{ "landmark_type":"nature" }, "location":[ - 48.812175, - 2.2807061 + 48.8941118, + 2.3248608 ], "osm_type":"way", - "osm_id":391791791, - "attractiveness":6, + "osm_id":379091606, + "attractiveness":10, "must_do":false, - "n_tags":4, + "n_tags":6, "time_to_reach":0 }, - "1069":{ + "1028":{ "name":"Square Jean Allemane", "type":{ "landmark_type":"nature" @@ -17114,12 +16458,12 @@ ], "osm_type":"way", "osm_id":391792674, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1070":{ + "1029":{ "name":"Square Olga Bancic", "type":{ "landmark_type":"nature" @@ -17130,156 +16474,92 @@ ], "osm_type":"way", "osm_id":392493782, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1071":{ - "name":"Parc de la Maison des Arts", + "1030":{ + "name":"Jardin Marcel Joseph-François", "type":{ "landmark_type":"nature" }, "location":[ - 48.7996861, - 2.2915146 + 48.881282, + 2.4222704 ], "osm_type":"way", - "osm_id":399021055, + "osm_id":394930550, "attractiveness":5, "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1072":{ - "name":"Jardin Dewoitine", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8047702, - 2.2841732 - ], - "osm_type":"way", - "osm_id":401846641, - "attractiveness":4, - "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1073":{ - "name":"Square André Malraux", + "1031":{ + "name":"Jardin Paul-Didier", "type":{ "landmark_type":"nature" }, "location":[ - 48.795312, - 2.2723474 + 48.895282, + 2.3201162 ], "osm_type":"way", - "osm_id":404646304, - "attractiveness":4, + "osm_id":395001988, + "attractiveness":13, "must_do":false, - "n_tags":3, + "n_tags":8, "time_to_reach":0 }, - "1074":{ - "name":"Square de la 2e D. B.", + "1032":{ + "name":"Square Anne Franck", "type":{ "landmark_type":"nature" }, "location":[ - 48.7953781, - 2.2749635 + 48.9010357, + 2.391558 ], "osm_type":"way", - "osm_id":404647744, - "attractiveness":4, + "osm_id":400470877, + "attractiveness":13, "must_do":false, - "n_tags":3, + "n_tags":8, "time_to_reach":0 }, - "1075":{ - "name":"Square du Panorama", + "1033":{ + "name":"Square Lapérouse", "type":{ "landmark_type":"nature" }, "location":[ - 48.7992996, - 2.2794359 + 48.9012136, + 2.3951103 ], "osm_type":"way", - "osm_id":410962891, - "attractiveness":4, + "osm_id":401638983, + "attractiveness":16, "must_do":false, - "n_tags":3, + "n_tags":10, "time_to_reach":0 }, - "1076":{ - "name":"Parc des Pierrettes", + "1034":{ + "name":"Square du Landy", "type":{ "landmark_type":"nature" }, "location":[ - 48.7968098, - 2.2913819 + 48.9149267, + 2.3428987 ], "osm_type":"way", - "osm_id":411023233, - "attractiveness":6, + "osm_id":429314402, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1077":{ - "name":"Square Dreyfus", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8091502, - 2.2851245 - ], - "osm_type":"way", - "osm_id":423001236, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1078":{ - "name":"Espace Verts du Douanier Rousseau", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8249362, - 2.3015906 - ], - "osm_type":"way", - "osm_id":427176757, - "attractiveness":4, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1079":{ - "name":"Parc des Pierrelais", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.7971199, - 2.2896603 - ], - "osm_type":"way", - "osm_id":427180856, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1080":{ + "1035":{ "name":"Jardin Pierre-Joseph Redouté", "type":{ "landmark_type":"nature" @@ -17290,44 +16570,60 @@ ], "osm_type":"way", "osm_id":429685061, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1081":{ - "name":"Esplanade de la Fraternité", + "1036":{ + "name":"Parc Stalingrad", "type":{ "landmark_type":"nature" }, "location":[ - 48.7925084, - 2.3343799 + 48.8914168, + 2.4078616 ], "osm_type":"way", - "osm_id":433841806, - "attractiveness":8, + "osm_id":431659522, + "attractiveness":9, "must_do":false, - "n_tags":4, + "n_tags":5, "time_to_reach":0 }, - "1082":{ - "name":"Jardin Toscan", + "1037":{ + "name":"Square Petit Méhul", "type":{ "landmark_type":"nature" }, "location":[ - 48.8207442, - 2.313009 + 48.8890195, + 2.4151723 ], "osm_type":"way", - "osm_id":439387631, - "attractiveness":15, + "osm_id":434818234, + "attractiveness":13, "must_do":false, - "n_tags":10, + "n_tags":8, "time_to_reach":0 }, - "1083":{ + "1038":{ + "name":"Square Faidherbe", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8842518, + 2.4111958 + ], + "osm_type":"way", + "osm_id":437067246, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "1039":{ "name":"Jardin Yılmaz Güney", "type":{ "landmark_type":"nature" @@ -17343,23 +16639,7 @@ "n_tags":2, "time_to_reach":0 }, - "1084":{ - "name":"Parc Sainte-Barbe", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.792315, - 2.2908733 - ], - "osm_type":"way", - "osm_id":444118039, - "attractiveness":5, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1085":{ + "1040":{ "name":"Jardin du Potager", "type":{ "landmark_type":"nature" @@ -17370,44 +16650,12 @@ ], "osm_type":"way", "osm_id":445230047, - "attractiveness":4, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1086":{ - "name":"Jardin de la Poterne-des-Peupliers", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8213303, - 2.3528809 - ], - "osm_type":"way", - "osm_id":448361310, - "attractiveness":8, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "1087":{ - "name":"Jardin de la maison des orphelins apprentis d'Auteuil", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8515757, - 2.2716166 - ], - "osm_type":"way", - "osm_id":455091923, - "attractiveness":8, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "1088":{ + "1041":{ "name":"Square Louis XVI", "type":{ "landmark_type":"nature" @@ -17418,12 +16666,12 @@ ], "osm_type":"way", "osm_id":456447739, - "attractiveness":16, + "attractiveness":19, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "1089":{ + "1042":{ "name":"Jardin de la Mairie du 8e", "type":{ "landmark_type":"nature" @@ -17434,44 +16682,12 @@ ], "osm_type":"way", "osm_id":456447743, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1090":{ - "name":"Square Anna de Noailles", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8752687, - 2.2779341 - ], - "osm_type":"way", - "osm_id":456850415, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1091":{ - "name":"Square Brignole-Galliera", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.865507, - 2.2966973 - ], - "osm_type":"way", - "osm_id":457478598, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1092":{ + "1043":{ "name":"Square du Général Morin", "type":{ "landmark_type":"nature" @@ -17482,44 +16698,12 @@ ], "osm_type":"way", "osm_id":457652441, - "attractiveness":10, + "attractiveness":12, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1093":{ - "name":"Cité Universitaire - Parc Ouest", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8202912, - 2.3316345 - ], - "osm_type":"way", - "osm_id":466176263, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1094":{ - "name":"Cité Universitaire - Parc Est", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8189033, - 2.3386904 - ], - "osm_type":"way", - "osm_id":466176883, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1095":{ + "1044":{ "name":"Jardin des Combattants-de-la-Nueve", "type":{ "landmark_type":"nature" @@ -17530,12 +16714,12 @@ ], "osm_type":"way", "osm_id":468735435, - "attractiveness":11, + "attractiveness":12, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1096":{ + "1045":{ "name":"Square Albert Schweitzer", "type":{ "landmark_type":"nature" @@ -17546,12 +16730,28 @@ ], "osm_type":"way", "osm_id":472237323, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1097":{ + "1046":{ + "name":"Jardin de la rue Noël Ballay", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8477384, + 2.4122689 + ], + "osm_type":"way", + "osm_id":472339017, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "1047":{ "name":"Square Paul Langevin", "type":{ "landmark_type":"nature" @@ -17562,12 +16762,12 @@ ], "osm_type":"way", "osm_id":473958172, - "attractiveness":15, + "attractiveness":18, "must_do":false, "n_tags":11, "time_to_reach":0 }, - "1098":{ + "1048":{ "name":"Jardin Carré", "type":{ "landmark_type":"nature" @@ -17578,28 +16778,28 @@ ], "osm_type":"way", "osm_id":473958174, - "attractiveness":4, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1099":{ - "name":"Jardin Christiane Desroches Noblecourt", + "1049":{ + "name":"Jardin promenade Cesária Évora", "type":{ "landmark_type":"nature" }, "location":[ - 48.8530423, - 2.2705255 + 48.8974458, + 2.3764431 ], "osm_type":"way", - "osm_id":474032039, - "attractiveness":10, + "osm_id":474634669, + "attractiveness":6, "must_do":false, - "n_tags":6, + "n_tags":3, "time_to_reach":0 }, - "1100":{ + "1050":{ "name":"Jardin Federica Montseny", "type":{ "landmark_type":"nature" @@ -17610,12 +16810,12 @@ ], "osm_type":"way", "osm_id":475589178, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1101":{ + "1051":{ "name":"Square Saint-Médard", "type":{ "landmark_type":"nature" @@ -17626,12 +16826,12 @@ ], "osm_type":"way", "osm_id":475591498, - "attractiveness":15, + "attractiveness":17, "must_do":false, "n_tags":10, "time_to_reach":0 }, - "1102":{ + "1052":{ "name":"Jardin des Terroirs", "type":{ "landmark_type":"nature" @@ -17642,28 +16842,92 @@ ], "osm_type":"way", "osm_id":476602310, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1103":{ - "name":"Jardin Octave-Mirbeau", + "1053":{ + "name":"Coulée verte", "type":{ "landmark_type":"nature" }, "location":[ - 48.8378417, - 2.2554935 + 48.8403625, + 2.4051868 ], "osm_type":"way", - "osm_id":481566185, + "osm_id":479550070, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1054":{ + "name":"Parc de la résidence de la vega", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8392212, + 2.4053532 + ], + "osm_type":"way", + "osm_id":479550073, "attractiveness":3, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1104":{ + "1055":{ + "name":"Jardin Mélinée Manouchian", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8481892, + 2.4138794 + ], + "osm_type":"way", + "osm_id":490966720, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1056":{ + "name":"Square Adrien Agnès", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9158677, + 2.3710641 + ], + "osm_type":"way", + "osm_id":495199253, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "1057":{ + "name":"Jardin Aimé Césaire", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8842293, + 2.4063945 + ], + "osm_type":"way", + "osm_id":502857889, + "attractiveness":8, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1058":{ "name":"Jardin intérieur Saint-Lazare", "type":{ "landmark_type":"nature" @@ -17674,92 +16938,140 @@ ], "osm_type":"way", "osm_id":504626080, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1105":{ - "name":"Jardin Verdun-Molière", + "1059":{ + "name":"Parc Simone Veil", "type":{ "landmark_type":"nature" }, "location":[ - 48.8108426, - 2.3160876 + 48.877103, + 2.412911 ], "osm_type":"way", - "osm_id":522542110, - "attractiveness":14, + "osm_id":537779921, + "attractiveness":11, "must_do":false, - "n_tags":8, + "n_tags":7, "time_to_reach":0 }, - "1106":{ - "name":"Jardinets de la Place de la Porte d'Auteuil", + "1060":{ + "name":"Square Alexis Clérel de Tocqueville", "type":{ "landmark_type":"nature" }, "location":[ - 48.8485103, - 2.2583749 + 48.8866777, + 2.3066831 ], "osm_type":"way", - "osm_id":531407913, - "attractiveness":3, + "osm_id":542998428, + "attractiveness":10, "must_do":false, - "n_tags":2, + "n_tags":6, "time_to_reach":0 }, - "1107":{ - "name":"Jardin Saïda", + "1061":{ + "name":"Forêt linéaire Nord", "type":{ "landmark_type":"nature" }, "location":[ - 48.8314434, - 2.2949089 + 48.9008618, + 2.3786064 ], "osm_type":"way", - "osm_id":535985024, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1108":{ - "name":"Square Marin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.827574, - 2.3098681 - ], - "osm_type":"way", - "osm_id":574683225, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1109":{ - "name":"Square Brancion", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8262402, - 2.3012914 - ], - "osm_type":"way", - "osm_id":576370050, - "attractiveness":7, + "osm_id":547059083, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1110":{ + "1062":{ + "name":"Square Maria Vérone", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8969236, + 2.3358878 + ], + "osm_type":"way", + "osm_id":550244201, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1063":{ + "name":"Square Virginia Woolf", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8499435, + 2.428276 + ], + "osm_type":"way", + "osm_id":559553734, + "attractiveness":8, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1064":{ + "name":"Square Émilienne Moreau Evrard", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9163056, + 2.3788177 + ], + "osm_type":"way", + "osm_id":566130890, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1065":{ + "name":"jardin Louise-Weber-dite-La-Goulue", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8864089, + 2.3368967 + ], + "osm_type":"way", + "osm_id":570236762, + "attractiveness":16, + "must_do":false, + "n_tags":10, + "time_to_reach":0 + }, + "1066":{ + "name":"Square Nadar", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8859366, + 2.3418689 + ], + "osm_type":"way", + "osm_id":570270071, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "1067":{ "name":"Square Montholon", "type":{ "landmark_type":"nature" @@ -17770,28 +17082,28 @@ ], "osm_type":"way", "osm_id":579263858, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1111":{ - "name":"Square de la Libération", + "1068":{ + "name":"Square des 31000 et des 45000", "type":{ "landmark_type":"nature" }, "location":[ - 48.8037207, - 2.3365197 + 48.9138493, + 2.3324482 ], "osm_type":"way", - "osm_id":588059322, - "attractiveness":4, + "osm_id":579604099, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1112":{ + "1069":{ "name":"Jardin du Père-Armand-David", "type":{ "landmark_type":"nature" @@ -17802,60 +17114,28 @@ ], "osm_type":"way", "osm_id":588324415, - "attractiveness":10, + "attractiveness":11, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1113":{ - "name":"Jardin du Petit Bois", + "1070":{ + "name":"Jardin Hans et Sophie Scholl", "type":{ "landmark_type":"nature" }, "location":[ - 48.8145244, - 2.3314149 + 48.9000696, + 2.320645 ], "osm_type":"way", - "osm_id":592796821, - "attractiveness":3, + "osm_id":600611810, + "attractiveness":8, "must_do":false, - "n_tags":2, + "n_tags":5, "time_to_reach":0 }, - "1114":{ - "name":"Square Croizat", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8129427, - 2.350884 - ], - "osm_type":"way", - "osm_id":593089857, - "attractiveness":3, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1115":{ - "name":"Jardin Clara-Zetkin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8214442, - 2.3758945 - ], - "osm_type":"way", - "osm_id":598852802, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1116":{ + "1071":{ "name":"Jardin Louise Talbot et Augustin Avrial", "type":{ "landmark_type":"nature" @@ -17866,220 +17146,140 @@ ], "osm_type":"way", "osm_id":601688775, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1117":{ - "name":"Jardin Olympiades", + "1072":{ + "name":"Square du Quai de la Seine", "type":{ "landmark_type":"nature" }, "location":[ - 48.8245293, - 2.365546 + 48.8853091, + 2.3721553 ], "osm_type":"way", - "osm_id":608972570, - "attractiveness":5, + "osm_id":612663889, + "attractiveness":13, "must_do":false, - "n_tags":3, + "n_tags":8, "time_to_reach":0 }, - "1118":{ - "name":"Jardin sur le toit", + "1073":{ + "name":"Square Marmottan", "type":{ "landmark_type":"nature" }, "location":[ - 48.8111208, - 2.3287609 + 48.9066639, + 2.3335279 ], "osm_type":"way", - "osm_id":608987054, - "attractiveness":5, + "osm_id":613543188, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1074":{ + "name":"Square Jean Le Bitoux", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8558966, + 2.4181711 + ], + "osm_type":"way", + "osm_id":622371762, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1119":{ - "name":"Jardin de l'église Sainte-Jeanne-de-Chantal", + "1075":{ + "name":"Square Carnot - Jardin du Roy", "type":{ "landmark_type":"nature" }, "location":[ - 48.8388343, - 2.2564376 + 48.8415458, + 2.4333305 ], "osm_type":"way", - "osm_id":621317814, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1120":{ - "name":"Square Valentine Schlegel", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8303928, - 2.3133875 - ], - "osm_type":"way", - "osm_id":621322870, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1121":{ - "name":"Jardinières angle des rues de Tolbiac - Baudricourt", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8265414, - 2.3638093 - ], - "osm_type":"way", - "osm_id":625919254, + "osm_id":623935833, "attractiveness":4, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1122":{ - "name":"Square Henri Dunant", + "1076":{ + "name":"Jardins de la DS", "type":{ "landmark_type":"nature" }, "location":[ - 48.802981, - 2.2847714 + 48.9200268, + 2.3176111 ], "osm_type":"way", - "osm_id":627032284, - "attractiveness":4, + "osm_id":627860638, + "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1123":{ - "name":"Jardin Jules Noël", + "1077":{ + "name":"Parc Marguerite Yourcenar", "type":{ "landmark_type":"nature" }, "location":[ - 48.8242855, - 2.3147458 + 48.9184843, + 2.3163862 ], "osm_type":"way", - "osm_id":627607894, + "osm_id":627992411, "attractiveness":4, "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1078":{ + "name":"Jardins et Vignes", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8900176, + 2.3298673 + ], + "osm_type":"way", + "osm_id":669147415, + "attractiveness":5, + "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1124":{ - "name":"Square La Fontaine", + "1079":{ + "name":"Terrain de boules Boulevard de Reims", "type":{ "landmark_type":"nature" }, "location":[ - 48.8116631, - 2.3175031 + 48.8887271, + 2.2971561 ], "osm_type":"way", - "osm_id":628292444, - "attractiveness":11, + "osm_id":671211475, + "attractiveness":5, "must_do":false, - "n_tags":7, + "n_tags":3, "time_to_reach":0 }, - "1125":{ - "name":"Square Georges Bouzerait", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8186898, - 2.3244884 - ], - "osm_type":"way", - "osm_id":628293918, - "attractiveness":13, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "1126":{ - "name":"Square des Oliviers", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8183315, - 2.3232639 - ], - "osm_type":"way", - "osm_id":628295773, - "attractiveness":13, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "1127":{ - "name":"Jardin Villa Leblanc", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8169599, - 2.3217709 - ], - "osm_type":"way", - "osm_id":628299663, - "attractiveness":13, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "1128":{ - "name":"Jardin Descartes", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8109067, - 2.3173799 - ], - "osm_type":"way", - "osm_id":628300514, - "attractiveness":14, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "1129":{ - "name":"Allée des Cygnes", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8527761, - 2.2835698 - ], - "osm_type":"way", - "osm_id":647181807, - "attractiveness":7, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "1130":{ + "1080":{ "name":"Jardin Monica Vitti", "type":{ "landmark_type":"nature" @@ -18090,12 +17290,12 @@ ], "osm_type":"way", "osm_id":680335218, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1131":{ + "1081":{ "name":"Jardin Albert-Schweitzer", "type":{ "landmark_type":"nature" @@ -18106,204 +17306,76 @@ ], "osm_type":"way", "osm_id":680895435, - "attractiveness":11, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1132":{ - "name":"Parc Sainte-Périne", + "1082":{ + "name":"Forêt linéaire", "type":{ "landmark_type":"nature" }, "location":[ - 48.8443087, - 2.2690658 + 48.8999505, + 2.3785223 ], "osm_type":"way", - "osm_id":682409543, + "osm_id":683095531, "attractiveness":6, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1133":{ - "name":"Jardin du Ranelagh", + "1083":{ + "name":"Square Fernand Foureau", "type":{ "landmark_type":"nature" }, "location":[ - 48.8592638, - 2.2684699 + 48.8464817, + 2.4116554 ], "osm_type":"way", - "osm_id":683921616, + "osm_id":683451954, "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1134":{ - "name":"Jardin d'immeubles Albert-Bartholomé", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8278833, - 2.2973852 - ], - "osm_type":"way", - "osm_id":685820780, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1135":{ - "name":"Tir aux Pigeons", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8734657, - 2.2592058 - ], - "osm_type":"way", - "osm_id":697607467, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1136":{ - "name":"Résidence Séverine", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8295175, - 2.2806451 - ], - "osm_type":"way", - "osm_id":698719357, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1137":{ - "name":"Square des États-Unis", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8174634, - 2.3165395 - ], - "osm_type":"way", - "osm_id":702119197, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "1138":{ - "name":"Jardin de la vanne", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8149691, - 2.3292317 - ], - "osm_type":"way", - "osm_id":702273972, - "attractiveness":5, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1139":{ + "1084":{ "name":"Square Jean Jaurès", "type":{ "landmark_type":"nature" }, "location":[ - 48.7902478, - 2.2874139 + 48.9215624, + 2.4075786 ], "osm_type":"way", - "osm_id":711321200, - "attractiveness":2, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1140":{ - "name":"Jardin Élisabeth Boselli", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8335824, - 2.2849949 - ], - "osm_type":"way", - "osm_id":711659077, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1141":{ - "name":"Parc Émile Zola", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8027826, - 2.372457 - ], - "osm_type":"way", - "osm_id":714032736, - "attractiveness":5, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1142":{ - "name":"Jardin de la Cour d'Honneur", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8288076, - 2.277821 - ], - "osm_type":"way", - "osm_id":714713961, + "osm_id":712722293, "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1143":{ - "name":"Jardins du Belvédère", + "1085":{ + "name":"Square Jollois", "type":{ "landmark_type":"nature" }, "location":[ - 48.795709, - 2.351956 + 48.9216053, + 2.3853267 ], "osm_type":"way", - "osm_id":715412828, - "attractiveness":4, + "osm_id":723057649, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1144":{ + "1086":{ "name":"Jardin Marie Curie", "type":{ "landmark_type":"nature" @@ -18314,12 +17386,28 @@ ], "osm_type":"way", "osm_id":735133918, - "attractiveness":6, + "attractiveness":7, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1145":{ + "1087":{ + "name":"Le Moulin de la Palette", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8870941, + 2.3607265 + ], + "osm_type":"way", + "osm_id":740494267, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1088":{ "name":"Square Oronce Fine", "type":{ "landmark_type":"nature" @@ -18330,92 +17418,220 @@ ], "osm_type":"way", "osm_id":744830347, + "attractiveness":14, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "1089":{ + "name":"square Pasteur Henri Roser", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.916752, + 2.3678371 + ], + "osm_type":"way", + "osm_id":763204547, + "attractiveness":12, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1090":{ + "name":"Square du 8 mai 1945", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8909854, + 2.4102454 + ], + "osm_type":"way", + "osm_id":776697805, "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1146":{ - "name":"Square Édith Piaf", + "1091":{ + "name":"Square Petit Auger", "type":{ "landmark_type":"nature" }, "location":[ - 48.8083332, - 2.3489486 + 48.8933361, + 2.3992057 ], "osm_type":"way", - "osm_id":751922878, - "attractiveness":3, + "osm_id":777250205, + "attractiveness":8, "must_do":false, - "n_tags":2, + "n_tags":4, "time_to_reach":0 }, - "1147":{ - "name":"Espace vert de la Reine-Blanche", + "1092":{ + "name":"Square de la Zac du port", "type":{ "landmark_type":"nature" }, "location":[ - 48.8116487, - 2.3494618 + 48.8952224, + 2.4198603 ], "osm_type":"way", - "osm_id":765745222, - "attractiveness":4, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1148":{ - "name":"Jardin mémorial des enfants du Vél' d'Hiv'", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8535564, - 2.2887894 - ], - "osm_type":"way", - "osm_id":767547602, - "attractiveness":10, + "osm_id":777250207, + "attractiveness":12, "must_do":false, "n_tags":7, "time_to_reach":0 }, - "1149":{ - "name":"Jardin Claude Debussy", + "1093":{ + "name":"Square partagé Langevin", "type":{ "landmark_type":"nature" }, "location":[ - 48.8670018, - 2.2708633 + 48.8894476, + 2.4147245 ], "osm_type":"way", - "osm_id":776795708, + "osm_id":777256200, "attractiveness":6, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1150":{ - "name":"Promenade du Loing et du Lunain", + "1094":{ + "name":"Square Vaucanson", "type":{ "landmark_type":"nature" }, "location":[ - 48.7926648, - 2.3261519 + 48.8896788, + 2.4043481 ], "osm_type":"way", - "osm_id":798763471, - "attractiveness":4, + "osm_id":777334888, + "attractiveness":11, "must_do":false, - "n_tags":2, + "n_tags":7, "time_to_reach":0 }, - "1151":{ + "1095":{ + "name":"Mail Pierre Desproges", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8949999, + 2.4066759 + ], + "osm_type":"way", + "osm_id":777477474, + "attractiveness":18, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "1096":{ + "name":"Square Formagne", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8940476, + 2.4219961 + ], + "osm_type":"way", + "osm_id":777830921, + "attractiveness":13, + "must_do":false, + "n_tags":8, + "time_to_reach":0 + }, + "1097":{ + "name":"Square Anatole France", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8917825, + 2.4229861 + ], + "osm_type":"way", + "osm_id":777830924, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "1098":{ + "name":"Jardin des Abbesses", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8852479, + 2.3385536 + ], + "osm_type":"way", + "osm_id":778261293, + "attractiveness":10, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1099":{ + "name":"Square du 19 mars 1962", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8961709, + 2.4065715 + ], + "osm_type":"way", + "osm_id":810157840, + "attractiveness":6, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "1100":{ + "name":"Square du 21 Avril 1944", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8969435, + 2.3572744 + ], + "osm_type":"way", + "osm_id":810350537, + "attractiveness":6, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "1101":{ + "name":"Parc Henri Barbusse", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8880857, + 2.4196981 + ], + "osm_type":"way", + "osm_id":813706925, + "attractiveness":11, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "1102":{ "name":"Jardin Martha Desrumaux", "type":{ "landmark_type":"nature" @@ -18426,124 +17642,268 @@ ], "osm_type":"way", "osm_id":818166677, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1152":{ - "name":"Square Colette", + "1103":{ + "name":"Square Jean Ferrat", "type":{ "landmark_type":"nature" }, "location":[ - 48.8086756, - 2.2990793 + 48.903358, + 2.3882237 ], "osm_type":"way", - "osm_id":827907580, + "osm_id":838315567, + "attractiveness":15, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "1104":{ + "name":"Square Claude Goislot", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9179735, + 2.3927614 + ], + "osm_type":"way", + "osm_id":838326052, + "attractiveness":11, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "1105":{ + "name":"Square de la Villette", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9030736, + 2.3865783 + ], + "osm_type":"way", + "osm_id":838332060, + "attractiveness":11, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "1106":{ + "name":"Square Saganta", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.911422, + 2.3810887 + ], + "osm_type":"way", + "osm_id":838357749, + "attractiveness":16, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "1107":{ + "name":"Square Georges Leblanc", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.914215, + 2.4002443 + ], + "osm_type":"way", + "osm_id":838360557, + "attractiveness":11, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "1108":{ + "name":"Terrains multisports", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9043937, + 2.3864104 + ], + "osm_type":"way", + "osm_id":839298413, "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1153":{ - "name":"Jardin Laure Albin Guillot", + "1109":{ + "name":"Place Bernard Amiot et Bernard Legrand", "type":{ "landmark_type":"nature" }, "location":[ - 48.8174797, - 2.357893 + 48.9188164, + 2.3036664 ], "osm_type":"way", - "osm_id":832936860, - "attractiveness":7, + "osm_id":842441696, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "1110":{ + "name":"Forêt urbaine", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9040117, + 2.3665748 + ], + "osm_type":"way", + "osm_id":845179531, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1111":{ + "name":"Parc du rucher d'Aubervilliers", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9091256, + 2.3871926 + ], + "osm_type":"way", + "osm_id":845481131, + "attractiveness":8, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1154":{ - "name":"Square des Périchaux", + "1112":{ + "name":"La Petite Ceinture du 19ème", "type":{ "landmark_type":"nature" }, "location":[ - 48.8297529, - 2.2989946 + 48.8958777, + 2.3789437 ], "osm_type":"way", - "osm_id":834674045, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "1155":{ - "name":"Square Condorcet", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8112576, - 2.2649064 - ], - "osm_type":"way", - "osm_id":879460929, + "osm_id":845793683, "attractiveness":4, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1156":{ - "name":"Jardins du Verger", + "1113":{ + "name":"Jardin Marguerite Huré", "type":{ "landmark_type":"nature" }, "location":[ - 48.7940878, - 2.3729165 + 48.8463317, + 2.413267 ], "osm_type":"way", - "osm_id":882821716, - "attractiveness":3, + "osm_id":871937498, + "attractiveness":7, "must_do":false, - "n_tags":2, + "n_tags":4, "time_to_reach":0 }, - "1157":{ - "name":"Square Emmanuel Chabrier", + "1114":{ + "name":"Petite Ceinture du 19e", "type":{ "landmark_type":"nature" }, "location":[ - 48.7933682, - 2.375037 + 48.8886573, + 2.3847387 ], "osm_type":"way", - "osm_id":882821720, - "attractiveness":3, + "osm_id":878389179, + "attractiveness":14, "must_do":false, - "n_tags":2, + "n_tags":9, "time_to_reach":0 }, - "1158":{ - "name":"Parc Laboissière", + "1115":{ + "name":"Square Guy Môquet", "type":{ "landmark_type":"nature" }, "location":[ - 48.7917188, - 2.2886331 + 48.9240135, + 2.4134346 ], "osm_type":"way", - "osm_id":927072924, - "attractiveness":2, + "osm_id":883901370, + "attractiveness":7, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "1116":{ + "name":"Jardin Jean Mercier", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9084547, + 2.3029795 + ], + "osm_type":"way", + "osm_id":887023481, + "attractiveness":5, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1159":{ + "1117":{ + "name":"Jardin Paule Minck", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8717689, + 2.4062762 + ], + "osm_type":"way", + "osm_id":947080328, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "1118":{ + "name":"Square Marcel Paul", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9026035, + 2.3256264 + ], + "osm_type":"way", + "osm_id":947255079, + "attractiveness":4, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1119":{ "name":"Jardin du Père Teilhard de Chardin", "type":{ "landmark_type":"nature" @@ -18554,28 +17914,60 @@ ], "osm_type":"way", "osm_id":953865485, - "attractiveness":7, + "attractiveness":8, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1160":{ - "name":"Jardin de Penamacor", + "1120":{ + "name":"Jardin Nusch Éluard", "type":{ "landmark_type":"nature" }, "location":[ - 48.80081, - 2.2628704 + 48.8925863, + 2.3593458 ], "osm_type":"way", - "osm_id":961014838, - "attractiveness":9, + "osm_id":958322551, + "attractiveness":6, "must_do":false, - "n_tags":6, + "n_tags":3, "time_to_reach":0 }, - "1161":{ + "1121":{ + "name":"Jardin Curial", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8958112, + 2.3765268 + ], + "osm_type":"way", + "osm_id":967077447, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1122":{ + "name":"Parc Morel (skateboard)", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9004194, + 2.3193783 + ], + "osm_type":"way", + "osm_id":968156415, + "attractiveness":5, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "1123":{ "name":"Promenade Jean-Jacques Sempé", "type":{ "landmark_type":"nature" @@ -18586,12 +17978,28 @@ ], "osm_type":"way", "osm_id":968787390, - "attractiveness":5, + "attractiveness":6, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1162":{ + "1124":{ + "name":"Square Gisèle Halimi", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9171514, + 2.4089031 + ], + "osm_type":"way", + "osm_id":985529205, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1125":{ "name":"Jardin Berthe Weill", "type":{ "landmark_type":"nature" @@ -18602,28 +18010,12 @@ ], "osm_type":"way", "osm_id":989739069, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1163":{ - "name":"Square des Justes Parmi les Nations", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8099586, - 2.3738671 - ], - "osm_type":"way", - "osm_id":993037718, - "attractiveness":4, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1164":{ + "1126":{ "name":"Jardin Marielle Franco", "type":{ "landmark_type":"nature" @@ -18634,76 +18026,76 @@ ], "osm_type":"way", "osm_id":993045874, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "1165":{ - "name":"Jardin d'Isoré", + "1127":{ + "name":"Le ver tétu", "type":{ "landmark_type":"nature" }, "location":[ - 48.8288967, - 2.3330535 + 48.8952561, + 2.3773943 ], "osm_type":"way", - "osm_id":993514293, - "attractiveness":6, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1166":{ - "name":"Parc Gabriel Cosson", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8013383, - 2.3167244 - ], - "osm_type":"way", - "osm_id":1022614650, - "attractiveness":2, - "must_do":false, - "n_tags":2, - "time_to_reach":0 - }, - "1167":{ - "name":"Square Bessin", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8306613, - 2.3053713 - ], - "osm_type":"way", - "osm_id":1041624552, + "osm_id":997696873, "attractiveness":3, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1168":{ - "name":"Parcop", + "1128":{ + "name":"Jardin Espérance", "type":{ "landmark_type":"nature" }, "location":[ - 48.805412, - 2.3456845 + 48.9052652, + 2.3855148 ], "osm_type":"way", - "osm_id":1051801801, - "attractiveness":6, + "osm_id":998703278, + "attractiveness":12, "must_do":false, - "n_tags":4, + "n_tags":7, "time_to_reach":0 }, - "1169":{ + "1129":{ + "name":"Parc Foucault", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9006799, + 2.3109703 + ], + "osm_type":"way", + "osm_id":1022523481, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1130":{ + "name":"Jardin éphémère", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9030392, + 2.3374987 + ], + "osm_type":"way", + "osm_id":1074618792, + "attractiveness":9, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1131":{ "name":"Jardin de l'Hôtel de Sens", "type":{ "landmark_type":"nature" @@ -18714,44 +18106,28 @@ ], "osm_type":"way", "osm_id":1076267490, - "attractiveness":8, + "attractiveness":9, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1170":{ - "name":"Square du Chanoine Viollet", + "1132":{ + "name":"Square Jacques Manavian", "type":{ "landmark_type":"nature" }, "location":[ - 48.8312619, - 2.3206523 + 48.899006, + 2.3245959 ], "osm_type":"way", - "osm_id":1093016344, - "attractiveness":14, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "1171":{ - "name":"Jardin Du Grand-Pavois", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8372042, - 2.2819825 - ], - "osm_type":"way", - "osm_id":1100805212, + "osm_id":1104894585, "attractiveness":5, "must_do":false, "n_tags":3, "time_to_reach":0 }, - "1172":{ + "1133":{ "name":"Jardin Vivienne", "type":{ "landmark_type":"nature" @@ -18767,103 +18143,119 @@ "n_tags":2, "time_to_reach":0 }, - "1173":{ - "name":"Jardin du Docteur H. Damlamian", + "1134":{ + "name":"Square Django Reinhardt", "type":{ "landmark_type":"nature" }, "location":[ - 48.7989224, - 2.2601782 + 48.8517209, + 2.421393 ], "osm_type":"way", - "osm_id":1136152534, - "attractiveness":5, + "osm_id":1124870446, + "attractiveness":3, "must_do":false, - "n_tags":3, + "n_tags":2, "time_to_reach":0 }, - "1174":{ - "name":"Square Jules-Durand", + "1135":{ + "name":"Square de la Salamandre", "type":{ "landmark_type":"nature" }, "location":[ - 48.8308885, - 2.3223847 + 48.8579512, + 2.4060505 ], "osm_type":"way", - "osm_id":1170413363, - "attractiveness":6, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1175":{ - "name":"Place José Martí", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8617506, - 2.2853034 - ], - "osm_type":"way", - "osm_id":1184939377, - "attractiveness":9, + "osm_id":1136029052, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1176":{ - "name":"Square Dominique Dimey", + "1136":{ + "name":"Espace Coluche", "type":{ "landmark_type":"nature" }, "location":[ - 48.7992812, - 2.3103988 + 48.89971, + 2.3151209 ], "osm_type":"way", - "osm_id":1193426056, + "osm_id":1154065789, "attractiveness":3, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1177":{ - "name":"Square Léon Zack", + "1137":{ + "name":"Jardins du Grand Échiquier", "type":{ "landmark_type":"nature" }, "location":[ - 48.827452, - 2.2677824 + 48.9175228, + 2.3126717 ], "osm_type":"way", - "osm_id":1202405145, + "osm_id":1184461730, "attractiveness":3, "must_do":false, "n_tags":2, "time_to_reach":0 }, - "1178":{ - "name":"Square Santos Dumont", + "1138":{ + "name":"Parc Maxime Vachier-Lagrave", "type":{ "landmark_type":"nature" }, "location":[ - 48.828384, - 2.2668557 + 48.9160778, + 2.3136636 ], "osm_type":"way", - "osm_id":1282408164, - "attractiveness":6, + "osm_id":1184461735, + "attractiveness":4, "must_do":false, - "n_tags":4, + "n_tags":3, "time_to_reach":0 }, - "1179":{ + "1139":{ + "name":"Parvis de l'Abbé Pierre", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9091508, + 2.4276158 + ], + "osm_type":"way", + "osm_id":1236950475, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1140":{ + "name":"Jardin du Carré Rouge", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9103226, + 2.4259501 + ], + "osm_type":"way", + "osm_id":1236950495, + "attractiveness":3, + "must_do":false, + "n_tags":2, + "time_to_reach":0 + }, + "1141":{ "name":"Place Igor Stravinsky", "type":{ "landmark_type":"nature" @@ -18874,60 +18266,44 @@ ], "osm_type":"relation", "osm_id":1308199, - "attractiveness":19, + "attractiveness":22, "must_do":false, "n_tags":13, "time_to_reach":0 }, - "1180":{ - "name":"Square Roger-Coquoin", + "1142":{ + "name":"Square des Anciens Combattants d'Indochine", "type":{ "landmark_type":"nature" }, "location":[ - 48.8359952, - 2.2548363 + 48.8352063, + 2.4075103 ], "osm_type":"relation", - "osm_id":1309285, - "attractiveness":11, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "1181":{ - "name":"Jardin de la Porte de Saint-Cloud", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8376924, - 2.253256 - ], - "osm_type":"relation", - "osm_id":1310210, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "1182":{ - "name":"Square de l'Abbé Migne", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8338119, - 2.3327247 - ], - "osm_type":"relation", - "osm_id":1858698, - "attractiveness":8, + "osm_id":1761934, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1183":{ + "1143":{ + "name":"Jardin du Regard de la Lanterne", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8758148, + 2.394529 + ], + "osm_type":"relation", + "osm_id":2018488, + "attractiveness":9, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1144":{ "name":"Square Henri Galli", "type":{ "landmark_type":"nature" @@ -18938,28 +18314,12 @@ ], "osm_type":"relation", "osm_id":2080074, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1184":{ - "name":"Square des Alliés", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8159318, - 2.3744397 - ], - "osm_type":"relation", - "osm_id":2081003, - "attractiveness":6, - "must_do":false, - "n_tags":3, - "time_to_reach":0 - }, - "1185":{ + "1145":{ "name":"Square de l’église Notre-Dame-de-la-Croix", "type":{ "landmark_type":"nature" @@ -18970,12 +18330,12 @@ ], "osm_type":"relation", "osm_id":2100826, - "attractiveness":8, + "attractiveness":10, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1186":{ + "1146":{ "name":"Coulée verte du sud parisien", "type":{ "landmark_type":"nature" @@ -18986,12 +18346,12 @@ ], "osm_type":"relation", "osm_id":2646085, - "attractiveness":11, + "attractiveness":13, "must_do":false, "n_tags":8, "time_to_reach":0 }, - "1187":{ + "1147":{ "name":"Parc Monceau", "type":{ "landmark_type":"nature" @@ -19002,44 +18362,28 @@ ], "osm_type":"relation", "osm_id":2826933, - "attractiveness":13, + "attractiveness":15, "must_do":false, "n_tags":9, "time_to_reach":0 }, - "1188":{ - "name":"Square Henri-Rousselle", + "1148":{ + "name":"Jardin de l'Impératrice Eugénie", "type":{ "landmark_type":"nature" }, "location":[ - 48.8278323, - 2.3521871 + 48.8486015, + 2.3919565 ], "osm_type":"relation", - "osm_id":3372098, - "attractiveness":8, + "osm_id":3865345, + "attractiveness":12, "must_do":false, - "n_tags":5, + "n_tags":7, "time_to_reach":0 }, - "1189":{ - "name":"Square Paul Grimault", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8228204, - 2.3479528 - ], - "osm_type":"relation", - "osm_id":3396566, - "attractiveness":16, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "1190":{ + "1149":{ "name":"Square Saint-Lambert", "type":{ "landmark_type":"nature" @@ -19050,60 +18394,76 @@ ], "osm_type":"relation", "osm_id":5292509, - "attractiveness":25, + "attractiveness":28, "must_do":false, "n_tags":17, "time_to_reach":0 }, - "1191":{ - "name":"Parc départemental des Cormailles", + "1150":{ + "name":"Base de loisirs de la Corniche des Forts", "type":{ "landmark_type":"nature" }, "location":[ - 48.8158017, - 2.3871003 + 48.8879918, + 2.4316949 ], "osm_type":"relation", - "osm_id":5676653, - "attractiveness":12, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "1192":{ - "name":"Le Pré Catelan", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8649122, - 2.2529824 - ], - "osm_type":"relation", - "osm_id":6702068, - "attractiveness":8, + "osm_id":5995373, + "attractiveness":9, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1193":{ - "name":"Jardins de l'Avenue Foch", + "1151":{ + "name":"Parc de la République", "type":{ "landmark_type":"nature" }, "location":[ - 48.872657, - 2.2842255 + 48.8879918, + 2.4249073 ], "osm_type":"relation", - "osm_id":6750084, - "attractiveness":7, + "osm_id":5995375, + "attractiveness":5, "must_do":false, - "n_tags":5, + "n_tags":3, "time_to_reach":0 }, - "1194":{ + "1152":{ + "name":"Square Charles Péguy", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8384326, + 2.4064068 + ], + "osm_type":"relation", + "osm_id":6393068, + "attractiveness":21, + "must_do":false, + "n_tags":12, + "time_to_reach":0 + }, + "1153":{ + "name":"Parc départemental Jean-Moulin - Les Guilands", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8630132, + 2.424942 + ], + "osm_type":"relation", + "osm_id":6530383, + "attractiveness":14, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "1154":{ "name":"Square Boucicaut", "type":{ "landmark_type":"nature" @@ -19114,28 +18474,44 @@ ], "osm_type":"relation", "osm_id":6901878, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1195":{ - "name":"Parc du Lycée Michelet", + "1155":{ + "name":"Jardin Mary Cassatt", "type":{ "landmark_type":"nature" }, "location":[ - 48.8246272, - 2.2840831 + 48.8460705, + 2.4008154 ], "osm_type":"relation", - "osm_id":7615434, - "attractiveness":5, + "osm_id":7202883, + "attractiveness":10, "must_do":false, - "n_tags":4, + "n_tags":6, "time_to_reach":0 }, - "1196":{ + "1156":{ + "name":"Parc de la Villette", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.89352, + 2.3893334 + ], + "osm_type":"relation", + "osm_id":7574623, + "attractiveness":14, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "1157":{ "name":"Jardin José-Aboulker", "type":{ "landmark_type":"nature" @@ -19146,156 +18522,172 @@ ], "osm_type":"relation", "osm_id":8250457, - "attractiveness":7, + "attractiveness":9, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1197":{ - "name":"Parc Raspail", + "1158":{ + "name":"Parc Chapelle-Charbon", "type":{ "landmark_type":"nature" }, "location":[ - 48.7953038, - 2.3324058 + 48.8967094, + 2.3638103 ], "osm_type":"relation", - "osm_id":8433635, - "attractiveness":11, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "1198":{ - "name":"Square Maurice Arnoux", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8146034, - 2.3105087 - ], - "osm_type":"relation", - "osm_id":8743141, - "attractiveness":16, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "1199":{ - "name":"Square de l'Hôtel de ville", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8188262, - 2.3204075 - ], - "osm_type":"relation", - "osm_id":9792499, - "attractiveness":13, - "must_do":false, - "n_tags":9, - "time_to_reach":0 - }, - "1200":{ - "name":"Square Edmond Champeaud", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8186513, - 2.3207275 - ], - "osm_type":"relation", - "osm_id":9807510, - "attractiveness":11, - "must_do":false, - "n_tags":7, - "time_to_reach":0 - }, - "1201":{ - "name":"Parc Messier", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8111009, - 2.3125686 - ], - "osm_type":"relation", - "osm_id":9898593, - "attractiveness":16, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "1202":{ - "name":"Promenade Jane et Paulette Nardal", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8279524, - 2.310715 - ], - "osm_type":"relation", - "osm_id":13048395, + "osm_id":9268649, "attractiveness":9, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1203":{ - "name":"Parc de Bicêtre", + "1159":{ + "name":"Les Jardins d'Éole", "type":{ "landmark_type":"nature" }, "location":[ - 48.8098811, - 2.3580061 + 48.8876495, + 2.3662081 ], "osm_type":"relation", - "osm_id":13369912, + "osm_id":11717983, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "1160":{ + "name":"Jardin Alexandra David-Néel", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8454726, + 2.4228422 + ], + "osm_type":"relation", + "osm_id":11989941, "attractiveness":6, "must_do":false, - "n_tags":4, + "n_tags":3, "time_to_reach":0 }, - "1204":{ - "name":"Jardins du Trocadéro", + "1161":{ + "name":"Parc Clichy-Batignolles Martin Luther King", "type":{ "landmark_type":"nature" }, "location":[ - 48.8613091, - 2.289514 + 48.8911906, + 2.313643 ], "osm_type":"relation", - "osm_id":13716106, - "attractiveness":12, + "osm_id":12273749, + "attractiveness":16, "must_do":false, - "n_tags":8, + "n_tags":10, "time_to_reach":0 }, - "1205":{ + "1162":{ + "name":"Parc Camille Ronce", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9174848, + 2.2993175 + ], + "osm_type":"relation", + "osm_id":12374012, + "attractiveness":7, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "1163":{ + "name":"Jardin d'Immeubles de la Porte de Vincennes", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8495752, + 2.4138825 + ], + "osm_type":"relation", + "osm_id":12742213, + "attractiveness":8, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1164":{ + "name":"Square de la Place de la Réunion", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8560812, + 2.4013159 + ], + "osm_type":"relation", + "osm_id":12796307, + "attractiveness":10, + "must_do":false, + "n_tags":6, + "time_to_reach":0 + }, + "1165":{ + "name":"Square de la Porte de la Villette", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8998347, + 2.3901654 + ], + "osm_type":"relation", + "osm_id":13014387, + "attractiveness":8, + "must_do":false, + "n_tags":5, + "time_to_reach":0 + }, + "1166":{ + "name":"Square Rose Guérin\/Heidenheim", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.9075996, + 2.300795 + ], + "osm_type":"relation", + "osm_id":13725453, + "attractiveness":7, + "must_do":false, + "n_tags":3, + "time_to_reach":0 + }, + "1167":{ "name":"Parc Tereska Torrès-Levin", "type":{ "landmark_type":"nature" }, "location":[ - 48.8758182, - 2.3053046 + 48.875809, + 2.3053312 ], "osm_type":"relation", "osm_id":15676372, - "attractiveness":5, + "attractiveness":9, "must_do":false, - "n_tags":4, + "n_tags":5, "time_to_reach":0 }, - "1206":{ + "1168":{ "name":"Jardin Arnaud Beltrame", "type":{ "landmark_type":"nature" @@ -19306,44 +18698,12 @@ ], "osm_type":"relation", "osm_id":15970959, - "attractiveness":9, + "attractiveness":10, "must_do":false, "n_tags":6, "time_to_reach":0 }, - "1207":{ - "name":"Bois de Boulogne", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8641777, - 2.2521892 - ], - "osm_type":"relation", - "osm_id":16731685, - "attractiveness":15, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "1208":{ - "name":"Square Alexandre et René-Parodi", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8766943, - 2.2811427 - ], - "osm_type":"relation", - "osm_id":17541388, - "attractiveness":12, - "must_do":false, - "n_tags":8, - "time_to_reach":0 - }, - "1209":{ + "1169":{ "name":"La Terasse des Galeries Lafayette", "type":{ "landmark_type":"nature" @@ -19359,55 +18719,7 @@ "n_tags":6, "time_to_reach":0 }, - "1210":{ - "name":"Kiosque de l'Empereur", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8602143, - 2.2589434 - ], - "osm_type":"way", - "osm_id":452439840, - "attractiveness":5, - "must_do":false, - "n_tags":5, - "time_to_reach":0 - }, - "1211":{ - "name":"Tour Eiffel 3e étage", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8582648, - 2.2944947 - ], - "osm_type":"relation", - "osm_id":4114841, - "attractiveness":15, - "must_do":false, - "n_tags":13, - "time_to_reach":0 - }, - "1212":{ - "name":"Tour Eiffel 2e étage", - "type":{ - "landmark_type":"nature" - }, - "location":[ - 48.8582612, - 2.2944982 - ], - "osm_type":"relation", - "osm_id":4114842, - "attractiveness":12, - "must_do":false, - "n_tags":10, - "time_to_reach":0 - }, - "1213":{ + "1170":{ "name":"Ménagerie du Jardin des Plantes", "type":{ "landmark_type":"nature" @@ -19423,7 +18735,39 @@ "n_tags":15, "time_to_reach":0 }, - "1214":{ + "1171":{ + "name":"Parc zoologique de Paris", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8318246, + 2.4172936 + ], + "osm_type":"way", + "osm_id":26008116, + "attractiveness":8, + "must_do":false, + "n_tags":7, + "time_to_reach":0 + }, + "1172":{ + "name":"Bergerie des Malassis", + "type":{ + "landmark_type":"nature" + }, + "location":[ + 48.8730628, + 2.4262081 + ], + "osm_type":"way", + "osm_id":1178328802, + "attractiveness":9, + "must_do":false, + "n_tags":9, + "time_to_reach":0 + }, + "1173":{ "name":"Le BHV Marais", "type":{ "landmark_type":"shopping" @@ -19439,7 +18783,7 @@ "n_tags":16, "time_to_reach":0 }, - "1215":{ + "1174":{ "name":"Galerie Lafayette Maison \/ Gourmet", "type":{ "landmark_type":"shopping" @@ -19455,7 +18799,7 @@ "n_tags":7, "time_to_reach":0 }, - "1216":{ + "1175":{ "name":"Galeries Lafayette Paris Haussmann", "type":{ "landmark_type":"shopping" @@ -19471,7 +18815,7 @@ "n_tags":29, "time_to_reach":0 }, - "1217":{ + "1176":{ "name":"Printemps", "type":{ "landmark_type":"shopping" @@ -19487,7 +18831,7 @@ "n_tags":20, "time_to_reach":0 }, - "1218":{ + "1177":{ "name":"Galeries Lafayette", "type":{ "landmark_type":"shopping" @@ -19503,7 +18847,7 @@ "n_tags":11, "time_to_reach":0 }, - "1219":{ + "1178":{ "name":"Printemps Homme", "type":{ "landmark_type":"shopping" @@ -19519,7 +18863,7 @@ "n_tags":16, "time_to_reach":0 }, - "1220":{ + "1179":{ "name":"HEMA", "type":{ "landmark_type":"shopping" @@ -19535,7 +18879,7 @@ "n_tags":14, "time_to_reach":0 }, - "1221":{ + "1180":{ "name":"Le Bon Marché", "type":{ "landmark_type":"shopping" @@ -19551,7 +18895,7 @@ "n_tags":16, "time_to_reach":0 }, - "1222":{ + "1181":{ "name":"Maine Montparnasse", "type":{ "landmark_type":"shopping" @@ -19567,39 +18911,7 @@ "n_tags":5, "time_to_reach":0 }, - "1223":{ - "name":"Beaugrenelle - Magnetic", - "type":{ - "landmark_type":"shopping" - }, - "location":[ - 48.848405, - 2.2823854 - ], - "osm_type":"way", - "osm_id":53396302, - "attractiveness":24, - "must_do":false, - "n_tags":24, - "time_to_reach":0 - }, - "1224":{ - "name":"Beaugrenelle", - "type":{ - "landmark_type":"shopping" - }, - "location":[ - 48.8492193, - 2.282921 - ], - "osm_type":"way", - "osm_id":53396317, - "attractiveness":19, - "must_do":false, - "n_tags":19, - "time_to_reach":0 - }, - "1225":{ + "1182":{ "name":"Marché Saint-Honoré", "type":{ "landmark_type":"shopping" @@ -19615,7 +18927,7 @@ "n_tags":7, "time_to_reach":0 }, - "1226":{ + "1183":{ "name":"Passage du Grand-Cerf", "type":{ "landmark_type":"shopping" @@ -19631,87 +18943,135 @@ "n_tags":7, "time_to_reach":0 }, - "1227":{ - "name":"Centre Commercial Forum 20", + "1184":{ + "name":"So Ouest", "type":{ "landmark_type":"shopping" }, "location":[ - 48.8048378, - 2.3266565 + 48.8923766, + 2.2964843 ], "osm_type":"way", - "osm_id":62031372, + "osm_id":64800099, + "attractiveness":39, + "must_do":false, + "n_tags":39, + "time_to_reach":0 + }, + "1185":{ + "name":"Centre Commercial Émile Dubois", + "type":{ + "landmark_type":"shopping" + }, + "location":[ + 48.9152909, + 2.4027961 + ], + "osm_type":"way", + "osm_id":73004279, + "attractiveness":5, + "must_do":false, + "n_tags":4, + "time_to_reach":0 + }, + "1186":{ + "name":"Bistrot des rosiers", + "type":{ + "landmark_type":"shopping" + }, + "location":[ + 48.902197, + 2.3421451 + ], + "osm_type":"way", + "osm_id":73835282, "attractiveness":4, "must_do":false, "n_tags":4, "time_to_reach":0 }, - "1228":{ - "name":"Centre commercial de la Vache Noire", + "1187":{ + "name":"Marché Dauphine", "type":{ "landmark_type":"shopping" }, "location":[ - 48.8113518, - 2.3288494 + 48.9018063, + 2.341632 ], "osm_type":"way", - "osm_id":62643138, - "attractiveness":16, + "osm_id":73836239, + "attractiveness":4, "must_do":false, - "n_tags":16, + "n_tags":4, "time_to_reach":0 }, - "1229":{ - "name":"Centre commercial Italie 2", + "1188":{ + "name":"Marché Malassis", "type":{ "landmark_type":"shopping" }, "location":[ - 48.8288038, - 2.3551182 + 48.9016795, + 2.3421091 ], "osm_type":"way", - "osm_id":78470246, - "attractiveness":19, + "osm_id":73838196, + "attractiveness":5, "must_do":false, - "n_tags":12, + "n_tags":5, "time_to_reach":0 }, - "1230":{ - "name":"Centre Commercial des Belles Feuilles", + "1189":{ + "name":"Marché Malik", "type":{ "landmark_type":"shopping" }, "location":[ - 48.8665399, - 2.2833144 + 48.901541, + 2.3400264 ], "osm_type":"way", - "osm_id":80858428, - "attractiveness":7, + "osm_id":73839906, + "attractiveness":4, "must_do":false, - "n_tags":7, + "n_tags":4, "time_to_reach":0 }, - "1231":{ - "name":"Passy Plaza", + "1190":{ + "name":"Centre Commercial de la Grande Porte", "type":{ "landmark_type":"shopping" }, "location":[ - 48.8571061, - 2.2795851 + 48.855103, + 2.4162425 ], "osm_type":"way", - "osm_id":83830970, - "attractiveness":15, + "osm_id":81767599, + "attractiveness":4, "must_do":false, - "n_tags":15, + "n_tags":4, "time_to_reach":0 }, - "1232":{ + "1191":{ + "name":"Avenir", + "type":{ + "landmark_type":"shopping" + }, + "location":[ + 48.9197328, + 2.4219237 + ], + "osm_type":"way", + "osm_id":84437363, + "attractiveness":11, + "must_do":false, + "n_tags":11, + "time_to_reach":0 + }, + "1192":{ "name":"Forum les Halles", "type":{ "landmark_type":"shopping" @@ -19727,39 +19087,23 @@ "n_tags":13, "time_to_reach":0 }, - "1233":{ - "name":"Centre commercial Okabé", + "1193":{ + "name":"Le Millénaire", "type":{ "landmark_type":"shopping" }, "location":[ - 48.811623, - 2.363094 + 48.9029675, + 2.376598 ], "osm_type":"way", - "osm_id":153989918, - "attractiveness":12, + "osm_id":154866158, + "attractiveness":15, "must_do":false, - "n_tags":12, + "n_tags":15, "time_to_reach":0 }, - "1234":{ - "name":"Via Bella", - "type":{ - "landmark_type":"shopping" - }, - "location":[ - 48.7995562, - 2.3818464 - ], - "osm_type":"way", - "osm_id":211478471, - "attractiveness":4, - "must_do":false, - "n_tags":4, - "time_to_reach":0 - }, - "1235":{ + "1194":{ "name":"Arcade des Champs-Élysées", "type":{ "landmark_type":"shopping" @@ -19775,23 +19119,7 @@ "n_tags":12, "time_to_reach":0 }, - "1236":{ - "name":"La Galerie Masséna", - "type":{ - "landmark_type":"shopping" - }, - "location":[ - 48.821544, - 2.365922 - ], - "osm_type":"way", - "osm_id":332367227, - "attractiveness":6, - "must_do":false, - "n_tags":6, - "time_to_reach":0 - }, - "1237":{ + "1195":{ "name":"Galerie Berri Washington", "type":{ "landmark_type":"shopping" @@ -19807,7 +19135,7 @@ "n_tags":2, "time_to_reach":0 }, - "1238":{ + "1196":{ "name":"Galerie des Champs", "type":{ "landmark_type":"shopping" @@ -19823,7 +19151,7 @@ "n_tags":2, "time_to_reach":0 }, - "1239":{ + "1197":{ "name":"Galerie du Claridge", "type":{ "landmark_type":"shopping" @@ -19839,7 +19167,7 @@ "n_tags":2, "time_to_reach":0 }, - "1240":{ + "1198":{ "name":"Westfield Forum des Halles", "type":{ "landmark_type":"shopping" @@ -19855,23 +19183,55 @@ "n_tags":19, "time_to_reach":0 }, - "1241":{ - "name":"Galerie Oslo", + "1199":{ + "name":"Marques Avenue", "type":{ "landmark_type":"shopping" }, "location":[ - 48.8239643, - 2.3665445 + 48.9225096, + 2.3303125 ], "osm_type":"way", - "osm_id":625919256, - "attractiveness":5, + "osm_id":434347031, + "attractiveness":11, "must_do":false, - "n_tags":5, + "n_tags":11, "time_to_reach":0 }, - "1242":{ + "1200":{ + "name":"Boom Boom Villette", + "type":{ + "landmark_type":"shopping" + }, + "location":[ + 48.8962488, + 2.3890911 + ], + "osm_type":"way", + "osm_id":461446289, + "attractiveness":20, + "must_do":false, + "n_tags":20, + "time_to_reach":0 + }, + "1201":{ + "name":"Qwartz", + "type":{ + "landmark_type":"shopping" + }, + "location":[ + 48.92563, + 2.3290174 + ], + "osm_type":"way", + "osm_id":843953196, + "attractiveness":18, + "must_do":false, + "n_tags":18, + "time_to_reach":0 + }, + "1202":{ "name":"Les Ateliers Gaîté", "type":{ "landmark_type":"shopping" @@ -19887,7 +19247,7 @@ "n_tags":8, "time_to_reach":0 }, - "1243":{ + "1203":{ "name":"Passage du Havre", "type":{ "landmark_type":"shopping" @@ -19903,7 +19263,7 @@ "n_tags":5, "time_to_reach":0 }, - "1244":{ + "1204":{ "name":"Le Village Royal", "type":{ "landmark_type":"shopping" @@ -19919,23 +19279,23 @@ "n_tags":4, "time_to_reach":0 }, - "1245":{ - "name":"Centre Commercial Jean Mermoz", + "1205":{ + "name":"Galerie Hoche", "type":{ "landmark_type":"shopping" }, "location":[ - 48.8095201, - 2.2909968 + 48.8908975, + 2.4039477 ], "osm_type":"relation", - "osm_id":1299971, + "osm_id":1132674, "attractiveness":5, "must_do":false, "n_tags":5, "time_to_reach":0 }, - "1246":{ + "1206":{ "name":"Marché Saint-Germain", "type":{ "landmark_type":"shopping" @@ -19951,7 +19311,7 @@ "n_tags":10, "time_to_reach":0 }, - "1247":{ + "1207":{ "name":"Carrousel du Louvre", "type":{ "landmark_type":"shopping"