diff --git a/backend/src/landmarks_manager.py b/backend/src/landmarks_manager.py
index da04088..6d185ab 100644
--- a/backend/src/landmarks_manager.py
+++ b/backend/src/landmarks_manager.py
@@ -9,12 +9,12 @@ from typing import Tuple
 
 
 BBOX_SIDE = 10              # size of bbox in *km* for general area, 10km
-RADIUS_CLOSE_TO = 25        # size of area in *m* for close features, 25m radius
+RADIUS_CLOSE_TO = 27.5        # size of area in *m* for close features, 30m radius
 MIN_SCORE = 30              # DEPRECIATED. discard elements with score < 30
 MIN_TAGS = 5                # DEPRECIATED. discard elements withs less than 5 tags
-CHURCH_PENALTY = 0.1        # penalty to reduce score of curches
-PARK_COEFF = 10             # multiplier for parks
-N_IMPORTANT = 30            # take the 30 most important landmarks
+CHURCH_PENALTY = 0.6        # penalty to reduce score of curches
+PARK_COEFF = 1.4             # multiplier for parks
+N_IMPORTANT = 40            # take the 30 most important landmarks
 
 SIGHTSEEING = LandmarkType(landmark_type='sightseeing')
 NATURE = LandmarkType(landmark_type='nature')
@@ -74,7 +74,7 @@ def generate_landmarks(preferences: Preferences, city_country: str = None, coord
             L += L3
 
 
-    return L, take_most_important(L)
+    return remove_duplicates(L), take_most_important(L)
     #return L, cleanup_list(L)
 
 # Determines if two locations are close to each other
@@ -86,7 +86,7 @@ def is_close_to(loc1: Tuple[float, float], loc2: Tuple[float, float])->bool :
     else : 
         return False
 
-
+# Take the most important landmarks from the list
 def take_most_important(L: List[Landmark])->List[Landmark] :
     L_copy = []
     L_clean = []
@@ -110,9 +110,7 @@ def take_most_important(L: List[Landmark])->List[Landmark] :
                 for old in L_copy :
                     if old.name == elem.name :
                         old.attractiveness = L[t].attractiveness
-
-            continue
-
+    scores = [0]*len(L_copy)
     for i, elem in enumerate(L_copy) :
         scores[i] = elem.attractiveness
 
@@ -124,23 +122,14 @@ def take_most_important(L: List[Landmark])->List[Landmark] :
 
     return L_clean
 
-
 # Remove duplicate elements and elements with low score
-def cleanup_list(L: List[Landmark])->List[Landmark] :
+def remove_duplicates(L: List[Landmark])->List[Landmark] :
     L_clean = []
     names = []
 
     for landmark in L :
-
         if landmark.name in names :                 # Remove duplicates
             continue     
-
-        elif landmark.attractiveness < MIN_SCORE :  # Remove uninteresting
-            continue
-
-        elif landmark.n_tags < MIN_TAGS :           # Remove uninteresting 2.0
-            continue
-
         else :
             names.append(landmark.name)
             L_clean.append(landmark)
@@ -157,7 +146,6 @@ def correct_score(L: List[Landmark], preference: Preference) :
         raise TypeError(f"LandmarkType {preference.type} does not match the type of Landmark {L[0].name}")
 
     for elem in L :
-        elem.attractiveness = int(elem.attractiveness) + elem.n_tags*100        # arbitrary correction of the balance score vs number of tags
         elem.attractiveness = int(elem.attractiveness*preference.score/500)     # arbitrary computation
 
 # Correct the score of a list of landmarks by taking into account preferences and the number of tags
@@ -264,14 +252,11 @@ def get_landmarks_coords(coordinates: Tuple[float, float], l: List[Landmark], la
                 
                 # 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)*CHURCH_PENALTY)  
+                    score = int((count_elements_within_radius(location) + n_tags*100 )*CHURCH_PENALTY)  
                 elif amenity == "'leisure'='park'" :
-                    score = int(count_elements_within_radius(location)*PARK_COEFF)  
+                    score = int((count_elements_within_radius(location) + n_tags*100 )*PARK_COEFF)  
                 else :
-                    score = count_elements_within_radius(location)
-
-                if name == "Jardin du Luxembourg" :
-                    continue
+                    score = count_elements_within_radius(location) + n_tags*100
 
                 if score is not None :
                     # Generate the landmark and append it to the list
diff --git a/backend/src/optimizer.py b/backend/src/optimizer.py
index a5f0fc3..5a8180b 100644
--- a/backend/src/optimizer.py
+++ b/backend/src/optimizer.py
@@ -69,9 +69,7 @@ def untangle(resx: list) -> list:
 
     
 # Just to print the result
-def print_res(res, order, landmarks: List[Landmark], P) -> list:
-
-    things = []
+def print_res(L: List[Landmark], landmarks: List[Landmark], P) -> list:
 
     """N = int(np.sqrt(len(X)))
     for i in range(N):
@@ -81,20 +79,24 @@ def print_res(res, order, landmarks: List[Landmark], P) -> list:
     for i,x in enumerate(X) : X[i] = round(x,0)
     print(order)"""
 
-    if len(order) == len(landmarks): 
+    if len(L) == len(landmarks): 
         print('\nAll landmarks can be visited within max_steps, the following order is suggested : ')
     else :
         print('Could not visit all the landmarks, the following order is suggested : ')
 
-    for idx in order : 
-        print('- ' + landmarks[idx].name)
-        things.append(landmarks[idx].name)
+    dist = 0
+    for elem in L : 
+        if elem.name != 'start' :
+            print('- ' + elem.name + ', time to reach = ' + str(elem.time_to_reach))
+            dist += elem.time_to_reach
+        else : 
+            print('- ' + elem.name)
 
-    steps = path_length(P, abs(res.x))
-    print("\nMinutes walked : " + str(steps))
-    print(f"\nVisited {len(order)} out of {len(landmarks)} landmarks")
+    #steps = path_length(P, abs(res.x))
+    print("\nMinutes walked : " + str(dist))
+    print(f"\nVisited {len(L)} out of {len(landmarks)} landmarks")
 
-    return things
+    return 
 
 
 
@@ -366,21 +368,26 @@ def init_eq_not_stay(N: int):
     return [l], [0]
 
 # Constraint to ensure start at start and finish at goal
-def respect_start_finish(N, A_eq: list, b_eq: list):
-    ls = [1]*N + [0]*N*(N-1)    # sets only horizontal ones for start (go from)
-    ljump = [0]*N*N
-    ljump[N-1] = 1              # Prevent start finish jump
-    lg = [0]*N*N
-    for k in range(N-1) :       # sets only vertical ones for goal (go to)
+def respect_start_finish(L: int, A_eq: list, b_eq: list):
+    ls = [1]*L + [0]*L*(L-1)    # sets only horizontal ones for start (go from)
+    ljump = [0]*L*L
+    ljump[L-1] = 1              # Prevent start finish jump
+    lg = [0]*L*L
+    ll = [0]*L*(L-1) + [1]*L
+    for k in range(L-1) :       # sets only vertical ones for goal (go to)
+        ll[k*L] = 1
         if k != 0 :             # Prevent the shortcut start -> finish
-            lg[k*N+N-1] = 1 
+            lg[k*L+L-1] = 1 
+            
 
     A_eq = np.vstack((A_eq,ls))
     A_eq = np.vstack((A_eq,ljump))
     A_eq = np.vstack((A_eq,lg))
+    A_eq = np.vstack((A_eq,ll))
     b_eq.append(1)
     b_eq.append(0)
     b_eq.append(1)
+    b_eq.append(0)
 
     return A_eq, b_eq
 
@@ -390,19 +397,19 @@ def init_ub_dist(landmarks: List[Landmark], max_steps: int):
     # Objective function coefficients. a*x1 + b*x2 + c*x3 + ...
     c = []
     # Coefficients of inequality constraints (left-hand side)
-    A = []
+    A_ub = []
     for i, spot1 in enumerate(landmarks) :
         dist_table = [0]*len(landmarks)
         c.append(-spot1.attractiveness)
         for j, spot2 in enumerate(landmarks) :
             d, t = get_distance(spot1.location, spot2.location)
             dist_table[j] = t
-        A.append(dist_table)
+        A_ub += dist_table
     c = c*len(landmarks)
-    A_ub = []
+    """A_ub = []
     for line in A :
         #print(line)
-        A_ub += line
+        A_ub += line"""
     return c, A_ub, [max_steps]
 
 # Go through the landmarks and force the optimizer to use landmarks where attractiveness is set to -1
@@ -438,7 +445,7 @@ def path_length(P: list, resx: list) :
     return np.dot(P, resx)
 
 # Main optimization pipeline
-def solve_optimization (landmarks, max_steps, printing_details) :
+def solve_optimization (landmarks :List[Landmark], max_steps: int, printing_details: bool) :
 
     N = len(landmarks)
 
@@ -499,14 +506,31 @@ def solve_optimization (landmarks, max_steps, printing_details) :
             i += 1
 
         t, order, [] = is_connected(res.x, landmarks)
+
         
+
+        prev = landmarks[order[0]]
+        i = 0
+        L =  []
+        #prev = landmarks[order[i]]
+        while(len(L) != len(order)) :
+            elem = landmarks[order[i]]
+            if elem != prev :
+                d, t = get_distance(elem.location, prev.location)
+                elem.time_to_reach = t
+            L.append(elem)
+            prev = elem   
+            i += 1
+
         if printing_details is True :
             if i != 0 :
                 print(f"Neded to recompute paths {i} times because of unconnected loops...")
             
-            print_res(res, order, landmarks, P)
+            print_res(L, landmarks, P)
 
-        return order
+            print(np.dot(P, res.x))
+
+        return L
 
 
 
diff --git a/backend/src/tester.py b/backend/src/tester.py
index 18a28c5..65a7894 100644
--- a/backend/src/tester.py
+++ b/backend/src/tester.py
@@ -79,16 +79,16 @@ def test4(coordinates: tuple[float, float]) -> List[Landmark]:
     
 
     test = landmarks_short
-    test.append(finish)
+    
     test.insert(0, start)
-
+    test.append(finish)
 
     max_walking_time = 4 # hours
 
-    visiting_order = solve_optimization(test, max_walking_time*60, True)
+    visiting_list = solve_optimization(test, max_walking_time*60, True)
 
 
-    return len(visiting_order)
+    return visiting_list
 
 
-test4(tuple((48.834378, 2.322113)))
\ No newline at end of file
+test4(tuple((48.8795156, 2.3660204)))
\ No newline at end of file
diff --git a/landmarks.txt b/landmarks.txt
index 9549f07..7b7d15f 100644
--- a/landmarks.txt
+++ b/landmarks.txt
@@ -10,9 +10,10 @@
     ],
     "osm_type":"way",
     "osm_id":17954721,
-    "attractiveness":30,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":30
+    "n_tags":30,
+    "time_to_reach":0
   },
   "1":{
     "name":"Bourse de Commerce — Pinault Collection",
@@ -25,9 +26,10 @@
     ],
     "osm_type":"way",
     "osm_id":19856722,
-    "attractiveness":32,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":32
+    "n_tags":32,
+    "time_to_reach":0
   },
   "2":{
     "name":"Galerie de Minéralogie et de Géologie",
@@ -40,9 +42,10 @@
     ],
     "osm_type":"way",
     "osm_id":21999357,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
   "3":{
     "name":"Galeries de Paléontologie et d'Anatomie comparée",
@@ -55,9 +58,10 @@
     ],
     "osm_type":"way",
     "osm_id":21999454,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
   "4":{
     "name":"Institut du Monde Arabe",
@@ -70,9 +74,10 @@
     ],
     "osm_type":"way",
     "osm_id":22870791,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
   "5":{
     "name":"Jardin Tino Rossi - Musée de la Sculpture en Plein Air",
@@ -85,9 +90,10 @@
     ],
     "osm_type":"way",
     "osm_id":23644147,
-    "attractiveness":9,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
   "6":{
     "name":"Jeu de Paume",
@@ -100,9 +106,10 @@
     ],
     "osm_type":"way",
     "osm_id":54188994,
-    "attractiveness":20,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
   "7":{
     "name":"Musée de l'Orangerie",
@@ -115,9 +122,10 @@
     ],
     "osm_type":"way",
     "osm_id":54188996,
-    "attractiveness":24,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
   "8":{
     "name":"Atelier Brancusi",
@@ -130,9 +138,10 @@
     ],
     "osm_type":"way",
     "osm_id":55503399,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
   "9":{
     "name":"Lafayette Anticipations",
@@ -145,9 +154,10 @@
     ],
     "osm_type":"way",
     "osm_id":55865819,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
   "10":{
     "name":"Grand Palais",
@@ -160,9 +170,10 @@
     ],
     "osm_type":"way",
     "osm_id":56185523,
-    "attractiveness":22,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":22
+    "n_tags":22,
+    "time_to_reach":0
   },
   "11":{
     "name":"Pavillon de l'Arsenal",
@@ -175,9 +186,10 @@
     ],
     "osm_type":"way",
     "osm_id":56186898,
-    "attractiveness":19,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
   "12":{
     "name":"Musée de Cluny",
@@ -190,9 +202,10 @@
     ],
     "osm_type":"way",
     "osm_id":56640163,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
   "13":{
     "name":"Musée d'art et d'histoire du Judaïsme",
@@ -205,9 +218,10 @@
     ],
     "osm_type":"way",
     "osm_id":56687783,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
   "14":{
     "name":"Musée national Picasso-Paris",
@@ -220,9 +234,10 @@
     ],
     "osm_type":"way",
     "osm_id":57745741,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
   "15":{
     "name":"Musée Cognacq-Jay",
@@ -235,9 +250,10 @@
     ],
     "osm_type":"way",
     "osm_id":57781649,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
   "16":{
     "name":"Orangerie du Sénat",
@@ -250,9 +266,10 @@
     ],
     "osm_type":"way",
     "osm_id":62848404,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
   "17":{
     "name":"Musée d'Orsay",
@@ -265,9 +282,10 @@
     ],
     "osm_type":"way",
     "osm_id":63178753,
-    "attractiveness":47,
+    "attractiveness":28,
     "must_do":false,
-    "n_tags":47
+    "n_tags":47,
+    "time_to_reach":0
   },
   "18":{
     "name":"Musée Ernest-Hébert (en travaux)",
@@ -280,9 +298,10 @@
     ],
     "osm_type":"way",
     "osm_id":64314872,
-    "attractiveness":9,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
   "19":{
     "name":"Musée Nissim de Camondo",
@@ -295,9 +314,10 @@
     ],
     "osm_type":"way",
     "osm_id":68353844,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
   "20":{
     "name":"Musée Cernuschi",
@@ -310,26 +330,12 @@
     ],
     "osm_type":"way",
     "osm_id":68353920,
-    "attractiveness":18,
-    "must_do":false,
-    "n_tags":18
-  },
-  "21":{
-    "name":"Musée Cernuschi",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8794659,
-      2.3125739
-    ],
-    "osm_type":"way",
-    "osm_id":68353939,
     "attractiveness":11,
     "must_do":false,
-    "n_tags":11
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "22":{
+  "21":{
     "name":"Musée Jacquemart-André",
     "type":{
       "landmark_type":"sightseeing"
@@ -340,11 +346,12 @@
     ],
     "osm_type":"way",
     "osm_id":68804399,
-    "attractiveness":23,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "23":{
+  "22":{
     "name":"Pagoda Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -355,11 +362,12 @@
     ],
     "osm_type":"way",
     "osm_id":68828954,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "24":{
+  "23":{
     "name":"Galerie des Gobelins",
     "type":{
       "landmark_type":"sightseeing"
@@ -370,11 +378,12 @@
     ],
     "osm_type":"way",
     "osm_id":78407170,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "25":{
+  "24":{
     "name":"Musée Yves Saint Laurent Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -385,11 +394,12 @@
     ],
     "osm_type":"way",
     "osm_id":79219238,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "26":{
+  "25":{
     "name":"Musée d'Art Moderne de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -400,11 +410,12 @@
     ],
     "osm_type":"way",
     "osm_id":79219308,
-    "attractiveness":30,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":30
+    "n_tags":30,
+    "time_to_reach":0
   },
-  "27":{
+  "26":{
     "name":"Palais de Tokyo",
     "type":{
       "landmark_type":"sightseeing"
@@ -415,11 +426,12 @@
     ],
     "osm_type":"way",
     "osm_id":79219351,
-    "attractiveness":18,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "28":{
+  "27":{
     "name":"Fondation Cartier pour l'art contemporain",
     "type":{
       "landmark_type":"sightseeing"
@@ -430,11 +442,12 @@
     ],
     "osm_type":"way",
     "osm_id":79616736,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "29":{
+  "28":{
     "name":"Musée de la Libération de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -445,11 +458,12 @@
     ],
     "osm_type":"way",
     "osm_id":79633987,
-    "attractiveness":19,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "30":{
+  "29":{
     "name":"Hôtel d'Heidelbach",
     "type":{
       "landmark_type":"sightseeing"
@@ -460,11 +474,12 @@
     ],
     "osm_type":"way",
     "osm_id":79641978,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "31":{
+  "30":{
     "name":"Musée Guimet",
     "type":{
       "landmark_type":"sightseeing"
@@ -475,11 +490,12 @@
     ],
     "osm_type":"way",
     "osm_id":79641993,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "32":{
+  "31":{
     "name":"Maison Chana Orloff",
     "type":{
       "landmark_type":"sightseeing"
@@ -490,11 +506,12 @@
     ],
     "osm_type":"way",
     "osm_id":79805060,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "33":{
+  "32":{
     "name":"Musée d'Ennery",
     "type":{
       "landmark_type":"sightseeing"
@@ -505,11 +522,12 @@
     ],
     "osm_type":"way",
     "osm_id":80848762,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "34":{
+  "33":{
     "name":"Maison de la Photographie - Robert Doisneau",
     "type":{
       "landmark_type":"sightseeing"
@@ -520,11 +538,12 @@
     ],
     "osm_type":"way",
     "osm_id":81091490,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "35":{
+  "34":{
     "name":"Musée Marmottan Monet",
     "type":{
       "landmark_type":"sightseeing"
@@ -535,11 +554,12 @@
     ],
     "osm_type":"way",
     "osm_id":83422695,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "36":{
+  "35":{
     "name":"Grande Galerie de l'Évolution",
     "type":{
       "landmark_type":"sightseeing"
@@ -550,11 +570,12 @@
     ],
     "osm_type":"way",
     "osm_id":83913793,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "37":{
+  "36":{
     "name":"Maison de Balzac",
     "type":{
       "landmark_type":"sightseeing"
@@ -565,11 +586,12 @@
     ],
     "osm_type":"way",
     "osm_id":84511129,
-    "attractiveness":27,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":27
+    "n_tags":27,
+    "time_to_reach":0
   },
-  "38":{
+  "37":{
     "name":"Pavillon de l'Eau",
     "type":{
       "landmark_type":"sightseeing"
@@ -580,11 +602,12 @@
     ],
     "osm_type":"way",
     "osm_id":86428524,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "39":{
+  "38":{
     "name":"Mémorial de la Shoah",
     "type":{
       "landmark_type":"sightseeing"
@@ -595,11 +618,12 @@
     ],
     "osm_type":"way",
     "osm_id":124052479,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "40":{
+  "39":{
     "name":"Maison de la Culture du Japon",
     "type":{
       "landmark_type":"sightseeing"
@@ -610,11 +634,12 @@
     ],
     "osm_type":"way",
     "osm_id":151074455,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "41":{
+  "40":{
     "name":"Musée Zadkine",
     "type":{
       "landmark_type":"sightseeing"
@@ -625,11 +650,12 @@
     ],
     "osm_type":"way",
     "osm_id":153776401,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "42":{
+  "41":{
     "name":"Musée de la chasse et de la nature",
     "type":{
       "landmark_type":"sightseeing"
@@ -640,11 +666,12 @@
     ],
     "osm_type":"way",
     "osm_id":156973373,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "43":{
+  "42":{
     "name":"Crypte Archéologique du Parvis Notre-Dame",
     "type":{
       "landmark_type":"sightseeing"
@@ -655,11 +682,12 @@
     ],
     "osm_type":"way",
     "osm_id":159896046,
-    "attractiveness":18,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "44":{
+  "43":{
     "name":"Manufacture des Gobelins",
     "type":{
       "landmark_type":"sightseeing"
@@ -670,11 +698,12 @@
     ],
     "osm_type":"way",
     "osm_id":161119956,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "45":{
+  "44":{
     "name":"Musée du Luxembourg",
     "type":{
       "landmark_type":"sightseeing"
@@ -685,11 +714,12 @@
     ],
     "osm_type":"way",
     "osm_id":170226810,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "46":{
+  "45":{
     "name":"Palais de la découverte",
     "type":{
       "landmark_type":"sightseeing"
@@ -700,11 +730,12 @@
     ],
     "osm_type":"way",
     "osm_id":188108997,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "47":{
+  "46":{
     "name":"Institut suédois",
     "type":{
       "landmark_type":"sightseeing"
@@ -715,11 +746,12 @@
     ],
     "osm_type":"way",
     "osm_id":243973065,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "48":{
+  "47":{
     "name":"Fondation Louis Vuitton",
     "type":{
       "landmark_type":"sightseeing"
@@ -730,11 +762,12 @@
     ],
     "osm_type":"way",
     "osm_id":309626332,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "49":{
+  "48":{
     "name":"Musée national Eugène Delacroix",
     "type":{
       "landmark_type":"sightseeing"
@@ -745,11 +778,12 @@
     ],
     "osm_type":"way",
     "osm_id":395785603,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "50":{
+  "49":{
     "name":"Musée Rodin",
     "type":{
       "landmark_type":"sightseeing"
@@ -760,11 +794,12 @@
     ],
     "osm_type":"way",
     "osm_id":472159547,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "51":{
+  "50":{
     "name":"Musée des Moulages",
     "type":{
       "landmark_type":"sightseeing"
@@ -775,11 +810,12 @@
     ],
     "osm_type":"way",
     "osm_id":692817231,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "52":{
+  "51":{
     "name":"MAC VAL",
     "type":{
       "landmark_type":"sightseeing"
@@ -790,11 +826,12 @@
     ],
     "osm_type":"way",
     "osm_id":791930774,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "53":{
+  "52":{
     "name":"Grand palais éphémère",
     "type":{
       "landmark_type":"sightseeing"
@@ -805,11 +842,12 @@
     ],
     "osm_type":"way",
     "osm_id":854459034,
-    "attractiveness":19,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "54":{
+  "53":{
     "name":"Les Étincelles du Palais de la Découverte",
     "type":{
       "landmark_type":"sightseeing"
@@ -820,11 +858,12 @@
     ],
     "osm_type":"way",
     "osm_id":951204355,
-    "attractiveness":13,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "55":{
+  "54":{
     "name":"Hôtel de Sully",
     "type":{
       "landmark_type":"sightseeing"
@@ -835,11 +874,12 @@
     ],
     "osm_type":"relation",
     "osm_id":403146,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "56":{
+  "55":{
     "name":"Fondation Henri Cartier-Bresson",
     "type":{
       "landmark_type":"sightseeing"
@@ -850,11 +890,12 @@
     ],
     "osm_type":"relation",
     "osm_id":551459,
-    "attractiveness":22,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":22
+    "n_tags":22,
+    "time_to_reach":0
   },
-  "57":{
+  "56":{
     "name":"Hôtel de la Monnaie",
     "type":{
       "landmark_type":"sightseeing"
@@ -865,11 +906,12 @@
     ],
     "osm_type":"relation",
     "osm_id":967664,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "58":{
+  "57":{
     "name":"Palais Galliera",
     "type":{
       "landmark_type":"sightseeing"
@@ -880,11 +922,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1191057,
-    "attractiveness":24,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
-  "59":{
+  "58":{
     "name":"Musée Bourdelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -895,11 +938,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1212876,
-    "attractiveness":23,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "60":{
+  "59":{
     "name":"Institut Giacometti",
     "type":{
       "landmark_type":"sightseeing"
@@ -910,11 +954,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1213090,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "61":{
+  "60":{
     "name":"Musée Carnavalet",
     "type":{
       "landmark_type":"sightseeing"
@@ -925,11 +970,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2405955,
-    "attractiveness":25,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":25
+    "n_tags":25,
+    "time_to_reach":0
   },
-  "62":{
+  "61":{
     "name":"Petit Palais",
     "type":{
       "landmark_type":"sightseeing"
@@ -940,11 +986,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2778854,
-    "attractiveness":36,
+    "attractiveness":22,
     "must_do":false,
-    "n_tags":32
+    "n_tags":32,
+    "time_to_reach":0
   },
-  "63":{
+  "62":{
     "name":"Sainte-Chapelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -955,11 +1002,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3344870,
-    "attractiveness":56,
+    "attractiveness":34,
     "must_do":false,
-    "n_tags":54
+    "n_tags":54,
+    "time_to_reach":0
   },
-  "64":{
+  "63":{
     "name":"Musée du Louvre",
     "type":{
       "landmark_type":"sightseeing"
@@ -970,11 +1018,12 @@
     ],
     "osm_type":"relation",
     "osm_id":7515426,
-    "attractiveness":33,
+    "attractiveness":20,
     "must_do":false,
-    "n_tags":33
+    "n_tags":33,
+    "time_to_reach":0
   },
-  "65":{
+  "64":{
     "name":"Musée de la Carte à Jouer et Galerie d'Histoire de la Ville",
     "type":{
       "landmark_type":"sightseeing"
@@ -985,11 +1034,12 @@
     ],
     "osm_type":"relation",
     "osm_id":12903823,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "66":{
+  "65":{
     "name":"Muséum national d'histoire naturelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -1000,11 +1050,12 @@
     ],
     "osm_type":"relation",
     "osm_id":13611998,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "67":{
+  "66":{
     "name":"Champ de Mars",
     "type":{
       "landmark_type":"sightseeing"
@@ -1015,11 +1066,12 @@
     ],
     "osm_type":"way",
     "osm_id":4208595,
-    "attractiveness":25,
+    "attractiveness":35,
     "must_do":false,
-    "n_tags":25
+    "n_tags":25,
+    "time_to_reach":0
   },
-  "68":{
+  "67":{
     "name":"Jardin des Plantes",
     "type":{
       "landmark_type":"sightseeing"
@@ -1030,11 +1082,12 @@
     ],
     "osm_type":"way",
     "osm_id":4221369,
-    "attractiveness":22,
+    "attractiveness":31,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "69":{
+  "68":{
     "name":"Jardin du Palais Royal",
     "type":{
       "landmark_type":"sightseeing"
@@ -1045,11 +1098,12 @@
     ],
     "osm_type":"way",
     "osm_id":4263203,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "70":{
+  "69":{
     "name":"Université Paris 1 Panthéon-Sorbonne - Centre Sorbonne",
     "type":{
       "landmark_type":"sightseeing"
@@ -1060,11 +1114,12 @@
     ],
     "osm_type":"way",
     "osm_id":4433289,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "71":{
+  "70":{
     "name":"Tour Eiffel",
     "type":{
       "landmark_type":"sightseeing"
@@ -1075,11 +1130,12 @@
     ],
     "osm_type":"way",
     "osm_id":5013364,
-    "attractiveness":96,
+    "attractiveness":57,
     "must_do":false,
-    "n_tags":94
+    "n_tags":94,
+    "time_to_reach":0
   },
-  "72":{
+  "71":{
     "name":"Cimetière du Père-Lachaise",
     "type":{
       "landmark_type":"sightseeing"
@@ -1090,11 +1146,12 @@
     ],
     "osm_type":"way",
     "osm_id":13859706,
-    "attractiveness":24,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
-  "73":{
+  "72":{
     "name":"Tour Montparnasse",
     "type":{
       "landmark_type":"sightseeing"
@@ -1105,11 +1162,12 @@
     ],
     "osm_type":"way",
     "osm_id":16406633,
-    "attractiveness":36,
+    "attractiveness":21,
     "must_do":false,
-    "n_tags":36
+    "n_tags":36,
+    "time_to_reach":0
   },
-  "74":{
+  "73":{
     "name":"Panthéon",
     "type":{
       "landmark_type":"sightseeing"
@@ -1120,11 +1178,12 @@
     ],
     "osm_type":"way",
     "osm_id":16407465,
-    "attractiveness":37,
+    "attractiveness":23,
     "must_do":false,
-    "n_tags":32
+    "n_tags":32,
+    "time_to_reach":0
   },
-  "75":{
+  "74":{
     "name":"Jardin Atlantique",
     "type":{
       "landmark_type":"sightseeing"
@@ -1135,11 +1194,12 @@
     ],
     "osm_type":"way",
     "osm_id":16923782,
-    "attractiveness":13,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "76":{
+  "75":{
     "name":"Tour Saint-Jacques",
     "type":{
       "landmark_type":"sightseeing"
@@ -1150,11 +1210,12 @@
     ],
     "osm_type":"way",
     "osm_id":20326709,
-    "attractiveness":32,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":31
+    "n_tags":31,
+    "time_to_reach":0
   },
-  "77":{
+  "76":{
     "name":"Collège des Bernardins",
     "type":{
       "landmark_type":"sightseeing"
@@ -1165,11 +1226,12 @@
     ],
     "osm_type":"way",
     "osm_id":26584053,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "78":{
+  "77":{
     "name":"Ancienne faisanderie",
     "type":{
       "landmark_type":"sightseeing"
@@ -1180,11 +1242,12 @@
     ],
     "osm_type":"way",
     "osm_id":42332649,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "79":{
+  "78":{
     "name":"Reptiles",
     "type":{
       "landmark_type":"sightseeing"
@@ -1195,11 +1258,12 @@
     ],
     "osm_type":"way",
     "osm_id":42332651,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "80":{
+  "79":{
     "name":"Église Saint-Roch",
     "type":{
       "landmark_type":"sightseeing"
@@ -1210,11 +1274,12 @@
     ],
     "osm_type":"way",
     "osm_id":42722202,
-    "attractiveness":26,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "81":{
+  "80":{
     "name":"Hôtel Lebrun",
     "type":{
       "landmark_type":"sightseeing"
@@ -1225,11 +1290,12 @@
     ],
     "osm_type":"way",
     "osm_id":43020667,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "82":{
+  "81":{
     "name":"Pont Neuf",
     "type":{
       "landmark_type":"sightseeing"
@@ -1240,26 +1306,12 @@
     ],
     "osm_type":"way",
     "osm_id":53574149,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "83":{
-    "name":"Pont Neuf",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8578047,
-      2.3419414
-    ],
-    "osm_type":"way",
-    "osm_id":53574164,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":16
-  },
-  "84":{
+  "82":{
     "name":"Pont au Change",
     "type":{
       "landmark_type":"sightseeing"
@@ -1270,11 +1322,12 @@
     ],
     "osm_type":"way",
     "osm_id":53582123,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "85":{
+  "83":{
     "name":"Comédie Française",
     "type":{
       "landmark_type":"sightseeing"
@@ -1285,11 +1338,12 @@
     ],
     "osm_type":"way",
     "osm_id":54053052,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "86":{
+  "84":{
     "name":"Fontaine Molière",
     "type":{
       "landmark_type":"sightseeing"
@@ -1300,11 +1354,12 @@
     ],
     "osm_type":"way",
     "osm_id":54097804,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "87":{
+  "85":{
     "name":"Place Vendôme",
     "type":{
       "landmark_type":"sightseeing"
@@ -1315,11 +1370,12 @@
     ],
     "osm_type":"way",
     "osm_id":54175774,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "88":{
+  "86":{
     "name":"Église de la Madeleine",
     "type":{
       "landmark_type":"sightseeing"
@@ -1330,11 +1386,12 @@
     ],
     "osm_type":"way",
     "osm_id":54180046,
-    "attractiveness":33,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":33
+    "n_tags":33,
+    "time_to_reach":0
   },
-  "89":{
+  "87":{
     "name":"Opéra Garnier",
     "type":{
       "landmark_type":"sightseeing"
@@ -1345,11 +1402,12 @@
     ],
     "osm_type":"way",
     "osm_id":54667456,
-    "attractiveness":26,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "90":{
+  "88":{
     "name":"Hôtel de Lauzun",
     "type":{
       "landmark_type":"sightseeing"
@@ -1360,11 +1418,12 @@
     ],
     "osm_type":"way",
     "osm_id":55292128,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "91":{
+  "89":{
     "name":"Presbytère",
     "type":{
       "landmark_type":"sightseeing"
@@ -1375,11 +1434,12 @@
     ],
     "osm_type":"way",
     "osm_id":55341527,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "92":{
+  "90":{
     "name":"Centre Georges Pompidou",
     "type":{
       "landmark_type":"sightseeing"
@@ -1390,11 +1450,12 @@
     ],
     "osm_type":"way",
     "osm_id":55503397,
-    "attractiveness":43,
+    "attractiveness":26,
     "must_do":false,
-    "n_tags":43
+    "n_tags":43,
+    "time_to_reach":0
   },
-  "93":{
+  "91":{
     "name":"Centre Wallonie-Bruxelles",
     "type":{
       "landmark_type":"sightseeing"
@@ -1405,11 +1466,12 @@
     ],
     "osm_type":"way",
     "osm_id":55751636,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "94":{
+  "92":{
     "name":"Immeuble Henri Sauvage",
     "type":{
       "landmark_type":"sightseeing"
@@ -1420,11 +1482,12 @@
     ],
     "osm_type":"way",
     "osm_id":63711049,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "95":{
+  "93":{
     "name":"Pyramide de Cassini",
     "type":{
       "landmark_type":"sightseeing"
@@ -1435,11 +1498,12 @@
     ],
     "osm_type":"way",
     "osm_id":64414723,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "96":{
+  "94":{
     "name":"Cathédrale Saint-Louis des Invalides",
     "type":{
       "landmark_type":"sightseeing"
@@ -1450,11 +1514,12 @@
     ],
     "osm_type":"way",
     "osm_id":64955027,
-    "attractiveness":18,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "97":{
+  "95":{
     "name":"Paris Story",
     "type":{
       "landmark_type":"sightseeing"
@@ -1465,11 +1530,12 @@
     ],
     "osm_type":"way",
     "osm_id":69226411,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "98":{
+  "96":{
     "name":"Obélisque de Louxor",
     "type":{
       "landmark_type":"sightseeing"
@@ -1480,11 +1546,12 @@
     ],
     "osm_type":"way",
     "osm_id":72937686,
-    "attractiveness":21,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "99":{
+  "97":{
     "name":"Les Docks - Cité de la Mode et du Design",
     "type":{
       "landmark_type":"sightseeing"
@@ -1495,11 +1562,12 @@
     ],
     "osm_type":"way",
     "osm_id":78535563,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "100":{
+  "98":{
     "name":"Maison Planeix",
     "type":{
       "landmark_type":"sightseeing"
@@ -1510,11 +1578,12 @@
     ],
     "osm_type":"way",
     "osm_id":79084394,
-    "attractiveness":18,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "101":{
+  "99":{
     "name":"Cité-refuge de l'Armée du Salut",
     "type":{
       "landmark_type":"sightseeing"
@@ -1525,11 +1594,12 @@
     ],
     "osm_type":"way",
     "osm_id":79084623,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "102":{
+  "100":{
     "name":"Moulin",
     "type":{
       "landmark_type":"sightseeing"
@@ -1540,11 +1610,12 @@
     ],
     "osm_type":"way",
     "osm_id":79147884,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "103":{
+  "101":{
     "name":"Jardin Japonais",
     "type":{
       "landmark_type":"sightseeing"
@@ -1555,11 +1626,12 @@
     ],
     "osm_type":"way",
     "osm_id":79641991,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "104":{
+  "102":{
     "name":"Canots du lac",
     "type":{
       "landmark_type":"sightseeing"
@@ -1570,11 +1642,12 @@
     ],
     "osm_type":"way",
     "osm_id":83059104,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "105":{
+  "103":{
     "name":"Grande Volière",
     "type":{
       "landmark_type":"sightseeing"
@@ -1585,11 +1658,12 @@
     ],
     "osm_type":"way",
     "osm_id":83976054,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "106":{
+  "104":{
     "name":"Dodo manège",
     "type":{
       "landmark_type":"sightseeing"
@@ -1600,11 +1674,12 @@
     ],
     "osm_type":"way",
     "osm_id":83976101,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "107":{
+  "105":{
     "name":"Hôtel Mezzara",
     "type":{
       "landmark_type":"sightseeing"
@@ -1615,11 +1690,12 @@
     ],
     "osm_type":"way",
     "osm_id":84262071,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "108":{
+  "106":{
     "name":"Jardin des serres d’Auteuil",
     "type":{
       "landmark_type":"sightseeing"
@@ -1630,11 +1706,12 @@
     ],
     "osm_type":"way",
     "osm_id":86260473,
-    "attractiveness":21,
+    "attractiveness":30,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "109":{
+  "107":{
     "name":"Laboratoire d'aérodynamisme de Gustave Eiffel",
     "type":{
       "landmark_type":"sightseeing"
@@ -1645,11 +1722,12 @@
     ],
     "osm_type":"way",
     "osm_id":87443668,
-    "attractiveness":21,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "110":{
+  "108":{
     "name":"La Tour aux Figures",
     "type":{
       "landmark_type":"sightseeing"
@@ -1660,11 +1738,12 @@
     ],
     "osm_type":"way",
     "osm_id":105152323,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "111":{
+  "109":{
     "name":"École Militaire",
     "type":{
       "landmark_type":"sightseeing"
@@ -1675,11 +1754,12 @@
     ],
     "osm_type":"way",
     "osm_id":106312008,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "112":{
+  "110":{
     "name":"Église du Dôme",
     "type":{
       "landmark_type":"sightseeing"
@@ -1690,11 +1770,12 @@
     ],
     "osm_type":"way",
     "osm_id":112452790,
-    "attractiveness":25,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "113":{
+  "111":{
     "name":"Place d’Aligre",
     "type":{
       "landmark_type":"sightseeing"
@@ -1705,11 +1786,12 @@
     ],
     "osm_type":"way",
     "osm_id":118759777,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "114":{
+  "112":{
     "name":"Jardin du Luxembourg",
     "type":{
       "landmark_type":"sightseeing"
@@ -1720,11 +1802,12 @@
     ],
     "osm_type":"way",
     "osm_id":128206209,
-    "attractiveness":23,
+    "attractiveness":32,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "115":{
+  "113":{
     "name":"Jardin Catherine Labouré",
     "type":{
       "landmark_type":"sightseeing"
@@ -1735,11 +1818,12 @@
     ],
     "osm_type":"way",
     "osm_id":148481812,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "116":{
+  "114":{
     "name":"École nationale supérieure des beaux-arts",
     "type":{
       "landmark_type":"sightseeing"
@@ -1750,11 +1834,12 @@
     ],
     "osm_type":"way",
     "osm_id":148485612,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "117":{
+  "115":{
     "name":"Assemblée nationale",
     "type":{
       "landmark_type":"sightseeing"
@@ -1765,11 +1850,12 @@
     ],
     "osm_type":"way",
     "osm_id":175448742,
-    "attractiveness":19,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "118":{
+  "116":{
     "name":"Bateaux-Mouches",
     "type":{
       "landmark_type":"sightseeing"
@@ -1780,11 +1866,12 @@
     ],
     "osm_type":"way",
     "osm_id":182821008,
-    "attractiveness":13,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "119":{
+  "117":{
     "name":"Cathédrale Notre-Dame de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -1795,11 +1882,12 @@
     ],
     "osm_type":"way",
     "osm_id":201611261,
-    "attractiveness":55,
+    "attractiveness":33,
     "must_do":false,
-    "n_tags":54
+    "n_tags":54,
+    "time_to_reach":0
   },
-  "120":{
+  "118":{
     "name":"Arc de Triomphe",
     "type":{
       "landmark_type":"sightseeing"
@@ -1810,11 +1898,12 @@
     ],
     "osm_type":"way",
     "osm_id":226413508,
-    "attractiveness":50,
+    "attractiveness":30,
     "must_do":false,
-    "n_tags":49
+    "n_tags":49,
+    "time_to_reach":0
   },
-  "121":{
+  "119":{
     "name":"Plan du quartier Jeanne d'Arc",
     "type":{
       "landmark_type":"sightseeing"
@@ -1825,11 +1914,12 @@
     ],
     "osm_type":"way",
     "osm_id":226644735,
-    "attractiveness":2,
+    "attractiveness":1,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "122":{
+  "120":{
     "name":"Arc de Triomphe du Carrousel",
     "type":{
       "landmark_type":"sightseeing"
@@ -1840,11 +1930,12 @@
     ],
     "osm_type":"way",
     "osm_id":227483542,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "123":{
+  "121":{
     "name":"Carrousel de la Tour Eiffel",
     "type":{
       "landmark_type":"sightseeing"
@@ -1855,11 +1946,12 @@
     ],
     "osm_type":"way",
     "osm_id":239873024,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "124":{
+  "122":{
     "name":"Salle du Livre d'Or",
     "type":{
       "landmark_type":"sightseeing"
@@ -1870,11 +1962,12 @@
     ],
     "osm_type":"way",
     "osm_id":261881547,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "125":{
+  "123":{
     "name":"Pavillon Eiffel",
     "type":{
       "landmark_type":"sightseeing"
@@ -1885,11 +1978,12 @@
     ],
     "osm_type":"way",
     "osm_id":308145258,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "126":{
+  "124":{
     "name":"Pavillon Ferrié",
     "type":{
       "landmark_type":"sightseeing"
@@ -1900,11 +1994,12 @@
     ],
     "osm_type":"way",
     "osm_id":308145259,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "127":{
+  "125":{
     "name":"Tombe du Soldat inconnu",
     "type":{
       "landmark_type":"sightseeing"
@@ -1915,11 +2010,12 @@
     ],
     "osm_type":"way",
     "osm_id":339016618,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "128":{
+  "126":{
     "name":"Pyramide du Louvre",
     "type":{
       "landmark_type":"sightseeing"
@@ -1930,11 +2026,12 @@
     ],
     "osm_type":"way",
     "osm_id":375076234,
-    "attractiveness":27,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":27
+    "n_tags":27,
+    "time_to_reach":0
   },
-  "129":{
+  "127":{
     "name":"Cavae des Arènes de Lutèce",
     "type":{
       "landmark_type":"sightseeing"
@@ -1945,11 +2042,12 @@
     ],
     "osm_type":"way",
     "osm_id":406229046,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "130":{
+  "128":{
     "name":"Place de la Concorde",
     "type":{
       "landmark_type":"sightseeing"
@@ -1960,11 +2058,12 @@
     ],
     "osm_type":"way",
     "osm_id":432819047,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "131":{
+  "129":{
     "name":"Grande Mosquée de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -1975,11 +2074,12 @@
     ],
     "osm_type":"way",
     "osm_id":437812893,
-    "attractiveness":29,
+    "attractiveness":17,
     "must_do":false,
-    "n_tags":28
+    "n_tags":28,
+    "time_to_reach":0
   },
-  "132":{
+  "130":{
     "name":"Place de la République",
     "type":{
       "landmark_type":"sightseeing"
@@ -1990,11 +2090,12 @@
     ],
     "osm_type":"way",
     "osm_id":450130138,
-    "attractiveness":14,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "133":{
+  "131":{
     "name":"Méridienne de l'Observatoire de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -2005,11 +2106,12 @@
     ],
     "osm_type":"way",
     "osm_id":515068430,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "134":{
+  "132":{
     "name":"Passerelle Mornay",
     "type":{
       "landmark_type":"sightseeing"
@@ -2020,11 +2122,12 @@
     ],
     "osm_type":"way",
     "osm_id":568554914,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "135":{
+  "133":{
     "name":"Ferme urbaine pédagogique",
     "type":{
       "landmark_type":"sightseeing"
@@ -2035,11 +2138,12 @@
     ],
     "osm_type":"way",
     "osm_id":568915825,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "136":{
+  "134":{
     "name":"Ancienne Crèmerie",
     "type":{
       "landmark_type":"sightseeing"
@@ -2050,11 +2154,12 @@
     ],
     "osm_type":"way",
     "osm_id":936891354,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "137":{
+  "135":{
     "name":"Limonaire Frères",
     "type":{
       "landmark_type":"sightseeing"
@@ -2065,11 +2170,12 @@
     ],
     "osm_type":"way",
     "osm_id":1071482635,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "138":{
+  "136":{
     "name":"Labyrinthe",
     "type":{
       "landmark_type":"sightseeing"
@@ -2080,11 +2186,12 @@
     ],
     "osm_type":"way",
     "osm_id":1087988490,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "139":{
+  "137":{
     "name":"L'Astrolabe",
     "type":{
       "landmark_type":"sightseeing"
@@ -2095,11 +2202,12 @@
     ],
     "osm_type":"way",
     "osm_id":1094525772,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "140":{
+  "138":{
     "name":"Les As du Volant",
     "type":{
       "landmark_type":"sightseeing"
@@ -2110,11 +2218,12 @@
     ],
     "osm_type":"way",
     "osm_id":1094525773,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "141":{
+  "139":{
     "name":"Les Speed rockets",
     "type":{
       "landmark_type":"sightseeing"
@@ -2125,11 +2234,12 @@
     ],
     "osm_type":"way",
     "osm_id":1094525775,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "142":{
+  "140":{
     "name":"Maison dite « de Jacques Cœur »",
     "type":{
       "landmark_type":"sightseeing"
@@ -2140,11 +2250,12 @@
     ],
     "osm_type":"way",
     "osm_id":1121066634,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "143":{
+  "141":{
     "name":"Maison à l'enseigne du Faucheur",
     "type":{
       "landmark_type":"sightseeing"
@@ -2155,11 +2266,12 @@
     ],
     "osm_type":"way",
     "osm_id":1123456865,
-    "attractiveness":13,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "144":{
+  "142":{
     "name":"Maison à l'enseigne du Mouton",
     "type":{
       "landmark_type":"sightseeing"
@@ -2170,11 +2282,12 @@
     ],
     "osm_type":"way",
     "osm_id":1123456866,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "145":{
+  "143":{
     "name":"Les Grandes Serres du Jardin des Plantes",
     "type":{
       "landmark_type":"sightseeing"
@@ -2185,11 +2298,12 @@
     ],
     "osm_type":"way",
     "osm_id":1288442711,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "146":{
+  "144":{
     "name":"Hôtel de Ville",
     "type":{
       "landmark_type":"sightseeing"
@@ -2200,11 +2314,12 @@
     ],
     "osm_type":"relation",
     "osm_id":284089,
-    "attractiveness":34,
+    "attractiveness":20,
     "must_do":false,
-    "n_tags":32
+    "n_tags":32,
+    "time_to_reach":0
   },
-  "147":{
+  "145":{
     "name":"Palais de Justice de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -2215,11 +2330,12 @@
     ],
     "osm_type":"relation",
     "osm_id":536982,
-    "attractiveness":24,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
-  "148":{
+  "146":{
     "name":"Maison de Nicolas Flamel",
     "type":{
       "landmark_type":"sightseeing"
@@ -2230,11 +2346,12 @@
     ],
     "osm_type":"relation",
     "osm_id":550881,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "149":{
+  "147":{
     "name":"Place des Vosges",
     "type":{
       "landmark_type":"sightseeing"
@@ -2245,11 +2362,12 @@
     ],
     "osm_type":"relation",
     "osm_id":571765,
-    "attractiveness":18,
+    "attractiveness":26,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "150":{
+  "148":{
     "name":"Palais de l'Élysée",
     "type":{
       "landmark_type":"sightseeing"
@@ -2260,11 +2378,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1060803,
-    "attractiveness":32,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":32
+    "n_tags":32,
+    "time_to_reach":0
   },
-  "151":{
+  "149":{
     "name":"Hôtel de la Marine",
     "type":{
       "landmark_type":"sightseeing"
@@ -2275,11 +2394,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1060822,
-    "attractiveness":18,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "152":{
+  "150":{
     "name":"Hôtel des Invalides",
     "type":{
       "landmark_type":"sightseeing"
@@ -2290,11 +2410,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1463538,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "153":{
+  "151":{
     "name":"La Samaritaine",
     "type":{
       "landmark_type":"sightseeing"
@@ -2305,11 +2426,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3075632,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "154":{
+  "152":{
     "name":"Palais du Louvre",
     "type":{
       "landmark_type":"sightseeing"
@@ -2320,11 +2442,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3262297,
-    "attractiveness":32,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":32
+    "n_tags":32,
+    "time_to_reach":0
   },
-  "155":{
+  "153":{
     "name":"Palais Royal",
     "type":{
       "landmark_type":"sightseeing"
@@ -2335,11 +2458,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3300400,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "156":{
+  "154":{
     "name":"Hôtel de Soubise",
     "type":{
       "landmark_type":"sightseeing"
@@ -2350,11 +2474,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3371164,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "157":{
+  "155":{
     "name":"Parc Montsouris",
     "type":{
       "landmark_type":"sightseeing"
@@ -2365,11 +2490,12 @@
     ],
     "osm_type":"relation",
     "osm_id":4050160,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "158":{
+  "156":{
     "name":"Palais de Chaillot",
     "type":{
       "landmark_type":"sightseeing"
@@ -2380,11 +2506,12 @@
     ],
     "osm_type":"relation",
     "osm_id":6826569,
-    "attractiveness":25,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":25
+    "n_tags":25,
+    "time_to_reach":0
   },
-  "159":{
+  "157":{
     "name":"Mémorial des Martyrs de la Déportation",
     "type":{
       "landmark_type":"sightseeing"
@@ -2395,11 +2522,12 @@
     ],
     "osm_type":"relation",
     "osm_id":9396191,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "160":{
+  "158":{
     "name":"Jardins des Champs-Élysées",
     "type":{
       "landmark_type":"sightseeing"
@@ -2410,11 +2538,12 @@
     ],
     "osm_type":"relation",
     "osm_id":10142349,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "161":{
+  "159":{
     "name":"Cloître des Billettes",
     "type":{
       "landmark_type":"sightseeing"
@@ -2425,11 +2554,12 @@
     ],
     "osm_type":"way",
     "osm_id":55942659,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "162":{
+  "160":{
     "name":"Galerie J. Kugel",
     "type":{
       "landmark_type":"sightseeing"
@@ -2440,11 +2570,12 @@
     ],
     "osm_type":"way",
     "osm_id":63564054,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "163":{
+  "161":{
     "name":"Cinémathèque Française",
     "type":{
       "landmark_type":"sightseeing"
@@ -2455,11 +2586,12 @@
     ],
     "osm_type":"way",
     "osm_id":78271385,
-    "attractiveness":26,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "164":{
+  "162":{
     "name":"Open Bach",
     "type":{
       "landmark_type":"sightseeing"
@@ -2470,11 +2602,12 @@
     ],
     "osm_type":"way",
     "osm_id":154801656,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "165":{
+  "163":{
     "name":"Galerie Jeanne Bucher",
     "type":{
       "landmark_type":"sightseeing"
@@ -2485,26 +2618,12 @@
     ],
     "osm_type":"way",
     "osm_id":563066953,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "166":{
-    "name":"Tour Eiffel",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8582603,
-      2.2945008
-    ],
-    "osm_type":"way",
-    "osm_id":5013364,
-    "attractiveness":96,
-    "must_do":false,
-    "n_tags":94
-  },
-  "167":{
+  "164":{
     "name":"Pont Alexandre III",
     "type":{
       "landmark_type":"sightseeing"
@@ -2515,26 +2634,12 @@
     ],
     "osm_type":"way",
     "osm_id":17067006,
-    "attractiveness":20,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "168":{
-    "name":"Collège des Bernardins",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8488289,
-      2.3520343
-    ],
-    "osm_type":"way",
-    "osm_id":26584053,
-    "attractiveness":14,
-    "must_do":false,
-    "n_tags":14
-  },
-  "169":{
+  "165":{
     "name":"Passage Brady",
     "type":{
       "landmark_type":"sightseeing"
@@ -2545,11 +2650,12 @@
     ],
     "osm_type":"way",
     "osm_id":29709952,
-    "attractiveness":12,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "170":{
+  "166":{
     "name":"Fontaine Saint-Michel",
     "type":{
       "landmark_type":"sightseeing"
@@ -2560,11 +2666,12 @@
     ],
     "osm_type":"way",
     "osm_id":40579862,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "171":{
+  "167":{
     "name":"Cabinet d'Histoire (Hôtel de Magny)",
     "type":{
       "landmark_type":"sightseeing"
@@ -2575,11 +2682,12 @@
     ],
     "osm_type":"way",
     "osm_id":42332581,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "172":{
+  "168":{
     "name":"Aqueduc de la Vanne",
     "type":{
       "landmark_type":"sightseeing"
@@ -2590,11 +2698,12 @@
     ],
     "osm_type":"way",
     "osm_id":44427217,
-    "attractiveness":18,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "173":{
+  "169":{
     "name":"Fontaine des Innocents",
     "type":{
       "landmark_type":"sightseeing"
@@ -2605,11 +2714,12 @@
     ],
     "osm_type":"way",
     "osm_id":52469222,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "174":{
+  "170":{
     "name":"Ministère de la Justice",
     "type":{
       "landmark_type":"sightseeing"
@@ -2620,11 +2730,12 @@
     ],
     "osm_type":"way",
     "osm_id":54175265,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "175":{
+  "171":{
     "name":"Hôtel Saint-Florentin",
     "type":{
       "landmark_type":"sightseeing"
@@ -2635,11 +2746,12 @@
     ],
     "osm_type":"way",
     "osm_id":54177935,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "176":{
+  "172":{
     "name":"Palais Brongniart",
     "type":{
       "landmark_type":"sightseeing"
@@ -2650,11 +2762,12 @@
     ],
     "osm_type":"way",
     "osm_id":54657155,
-    "attractiveness":19,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "177":{
+  "173":{
     "name":"Théâtre Daunou",
     "type":{
       "landmark_type":"sightseeing"
@@ -2665,26 +2778,12 @@
     ],
     "osm_type":"way",
     "osm_id":54730662,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "178":{
-    "name":"Hôtel de Lauzun",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.851565,
-      2.3589627
-    ],
-    "osm_type":"way",
-    "osm_id":55292128,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":11
-  },
-  "179":{
+  "174":{
     "name":"Hôtel de Sens",
     "type":{
       "landmark_type":"sightseeing"
@@ -2695,11 +2794,12 @@
     ],
     "osm_type":"way",
     "osm_id":55541122,
-    "attractiveness":20,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "180":{
+  "175":{
     "name":"Mur des Justes",
     "type":{
       "landmark_type":"sightseeing"
@@ -2710,11 +2810,12 @@
     ],
     "osm_type":"way",
     "osm_id":55620179,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "181":{
+  "176":{
     "name":"Hôtel d'Ourscamp",
     "type":{
       "landmark_type":"sightseeing"
@@ -2725,11 +2826,12 @@
     ],
     "osm_type":"way",
     "osm_id":55620201,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "182":{
+  "177":{
     "name":"Hôtel de Chavigny",
     "type":{
       "landmark_type":"sightseeing"
@@ -2740,11 +2842,12 @@
     ],
     "osm_type":"way",
     "osm_id":56040595,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "183":{
+  "178":{
     "name":"Pavillon Curie",
     "type":{
       "landmark_type":"sightseeing"
@@ -2755,11 +2858,12 @@
     ],
     "osm_type":"way",
     "osm_id":56066139,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "184":{
+  "179":{
     "name":"Pavillon des Sources",
     "type":{
       "landmark_type":"sightseeing"
@@ -2770,11 +2874,12 @@
     ],
     "osm_type":"way",
     "osm_id":56066142,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "185":{
+  "180":{
     "name":"Pavillon Pasteur",
     "type":{
       "landmark_type":"sightseeing"
@@ -2785,11 +2890,12 @@
     ],
     "osm_type":"way",
     "osm_id":56066152,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "186":{
+  "181":{
     "name":"Statue de Beaumarchais",
     "type":{
       "landmark_type":"sightseeing"
@@ -2800,11 +2906,12 @@
     ],
     "osm_type":"way",
     "osm_id":56080370,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "187":{
+  "182":{
     "name":"Fontaine du Pot-de-Fer",
     "type":{
       "landmark_type":"sightseeing"
@@ -2815,11 +2922,12 @@
     ],
     "osm_type":"way",
     "osm_id":57687072,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "188":{
+  "183":{
     "name":"Hôtel de Marle",
     "type":{
       "landmark_type":"sightseeing"
@@ -2830,11 +2938,12 @@
     ],
     "osm_type":"way",
     "osm_id":57781646,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "189":{
+  "184":{
     "name":"Regard Saint-Magloire",
     "type":{
       "landmark_type":"sightseeing"
@@ -2845,11 +2954,12 @@
     ],
     "osm_type":"way",
     "osm_id":60264673,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "190":{
+  "185":{
     "name":"Centre Maï Politzer",
     "type":{
       "landmark_type":"sightseeing"
@@ -2860,11 +2970,12 @@
     ],
     "osm_type":"way",
     "osm_id":61360943,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "191":{
+  "186":{
     "name":"Arcueil 1",
     "type":{
       "landmark_type":"sightseeing"
@@ -2875,11 +2986,12 @@
     ],
     "osm_type":"way",
     "osm_id":61887176,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "192":{
+  "187":{
     "name":"Temple de l'Amitié",
     "type":{
       "landmark_type":"sightseeing"
@@ -2890,11 +3002,12 @@
     ],
     "osm_type":"way",
     "osm_id":62288099,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "193":{
+  "188":{
     "name":"Paul Verlaine",
     "type":{
       "landmark_type":"sightseeing"
@@ -2905,11 +3018,12 @@
     ],
     "osm_type":"way",
     "osm_id":62848416,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "194":{
+  "189":{
     "name":"Gustave Flaubert",
     "type":{
       "landmark_type":"sightseeing"
@@ -2920,11 +3034,12 @@
     ],
     "osm_type":"way",
     "osm_id":62874967,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "195":{
+  "190":{
     "name":"Charles Baudelaire",
     "type":{
       "landmark_type":"sightseeing"
@@ -2935,11 +3050,12 @@
     ],
     "osm_type":"way",
     "osm_id":62874970,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "196":{
+  "191":{
     "name":"Hôtel de Rosambo",
     "type":{
       "landmark_type":"sightseeing"
@@ -2950,11 +3066,12 @@
     ],
     "osm_type":"way",
     "osm_id":63202689,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "197":{
+  "192":{
     "name":"Hôtel Leblanc-Barbedienne",
     "type":{
       "landmark_type":"sightseeing"
@@ -2965,11 +3082,12 @@
     ],
     "osm_type":"way",
     "osm_id":63202751,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "198":{
+  "193":{
     "name":"Hôtel de Beauharnais",
     "type":{
       "landmark_type":"sightseeing"
@@ -2980,11 +3098,12 @@
     ],
     "osm_type":"way",
     "osm_id":63564160,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "199":{
+  "194":{
     "name":"Hôtel de Seignelay",
     "type":{
       "landmark_type":"sightseeing"
@@ -2995,11 +3114,12 @@
     ],
     "osm_type":"way",
     "osm_id":63564188,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "200":{
+  "195":{
     "name":"Dix Solférino",
     "type":{
       "landmark_type":"sightseeing"
@@ -3010,11 +3130,12 @@
     ],
     "osm_type":"way",
     "osm_id":63564201,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "201":{
+  "196":{
     "name":"Maison Renaissance",
     "type":{
       "landmark_type":"sightseeing"
@@ -3025,11 +3146,12 @@
     ],
     "osm_type":"way",
     "osm_id":63651999,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "202":{
+  "197":{
     "name":"Château Raspail",
     "type":{
       "landmark_type":"sightseeing"
@@ -3040,11 +3162,12 @@
     ],
     "osm_type":"way",
     "osm_id":63654009,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "203":{
+  "198":{
     "name":"Pont-Aqueduc d'Arcueil",
     "type":{
       "landmark_type":"sightseeing"
@@ -3055,11 +3178,12 @@
     ],
     "osm_type":"way",
     "osm_id":63656243,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "204":{
+  "199":{
     "name":"Statue du Maréchal Ney",
     "type":{
       "landmark_type":"sightseeing"
@@ -3070,11 +3194,12 @@
     ],
     "osm_type":"way",
     "osm_id":63844704,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "205":{
+  "200":{
     "name":"Statue de Gribeauval",
     "type":{
       "landmark_type":"sightseeing"
@@ -3085,11 +3210,12 @@
     ],
     "osm_type":"way",
     "osm_id":64955010,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "206":{
+  "201":{
     "name":"Restaurant Inter-administratif de La Tour-Maubourg",
     "type":{
       "landmark_type":"sightseeing"
@@ -3100,11 +3226,12 @@
     ],
     "osm_type":"way",
     "osm_id":64955021,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "207":{
+  "202":{
     "name":"Hôtel de Broglie",
     "type":{
       "landmark_type":"sightseeing"
@@ -3115,11 +3242,12 @@
     ],
     "osm_type":"way",
     "osm_id":65090089,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "208":{
+  "203":{
     "name":"Chapelle des Catéchismes",
     "type":{
       "landmark_type":"sightseeing"
@@ -3130,11 +3258,12 @@
     ],
     "osm_type":"way",
     "osm_id":65104255,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "209":{
+  "204":{
     "name":"Hôtel de Choiseul-Praslin",
     "type":{
       "landmark_type":"sightseeing"
@@ -3145,11 +3274,12 @@
     ],
     "osm_type":"way",
     "osm_id":65756922,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "210":{
+  "205":{
     "name":"Hôtel de Pontalba",
     "type":{
       "landmark_type":"sightseeing"
@@ -3160,11 +3290,12 @@
     ],
     "osm_type":"way",
     "osm_id":67106757,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "211":{
+  "206":{
     "name":"Hôtel Perrinet de Jars",
     "type":{
       "landmark_type":"sightseeing"
@@ -3175,11 +3306,12 @@
     ],
     "osm_type":"way",
     "osm_id":67106925,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "212":{
+  "207":{
     "name":"Hôtel de Coislin",
     "type":{
       "landmark_type":"sightseeing"
@@ -3190,11 +3322,12 @@
     ],
     "osm_type":"way",
     "osm_id":67109756,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "213":{
+  "208":{
     "name":"Hôtel de Marigny",
     "type":{
       "landmark_type":"sightseeing"
@@ -3205,11 +3338,12 @@
     ],
     "osm_type":"way",
     "osm_id":67356259,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "214":{
+  "209":{
     "name":"Hôtel de Montalivet",
     "type":{
       "landmark_type":"sightseeing"
@@ -3220,11 +3354,12 @@
     ],
     "osm_type":"way",
     "osm_id":67356828,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "215":{
+  "210":{
     "name":"Hôtel d'Avaray",
     "type":{
       "landmark_type":"sightseeing"
@@ -3235,11 +3370,12 @@
     ],
     "osm_type":"way",
     "osm_id":67356863,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "216":{
+  "211":{
     "name":"Hôtel de Beauffremont",
     "type":{
       "landmark_type":"sightseeing"
@@ -3250,11 +3386,12 @@
     ],
     "osm_type":"way",
     "osm_id":67356892,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "217":{
+  "212":{
     "name":"Statue équestre de Jeanne D'Arc",
     "type":{
       "landmark_type":"sightseeing"
@@ -3265,11 +3402,12 @@
     ],
     "osm_type":"way",
     "osm_id":67501479,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "218":{
+  "213":{
     "name":"Chapelle expiatoire",
     "type":{
       "landmark_type":"sightseeing"
@@ -3280,11 +3418,12 @@
     ],
     "osm_type":"way",
     "osm_id":67557301,
-    "attractiveness":26,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "219":{
+  "214":{
     "name":"Ambroise Thomas",
     "type":{
       "landmark_type":"sightseeing"
@@ -3295,11 +3434,12 @@
     ],
     "osm_type":"way",
     "osm_id":68335779,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "220":{
+  "215":{
     "name":"Charles Gounod",
     "type":{
       "landmark_type":"sightseeing"
@@ -3310,11 +3450,12 @@
     ],
     "osm_type":"way",
     "osm_id":68335800,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "221":{
+  "216":{
     "name":"Statue de Jules Simon",
     "type":{
       "landmark_type":"sightseeing"
@@ -3325,11 +3466,12 @@
     ],
     "osm_type":"way",
     "osm_id":68507719,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "222":{
+  "217":{
     "name":"Hôtel de Broglie-Haussonville",
     "type":{
       "landmark_type":"sightseeing"
@@ -3340,11 +3482,12 @@
     ],
     "osm_type":"way",
     "osm_id":68568652,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "223":{
+  "218":{
     "name":"Hôtel Biron",
     "type":{
       "landmark_type":"sightseeing"
@@ -3355,11 +3498,12 @@
     ],
     "osm_type":"way",
     "osm_id":68568682,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "224":{
+  "219":{
     "name":"Hôtel de Clermont",
     "type":{
       "landmark_type":"sightseeing"
@@ -3370,11 +3514,12 @@
     ],
     "osm_type":"way",
     "osm_id":68568751,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "225":{
+  "220":{
     "name":"Hôtel de Boisgelin",
     "type":{
       "landmark_type":"sightseeing"
@@ -3385,11 +3530,12 @@
     ],
     "osm_type":"way",
     "osm_id":68571250,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "226":{
+  "221":{
     "name":"Hôtel de Cassini",
     "type":{
       "landmark_type":"sightseeing"
@@ -3400,11 +3546,12 @@
     ],
     "osm_type":"way",
     "osm_id":68571376,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "227":{
+  "222":{
     "name":"Monument aux morts de la guerre de 1870",
     "type":{
       "landmark_type":"sightseeing"
@@ -3415,11 +3562,12 @@
     ],
     "osm_type":"way",
     "osm_id":68906600,
-    "attractiveness":4,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "228":{
+  "223":{
     "name":"Lucien Guitry",
     "type":{
       "landmark_type":"sightseeing"
@@ -3430,11 +3578,12 @@
     ],
     "osm_type":"way",
     "osm_id":69034522,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "229":{
+  "224":{
     "name":"foyer de l'Union chrétienne des Jeunes Gens de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -3445,11 +3594,12 @@
     ],
     "osm_type":"way",
     "osm_id":69220148,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "230":{
+  "225":{
     "name":"Jules Ferry",
     "type":{
       "landmark_type":"sightseeing"
@@ -3460,11 +3610,12 @@
     ],
     "osm_type":"way",
     "osm_id":69289019,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "231":{
+  "226":{
     "name":"Monument de la reconnaissance de la Belgique à la France",
     "type":{
       "landmark_type":"sightseeing"
@@ -3475,11 +3626,12 @@
     ],
     "osm_type":"way",
     "osm_id":69325365,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "232":{
+  "227":{
     "name":"Synagogue Buffault",
     "type":{
       "landmark_type":"sightseeing"
@@ -3490,11 +3642,12 @@
     ],
     "osm_type":"way",
     "osm_id":69417432,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "233":{
+  "228":{
     "name":"Hôtel de Béhague",
     "type":{
       "landmark_type":"sightseeing"
@@ -3505,11 +3658,12 @@
     ],
     "osm_type":"way",
     "osm_id":69859760,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "234":{
+  "229":{
     "name":"Les Chardons",
     "type":{
       "landmark_type":"sightseeing"
@@ -3520,26 +3674,12 @@
     ],
     "osm_type":"way",
     "osm_id":70184787,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "235":{
-    "name":"Obélisque de Louxor",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8654765,
-      2.3211306
-    ],
-    "osm_type":"way",
-    "osm_id":72937686,
-    "attractiveness":21,
-    "must_do":false,
-    "n_tags":21
-  },
-  "236":{
+  "230":{
     "name":"Adolphe Schneider",
     "type":{
       "landmark_type":"sightseeing"
@@ -3550,11 +3690,12 @@
     ],
     "osm_type":"way",
     "osm_id":73584482,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "237":{
+  "231":{
     "name":"Buste de Frédérick Lemaître",
     "type":{
       "landmark_type":"sightseeing"
@@ -3565,11 +3706,12 @@
     ],
     "osm_type":"way",
     "osm_id":76910105,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "238":{
+  "232":{
     "name":"Lafayette",
     "type":{
       "landmark_type":"sightseeing"
@@ -3580,11 +3722,12 @@
     ],
     "osm_type":"way",
     "osm_id":77441324,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "239":{
+  "233":{
     "name":"Georges Clemenceau",
     "type":{
       "landmark_type":"sightseeing"
@@ -3595,11 +3738,12 @@
     ],
     "osm_type":"way",
     "osm_id":77441328,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "240":{
+  "234":{
     "name":"Sir Winston Churchill",
     "type":{
       "landmark_type":"sightseeing"
@@ -3610,11 +3754,12 @@
     ],
     "osm_type":"way",
     "osm_id":77441386,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "241":{
+  "235":{
     "name":"Charles de Gaulle",
     "type":{
       "landmark_type":"sightseeing"
@@ -3625,11 +3770,12 @@
     ],
     "osm_type":"way",
     "osm_id":77441401,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "242":{
+  "236":{
     "name":"La Petite Mairie",
     "type":{
       "landmark_type":"sightseeing"
@@ -3640,26 +3786,12 @@
     ],
     "osm_type":"way",
     "osm_id":78146411,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":11
-  },
-  "243":{
-    "name":"Galerie des Gobelins",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8348138,
-      2.3528
-    ],
-    "osm_type":"way",
-    "osm_id":78407170,
     "attractiveness":6,
     "must_do":false,
-    "n_tags":6
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "244":{
+  "237":{
     "name":"Chapelle Saint-Louis de la Salpêtrière",
     "type":{
       "landmark_type":"sightseeing"
@@ -3670,11 +3802,12 @@
     ],
     "osm_type":"way",
     "osm_id":78535716,
-    "attractiveness":19,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "245":{
+  "238":{
     "name":"Buste de Johann Strauss",
     "type":{
       "landmark_type":"sightseeing"
@@ -3685,11 +3818,12 @@
     ],
     "osm_type":"way",
     "osm_id":78548940,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "246":{
+  "239":{
     "name":"Buste du Baron Taylor",
     "type":{
       "landmark_type":"sightseeing"
@@ -3700,11 +3834,12 @@
     ],
     "osm_type":"way",
     "osm_id":78548956,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "247":{
+  "240":{
     "name":"Maison de Madeleine Delbrêl",
     "type":{
       "landmark_type":"sightseeing"
@@ -3715,11 +3850,12 @@
     ],
     "osm_type":"way",
     "osm_id":79148826,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "248":{
+  "241":{
     "name":"Église Saint-Pierre - Saint-Paul",
     "type":{
       "landmark_type":"sightseeing"
@@ -3730,11 +3866,12 @@
     ],
     "osm_type":"way",
     "osm_id":79150389,
-    "attractiveness":24,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "249":{
+  "242":{
     "name":"Comte de Rochambeau",
     "type":{
       "landmark_type":"sightseeing"
@@ -3745,11 +3882,12 @@
     ],
     "osm_type":"way",
     "osm_id":79232734,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "250":{
+  "243":{
     "name":"Hôtel de Massa",
     "type":{
       "landmark_type":"sightseeing"
@@ -3760,11 +3898,12 @@
     ],
     "osm_type":"way",
     "osm_id":79611188,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "251":{
+  "244":{
     "name":"François Arago",
     "type":{
       "landmark_type":"sightseeing"
@@ -3775,11 +3914,12 @@
     ],
     "osm_type":"way",
     "osm_id":79611253,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "252":{
+  "245":{
     "name":"Maison du Fontainier",
     "type":{
       "landmark_type":"sightseeing"
@@ -3790,11 +3930,12 @@
     ],
     "osm_type":"way",
     "osm_id":79611339,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "253":{
+  "246":{
     "name":"Inspection Générale des Carrières",
     "type":{
       "landmark_type":"sightseeing"
@@ -3805,11 +3946,12 @@
     ],
     "osm_type":"way",
     "osm_id":79628544,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "254":{
+  "247":{
     "name":"A. Charlet 1792-1845",
     "type":{
       "landmark_type":"sightseeing"
@@ -3820,11 +3962,12 @@
     ],
     "osm_type":"way",
     "osm_id":79628916,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "255":{
+  "248":{
     "name":"Le Lion de Belfort",
     "type":{
       "landmark_type":"sightseeing"
@@ -3835,26 +3978,12 @@
     ],
     "osm_type":"way",
     "osm_id":79629168,
-    "attractiveness":20,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "256":{
-    "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":19,
-    "must_do":false,
-    "n_tags":19
-  },
-  "257":{
+  "249":{
     "name":"Monument aux Volontaires Américains",
     "type":{
       "landmark_type":"sightseeing"
@@ -3865,11 +3994,12 @@
     ],
     "osm_type":"way",
     "osm_id":79657347,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "258":{
+  "250":{
     "name":"Thomas Paine",
     "type":{
       "landmark_type":"sightseeing"
@@ -3880,11 +4010,12 @@
     ],
     "osm_type":"way",
     "osm_id":79805243,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "259":{
+  "251":{
     "name":"Statue de José de San Martín",
     "type":{
       "landmark_type":"sightseeing"
@@ -3895,11 +4026,12 @@
     ],
     "osm_type":"way",
     "osm_id":79805415,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "260":{
+  "252":{
     "name":"Alphand",
     "type":{
       "landmark_type":"sightseeing"
@@ -3910,11 +4042,12 @@
     ],
     "osm_type":"way",
     "osm_id":80376667,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "261":{
+  "253":{
     "name":"Monument à Émile Levassor",
     "type":{
       "landmark_type":"sightseeing"
@@ -3925,11 +4058,12 @@
     ],
     "osm_type":"way",
     "osm_id":80536797,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "262":{
+  "254":{
     "name":"Immeuble dit Fondation Thiers",
     "type":{
       "landmark_type":"sightseeing"
@@ -3940,11 +4074,12 @@
     ],
     "osm_type":"way",
     "osm_id":80839971,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "263":{
+  "255":{
     "name":"Château de Madrid",
     "type":{
       "landmark_type":"sightseeing"
@@ -3955,11 +4090,12 @@
     ],
     "osm_type":"way",
     "osm_id":81233776,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "264":{
+  "256":{
     "name":"Monument aux Morts de la Guerre 1914-1918",
     "type":{
       "landmark_type":"sightseeing"
@@ -3970,11 +4106,12 @@
     ],
     "osm_type":"way",
     "osm_id":81779009,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "265":{
+  "257":{
     "name":"Immeuble des frères Perret",
     "type":{
       "landmark_type":"sightseeing"
@@ -3985,11 +4122,12 @@
     ],
     "osm_type":"way",
     "osm_id":82683207,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "266":{
+  "258":{
     "name":"Château de la Muette",
     "type":{
       "landmark_type":"sightseeing"
@@ -4000,11 +4138,12 @@
     ],
     "osm_type":"way",
     "osm_id":83203039,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "267":{
+  "259":{
     "name":"Monument aux morts",
     "type":{
       "landmark_type":"sightseeing"
@@ -4015,11 +4154,12 @@
     ],
     "osm_type":"way",
     "osm_id":83238165,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "268":{
+  "260":{
     "name":"Laboratoire de Marie Curie",
     "type":{
       "landmark_type":"sightseeing"
@@ -4030,11 +4170,12 @@
     ],
     "osm_type":"way",
     "osm_id":83976060,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "269":{
+  "261":{
     "name":"Lamarck et sa fille Aménaïde Cornélie",
     "type":{
       "landmark_type":"sightseeing"
@@ -4045,26 +4186,12 @@
     ],
     "osm_type":"way",
     "osm_id":83976069,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "270":{
-    "name":"Hôtel Mezzara",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8506693,
-      2.2707591
-    ],
-    "osm_type":"way",
-    "osm_id":84262071,
-    "attractiveness":17,
-    "must_do":false,
-    "n_tags":17
-  },
-  "271":{
+  "262":{
     "name":"Atelier du Sculpteur Quillivic",
     "type":{
       "landmark_type":"sightseeing"
@@ -4075,11 +4202,12 @@
     ],
     "osm_type":"way",
     "osm_id":85333454,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "272":{
+  "263":{
     "name":"Abbaye Sainte-Marie de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -4090,11 +4218,12 @@
     ],
     "osm_type":"way",
     "osm_id":85427345,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "273":{
+  "264":{
     "name":"Théophile Roussel",
     "type":{
       "landmark_type":"sightseeing"
@@ -4105,11 +4234,12 @@
     ],
     "osm_type":"way",
     "osm_id":87334030,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "274":{
+  "265":{
     "name":"À Nos Morts",
     "type":{
       "landmark_type":"sightseeing"
@@ -4120,11 +4250,12 @@
     ],
     "osm_type":"way",
     "osm_id":87394497,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "275":{
+  "266":{
     "name":"Folie Desmares",
     "type":{
       "landmark_type":"sightseeing"
@@ -4135,11 +4266,12 @@
     ],
     "osm_type":"way",
     "osm_id":87395174,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "276":{
+  "267":{
     "name":"Hôtel Roszé",
     "type":{
       "landmark_type":"sightseeing"
@@ -4150,11 +4282,12 @@
     ],
     "osm_type":"way",
     "osm_id":87420164,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "277":{
+  "268":{
     "name":"Glacière - Chapelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -4165,11 +4298,12 @@
     ],
     "osm_type":"way",
     "osm_id":87989167,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "278":{
+  "269":{
     "name":"Monument aux Morts",
     "type":{
       "landmark_type":"sightseeing"
@@ -4180,11 +4314,12 @@
     ],
     "osm_type":"way",
     "osm_id":91810431,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "279":{
+  "270":{
     "name":"Albert Ier de Belgique",
     "type":{
       "landmark_type":"sightseeing"
@@ -4195,11 +4330,12 @@
     ],
     "osm_type":"way",
     "osm_id":92316083,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "280":{
+  "271":{
     "name":"L'Épopée de Défense Polonaise",
     "type":{
       "landmark_type":"sightseeing"
@@ -4210,11 +4346,12 @@
     ],
     "osm_type":"way",
     "osm_id":92316086,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "281":{
+  "272":{
     "name":"Hommage à Komitas et aux victimes du Génocide arménien",
     "type":{
       "landmark_type":"sightseeing"
@@ -4225,11 +4362,12 @@
     ],
     "osm_type":"way",
     "osm_id":92316090,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "282":{
+  "273":{
     "name":"Monument à Barye",
     "type":{
       "landmark_type":"sightseeing"
@@ -4240,11 +4378,12 @@
     ],
     "osm_type":"way",
     "osm_id":92316091,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "283":{
+  "274":{
     "name":"Flamme de la Liberté",
     "type":{
       "landmark_type":"sightseeing"
@@ -4255,11 +4394,12 @@
     ],
     "osm_type":"way",
     "osm_id":92316094,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "284":{
+  "275":{
     "name":"La Seine",
     "type":{
       "landmark_type":"sightseeing"
@@ -4270,11 +4410,12 @@
     ],
     "osm_type":"way",
     "osm_id":92316098,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "285":{
+  "276":{
     "name":"Enceinte de Philippe Auguste",
     "type":{
       "landmark_type":"sightseeing"
@@ -4285,11 +4426,12 @@
     ],
     "osm_type":"way",
     "osm_id":92316120,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "286":{
+  "277":{
     "name":"Statue de Frémiet",
     "type":{
       "landmark_type":"sightseeing"
@@ -4300,11 +4442,12 @@
     ],
     "osm_type":"way",
     "osm_id":95475832,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "287":{
+  "278":{
     "name":"Monument à Charles Perrault",
     "type":{
       "landmark_type":"sightseeing"
@@ -4315,11 +4458,12 @@
     ],
     "osm_type":"way",
     "osm_id":96156210,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "288":{
+  "279":{
     "name":"Jeanne d'Arc",
     "type":{
       "landmark_type":"sightseeing"
@@ -4330,11 +4474,12 @@
     ],
     "osm_type":"way",
     "osm_id":96156233,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "289":{
+  "280":{
     "name":"Ludovic Trarieux",
     "type":{
       "landmark_type":"sightseeing"
@@ -4345,11 +4490,12 @@
     ],
     "osm_type":"way",
     "osm_id":102222433,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "290":{
+  "281":{
     "name":"Colonne de la Paix Armée",
     "type":{
       "landmark_type":"sightseeing"
@@ -4360,71 +4506,12 @@
     ],
     "osm_type":"way",
     "osm_id":102226138,
-    "attractiveness":3,
+    "attractiveness":1,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "291":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8708984,
-      2.3564843
-    ],
-    "osm_type":"way",
-    "osm_id":111652423,
-    "attractiveness":12,
-    "must_do":false,
-    "n_tags":12
-  },
-  "292":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8714268,
-      2.3544455
-    ],
-    "osm_type":"way",
-    "osm_id":111652425,
-    "attractiveness":10,
-    "must_do":false,
-    "n_tags":10
-  },
-  "293":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.871183,
-      2.3553029
-    ],
-    "osm_type":"way",
-    "osm_id":111652428,
-    "attractiveness":15,
-    "must_do":false,
-    "n_tags":14
-  },
-  "294":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8708726,
-      2.3565696
-    ],
-    "osm_type":"way",
-    "osm_id":111652429,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":11
-  },
-  "295":{
+  "282":{
     "name":"Alfred de Musset - Le Rêve du Poète",
     "type":{
       "landmark_type":"sightseeing"
@@ -4435,11 +4522,12 @@
     ],
     "osm_type":"way",
     "osm_id":115310616,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "296":{
+  "283":{
     "name":"Le Jardin des Souvenirs",
     "type":{
       "landmark_type":"sightseeing"
@@ -4450,11 +4538,12 @@
     ],
     "osm_type":"way",
     "osm_id":116797447,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "297":{
+  "284":{
     "name":"Enceinte de Philippe-Auguste",
     "type":{
       "landmark_type":"sightseeing"
@@ -4467,9 +4556,10 @@
     "osm_id":124066210,
     "attractiveness":8,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "298":{
+  "285":{
     "name":"Hôtel de Poulpry - Maison des Polytechniciens",
     "type":{
       "landmark_type":"sightseeing"
@@ -4480,11 +4570,12 @@
     ],
     "osm_type":"way",
     "osm_id":143381183,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "299":{
+  "286":{
     "name":"Église Saint-Hermeland",
     "type":{
       "landmark_type":"sightseeing"
@@ -4495,11 +4586,12 @@
     ],
     "osm_type":"way",
     "osm_id":146243264,
-    "attractiveness":19,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "300":{
+  "287":{
     "name":"Maison de Richelieu",
     "type":{
       "landmark_type":"sightseeing"
@@ -4510,11 +4602,12 @@
     ],
     "osm_type":"way",
     "osm_id":146243437,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "301":{
+  "288":{
     "name":"Hôtel de Bourvallais",
     "type":{
       "landmark_type":"sightseeing"
@@ -4525,11 +4618,12 @@
     ],
     "osm_type":"way",
     "osm_id":148573267,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "302":{
+  "289":{
     "name":"Tour de la Liberté",
     "type":{
       "landmark_type":"sightseeing"
@@ -4540,11 +4634,12 @@
     ],
     "osm_type":"way",
     "osm_id":149749643,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "303":{
+  "290":{
     "name":"Couvent des Cordelières",
     "type":{
       "landmark_type":"sightseeing"
@@ -4555,11 +4650,12 @@
     ],
     "osm_type":"way",
     "osm_id":154161345,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "304":{
+  "291":{
     "name":"Enceinte de Charles V",
     "type":{
       "landmark_type":"sightseeing"
@@ -4570,26 +4666,12 @@
     ],
     "osm_type":"way",
     "osm_id":159220788,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "305":{
-    "name":"Crypte Archéologique du Parvis Notre-Dame",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8535851,
-      2.3480846
-    ],
-    "osm_type":"way",
-    "osm_id":159896046,
-    "attractiveness":18,
-    "must_do":false,
-    "n_tags":18
-  },
-  "306":{
+  "292":{
     "name":"Statue du général Leclerc",
     "type":{
       "landmark_type":"sightseeing"
@@ -4600,11 +4682,12 @@
     ],
     "osm_type":"way",
     "osm_id":162670438,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "307":{
+  "293":{
     "name":"La Naissance des formes",
     "type":{
       "landmark_type":"sightseeing"
@@ -4615,11 +4698,12 @@
     ],
     "osm_type":"way",
     "osm_id":169987897,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "308":{
+  "294":{
     "name":"Hôtel de Lassay",
     "type":{
       "landmark_type":"sightseeing"
@@ -4630,11 +4714,12 @@
     ],
     "osm_type":"way",
     "osm_id":175448743,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "309":{
+  "295":{
     "name":"Auguste Comte",
     "type":{
       "landmark_type":"sightseeing"
@@ -4645,11 +4730,12 @@
     ],
     "osm_type":"way",
     "osm_id":182697261,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "310":{
+  "296":{
     "name":"Pelletier et Caventou",
     "type":{
       "landmark_type":"sightseeing"
@@ -4660,11 +4746,12 @@
     ],
     "osm_type":"way",
     "osm_id":182697269,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "311":{
+  "297":{
     "name":"Henri IV",
     "type":{
       "landmark_type":"sightseeing"
@@ -4675,26 +4762,12 @@
     ],
     "osm_type":"way",
     "osm_id":200452259,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "312":{
-    "name":"Cathédrale Notre-Dame de Paris",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8529372,
-      2.3498701
-    ],
-    "osm_type":"way",
-    "osm_id":201611261,
-    "attractiveness":55,
-    "must_do":false,
-    "n_tags":54
-  },
-  "313":{
+  "298":{
     "name":"Tour Sud",
     "type":{
       "landmark_type":"sightseeing"
@@ -4705,11 +4778,12 @@
     ],
     "osm_type":"way",
     "osm_id":201611269,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "314":{
+  "299":{
     "name":"Tour Nord",
     "type":{
       "landmark_type":"sightseeing"
@@ -4720,11 +4794,12 @@
     ],
     "osm_type":"way",
     "osm_id":201754180,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "315":{
+  "300":{
     "name":"Chapelle Notre-Dame-des-Anges",
     "type":{
       "landmark_type":"sightseeing"
@@ -4735,11 +4810,12 @@
     ],
     "osm_type":"way",
     "osm_id":219378497,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "316":{
+  "301":{
     "name":"Bastion n°1 de l'enceinte de Thiers",
     "type":{
       "landmark_type":"sightseeing"
@@ -4750,41 +4826,12 @@
     ],
     "osm_type":"way",
     "osm_id":225410145,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "317":{
-    "name":"Arc de Triomphe",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8737782,
-      2.2950354
-    ],
-    "osm_type":"way",
-    "osm_id":226413508,
-    "attractiveness":50,
-    "must_do":false,
-    "n_tags":49
-  },
-  "318":{
-    "name":"Arc de Triomphe du Carrousel",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8617276,
-      2.3329082
-    ],
-    "osm_type":"way",
-    "osm_id":227483542,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":11
-  },
-  "319":{
+  "302":{
     "name":"Colonne de Juillet",
     "type":{
       "landmark_type":"sightseeing"
@@ -4795,11 +4842,12 @@
     ],
     "osm_type":"way",
     "osm_id":227757683,
-    "attractiveness":18,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "320":{
+  "303":{
     "name":"Colonne Vendôme",
     "type":{
       "landmark_type":"sightseeing"
@@ -4810,11 +4858,12 @@
     ],
     "osm_type":"way",
     "osm_id":227762241,
-    "attractiveness":25,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
-  "321":{
+  "304":{
     "name":"Colonnes de Buren",
     "type":{
       "landmark_type":"sightseeing"
@@ -4825,11 +4874,12 @@
     ],
     "osm_type":"way",
     "osm_id":244102108,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "322":{
+  "305":{
     "name":"Poterne des Peupliers",
     "type":{
       "landmark_type":"sightseeing"
@@ -4840,11 +4890,12 @@
     ],
     "osm_type":"way",
     "osm_id":254642464,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "323":{
+  "306":{
     "name":"Ossuaire Militaire",
     "type":{
       "landmark_type":"sightseeing"
@@ -4855,11 +4906,12 @@
     ],
     "osm_type":"way",
     "osm_id":257638612,
-    "attractiveness":2,
+    "attractiveness":1,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "324":{
+  "307":{
     "name":"Fontaine du Palmier",
     "type":{
       "landmark_type":"sightseeing"
@@ -4870,11 +4922,12 @@
     ],
     "osm_type":"way",
     "osm_id":261092850,
-    "attractiveness":23,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "325":{
+  "308":{
     "name":"Hôtel de Villeroy",
     "type":{
       "landmark_type":"sightseeing"
@@ -4885,26 +4938,12 @@
     ],
     "osm_type":"way",
     "osm_id":303824076,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "326":{
-    "name":"Enceinte de Philippe-Auguste",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8570632,
-      2.3602823
-    ],
-    "osm_type":"way",
-    "osm_id":329473726,
-    "attractiveness":13,
-    "must_do":false,
-    "n_tags":12
-  },
-  "327":{
+  "309":{
     "name":"Sarcophage d'Abou Roach",
     "type":{
       "landmark_type":"sightseeing"
@@ -4915,26 +4954,12 @@
     ],
     "osm_type":"way",
     "osm_id":338651010,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "328":{
-    "name":"Tombe du Soldat inconnu",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8737505,
-      2.295133
-    ],
-    "osm_type":"way",
-    "osm_id":339016618,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":15
-  },
-  "329":{
+  "310":{
     "name":"Statue équestre de Louis XIV",
     "type":{
       "landmark_type":"sightseeing"
@@ -4945,11 +4970,12 @@
     ],
     "osm_type":"way",
     "osm_id":368793311,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "330":{
+  "311":{
     "name":"Mémorial 1914-1918",
     "type":{
       "landmark_type":"sightseeing"
@@ -4960,11 +4986,12 @@
     ],
     "osm_type":"way",
     "osm_id":378316046,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "331":{
+  "312":{
     "name":"Regard de Saux",
     "type":{
       "landmark_type":"sightseeing"
@@ -4975,26 +5002,12 @@
     ],
     "osm_type":"way",
     "osm_id":384036445,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "332":{
-    "name":"Cavae des Arènes de Lutèce",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8450776,
-      2.352912
-    ],
-    "osm_type":"way",
-    "osm_id":406229046,
-    "attractiveness":8,
-    "must_do":false,
-    "n_tags":8
-  },
-  "333":{
+  "313":{
     "name":"Gradins",
     "type":{
       "landmark_type":"sightseeing"
@@ -5005,26 +5018,12 @@
     ],
     "osm_type":"way",
     "osm_id":406229048,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "334":{
-    "name":"Gradins",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8448391,
-      2.352799
-    ],
-    "osm_type":"way",
-    "osm_id":406229049,
-    "attractiveness":3,
-    "must_do":false,
-    "n_tags":3
-  },
-  "335":{
+  "314":{
     "name":"Mur de Charles V",
     "type":{
       "landmark_type":"sightseeing"
@@ -5035,11 +5034,12 @@
     ],
     "osm_type":"way",
     "osm_id":427097154,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "336":{
+  "315":{
     "name":"Monument commémoratif de la campagne de Tunisie 1942-1943",
     "type":{
       "landmark_type":"sightseeing"
@@ -5050,11 +5050,12 @@
     ],
     "osm_type":"way",
     "osm_id":427592604,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "337":{
+  "316":{
     "name":"Hôtel du ministre des Affaires étrangères",
     "type":{
       "landmark_type":"sightseeing"
@@ -5065,11 +5066,12 @@
     ],
     "osm_type":"way",
     "osm_id":448794899,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "338":{
+  "317":{
     "name":"Monument aux mères françaises",
     "type":{
       "landmark_type":"sightseeing"
@@ -5080,11 +5082,12 @@
     ],
     "osm_type":"way",
     "osm_id":479861151,
-    "attractiveness":4,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "339":{
+  "318":{
     "name":"Monument a Garibaldi",
     "type":{
       "landmark_type":"sightseeing"
@@ -5095,11 +5098,12 @@
     ],
     "osm_type":"way",
     "osm_id":553396448,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "340":{
+  "319":{
     "name":"Monument à Alexandre Ier de Yougoslavie et Pierre Ier de Serbie",
     "type":{
       "landmark_type":"sightseeing"
@@ -5110,11 +5114,12 @@
     ],
     "osm_type":"way",
     "osm_id":573363031,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "341":{
+  "320":{
     "name":"Aqueduc Médicis",
     "type":{
       "landmark_type":"sightseeing"
@@ -5125,11 +5130,12 @@
     ],
     "osm_type":"way",
     "osm_id":607735321,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "342":{
+  "321":{
     "name":"Monument aux morts de la Première Guerre Mondiale",
     "type":{
       "landmark_type":"sightseeing"
@@ -5140,11 +5146,12 @@
     ],
     "osm_type":"way",
     "osm_id":643177282,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "343":{
+  "322":{
     "name":"Monument aux morts pour la France en opérations extérieures",
     "type":{
       "landmark_type":"sightseeing"
@@ -5155,11 +5162,12 @@
     ],
     "osm_type":"way",
     "osm_id":672001632,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "344":{
+  "323":{
     "name":"Chapelle des Franciscains",
     "type":{
       "landmark_type":"sightseeing"
@@ -5170,11 +5178,12 @@
     ],
     "osm_type":"way",
     "osm_id":680378608,
-    "attractiveness":16,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "345":{
+  "324":{
     "name":"Regard de Gentilly",
     "type":{
       "landmark_type":"sightseeing"
@@ -5185,11 +5194,12 @@
     ],
     "osm_type":"way",
     "osm_id":704999419,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "346":{
+  "325":{
     "name":"Regard de la ferme de la Santé",
     "type":{
       "landmark_type":"sightseeing"
@@ -5200,71 +5210,12 @@
     ],
     "osm_type":"way",
     "osm_id":704999420,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "347":{
-    "name":"Aqueduc Médicis",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.7993131,
-      2.3325843
-    ],
-    "osm_type":"way",
-    "osm_id":755054075,
-    "attractiveness":14,
-    "must_do":false,
-    "n_tags":13
-  },
-  "348":{
-    "name":"Aqueduc Médicis",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8109515,
-      2.3373775
-    ],
-    "osm_type":"way",
-    "osm_id":755054076,
-    "attractiveness":17,
-    "must_do":false,
-    "n_tags":16
-  },
-  "349":{
-    "name":"Aqueduc Médicis",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8330712,
-      2.3347603
-    ],
-    "osm_type":"way",
-    "osm_id":755054078,
-    "attractiveness":15,
-    "must_do":false,
-    "n_tags":15
-  },
-  "350":{
-    "name":"Aqueduc Médicis",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8222217,
-      2.3395991
-    ],
-    "osm_type":"way",
-    "osm_id":760025090,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":16
-  },
-  "351":{
+  "326":{
     "name":"Mémorial national de la guerre d'Algérie et des combats du Maroc et de la Tunisie",
     "type":{
       "landmark_type":"sightseeing"
@@ -5275,11 +5226,12 @@
     ],
     "osm_type":"way",
     "osm_id":814263041,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "352":{
+  "327":{
     "name":"Colonne Médicis",
     "type":{
       "landmark_type":"sightseeing"
@@ -5290,11 +5242,12 @@
     ],
     "osm_type":"way",
     "osm_id":942543401,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "353":{
+  "328":{
     "name":"Louis XIII",
     "type":{
       "landmark_type":"sightseeing"
@@ -5305,11 +5258,12 @@
     ],
     "osm_type":"way",
     "osm_id":948652816,
-    "attractiveness":21,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "354":{
+  "329":{
     "name":"Tour Montgomery",
     "type":{
       "landmark_type":"sightseeing"
@@ -5320,11 +5274,12 @@
     ],
     "osm_type":"way",
     "osm_id":1029627185,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "355":{
+  "330":{
     "name":"Monument de l'Assistance publique",
     "type":{
       "landmark_type":"sightseeing"
@@ -5335,101 +5290,12 @@
     ],
     "osm_type":"way",
     "osm_id":1067962575,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "356":{
-    "name":"Maison à l'enseigne du Mouton",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8558431,
-      2.3568914
-    ],
-    "osm_type":"way",
-    "osm_id":1123456866,
-    "attractiveness":13,
-    "must_do":false,
-    "n_tags":11
-  },
-  "357":{
-    "name":"Fontaine Saint-Michel",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8531803,
-      2.3437005
-    ],
-    "osm_type":"way",
-    "osm_id":1175175570,
-    "attractiveness":8,
-    "must_do":false,
-    "n_tags":7
-  },
-  "358":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8711643,
-      2.3554387
-    ],
-    "osm_type":"way",
-    "osm_id":1194238626,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":11
-  },
-  "359":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8712228,
-      2.3551839
-    ],
-    "osm_type":"way",
-    "osm_id":1194238627,
-    "attractiveness":12,
-    "must_do":false,
-    "n_tags":11
-  },
-  "360":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8710466,
-      2.3559617
-    ],
-    "osm_type":"way",
-    "osm_id":1194238628,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":11
-  },
-  "361":{
-    "name":"Passage Brady",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8712472,
-      2.3551483
-    ],
-    "osm_type":"way",
-    "osm_id":1194238629,
-    "attractiveness":12,
-    "must_do":false,
-    "n_tags":11
-  },
-  "362":{
+  "331":{
     "name":"Famille Boucicaut",
     "type":{
       "landmark_type":"sightseeing"
@@ -5440,11 +5306,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197780546,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "363":{
+  "332":{
     "name":"Auguste Rubin 1841-1909",
     "type":{
       "landmark_type":"sightseeing"
@@ -5455,11 +5322,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815657,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "364":{
+  "333":{
     "name":"Famille Spiegel",
     "type":{
       "landmark_type":"sightseeing"
@@ -5470,11 +5338,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815658,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "365":{
+  "334":{
     "name":"Famille Depaux",
     "type":{
       "landmark_type":"sightseeing"
@@ -5485,11 +5354,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815659,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "366":{
+  "335":{
     "name":"Famille Gautier",
     "type":{
       "landmark_type":"sightseeing"
@@ -5500,11 +5370,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815660,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "367":{
+  "336":{
     "name":"Famille Louis Giffaut",
     "type":{
       "landmark_type":"sightseeing"
@@ -5515,11 +5386,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815661,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "368":{
+  "337":{
     "name":"Famille Levrat",
     "type":{
       "landmark_type":"sightseeing"
@@ -5530,11 +5402,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815662,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "369":{
+  "338":{
     "name":"Famille Pouyadou",
     "type":{
       "landmark_type":"sightseeing"
@@ -5545,11 +5418,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815663,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "370":{
+  "339":{
     "name":"Charles Robert 1827-1899",
     "type":{
       "landmark_type":"sightseeing"
@@ -5560,11 +5434,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815664,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "371":{
+  "340":{
     "name":"Famille Minazzoli",
     "type":{
       "landmark_type":"sightseeing"
@@ -5575,11 +5450,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197815665,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "372":{
+  "341":{
     "name":"Honore Champion",
     "type":{
       "landmark_type":"sightseeing"
@@ -5590,11 +5466,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824735,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "373":{
+  "342":{
     "name":"Famille Raspail",
     "type":{
       "landmark_type":"sightseeing"
@@ -5605,11 +5482,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824736,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "374":{
+  "343":{
     "name":"Madame Jourdain de Sainte Preuve",
     "type":{
       "landmark_type":"sightseeing"
@@ -5620,11 +5498,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824740,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "375":{
+  "344":{
     "name":"leon Cinain 1826-1898",
     "type":{
       "landmark_type":"sightseeing"
@@ -5635,11 +5514,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824741,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "376":{
+  "345":{
     "name":"Famille Valentin",
     "type":{
       "landmark_type":"sightseeing"
@@ -5650,11 +5530,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824742,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "377":{
+  "346":{
     "name":"Alex Berdal",
     "type":{
       "landmark_type":"sightseeing"
@@ -5665,11 +5546,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824743,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "378":{
+  "347":{
     "name":"François Gérard",
     "type":{
       "landmark_type":"sightseeing"
@@ -5680,11 +5562,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824744,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "379":{
+  "348":{
     "name":"Francois Rude",
     "type":{
       "landmark_type":"sightseeing"
@@ -5695,11 +5578,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824745,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "380":{
+  "349":{
     "name":"Gérard Barthélémy",
     "type":{
       "landmark_type":"sightseeing"
@@ -5710,11 +5594,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824746,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "381":{
+  "350":{
     "name":"Antoine Haumont",
     "type":{
       "landmark_type":"sightseeing"
@@ -5725,11 +5610,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824747,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "382":{
+  "351":{
     "name":"La défense passive à ses morts",
     "type":{
       "landmark_type":"sightseeing"
@@ -5740,11 +5626,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824748,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "383":{
+  "352":{
     "name":"Alexandre Duval",
     "type":{
       "landmark_type":"sightseeing"
@@ -5755,11 +5642,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824749,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "384":{
+  "353":{
     "name":"Famille Lormand",
     "type":{
       "landmark_type":"sightseeing"
@@ -5770,11 +5658,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824751,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "385":{
+  "354":{
     "name":"Famille Cohen Jonathan",
     "type":{
       "landmark_type":"sightseeing"
@@ -5785,11 +5674,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824752,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "386":{
+  "355":{
     "name":"Famille Merle",
     "type":{
       "landmark_type":"sightseeing"
@@ -5800,11 +5690,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824755,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "387":{
+  "356":{
     "name":"Famille Gavarry",
     "type":{
       "landmark_type":"sightseeing"
@@ -5815,11 +5706,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824756,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "388":{
+  "357":{
     "name":"Famille Reville",
     "type":{
       "landmark_type":"sightseeing"
@@ -5830,11 +5722,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824760,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "389":{
+  "358":{
     "name":"Henri Langlois",
     "type":{
       "landmark_type":"sightseeing"
@@ -5845,11 +5738,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824761,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "390":{
+  "359":{
     "name":"Pierre Larousse",
     "type":{
       "landmark_type":"sightseeing"
@@ -5860,11 +5754,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824762,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "391":{
+  "360":{
     "name":"Leopold Kretz",
     "type":{
       "landmark_type":"sightseeing"
@@ -5875,11 +5770,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824763,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "392":{
+  "361":{
     "name":"Ricardo Menon",
     "type":{
       "landmark_type":"sightseeing"
@@ -5890,11 +5786,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824764,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "393":{
+  "362":{
     "name":"Famille Swiczka",
     "type":{
       "landmark_type":"sightseeing"
@@ -5905,11 +5802,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824765,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "394":{
+  "363":{
     "name":"Bettina",
     "type":{
       "landmark_type":"sightseeing"
@@ -5920,11 +5818,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824766,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "395":{
+  "364":{
     "name":"Famille Crémieux",
     "type":{
       "landmark_type":"sightseeing"
@@ -5935,11 +5834,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824767,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "396":{
+  "365":{
     "name":"Amille Gunzburg",
     "type":{
       "landmark_type":"sightseeing"
@@ -5950,11 +5850,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197824768,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "397":{
+  "366":{
     "name":"La Convention Nationale",
     "type":{
       "landmark_type":"sightseeing"
@@ -5965,11 +5866,12 @@
     ],
     "osm_type":"way",
     "osm_id":1200936137,
-    "attractiveness":19,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "398":{
+  "367":{
     "name":"Famille Pagenel",
     "type":{
       "landmark_type":"sightseeing"
@@ -5980,11 +5882,12 @@
     ],
     "osm_type":"way",
     "osm_id":1212094003,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "399":{
+  "368":{
     "name":"Famille Chalier",
     "type":{
       "landmark_type":"sightseeing"
@@ -5995,11 +5898,12 @@
     ],
     "osm_type":"way",
     "osm_id":1212094025,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "400":{
+  "369":{
     "name":"Famille Grouffal",
     "type":{
       "landmark_type":"sightseeing"
@@ -6010,11 +5914,12 @@
     ],
     "osm_type":"way",
     "osm_id":1212094027,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "401":{
+  "370":{
     "name":"Famille Prieur",
     "type":{
       "landmark_type":"sightseeing"
@@ -6025,11 +5930,12 @@
     ],
     "osm_type":"way",
     "osm_id":1212094029,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "402":{
+  "371":{
     "name":"Famille Establie",
     "type":{
       "landmark_type":"sightseeing"
@@ -6040,11 +5946,12 @@
     ],
     "osm_type":"way",
     "osm_id":1212094030,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "403":{
+  "372":{
     "name":"Flamme du Souvenir",
     "type":{
       "landmark_type":"sightseeing"
@@ -6055,11 +5962,12 @@
     ],
     "osm_type":"way",
     "osm_id":1222868263,
-    "attractiveness":18,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "404":{
+  "373":{
     "name":"Redoute des Hautes Bruyères",
     "type":{
       "landmark_type":"sightseeing"
@@ -6070,26 +5978,12 @@
     ],
     "osm_type":"way",
     "osm_id":1266113360,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "405":{
-    "name":"Palais de Justice de Paris",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8556537,
-      2.3446072
-    ],
-    "osm_type":"relation",
-    "osm_id":536982,
-    "attractiveness":24,
-    "must_do":false,
-    "n_tags":24
-  },
-  "406":{
+  "374":{
     "name":"Hôtel de Trudon",
     "type":{
       "landmark_type":"sightseeing"
@@ -6100,11 +5994,12 @@
     ],
     "osm_type":"relation",
     "osm_id":538976,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "407":{
+  "375":{
     "name":"Ancien hôtel de Latour-Maubourg",
     "type":{
       "landmark_type":"sightseeing"
@@ -6115,11 +6010,12 @@
     ],
     "osm_type":"relation",
     "osm_id":542284,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "408":{
+  "376":{
     "name":"Palais Cambon",
     "type":{
       "landmark_type":"sightseeing"
@@ -6130,26 +6026,12 @@
     ],
     "osm_type":"relation",
     "osm_id":542460,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "409":{
-    "name":"Maison de Nicolas Flamel",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8635254,
-      2.3531338
-    ],
-    "osm_type":"relation",
-    "osm_id":550881,
-    "attractiveness":10,
-    "must_do":false,
-    "n_tags":9
-  },
-  "410":{
+  "377":{
     "name":"Hôtel de Gourgues",
     "type":{
       "landmark_type":"sightseeing"
@@ -6160,11 +6042,12 @@
     ],
     "osm_type":"relation",
     "osm_id":551488,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "411":{
+  "378":{
     "name":"Hôtel de Gillier",
     "type":{
       "landmark_type":"sightseeing"
@@ -6175,11 +6058,12 @@
     ],
     "osm_type":"relation",
     "osm_id":554046,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "412":{
+  "379":{
     "name":"Hôtel Le Vau",
     "type":{
       "landmark_type":"sightseeing"
@@ -6190,11 +6074,12 @@
     ],
     "osm_type":"relation",
     "osm_id":554059,
-    "attractiveness":13,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "413":{
+  "380":{
     "name":"Hôtel Lambert",
     "type":{
       "landmark_type":"sightseeing"
@@ -6205,11 +6090,12 @@
     ],
     "osm_type":"relation",
     "osm_id":554060,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "414":{
+  "381":{
     "name":"Abbaye Sainte-Geneviève de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -6220,11 +6106,12 @@
     ],
     "osm_type":"relation",
     "osm_id":721757,
-    "attractiveness":13,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "415":{
+  "382":{
     "name":"Palais du Luxembourg",
     "type":{
       "landmark_type":"sightseeing"
@@ -6235,11 +6122,12 @@
     ],
     "osm_type":"relation",
     "osm_id":975955,
-    "attractiveness":31,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":31
+    "n_tags":31,
+    "time_to_reach":0
   },
-  "416":{
+  "383":{
     "name":"Noviciat des Dominicains",
     "type":{
       "landmark_type":"sightseeing"
@@ -6250,11 +6138,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1002118,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "417":{
+  "384":{
     "name":"Palais Bourbon",
     "type":{
       "landmark_type":"sightseeing"
@@ -6265,11 +6154,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1019368,
-    "attractiveness":16,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "418":{
+  "385":{
     "name":"Hôtel Kinski",
     "type":{
       "landmark_type":"sightseeing"
@@ -6280,26 +6170,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1020040,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "419":{
-    "name":"Palais de l'Élysée",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8703766,
-      2.3166056
-    ],
-    "osm_type":"relation",
-    "osm_id":1060803,
-    "attractiveness":32,
-    "must_do":false,
-    "n_tags":32
-  },
-  "420":{
+  "386":{
     "name":"Hôtel de Crillon",
     "type":{
       "landmark_type":"sightseeing"
@@ -6310,11 +6186,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1060804,
-    "attractiveness":19,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "421":{
+  "387":{
     "name":"Hôtel de Plessis-Bellière",
     "type":{
       "landmark_type":"sightseeing"
@@ -6325,26 +6202,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1060806,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "422":{
-    "name":"Hôtel de la Marine",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8669318,
-      2.323065
-    ],
-    "osm_type":"relation",
-    "osm_id":1060822,
-    "attractiveness":18,
-    "must_do":false,
-    "n_tags":18
-  },
-  "423":{
+  "388":{
     "name":"Hôtel de Castries",
     "type":{
       "landmark_type":"sightseeing"
@@ -6355,11 +6218,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1076763,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "424":{
+  "389":{
     "name":"Hôtel de Matignon",
     "type":{
       "landmark_type":"sightseeing"
@@ -6370,11 +6234,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1076880,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "425":{
+  "390":{
     "name":"Hôtel de la Païva",
     "type":{
       "landmark_type":"sightseeing"
@@ -6385,26 +6250,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1086118,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "426":{
-    "name":"Hôtel des Invalides",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8559525,
-      2.3125541
-    ],
-    "osm_type":"relation",
-    "osm_id":1463538,
-    "attractiveness":14,
-    "must_do":false,
-    "n_tags":14
-  },
-  "427":{
+  "391":{
     "name":"Ligne de Petite Ceinture",
     "type":{
       "landmark_type":"sightseeing"
@@ -6415,11 +6266,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1536589,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "428":{
+  "392":{
     "name":"Porte Saint-Denis",
     "type":{
       "landmark_type":"sightseeing"
@@ -6430,11 +6282,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3170072,
-    "attractiveness":20,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "429":{
+  "393":{
     "name":"Porte Saint-Martin",
     "type":{
       "landmark_type":"sightseeing"
@@ -6445,41 +6298,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3178897,
-    "attractiveness":17,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "430":{
-    "name":"Palais du Louvre",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8614768,
-      2.3351677
-    ],
-    "osm_type":"relation",
-    "osm_id":3262297,
-    "attractiveness":32,
-    "must_do":false,
-    "n_tags":32
-  },
-  "431":{
-    "name":"Palais Royal",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8635185,
-      2.3369196
-    ],
-    "osm_type":"relation",
-    "osm_id":3300400,
-    "attractiveness":9,
-    "must_do":false,
-    "n_tags":9
-  },
-  "432":{
+  "394":{
     "name":"Fort d'Ivry",
     "type":{
       "landmark_type":"sightseeing"
@@ -6490,11 +6314,12 @@
     ],
     "osm_type":"relation",
     "osm_id":5658089,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "433":{
+  "395":{
     "name":"Square des Arènes de Lutèce et Capitan",
     "type":{
       "landmark_type":"sightseeing"
@@ -6505,26 +6330,12 @@
     ],
     "osm_type":"relation",
     "osm_id":6087528,
-    "attractiveness":13,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "434":{
-    "name":"Mémorial des Martyrs de la Déportation",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8517365,
-      2.3524734
-    ],
-    "osm_type":"relation",
-    "osm_id":9396191,
-    "attractiveness":21,
-    "must_do":false,
-    "n_tags":21
-  },
-  "435":{
+  "396":{
     "name":"Hôpital Saint-Louis",
     "type":{
       "landmark_type":"sightseeing"
@@ -6535,11 +6346,12 @@
     ],
     "osm_type":"relation",
     "osm_id":10714750,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "436":{
+  "397":{
     "name":"Voie Romaine Paris -Dreux",
     "type":{
       "landmark_type":"sightseeing"
@@ -6550,11 +6362,12 @@
     ],
     "osm_type":"relation",
     "osm_id":15488534,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "437":{
+  "398":{
     "name":"Césure",
     "type":{
       "landmark_type":"sightseeing"
@@ -6565,26 +6378,12 @@
     ],
     "osm_type":"way",
     "osm_id":17044233,
-    "attractiveness":22,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":22
+    "n_tags":22,
+    "time_to_reach":0
   },
-  "438":{
-    "name":"Collège des Bernardins",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8488289,
-      2.3520343
-    ],
-    "osm_type":"way",
-    "osm_id":26584053,
-    "attractiveness":14,
-    "must_do":false,
-    "n_tags":14
-  },
-  "439":{
+  "399":{
     "name":"Carreau du Temple",
     "type":{
       "landmark_type":"sightseeing"
@@ -6595,26 +6394,12 @@
     ],
     "osm_type":"way",
     "osm_id":30612670,
-    "attractiveness":21,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "440":{
-    "name":"Centre Georges Pompidou",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8605235,
-      2.3524395
-    ],
-    "osm_type":"way",
-    "osm_id":55503397,
-    "attractiveness":43,
-    "must_do":false,
-    "n_tags":43
-  },
-  "441":{
+  "400":{
     "name":"Centre culturel de Serbie",
     "type":{
       "landmark_type":"sightseeing"
@@ -6625,26 +6410,12 @@
     ],
     "osm_type":"way",
     "osm_id":55751632,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "442":{
-    "name":"Centre Wallonie-Bruxelles",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8609964,
-      2.3511217
-    ],
-    "osm_type":"way",
-    "osm_id":55751636,
-    "attractiveness":15,
-    "must_do":false,
-    "n_tags":15
-  },
-  "443":{
+  "401":{
     "name":"Halle des Blancs-Manteaux",
     "type":{
       "landmark_type":"sightseeing"
@@ -6655,11 +6426,12 @@
     ],
     "osm_type":"way",
     "osm_id":55997982,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "444":{
+  "402":{
     "name":"Centre Culturel Marocain",
     "type":{
       "landmark_type":"sightseeing"
@@ -6670,11 +6442,12 @@
     ],
     "osm_type":"way",
     "osm_id":60272030,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "445":{
+  "403":{
     "name":"Anis Gras",
     "type":{
       "landmark_type":"sightseeing"
@@ -6685,11 +6458,12 @@
     ],
     "osm_type":"way",
     "osm_id":62081844,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "446":{
+  "404":{
     "name":"Institut hongrois",
     "type":{
       "landmark_type":"sightseeing"
@@ -6700,26 +6474,12 @@
     ],
     "osm_type":"way",
     "osm_id":63354216,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "447":{
-    "name":"Galerie J. Kugel",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8616442,
-      2.3214268
-    ],
-    "osm_type":"way",
-    "osm_id":63564054,
-    "attractiveness":12,
-    "must_do":false,
-    "n_tags":12
-  },
-  "448":{
+  "405":{
     "name":"École Municipale des Beaux-Arts",
     "type":{
       "landmark_type":"sightseeing"
@@ -6730,11 +6490,12 @@
     ],
     "osm_type":"way",
     "osm_id":64405276,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "449":{
+  "406":{
     "name":"Espace Fondation EDF",
     "type":{
       "landmark_type":"sightseeing"
@@ -6745,11 +6506,12 @@
     ],
     "osm_type":"way",
     "osm_id":64941360,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "450":{
+  "407":{
     "name":"Centre Culturel Canadien",
     "type":{
       "landmark_type":"sightseeing"
@@ -6760,11 +6522,12 @@
     ],
     "osm_type":"way",
     "osm_id":65100171,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "451":{
+  "408":{
     "name":"Conservatoire intercommunal du Val de Bièvre",
     "type":{
       "landmark_type":"sightseeing"
@@ -6775,11 +6538,12 @@
     ],
     "osm_type":"way",
     "osm_id":67283972,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "452":{
+  "409":{
     "name":"Centre Culturel Coréen",
     "type":{
       "landmark_type":"sightseeing"
@@ -6790,11 +6554,12 @@
     ],
     "osm_type":"way",
     "osm_id":67725937,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "453":{
+  "410":{
     "name":"Conservatoire Municipal Nadia et Lili Boulanger",
     "type":{
       "landmark_type":"sightseeing"
@@ -6805,11 +6570,12 @@
     ],
     "osm_type":"way",
     "osm_id":69418226,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "454":{
+  "411":{
     "name":"Villa Belleville",
     "type":{
       "landmark_type":"sightseeing"
@@ -6820,11 +6586,12 @@
     ],
     "osm_type":"way",
     "osm_id":69999925,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "455":{
+  "412":{
     "name":"Conservatoire municipal Georges Bizet",
     "type":{
       "landmark_type":"sightseeing"
@@ -6835,11 +6602,12 @@
     ],
     "osm_type":"way",
     "osm_id":69999947,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "456":{
+  "413":{
     "name":"Maison des ensembles",
     "type":{
       "landmark_type":"sightseeing"
@@ -6850,11 +6618,12 @@
     ],
     "osm_type":"way",
     "osm_id":78146448,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "457":{
+  "414":{
     "name":"La Maison des Cinq Sens",
     "type":{
       "landmark_type":"sightseeing"
@@ -6865,11 +6634,12 @@
     ],
     "osm_type":"way",
     "osm_id":79084804,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "458":{
+  "415":{
     "name":"Le Hangar",
     "type":{
       "landmark_type":"sightseeing"
@@ -6880,11 +6650,12 @@
     ],
     "osm_type":"way",
     "osm_id":79152237,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "459":{
+  "416":{
     "name":"La Générale",
     "type":{
       "landmark_type":"sightseeing"
@@ -6895,11 +6666,12 @@
     ],
     "osm_type":"way",
     "osm_id":79633738,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "460":{
+  "417":{
     "name":"Paris Anim' Brancion",
     "type":{
       "landmark_type":"sightseeing"
@@ -6910,11 +6682,12 @@
     ],
     "osm_type":"way",
     "osm_id":80144728,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "461":{
+  "418":{
     "name":"Beffroi",
     "type":{
       "landmark_type":"sightseeing"
@@ -6925,11 +6698,12 @@
     ],
     "osm_type":"way",
     "osm_id":83237621,
-    "attractiveness":27,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "462":{
+  "419":{
     "name":"Maison des Arts",
     "type":{
       "landmark_type":"sightseeing"
@@ -6940,11 +6714,12 @@
     ],
     "osm_type":"way",
     "osm_id":83790469,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "463":{
+  "420":{
     "name":"Conservatoire Francis Poulenc",
     "type":{
       "landmark_type":"sightseeing"
@@ -6955,11 +6730,12 @@
     ],
     "osm_type":"way",
     "osm_id":83934823,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "464":{
+  "421":{
     "name":"Maison des Arts et de la Nature",
     "type":{
       "landmark_type":"sightseeing"
@@ -6970,26 +6746,12 @@
     ],
     "osm_type":"way",
     "osm_id":87387128,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "465":{
-    "name":"Maison des Arts",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.7953749,
-      2.3063214
-    ],
-    "osm_type":"way",
-    "osm_id":146249355,
-    "attractiveness":4,
-    "must_do":false,
-    "n_tags":4
-  },
-  "466":{
+  "422":{
     "name":"Centre Culturel Irlandais",
     "type":{
       "landmark_type":"sightseeing"
@@ -7000,11 +6762,12 @@
     ],
     "osm_type":"way",
     "osm_id":148568804,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "467":{
+  "423":{
     "name":"Maison de l’Amérique latine",
     "type":{
       "landmark_type":"sightseeing"
@@ -7015,11 +6778,12 @@
     ],
     "osm_type":"way",
     "osm_id":166220702,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "468":{
+  "424":{
     "name":"Maison des Pratiques Artistiques Amateurs Broussais",
     "type":{
       "landmark_type":"sightseeing"
@@ -7030,11 +6794,12 @@
     ],
     "osm_type":"way",
     "osm_id":181911602,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "469":{
+  "425":{
     "name":"Espace Culturel André Malraux",
     "type":{
       "landmark_type":"sightseeing"
@@ -7045,26 +6810,12 @@
     ],
     "osm_type":"way",
     "osm_id":239059353,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "470":{
-    "name":"Institut suédois",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.858226,
-      2.3619639
-    ],
-    "osm_type":"way",
-    "osm_id":243973065,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":16
-  },
-  "471":{
+  "426":{
     "name":"Maison Pour Tous Jules Vallès",
     "type":{
       "landmark_type":"sightseeing"
@@ -7075,26 +6826,12 @@
     ],
     "osm_type":"way",
     "osm_id":252696572,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "472":{
-    "name":"Fondation Louis Vuitton",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8766546,
-      2.2633259
-    ],
-    "osm_type":"way",
-    "osm_id":309626332,
-    "attractiveness":21,
-    "must_do":false,
-    "n_tags":21
-  },
-  "473":{
+  "427":{
     "name":"Institut culturel italien",
     "type":{
       "landmark_type":"sightseeing"
@@ -7105,11 +6842,12 @@
     ],
     "osm_type":"way",
     "osm_id":330244281,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "474":{
+  "428":{
     "name":"Quai de la photo",
     "type":{
       "landmark_type":"sightseeing"
@@ -7120,11 +6858,12 @@
     ],
     "osm_type":"way",
     "osm_id":618744163,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "475":{
+  "429":{
     "name":"Bateau Daphné",
     "type":{
       "landmark_type":"sightseeing"
@@ -7135,11 +6874,12 @@
     ],
     "osm_type":"way",
     "osm_id":618750321,
-    "attractiveness":6,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "476":{
+  "430":{
     "name":"Atelier des Lumières",
     "type":{
       "landmark_type":"sightseeing"
@@ -7150,11 +6890,12 @@
     ],
     "osm_type":"way",
     "osm_id":973123037,
-    "attractiveness":14,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "477":{
+  "431":{
     "name":"Maison du Val d'Aoste",
     "type":{
       "landmark_type":"sightseeing"
@@ -7165,11 +6906,12 @@
     ],
     "osm_type":"relation",
     "osm_id":537232,
-    "attractiveness":11,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "478":{
+  "432":{
     "name":"La Gaîté lyrique",
     "type":{
       "landmark_type":"sightseeing"
@@ -7180,11 +6922,12 @@
     ],
     "osm_type":"relation",
     "osm_id":550514,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "479":{
+  "433":{
     "name":"Conservatoire Hector Berlioz",
     "type":{
       "landmark_type":"sightseeing"
@@ -7195,11 +6938,12 @@
     ],
     "osm_type":"relation",
     "osm_id":983783,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "480":{
+  "434":{
     "name":"Les Plateaux Sauvages",
     "type":{
       "landmark_type":"sightseeing"
@@ -7210,11 +6954,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1103386,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "481":{
+  "435":{
     "name":"Maison des Métallos",
     "type":{
       "landmark_type":"sightseeing"
@@ -7225,11 +6970,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2864839,
-    "attractiveness":20,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "482":{
+  "436":{
     "name":"Auditorium de la Maison de la Radio",
     "type":{
       "landmark_type":"sightseeing"
@@ -7240,11 +6986,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3071867,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "483":{
+  "437":{
     "name":"Palais des Congrès",
     "type":{
       "landmark_type":"sightseeing"
@@ -7255,11 +7002,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3074644,
-    "attractiveness":9,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "484":{
+  "438":{
     "name":"Cité Internationale des Arts",
     "type":{
       "landmark_type":"sightseeing"
@@ -7270,11 +7018,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3514193,
-    "attractiveness":11,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "485":{
+  "439":{
     "name":"Bercy Beaucoup",
     "type":{
       "landmark_type":"sightseeing"
@@ -7285,11 +7034,12 @@
     ],
     "osm_type":"relation",
     "osm_id":15608165,
-    "attractiveness":8,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "486":{
+  "440":{
     "name":"Église Saint-Lambert de Vaugirard",
     "type":{
       "landmark_type":"sightseeing"
@@ -7300,11 +7050,12 @@
     ],
     "osm_type":"way",
     "osm_id":14349317,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "487":{
+  "441":{
     "name":"Église Saint-Léon",
     "type":{
       "landmark_type":"sightseeing"
@@ -7315,11 +7066,12 @@
     ],
     "osm_type":"way",
     "osm_id":15912913,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "488":{
+  "442":{
     "name":"Église Saint-Sulpice",
     "type":{
       "landmark_type":"sightseeing"
@@ -7330,11 +7082,12 @@
     ],
     "osm_type":"way",
     "osm_id":16077204,
-    "attractiveness":25,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":25
+    "n_tags":25,
+    "time_to_reach":0
   },
-  "489":{
+  "443":{
     "name":"Église Saint-Pierre de Montrouge",
     "type":{
       "landmark_type":"sightseeing"
@@ -7345,11 +7098,12 @@
     ],
     "osm_type":"way",
     "osm_id":16929093,
-    "attractiveness":26,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "490":{
+  "444":{
     "name":"Église Saint-Séverin",
     "type":{
       "landmark_type":"sightseeing"
@@ -7360,11 +7114,12 @@
     ],
     "osm_type":"way",
     "osm_id":19740659,
-    "attractiveness":25,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":25
+    "n_tags":25,
+    "time_to_reach":0
   },
-  "491":{
+  "445":{
     "name":"Église Saint-Julien-le-Pauvre",
     "type":{
       "landmark_type":"sightseeing"
@@ -7375,11 +7130,12 @@
     ],
     "osm_type":"way",
     "osm_id":19741083,
-    "attractiveness":16,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "492":{
+  "446":{
     "name":"Église Saint-Jean-Baptiste de Grenelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -7390,11 +7146,12 @@
     ],
     "osm_type":"way",
     "osm_id":23811420,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "493":{
+  "447":{
     "name":"Église Notre-Dame de l'Arche d'Alliance",
     "type":{
       "landmark_type":"sightseeing"
@@ -7405,11 +7162,12 @@
     ],
     "osm_type":"way",
     "osm_id":24303512,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "494":{
+  "448":{
     "name":"Église Saint-Ignace",
     "type":{
       "landmark_type":"sightseeing"
@@ -7420,11 +7178,12 @@
     ],
     "osm_type":"way",
     "osm_id":24310193,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "495":{
+  "449":{
     "name":"Église Saint-Médard",
     "type":{
       "landmark_type":"sightseeing"
@@ -7435,11 +7194,12 @@
     ],
     "osm_type":"way",
     "osm_id":24406636,
-    "attractiveness":16,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "496":{
+  "450":{
     "name":"Église Notre-Dame-de-Lorette",
     "type":{
       "landmark_type":"sightseeing"
@@ -7450,11 +7210,12 @@
     ],
     "osm_type":"way",
     "osm_id":25688622,
-    "attractiveness":21,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "497":{
+  "451":{
     "name":"Temple de l'Oratoire du Louvre",
     "type":{
       "landmark_type":"sightseeing"
@@ -7465,11 +7226,12 @@
     ],
     "osm_type":"way",
     "osm_id":30622528,
-    "attractiveness":33,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":32
+    "n_tags":32,
+    "time_to_reach":0
   },
-  "498":{
+  "452":{
     "name":"Chapelle Saint-Sauveur",
     "type":{
       "landmark_type":"sightseeing"
@@ -7480,11 +7242,12 @@
     ],
     "osm_type":"way",
     "osm_id":42268952,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "499":{
+  "453":{
     "name":"Synagogue Chivté Israël",
     "type":{
       "landmark_type":"sightseeing"
@@ -7495,11 +7258,12 @@
     ],
     "osm_type":"way",
     "osm_id":42311107,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "500":{
+  "454":{
     "name":"Temple Protestant Espace Protestant Isséen (EPI)",
     "type":{
       "landmark_type":"sightseeing"
@@ -7510,26 +7274,12 @@
     ],
     "osm_type":"way",
     "osm_id":42675715,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "501":{
-    "name":"Église Saint-Roch",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8653817,
-      2.3326659
-    ],
-    "osm_type":"way",
-    "osm_id":42722202,
-    "attractiveness":26,
-    "must_do":false,
-    "n_tags":26
-  },
-  "502":{
+  "455":{
     "name":"Église Saint-Nicolas du Chardonnet",
     "type":{
       "landmark_type":"sightseeing"
@@ -7540,11 +7290,12 @@
     ],
     "osm_type":"way",
     "osm_id":43877261,
-    "attractiveness":26,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "503":{
+  "456":{
     "name":"Synagogue de la rue des Tournelles",
     "type":{
       "landmark_type":"sightseeing"
@@ -7555,11 +7306,12 @@
     ],
     "osm_type":"way",
     "osm_id":49734642,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "504":{
+  "457":{
     "name":"Église de la Sainte-Trinité",
     "type":{
       "landmark_type":"sightseeing"
@@ -7570,11 +7322,12 @@
     ],
     "osm_type":"way",
     "osm_id":49872150,
-    "attractiveness":19,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "505":{
+  "458":{
     "name":"Église Saint-Eugène Sainte-Cécile",
     "type":{
       "landmark_type":"sightseeing"
@@ -7585,11 +7338,12 @@
     ],
     "osm_type":"way",
     "osm_id":50371917,
-    "attractiveness":33,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":33
+    "n_tags":33,
+    "time_to_reach":0
   },
-  "506":{
+  "459":{
     "name":"Église luthérienne de la Résurrection",
     "type":{
       "landmark_type":"sightseeing"
@@ -7600,11 +7354,12 @@
     ],
     "osm_type":"way",
     "osm_id":53262890,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "507":{
+  "460":{
     "name":"Église Saint-Christophe de Javel",
     "type":{
       "landmark_type":"sightseeing"
@@ -7615,11 +7370,12 @@
     ],
     "osm_type":"way",
     "osm_id":53400775,
-    "attractiveness":16,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "508":{
+  "461":{
     "name":"Église de la Présentation de la Très Sainte Mère de Dieu au temple",
     "type":{
       "landmark_type":"sightseeing"
@@ -7630,11 +7386,12 @@
     ],
     "osm_type":"way",
     "osm_id":53724149,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "509":{
+  "462":{
     "name":"Église Saint-Eustache",
     "type":{
       "landmark_type":"sightseeing"
@@ -7645,11 +7402,12 @@
     ],
     "osm_type":"way",
     "osm_id":53762963,
-    "attractiveness":30,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":29
+    "n_tags":29,
+    "time_to_reach":0
   },
-  "510":{
+  "463":{
     "name":"Église Saint-Germain l'Auxerrois",
     "type":{
       "landmark_type":"sightseeing"
@@ -7660,11 +7418,12 @@
     ],
     "osm_type":"way",
     "osm_id":53770908,
-    "attractiveness":27,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":27
+    "n_tags":27,
+    "time_to_reach":0
   },
-  "511":{
+  "464":{
     "name":"Église Saint-Leu - Saint-Gilles",
     "type":{
       "landmark_type":"sightseeing"
@@ -7675,11 +7434,12 @@
     ],
     "osm_type":"way",
     "osm_id":53933240,
-    "attractiveness":23,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "512":{
+  "465":{
     "name":"Église Notre-Dame des Pauvres",
     "type":{
       "landmark_type":"sightseeing"
@@ -7690,11 +7450,12 @@
     ],
     "osm_type":"way",
     "osm_id":54047170,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "513":{
+  "466":{
     "name":"Chapelle Notre-Dame de Grâce",
     "type":{
       "landmark_type":"sightseeing"
@@ -7705,11 +7466,12 @@
     ],
     "osm_type":"way",
     "osm_id":54118568,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "514":{
+  "467":{
     "name":"Église Notre-Dame-de-l'Assomption",
     "type":{
       "landmark_type":"sightseeing"
@@ -7720,26 +7482,12 @@
     ],
     "osm_type":"way",
     "osm_id":54168792,
-    "attractiveness":24,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
-  "515":{
-    "name":"Église de la Madeleine",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8700303,
-      2.3244833
-    ],
-    "osm_type":"way",
-    "osm_id":54180046,
-    "attractiveness":33,
-    "must_do":false,
-    "n_tags":33
-  },
-  "516":{
+  "468":{
     "name":"Basilique Notre-Dame-des-Victoires",
     "type":{
       "landmark_type":"sightseeing"
@@ -7750,11 +7498,12 @@
     ],
     "osm_type":"way",
     "osm_id":54661742,
-    "attractiveness":24,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
-  "517":{
+  "469":{
     "name":"Église Notre-Dame-de-Bonne-Nouvelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -7765,11 +7514,12 @@
     ],
     "osm_type":"way",
     "osm_id":55178129,
-    "attractiveness":22,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":22
+    "n_tags":22,
+    "time_to_reach":0
   },
-  "518":{
+  "470":{
     "name":"Église Saint-Louis-en-l'Île",
     "type":{
       "landmark_type":"sightseeing"
@@ -7780,11 +7530,12 @@
     ],
     "osm_type":"way",
     "osm_id":55314295,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "519":{
+  "471":{
     "name":"Église Saint-Étienne-du-Mont",
     "type":{
       "landmark_type":"sightseeing"
@@ -7795,11 +7546,12 @@
     ],
     "osm_type":"way",
     "osm_id":55343672,
-    "attractiveness":27,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "520":{
+  "472":{
     "name":"Église Saint-Éphrem-le-Syriaque",
     "type":{
       "landmark_type":"sightseeing"
@@ -7810,11 +7562,12 @@
     ],
     "osm_type":"way",
     "osm_id":55359253,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "521":{
+  "473":{
     "name":"Église Orthodoxe Roumaine des Saints Archanges",
     "type":{
       "landmark_type":"sightseeing"
@@ -7825,11 +7578,12 @@
     ],
     "osm_type":"way",
     "osm_id":55366403,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "522":{
+  "474":{
     "name":"Église Saint-Gervais",
     "type":{
       "landmark_type":"sightseeing"
@@ -7840,11 +7594,12 @@
     ],
     "osm_type":"way",
     "osm_id":55477164,
-    "attractiveness":20,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "523":{
+  "475":{
     "name":"Église Saint-Merri",
     "type":{
       "landmark_type":"sightseeing"
@@ -7855,11 +7610,12 @@
     ],
     "osm_type":"way",
     "osm_id":55742120,
-    "attractiveness":26,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "524":{
+  "476":{
     "name":"Église Luthérienne des Billettes",
     "type":{
       "landmark_type":"sightseeing"
@@ -7870,11 +7626,12 @@
     ],
     "osm_type":"way",
     "osm_id":55942658,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "525":{
+  "477":{
     "name":"Église Notre-Dame-des-Blancs-Manteaux",
     "type":{
       "landmark_type":"sightseeing"
@@ -7885,11 +7642,12 @@
     ],
     "osm_type":"way",
     "osm_id":55984117,
-    "attractiveness":21,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "526":{
+  "478":{
     "name":"Synagogue",
     "type":{
       "landmark_type":"sightseeing"
@@ -7900,11 +7658,12 @@
     ],
     "osm_type":"way",
     "osm_id":56040608,
-    "attractiveness":16,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "527":{
+  "479":{
     "name":"Église Saint-Paul-Saint-Louis",
     "type":{
       "landmark_type":"sightseeing"
@@ -7915,11 +7674,12 @@
     ],
     "osm_type":"way",
     "osm_id":56046786,
-    "attractiveness":16,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "528":{
+  "480":{
     "name":"Chapelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -7930,11 +7690,12 @@
     ],
     "osm_type":"way",
     "osm_id":56159605,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "529":{
+  "481":{
     "name":"Temple du Marais",
     "type":{
       "landmark_type":"sightseeing"
@@ -7945,11 +7706,12 @@
     ],
     "osm_type":"way",
     "osm_id":56206112,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "530":{
+  "482":{
     "name":"Église Saint-Nicolas-des-Champs",
     "type":{
       "landmark_type":"sightseeing"
@@ -7960,11 +7722,12 @@
     ],
     "osm_type":"way",
     "osm_id":56290843,
-    "attractiveness":20,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "531":{
+  "483":{
     "name":"Synagogue Nazareth",
     "type":{
       "landmark_type":"sightseeing"
@@ -7975,11 +7738,12 @@
     ],
     "osm_type":"way",
     "osm_id":56435813,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "532":{
+  "484":{
     "name":"Église Sainte-Elisabeth",
     "type":{
       "landmark_type":"sightseeing"
@@ -7990,11 +7754,12 @@
     ],
     "osm_type":"way",
     "osm_id":56457505,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "533":{
+  "485":{
     "name":"Synagogue Vauquelin",
     "type":{
       "landmark_type":"sightseeing"
@@ -8005,11 +7770,12 @@
     ],
     "osm_type":"way",
     "osm_id":56693739,
-    "attractiveness":5,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "534":{
+  "486":{
     "name":"Chapelle de la congrégation du Saint-Esprit",
     "type":{
       "landmark_type":"sightseeing"
@@ -8020,11 +7786,12 @@
     ],
     "osm_type":"way",
     "osm_id":56771095,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "535":{
+  "487":{
     "name":"Maison Fraternelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -8035,11 +7802,12 @@
     ],
     "osm_type":"way",
     "osm_id":57380517,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "536":{
+  "488":{
     "name":"Cathédrale Sainte-Croix de Paris des Arméniens",
     "type":{
       "landmark_type":"sightseeing"
@@ -8050,11 +7818,12 @@
     ],
     "osm_type":"way",
     "osm_id":57403533,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "537":{
+  "489":{
     "name":"Église Saint-Denis du Saint-Sacrement",
     "type":{
       "landmark_type":"sightseeing"
@@ -8065,11 +7834,12 @@
     ],
     "osm_type":"way",
     "osm_id":58150045,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "538":{
+  "490":{
     "name":"Église du Val-de-Grâce",
     "type":{
       "landmark_type":"sightseeing"
@@ -8080,11 +7850,12 @@
     ],
     "osm_type":"way",
     "osm_id":59846865,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "539":{
+  "491":{
     "name":"Église Luthérienne Saint-Marcel",
     "type":{
       "landmark_type":"sightseeing"
@@ -8095,11 +7866,12 @@
     ],
     "osm_type":"way",
     "osm_id":60209197,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "540":{
+  "492":{
     "name":"Église Saint-Jacques-du-Haut-Pas",
     "type":{
       "landmark_type":"sightseeing"
@@ -8110,11 +7882,12 @@
     ],
     "osm_type":"way",
     "osm_id":60279510,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "541":{
+  "493":{
     "name":"Église Saint-Denys",
     "type":{
       "landmark_type":"sightseeing"
@@ -8125,11 +7898,12 @@
     ],
     "osm_type":"way",
     "osm_id":61312692,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "542":{
+  "494":{
     "name":"Église Saint-Germain des Prés",
     "type":{
       "landmark_type":"sightseeing"
@@ -8140,11 +7914,12 @@
     ],
     "osm_type":"way",
     "osm_id":62287173,
-    "attractiveness":21,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "543":{
+  "495":{
     "name":"Cathédrale Ukrainienne Saint-Vladimir-le-Grand",
     "type":{
       "landmark_type":"sightseeing"
@@ -8155,11 +7930,12 @@
     ],
     "osm_type":"way",
     "osm_id":62296389,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "544":{
+  "496":{
     "name":"Chapelle Notre-Dame de la Sagesse",
     "type":{
       "landmark_type":"sightseeing"
@@ -8170,11 +7946,12 @@
     ],
     "osm_type":"way",
     "osm_id":62379741,
-    "attractiveness":19,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "545":{
+  "497":{
     "name":"Église Evangélique Baptiste",
     "type":{
       "landmark_type":"sightseeing"
@@ -8185,11 +7962,12 @@
     ],
     "osm_type":"way",
     "osm_id":63149138,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "546":{
+  "498":{
     "name":"Église Saint-Vincent-de-Paul",
     "type":{
       "landmark_type":"sightseeing"
@@ -8200,11 +7978,12 @@
     ],
     "osm_type":"way",
     "osm_id":63197162,
-    "attractiveness":21,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "547":{
+  "499":{
     "name":"Église Saint-Laurent",
     "type":{
       "landmark_type":"sightseeing"
@@ -8215,11 +7994,12 @@
     ],
     "osm_type":"way",
     "osm_id":63200612,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "548":{
+  "500":{
     "name":"Chapelle de l'hôpital Saint-Louis",
     "type":{
       "landmark_type":"sightseeing"
@@ -8230,11 +8010,12 @@
     ],
     "osm_type":"way",
     "osm_id":63200644,
-    "attractiveness":19,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "549":{
+  "501":{
     "name":"Église Saint-Martin des Champs",
     "type":{
       "landmark_type":"sightseeing"
@@ -8245,11 +8026,12 @@
     ],
     "osm_type":"way",
     "osm_id":63201579,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "550":{
+  "502":{
     "name":"Temple de la Rencontre",
     "type":{
       "landmark_type":"sightseeing"
@@ -8260,11 +8042,12 @@
     ],
     "osm_type":"way",
     "osm_id":63203792,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "551":{
+  "503":{
     "name":"Église Saint-Jean-Baptiste de Belleville",
     "type":{
       "landmark_type":"sightseeing"
@@ -8275,11 +8058,12 @@
     ],
     "osm_type":"way",
     "osm_id":63212231,
-    "attractiveness":24,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "552":{
+  "504":{
     "name":"Église Saint-Georges de la Villette",
     "type":{
       "landmark_type":"sightseeing"
@@ -8290,11 +8074,12 @@
     ],
     "osm_type":"way",
     "osm_id":63239488,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "553":{
+  "505":{
     "name":"Église Saint-Joseph des Carmes",
     "type":{
       "landmark_type":"sightseeing"
@@ -8305,11 +8090,12 @@
     ],
     "osm_type":"way",
     "osm_id":63370983,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "554":{
+  "506":{
     "name":"Église Saint-Thomas d'Aquin",
     "type":{
       "landmark_type":"sightseeing"
@@ -8320,11 +8106,12 @@
     ],
     "osm_type":"way",
     "osm_id":63536576,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "555":{
+  "507":{
     "name":"Église Saint-Ambroise",
     "type":{
       "landmark_type":"sightseeing"
@@ -8335,11 +8122,12 @@
     ],
     "osm_type":"way",
     "osm_id":63638108,
-    "attractiveness":23,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "556":{
+  "508":{
     "name":"Mosquée Omar bn El Khattab",
     "type":{
       "landmark_type":"sightseeing"
@@ -8350,11 +8138,12 @@
     ],
     "osm_type":"way",
     "osm_id":63638391,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "557":{
+  "509":{
     "name":"Chapelle Notre-Dame-Réconciliatrice de la Salette",
     "type":{
       "landmark_type":"sightseeing"
@@ -8365,11 +8154,12 @@
     ],
     "osm_type":"way",
     "osm_id":63638499,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "558":{
+  "510":{
     "name":"Synagogue Don Isaac Abravanel",
     "type":{
       "landmark_type":"sightseeing"
@@ -8380,11 +8170,12 @@
     ],
     "osm_type":"way",
     "osm_id":63640089,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "559":{
+  "511":{
     "name":"Basilique Notre-Dame du Perpétuel Secours",
     "type":{
       "landmark_type":"sightseeing"
@@ -8395,11 +8186,12 @@
     ],
     "osm_type":"way",
     "osm_id":63640725,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "560":{
+  "512":{
     "name":"Sfânta Genoveva și Sfântul Martin",
     "type":{
       "landmark_type":"sightseeing"
@@ -8410,11 +8202,12 @@
     ],
     "osm_type":"way",
     "osm_id":63640910,
-    "attractiveness":13,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "561":{
+  "513":{
     "name":"Église protestante chinoise de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -8425,11 +8218,12 @@
     ],
     "osm_type":"way",
     "osm_id":63645155,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "562":{
+  "514":{
     "name":"Église Notre-Dame d'Espérance",
     "type":{
       "landmark_type":"sightseeing"
@@ -8440,11 +8234,12 @@
     ],
     "osm_type":"way",
     "osm_id":63646922,
-    "attractiveness":13,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "563":{
+  "515":{
     "name":"Temple protestant du Foyer de l'Âme",
     "type":{
       "landmark_type":"sightseeing"
@@ -8455,11 +8250,12 @@
     ],
     "osm_type":"way",
     "osm_id":63648393,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "564":{
+  "516":{
     "name":"Église Saint-Jean",
     "type":{
       "landmark_type":"sightseeing"
@@ -8470,11 +8266,12 @@
     ],
     "osm_type":"way",
     "osm_id":63652836,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "565":{
+  "517":{
     "name":"Église Sainte-Germaine",
     "type":{
       "landmark_type":"sightseeing"
@@ -8485,11 +8282,12 @@
     ],
     "osm_type":"way",
     "osm_id":63655132,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "566":{
+  "518":{
     "name":"Mosquée Falah",
     "type":{
       "landmark_type":"sightseeing"
@@ -8500,11 +8298,12 @@
     ],
     "osm_type":"way",
     "osm_id":63655614,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "567":{
+  "519":{
     "name":"Église Réformée du Luxembourg",
     "type":{
       "landmark_type":"sightseeing"
@@ -8515,11 +8314,12 @@
     ],
     "osm_type":"way",
     "osm_id":63681841,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "568":{
+  "520":{
     "name":"Église Notre-Dame des Champs",
     "type":{
       "landmark_type":"sightseeing"
@@ -8530,11 +8330,12 @@
     ],
     "osm_type":"way",
     "osm_id":64121803,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "569":{
+  "521":{
     "name":"Centre Quaker International",
     "type":{
       "landmark_type":"sightseeing"
@@ -8545,11 +8346,12 @@
     ],
     "osm_type":"way",
     "osm_id":64315031,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "570":{
+  "522":{
     "name":"Église Sainte-Thérèse-de-l'Enfant-Jésus",
     "type":{
       "landmark_type":"sightseeing"
@@ -8560,11 +8362,12 @@
     ],
     "osm_type":"way",
     "osm_id":64404630,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "571":{
+  "523":{
     "name":"Oratoire Beth Yoel",
     "type":{
       "landmark_type":"sightseeing"
@@ -8575,11 +8378,12 @@
     ],
     "osm_type":"way",
     "osm_id":64411151,
-    "attractiveness":5,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "572":{
+  "524":{
     "name":"Église copte orthodoxe de l'Archange Michel et Saint-Georges",
     "type":{
       "landmark_type":"sightseeing"
@@ -8590,11 +8394,12 @@
     ],
     "osm_type":"way",
     "osm_id":64418701,
-    "attractiveness":13,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "573":{
+  "525":{
     "name":"Église Saint-Cyr et Sainte-Julitte",
     "type":{
       "landmark_type":"sightseeing"
@@ -8605,11 +8410,12 @@
     ],
     "osm_type":"way",
     "osm_id":64420480,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "574":{
+  "526":{
     "name":"Basilique Sainte-Clotilde",
     "type":{
       "landmark_type":"sightseeing"
@@ -8620,41 +8426,12 @@
     ],
     "osm_type":"way",
     "osm_id":64952290,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "575":{
-    "name":"Cathédrale Saint-Louis des Invalides",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8556038,
-      2.3125832
-    ],
-    "osm_type":"way",
-    "osm_id":64955027,
-    "attractiveness":18,
-    "must_do":false,
-    "n_tags":18
-  },
-  "576":{
-    "name":"Chapelle des Catéchismes",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8589684,
-      2.3183256
-    ],
-    "osm_type":"way",
-    "osm_id":65104255,
-    "attractiveness":17,
-    "must_do":false,
-    "n_tags":17
-  },
-  "577":{
+  "527":{
     "name":"Église anglicane Saint-Michael",
     "type":{
       "landmark_type":"sightseeing"
@@ -8665,11 +8442,12 @@
     ],
     "osm_type":"way",
     "osm_id":67233894,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "578":{
+  "528":{
     "name":"Église de la Sainte-Famille",
     "type":{
       "landmark_type":"sightseeing"
@@ -8680,11 +8458,12 @@
     ],
     "osm_type":"way",
     "osm_id":67283221,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "579":{
+  "529":{
     "name":"Église protestante unie du Saint-Esprit",
     "type":{
       "landmark_type":"sightseeing"
@@ -8695,11 +8474,12 @@
     ],
     "osm_type":"way",
     "osm_id":67350058,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "580":{
+  "530":{
     "name":"Temple de Pentemont",
     "type":{
       "landmark_type":"sightseeing"
@@ -8710,11 +8490,12 @@
     ],
     "osm_type":"way",
     "osm_id":67353449,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "581":{
+  "531":{
     "name":"Église Saint-Augustin",
     "type":{
       "landmark_type":"sightseeing"
@@ -8725,26 +8506,12 @@
     ],
     "osm_type":"way",
     "osm_id":67501490,
-    "attractiveness":25,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "582":{
-    "name":"Chapelle expiatoire",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.873695,
-      2.3227605
-    ],
-    "osm_type":"way",
-    "osm_id":67557301,
-    "attractiveness":26,
-    "must_do":false,
-    "n_tags":26
-  },
-  "583":{
+  "532":{
     "name":"Église Saint-Philippe du Roule",
     "type":{
       "landmark_type":"sightseeing"
@@ -8755,11 +8522,12 @@
     ],
     "osm_type":"way",
     "osm_id":68831257,
-    "attractiveness":21,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "584":{
+  "533":{
     "name":"Chapelle Baltard",
     "type":{
       "landmark_type":"sightseeing"
@@ -8770,11 +8538,12 @@
     ],
     "osm_type":"way",
     "osm_id":68831265,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "585":{
+  "534":{
     "name":"Église Saint-François-Xavier",
     "type":{
       "landmark_type":"sightseeing"
@@ -8785,11 +8554,12 @@
     ],
     "osm_type":"way",
     "osm_id":68893289,
-    "attractiveness":13,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "586":{
+  "535":{
     "name":"Chapelle Notre-Dame de l'Annonciation",
     "type":{
       "landmark_type":"sightseeing"
@@ -8800,11 +8570,12 @@
     ],
     "osm_type":"way",
     "osm_id":68991281,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "587":{
+  "536":{
     "name":"Église Américaine",
     "type":{
       "landmark_type":"sightseeing"
@@ -8815,11 +8586,12 @@
     ],
     "osm_type":"way",
     "osm_id":69049385,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "588":{
+  "537":{
     "name":"Église Saint-Pierre du Gros Caillou",
     "type":{
       "landmark_type":"sightseeing"
@@ -8830,11 +8602,12 @@
     ],
     "osm_type":"way",
     "osm_id":69072238,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "589":{
+  "538":{
     "name":"Temple de la Rédemption",
     "type":{
       "landmark_type":"sightseeing"
@@ -8845,11 +8618,12 @@
     ],
     "osm_type":"way",
     "osm_id":69220900,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "590":{
+  "539":{
     "name":"Synagogue Rashi",
     "type":{
       "landmark_type":"sightseeing"
@@ -8860,11 +8634,12 @@
     ],
     "osm_type":"way",
     "osm_id":69221039,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "591":{
+  "540":{
     "name":"Église Saint-Louis-d'Antin",
     "type":{
       "landmark_type":"sightseeing"
@@ -8875,11 +8650,12 @@
     ],
     "osm_type":"way",
     "osm_id":69226577,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "592":{
+  "541":{
     "name":"Église évangélique allemande de Paris « Christuskirche »",
     "type":{
       "landmark_type":"sightseeing"
@@ -8890,11 +8666,12 @@
     ],
     "osm_type":"way",
     "osm_id":69257726,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "593":{
+  "542":{
     "name":"Church of Scotland",
     "type":{
       "landmark_type":"sightseeing"
@@ -8905,11 +8682,12 @@
     ],
     "osm_type":"way",
     "osm_id":69329965,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "594":{
+  "543":{
     "name":"Chapelle Notre-Dame-de-Consolation",
     "type":{
       "landmark_type":"sightseeing"
@@ -8920,11 +8698,12 @@
     ],
     "osm_type":"way",
     "osm_id":69332061,
-    "attractiveness":31,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":31
+    "n_tags":31,
+    "time_to_reach":0
   },
-  "595":{
+  "544":{
     "name":"Cathédrale arménienne Saint-Jean-Baptiste",
     "type":{
       "landmark_type":"sightseeing"
@@ -8935,11 +8714,12 @@
     ],
     "osm_type":"way",
     "osm_id":69332080,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "596":{
+  "545":{
     "name":"Grande Synagogue de la Victoire",
     "type":{
       "landmark_type":"sightseeing"
@@ -8950,11 +8730,12 @@
     ],
     "osm_type":"way",
     "osm_id":69363730,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "597":{
+  "546":{
     "name":"Consistoire",
     "type":{
       "landmark_type":"sightseeing"
@@ -8965,26 +8746,12 @@
     ],
     "osm_type":"way",
     "osm_id":69363791,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "598":{
-    "name":"Synagogue Buffault",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8761054,
-      2.3425466
-    ],
-    "osm_type":"way",
-    "osm_id":69417432,
-    "attractiveness":15,
-    "must_do":false,
-    "n_tags":15
-  },
-  "599":{
+  "547":{
     "name":"Cathédrale américaine de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -8995,11 +8762,12 @@
     ],
     "osm_type":"way",
     "osm_id":69485169,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "600":{
+  "548":{
     "name":"Église Luthérienne Saint-Jean",
     "type":{
       "landmark_type":"sightseeing"
@@ -9010,11 +8778,12 @@
     ],
     "osm_type":"way",
     "osm_id":69884208,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "601":{
+  "549":{
     "name":"Chapelle Saint-Vincent-de-Paul",
     "type":{
       "landmark_type":"sightseeing"
@@ -9025,11 +8794,12 @@
     ],
     "osm_type":"way",
     "osm_id":69884667,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "602":{
+  "550":{
     "name":"Église Protestante Unie de Paris-Belleville",
     "type":{
       "landmark_type":"sightseeing"
@@ -9040,11 +8810,12 @@
     ],
     "osm_type":"way",
     "osm_id":69999948,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "603":{
+  "551":{
     "name":"Or-Hahaim",
     "type":{
       "landmark_type":"sightseeing"
@@ -9055,11 +8826,12 @@
     ],
     "osm_type":"way",
     "osm_id":70001194,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "604":{
+  "552":{
     "name":"Église Notre-Dame-de-la-Croix",
     "type":{
       "landmark_type":"sightseeing"
@@ -9070,26 +8842,12 @@
     ],
     "osm_type":"way",
     "osm_id":70001850,
-    "attractiveness":26,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":26
+    "n_tags":26,
+    "time_to_reach":0
   },
-  "605":{
-    "name":"Synagogue",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.871195,
-      2.3828334
-    ],
-    "osm_type":"way",
-    "osm_id":70003350,
-    "attractiveness":6,
-    "must_do":false,
-    "n_tags":6
-  },
-  "606":{
+  "553":{
     "name":"Chapelle du Corpus-Christi",
     "type":{
       "landmark_type":"sightseeing"
@@ -9100,11 +8858,12 @@
     ],
     "osm_type":"way",
     "osm_id":70185807,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "607":{
+  "554":{
     "name":"Église Protestante Danoise",
     "type":{
       "landmark_type":"sightseeing"
@@ -9115,11 +8874,12 @@
     ],
     "osm_type":"way",
     "osm_id":70187665,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "608":{
+  "555":{
     "name":"Cathédrale Saint-Alexandre-Nevsky",
     "type":{
       "landmark_type":"sightseeing"
@@ -9130,11 +8890,12 @@
     ],
     "osm_type":"way",
     "osm_id":70192893,
-    "attractiveness":23,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":22
+    "n_tags":22,
+    "time_to_reach":0
   },
-  "609":{
+  "556":{
     "name":"Saint-Joseph's Church (mission anglophone)",
     "type":{
       "landmark_type":"sightseeing"
@@ -9145,11 +8906,12 @@
     ],
     "osm_type":"way",
     "osm_id":70223975,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "610":{
+  "557":{
     "name":"Batiment Rabelais",
     "type":{
       "landmark_type":"sightseeing"
@@ -9160,11 +8922,12 @@
     ],
     "osm_type":"way",
     "osm_id":71858521,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "611":{
+  "558":{
     "name":"Église Saint-Pierre-Saint-Paul",
     "type":{
       "landmark_type":"sightseeing"
@@ -9175,11 +8938,12 @@
     ],
     "osm_type":"way",
     "osm_id":73584429,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "612":{
+  "559":{
     "name":"La Chapelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -9190,11 +8954,12 @@
     ],
     "osm_type":"way",
     "osm_id":73587360,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "613":{
+  "560":{
     "name":"Chapelle Saint-Pierre",
     "type":{
       "landmark_type":"sightseeing"
@@ -9205,11 +8970,12 @@
     ],
     "osm_type":"way",
     "osm_id":74005541,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "614":{
+  "561":{
     "name":"Chapelle Orthodoxe",
     "type":{
       "landmark_type":"sightseeing"
@@ -9220,11 +8986,12 @@
     ],
     "osm_type":"way",
     "osm_id":77739478,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "615":{
+  "562":{
     "name":"Église Sainte-Rita",
     "type":{
       "landmark_type":"sightseeing"
@@ -9235,11 +9002,12 @@
     ],
     "osm_type":"way",
     "osm_id":77743146,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "616":{
+  "563":{
     "name":"Église Saint-Éloi",
     "type":{
       "landmark_type":"sightseeing"
@@ -9250,11 +9018,12 @@
     ],
     "osm_type":"way",
     "osm_id":78019585,
-    "attractiveness":20,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "617":{
+  "564":{
     "name":"Église Notre-Dame de Bercy",
     "type":{
       "landmark_type":"sightseeing"
@@ -9265,11 +9034,12 @@
     ],
     "osm_type":"way",
     "osm_id":78271179,
-    "attractiveness":21,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":21
+    "n_tags":21,
+    "time_to_reach":0
   },
-  "618":{
+  "565":{
     "name":"Église Orthodoxe de France - cathédrale Saint-Irénée",
     "type":{
       "landmark_type":"sightseeing"
@@ -9280,11 +9050,12 @@
     ],
     "osm_type":"way",
     "osm_id":78406523,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "619":{
+  "566":{
     "name":"Église réformée Port-Royal Quartier Latin",
     "type":{
       "landmark_type":"sightseeing"
@@ -9295,11 +9066,12 @@
     ],
     "osm_type":"way",
     "osm_id":78406890,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "620":{
+  "567":{
     "name":"Église Sainte-Rosalie",
     "type":{
       "landmark_type":"sightseeing"
@@ -9310,11 +9082,12 @@
     ],
     "osm_type":"way",
     "osm_id":78407279,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "621":{
+  "568":{
     "name":"Église réformée Port-Royal",
     "type":{
       "landmark_type":"sightseeing"
@@ -9325,11 +9098,12 @@
     ],
     "osm_type":"way",
     "osm_id":78407284,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "622":{
+  "569":{
     "name":"Église Saint-Albert le Grand",
     "type":{
       "landmark_type":"sightseeing"
@@ -9340,11 +9114,12 @@
     ],
     "osm_type":"way",
     "osm_id":78469927,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "623":{
+  "570":{
     "name":"Église Sainte-Anne de la Butte-aux-Cailles",
     "type":{
       "landmark_type":"sightseeing"
@@ -9355,11 +9130,12 @@
     ],
     "osm_type":"way",
     "osm_id":78470232,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "624":{
+  "571":{
     "name":"Temple Antoiniste",
     "type":{
       "landmark_type":"sightseeing"
@@ -9370,11 +9146,12 @@
     ],
     "osm_type":"way",
     "osm_id":78470555,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "625":{
+  "572":{
     "name":"Église Luthérienne de la Trinité",
     "type":{
       "landmark_type":"sightseeing"
@@ -9385,11 +9162,12 @@
     ],
     "osm_type":"way",
     "osm_id":78534147,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "626":{
+  "573":{
     "name":"Église Saint-Marcel",
     "type":{
       "landmark_type":"sightseeing"
@@ -9400,26 +9178,12 @@
     ],
     "osm_type":"way",
     "osm_id":78534351,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "627":{
-    "name":"Chapelle Saint-Louis de la Salpêtrière",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8389393,
-      2.3641414
-    ],
-    "osm_type":"way",
-    "osm_id":78535716,
-    "attractiveness":19,
-    "must_do":false,
-    "n_tags":16
-  },
-  "628":{
+  "574":{
     "name":"Église Passage National",
     "type":{
       "landmark_type":"sightseeing"
@@ -9430,11 +9194,12 @@
     ],
     "osm_type":"way",
     "osm_id":79083459,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "629":{
+  "575":{
     "name":"Synagogue Avoth Ouvanim",
     "type":{
       "landmark_type":"sightseeing"
@@ -9445,11 +9210,12 @@
     ],
     "osm_type":"way",
     "osm_id":79083501,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "630":{
+  "576":{
     "name":"Église Notre-Dame-de-Chine",
     "type":{
       "landmark_type":"sightseeing"
@@ -9460,11 +9226,12 @@
     ],
     "osm_type":"way",
     "osm_id":79084032,
-    "attractiveness":8,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "631":{
+  "577":{
     "name":"Église Notre-Dame de la Gare",
     "type":{
       "landmark_type":"sightseeing"
@@ -9475,11 +9242,12 @@
     ],
     "osm_type":"way",
     "osm_id":79084116,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "632":{
+  "578":{
     "name":"Église Saint-Hippolyte",
     "type":{
       "landmark_type":"sightseeing"
@@ -9490,11 +9258,12 @@
     ],
     "osm_type":"way",
     "osm_id":79084388,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "633":{
+  "579":{
     "name":"Église Notre-Dame de l'Espérance",
     "type":{
       "landmark_type":"sightseeing"
@@ -9505,11 +9274,12 @@
     ],
     "osm_type":"way",
     "osm_id":79148867,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "634":{
+  "580":{
     "name":"Église Saint-Jean-Baptiste du Plateau",
     "type":{
       "landmark_type":"sightseeing"
@@ -9520,26 +9290,12 @@
     ],
     "osm_type":"way",
     "osm_id":79149245,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "635":{
-    "name":"Église Saint-Pierre - Saint-Paul",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8109596,
-      2.3828632
-    ],
-    "osm_type":"way",
-    "osm_id":79150389,
-    "attractiveness":24,
-    "must_do":false,
-    "n_tags":23
-  },
-  "636":{
+  "581":{
     "name":"Cathédrale Saint-Étienne",
     "type":{
       "landmark_type":"sightseeing"
@@ -9550,11 +9306,12 @@
     ],
     "osm_type":"way",
     "osm_id":79232285,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "637":{
+  "582":{
     "name":"Église Saint-Pierre de Chaillot",
     "type":{
       "landmark_type":"sightseeing"
@@ -9565,11 +9322,12 @@
     ],
     "osm_type":"way",
     "osm_id":79276832,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "638":{
+  "583":{
     "name":"Église Anglicane Saint-Georges",
     "type":{
       "landmark_type":"sightseeing"
@@ -9580,11 +9338,12 @@
     ],
     "osm_type":"way",
     "osm_id":79368469,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "639":{
+  "584":{
     "name":"Chapelle Sainte-Anne",
     "type":{
       "landmark_type":"sightseeing"
@@ -9595,11 +9354,12 @@
     ],
     "osm_type":"way",
     "osm_id":79626475,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "640":{
+  "585":{
     "name":"Église Saint-Dominique",
     "type":{
       "landmark_type":"sightseeing"
@@ -9610,11 +9370,12 @@
     ],
     "osm_type":"way",
     "osm_id":79626601,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "641":{
+  "586":{
     "name":"Chapelle Saint-Jean",
     "type":{
       "landmark_type":"sightseeing"
@@ -9625,11 +9386,12 @@
     ],
     "osm_type":"way",
     "osm_id":79633343,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "642":{
+  "587":{
     "name":"Église Notre-Dame-du-Travail",
     "type":{
       "landmark_type":"sightseeing"
@@ -9640,11 +9402,12 @@
     ],
     "osm_type":"way",
     "osm_id":79687825,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "643":{
+  "588":{
     "name":"Paroisse de Plaisance",
     "type":{
       "landmark_type":"sightseeing"
@@ -9655,11 +9418,12 @@
     ],
     "osm_type":"way",
     "osm_id":79688125,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "644":{
+  "589":{
     "name":"Église Notre-Dame-du-Rosaire",
     "type":{
       "landmark_type":"sightseeing"
@@ -9670,11 +9434,12 @@
     ],
     "osm_type":"way",
     "osm_id":79717909,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "645":{
+  "590":{
     "name":"Paris Alésia",
     "type":{
       "landmark_type":"sightseeing"
@@ -9685,11 +9450,12 @@
     ],
     "osm_type":"way",
     "osm_id":79718987,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "646":{
+  "591":{
     "name":"Église Baptiste du Centre",
     "type":{
       "landmark_type":"sightseeing"
@@ -9700,11 +9466,12 @@
     ],
     "osm_type":"way",
     "osm_id":79804529,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "647":{
+  "592":{
     "name":"Église Évangélique Libre",
     "type":{
       "landmark_type":"sightseeing"
@@ -9715,11 +9482,12 @@
     ],
     "osm_type":"way",
     "osm_id":79804659,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "648":{
+  "593":{
     "name":"Église de Saint-Antoine de Padoue",
     "type":{
       "landmark_type":"sightseeing"
@@ -9730,11 +9498,12 @@
     ],
     "osm_type":"way",
     "osm_id":80144693,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "649":{
+  "594":{
     "name":"Église Notre-Dame-Réconciliatrice",
     "type":{
       "landmark_type":"sightseeing"
@@ -9745,11 +9514,12 @@
     ],
     "osm_type":"way",
     "osm_id":80152077,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "650":{
+  "595":{
     "name":"Chapelle Notre-Dame-du-Lys",
     "type":{
       "landmark_type":"sightseeing"
@@ -9760,11 +9530,12 @@
     ],
     "osm_type":"way",
     "osm_id":80237236,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "651":{
+  "596":{
     "name":"Église Orthodoxe Saint-Séraphin de Sarov",
     "type":{
       "landmark_type":"sightseeing"
@@ -9775,11 +9546,12 @@
     ],
     "osm_type":"way",
     "osm_id":80237345,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "652":{
+  "597":{
     "name":"Église Saint-Jean-Baptiste-de-La-Salle",
     "type":{
       "landmark_type":"sightseeing"
@@ -9790,11 +9562,12 @@
     ],
     "osm_type":"way",
     "osm_id":80266257,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "653":{
+  "598":{
     "name":"Église Saint-Honoré d'Eylau",
     "type":{
       "landmark_type":"sightseeing"
@@ -9805,26 +9578,12 @@
     ],
     "osm_type":"way",
     "osm_id":80853671,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "654":{
-    "name":"Église Saint-Albert le Grand",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8687931,
-      2.27744
-    ],
-    "osm_type":"way",
-    "osm_id":80892490,
-    "attractiveness":8,
-    "must_do":false,
-    "n_tags":8
-  },
-  "655":{
+  "599":{
     "name":"Église Saint-Saturnin",
     "type":{
       "landmark_type":"sightseeing"
@@ -9835,11 +9594,12 @@
     ],
     "osm_type":"way",
     "osm_id":81089089,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "656":{
+  "600":{
     "name":"Église du Sacré-Cœur",
     "type":{
       "landmark_type":"sightseeing"
@@ -9850,11 +9610,12 @@
     ],
     "osm_type":"way",
     "osm_id":81089773,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "657":{
+  "601":{
     "name":"Maison du Won-Bouddhisme",
     "type":{
       "landmark_type":"sightseeing"
@@ -9865,11 +9626,12 @@
     ],
     "osm_type":"way",
     "osm_id":81092340,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "658":{
+  "602":{
     "name":"Église protestante unie de l'Annonciation",
     "type":{
       "landmark_type":"sightseeing"
@@ -9880,11 +9642,12 @@
     ],
     "osm_type":"way",
     "osm_id":81792421,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "659":{
+  "603":{
     "name":"Église Évangelique de Salem",
     "type":{
       "landmark_type":"sightseeing"
@@ -9895,11 +9658,12 @@
     ],
     "osm_type":"way",
     "osm_id":83233532,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "660":{
+  "604":{
     "name":"Église Saint-Joseph-Saint-Raymond",
     "type":{
       "landmark_type":"sightseeing"
@@ -9910,11 +9674,12 @@
     ],
     "osm_type":"way",
     "osm_id":83233825,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "661":{
+  "605":{
     "name":"Église Saint-Jacques-le-Majeur",
     "type":{
       "landmark_type":"sightseeing"
@@ -9925,11 +9690,12 @@
     ],
     "osm_type":"way",
     "osm_id":83236772,
-    "attractiveness":29,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":28
+    "n_tags":28,
+    "time_to_reach":0
   },
-  "662":{
+  "606":{
     "name":"Église Notre-Dame-de-l'Assomption de Passy",
     "type":{
       "landmark_type":"sightseeing"
@@ -9940,11 +9706,12 @@
     ],
     "osm_type":"way",
     "osm_id":83715715,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "663":{
+  "607":{
     "name":"Église Saint-Marc",
     "type":{
       "landmark_type":"sightseeing"
@@ -9955,11 +9722,12 @@
     ],
     "osm_type":"way",
     "osm_id":83790199,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "664":{
+  "608":{
     "name":"Chapelle du Sacré-Cœur",
     "type":{
       "landmark_type":"sightseeing"
@@ -9970,11 +9738,12 @@
     ],
     "osm_type":"way",
     "osm_id":83791292,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "665":{
+  "609":{
     "name":"Église de Jésus-Christ des Derniers Jours",
     "type":{
       "landmark_type":"sightseeing"
@@ -9985,11 +9754,12 @@
     ],
     "osm_type":"way",
     "osm_id":83793766,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "666":{
+  "610":{
     "name":"Église Notre-Dame-de-la-Médaille-Miraculeuse",
     "type":{
       "landmark_type":"sightseeing"
@@ -10000,11 +9770,12 @@
     ],
     "osm_type":"way",
     "osm_id":83795285,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "667":{
+  "611":{
     "name":"Église Notre-Dame de Grâce de Passy",
     "type":{
       "landmark_type":"sightseeing"
@@ -10015,11 +9786,12 @@
     ],
     "osm_type":"way",
     "osm_id":83830759,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "668":{
+  "612":{
     "name":"Chapelle Sainte-Thérèse",
     "type":{
       "landmark_type":"sightseeing"
@@ -10030,11 +9802,12 @@
     ],
     "osm_type":"way",
     "osm_id":84262198,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "669":{
+  "613":{
     "name":"Temple Réformé de l'Etoile",
     "type":{
       "landmark_type":"sightseeing"
@@ -10045,11 +9818,12 @@
     ],
     "osm_type":"way",
     "osm_id":84322974,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "670":{
+  "614":{
     "name":"Église Saint-Ferdinand des Ternes",
     "type":{
       "landmark_type":"sightseeing"
@@ -10060,11 +9834,12 @@
     ],
     "osm_type":"way",
     "osm_id":84325824,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "671":{
+  "615":{
     "name":"Église Notre-Dame d'Auteuil",
     "type":{
       "landmark_type":"sightseeing"
@@ -10075,11 +9850,12 @@
     ],
     "osm_type":"way",
     "osm_id":85615121,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "672":{
+  "616":{
     "name":"Chapelle Sainte-Bernadette",
     "type":{
       "landmark_type":"sightseeing"
@@ -10090,11 +9866,12 @@
     ],
     "osm_type":"way",
     "osm_id":85616170,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "673":{
+  "617":{
     "name":"Église Saint-François de Molitor",
     "type":{
       "landmark_type":"sightseeing"
@@ -10105,11 +9882,12 @@
     ],
     "osm_type":"way",
     "osm_id":86277623,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "674":{
+  "618":{
     "name":"Église des Saints Nouveaux Martyrs et Confesseurs de Russie",
     "type":{
       "landmark_type":"sightseeing"
@@ -10120,11 +9898,12 @@
     ],
     "osm_type":"way",
     "osm_id":87141492,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "675":{
+  "619":{
     "name":"Église Saint-Rémy",
     "type":{
       "landmark_type":"sightseeing"
@@ -10135,11 +9914,12 @@
     ],
     "osm_type":"way",
     "osm_id":87376851,
-    "attractiveness":16,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "676":{
+  "620":{
     "name":"Centre communautaire israélite de Châtillon",
     "type":{
       "landmark_type":"sightseeing"
@@ -10150,11 +9930,12 @@
     ],
     "osm_type":"way",
     "osm_id":87388252,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "677":{
+  "621":{
     "name":"Église Notre-Dame-du-Calvaire",
     "type":{
       "landmark_type":"sightseeing"
@@ -10165,11 +9946,12 @@
     ],
     "osm_type":"way",
     "osm_id":87389346,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "678":{
+  "622":{
     "name":"Église Saint-Philippe-Saint-Jacques",
     "type":{
       "landmark_type":"sightseeing"
@@ -10180,11 +9962,12 @@
     ],
     "osm_type":"way",
     "osm_id":87393672,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "679":{
+  "623":{
     "name":"Chapelle Sainte-Thérèse-de-l'Enfant-Jésus",
     "type":{
       "landmark_type":"sightseeing"
@@ -10195,11 +9978,12 @@
     ],
     "osm_type":"way",
     "osm_id":87395592,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "680":{
+  "624":{
     "name":"Église Saint-Luc",
     "type":{
       "landmark_type":"sightseeing"
@@ -10210,11 +9994,12 @@
     ],
     "osm_type":"way",
     "osm_id":87507680,
-    "attractiveness":8,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "681":{
+  "625":{
     "name":"Église Polonaise Sainte-Geneviève",
     "type":{
       "landmark_type":"sightseeing"
@@ -10225,11 +10010,12 @@
     ],
     "osm_type":"way",
     "osm_id":87841263,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "682":{
+  "626":{
     "name":"Église Sainte-Jeanne-de-Chantal",
     "type":{
       "landmark_type":"sightseeing"
@@ -10240,11 +10026,12 @@
     ],
     "osm_type":"way",
     "osm_id":87959071,
-    "attractiveness":13,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "683":{
+  "627":{
     "name":"Église Orthodoxe Russe",
     "type":{
       "landmark_type":"sightseeing"
@@ -10255,11 +10042,12 @@
     ],
     "osm_type":"way",
     "osm_id":87982529,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "684":{
+  "628":{
     "name":"Église Saint-François d'Assise",
     "type":{
       "landmark_type":"sightseeing"
@@ -10270,11 +10058,12 @@
     ],
     "osm_type":"way",
     "osm_id":88058402,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "685":{
+  "629":{
     "name":"Église Saint-Pierre et Saint-Paul",
     "type":{
       "landmark_type":"sightseeing"
@@ -10285,11 +10074,12 @@
     ],
     "osm_type":"way",
     "osm_id":91808442,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "686":{
+  "630":{
     "name":"Chapelle de la Visitation",
     "type":{
       "landmark_type":"sightseeing"
@@ -10300,11 +10090,12 @@
     ],
     "osm_type":"way",
     "osm_id":93664894,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "687":{
+  "631":{
     "name":"Église Saint-Antoine des Quinze-Vingts",
     "type":{
       "landmark_type":"sightseeing"
@@ -10315,11 +10106,12 @@
     ],
     "osm_type":"way",
     "osm_id":94236417,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "688":{
+  "632":{
     "name":"Chapelle Sainte-Ursule",
     "type":{
       "landmark_type":"sightseeing"
@@ -10330,11 +10122,12 @@
     ],
     "osm_type":"way",
     "osm_id":95860808,
-    "attractiveness":22,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":22
+    "n_tags":22,
+    "time_to_reach":0
   },
-  "689":{
+  "633":{
     "name":"Notre-Dame-du-Liban",
     "type":{
       "landmark_type":"sightseeing"
@@ -10345,11 +10138,12 @@
     ],
     "osm_type":"way",
     "osm_id":95869425,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "690":{
+  "634":{
     "name":"Église Saint-Bruno",
     "type":{
       "landmark_type":"sightseeing"
@@ -10360,11 +10154,12 @@
     ],
     "osm_type":"way",
     "osm_id":96568125,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "691":{
+  "635":{
     "name":"Chapelle de l'Épiphanie",
     "type":{
       "landmark_type":"sightseeing"
@@ -10375,11 +10170,12 @@
     ],
     "osm_type":"way",
     "osm_id":104339971,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "692":{
+  "636":{
     "name":"Nouvelle Église Notre-Dame-de-Grâce de Passy",
     "type":{
       "landmark_type":"sightseeing"
@@ -10390,11 +10186,12 @@
     ],
     "osm_type":"way",
     "osm_id":104904040,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "693":{
+  "637":{
     "name":"Chapelle Laennec",
     "type":{
       "landmark_type":"sightseeing"
@@ -10405,11 +10202,12 @@
     ],
     "osm_type":"way",
     "osm_id":105220265,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "694":{
+  "638":{
     "name":"Église Notre-Dame-de-Nazareth",
     "type":{
       "landmark_type":"sightseeing"
@@ -10420,11 +10218,12 @@
     ],
     "osm_type":"way",
     "osm_id":105535815,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "695":{
+  "639":{
     "name":"Église apostolique arménienne Sainte-Marie-Mère-de-Dieu",
     "type":{
       "landmark_type":"sightseeing"
@@ -10435,11 +10234,12 @@
     ],
     "osm_type":"way",
     "osm_id":107530891,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "696":{
+  "640":{
     "name":"Église Apostolique Arménienne",
     "type":{
       "landmark_type":"sightseeing"
@@ -10450,11 +10250,12 @@
     ],
     "osm_type":"way",
     "osm_id":107530896,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "697":{
+  "641":{
     "name":"Chapelle rose",
     "type":{
       "landmark_type":"sightseeing"
@@ -10465,11 +10266,12 @@
     ],
     "osm_type":"way",
     "osm_id":111797202,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "698":{
+  "642":{
     "name":"La Solitude",
     "type":{
       "landmark_type":"sightseeing"
@@ -10480,11 +10282,12 @@
     ],
     "osm_type":"way",
     "osm_id":111826152,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "699":{
+  "643":{
     "name":"Église Saint-Joseph",
     "type":{
       "landmark_type":"sightseeing"
@@ -10495,11 +10298,12 @@
     ],
     "osm_type":"way",
     "osm_id":112209202,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "700":{
+  "644":{
     "name":"Église nouvelle Saint-Honoré d'Eylau",
     "type":{
       "landmark_type":"sightseeing"
@@ -10510,11 +10314,12 @@
     ],
     "osm_type":"way",
     "osm_id":112237139,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "701":{
+  "645":{
     "name":"Chapelle Saint-François d'Assise",
     "type":{
       "landmark_type":"sightseeing"
@@ -10525,26 +10330,12 @@
     ],
     "osm_type":"way",
     "osm_id":112263440,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "702":{
-    "name":"Église du Dôme",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8550021,
-      2.3125391
-    ],
-    "osm_type":"way",
-    "osm_id":112452790,
-    "attractiveness":25,
-    "must_do":false,
-    "n_tags":23
-  },
-  "703":{
+  "646":{
     "name":"Chapelle Notre-Dame-du-Saint-Sacrement",
     "type":{
       "landmark_type":"sightseeing"
@@ -10555,11 +10346,12 @@
     ],
     "osm_type":"way",
     "osm_id":112461792,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "704":{
+  "647":{
     "name":"Chapelle Notre-Dame-de-Toutes-Grâces",
     "type":{
       "landmark_type":"sightseeing"
@@ -10570,11 +10362,12 @@
     ],
     "osm_type":"way",
     "osm_id":114654265,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "705":{
+  "648":{
     "name":"Notre-Dame de Toutes Grâces",
     "type":{
       "landmark_type":"sightseeing"
@@ -10585,11 +10378,12 @@
     ],
     "osm_type":"way",
     "osm_id":114654286,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "706":{
+  "649":{
     "name":"Le Nymphée",
     "type":{
       "landmark_type":"sightseeing"
@@ -10600,11 +10394,12 @@
     ],
     "osm_type":"way",
     "osm_id":114654318,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "707":{
+  "650":{
     "name":"Église Sainte-Marguerite",
     "type":{
       "landmark_type":"sightseeing"
@@ -10615,11 +10410,12 @@
     ],
     "osm_type":"way",
     "osm_id":115804138,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "708":{
+  "651":{
     "name":"MJLF",
     "type":{
       "landmark_type":"sightseeing"
@@ -10630,11 +10426,12 @@
     ],
     "osm_type":"way",
     "osm_id":115878693,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "709":{
+  "652":{
     "name":"Chapelle Sainte-Jeanne-d'Arc",
     "type":{
       "landmark_type":"sightseeing"
@@ -10645,11 +10442,12 @@
     ],
     "osm_type":"way",
     "osm_id":118528607,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "710":{
+  "653":{
     "name":"Église du Bon Secours",
     "type":{
       "landmark_type":"sightseeing"
@@ -10660,26 +10458,12 @@
     ],
     "osm_type":"way",
     "osm_id":118650031,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":18
+    "n_tags":18,
+    "time_to_reach":0
   },
-  "711":{
-    "name":"Chapelle",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8297549,
-      2.3118834
-    ],
-    "osm_type":"way",
-    "osm_id":137692720,
-    "attractiveness":8,
-    "must_do":false,
-    "n_tags":8
-  },
-  "712":{
+  "654":{
     "name":"Église Orthodoxe des Trois-Saints-Docteurs",
     "type":{
       "landmark_type":"sightseeing"
@@ -10690,11 +10474,12 @@
     ],
     "osm_type":"way",
     "osm_id":137884620,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "713":{
+  "655":{
     "name":"Chapelle de la clinique Blomet",
     "type":{
       "landmark_type":"sightseeing"
@@ -10705,11 +10490,12 @@
     ],
     "osm_type":"way",
     "osm_id":137884646,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "714":{
+  "656":{
     "name":"Église Saint-Roger",
     "type":{
       "landmark_type":"sightseeing"
@@ -10720,11 +10506,12 @@
     ],
     "osm_type":"way",
     "osm_id":139561242,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "715":{
+  "657":{
     "name":"Chùa Khánh Anh",
     "type":{
       "landmark_type":"sightseeing"
@@ -10735,26 +10522,12 @@
     ],
     "osm_type":"way",
     "osm_id":146243136,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "716":{
-    "name":"Église Saint-Hermeland",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.7964504,
-      2.3024281
-    ],
-    "osm_type":"way",
-    "osm_id":146243264,
-    "attractiveness":19,
-    "must_do":false,
-    "n_tags":18
-  },
-  "717":{
+  "658":{
     "name":"Mosquée Omar Ibn Khattab à Bagneux",
     "type":{
       "landmark_type":"sightseeing"
@@ -10765,26 +10538,12 @@
     ],
     "osm_type":"way",
     "osm_id":146251083,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "718":{
-    "name":"Chapelle",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8646767,
-      2.2807027
-    ],
-    "osm_type":"way",
-    "osm_id":154001554,
-    "attractiveness":9,
-    "must_do":false,
-    "n_tags":8
-  },
-  "719":{
+  "659":{
     "name":"Chapelle Saint-Yves",
     "type":{
       "landmark_type":"sightseeing"
@@ -10795,11 +10554,12 @@
     ],
     "osm_type":"way",
     "osm_id":155071057,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "720":{
+  "660":{
     "name":"Chapelle du Sacré-Cœur-de-Jésus-Roi-de-France",
     "type":{
       "landmark_type":"sightseeing"
@@ -10810,11 +10570,12 @@
     ],
     "osm_type":"way",
     "osm_id":166684921,
-    "attractiveness":16,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "721":{
+  "661":{
     "name":"Grande Chapelle",
     "type":{
       "landmark_type":"sightseeing"
@@ -10825,11 +10586,12 @@
     ],
     "osm_type":"way",
     "osm_id":184127778,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "722":{
+  "662":{
     "name":"Église Saint-Benoît",
     "type":{
       "landmark_type":"sightseeing"
@@ -10840,11 +10602,12 @@
     ],
     "osm_type":"way",
     "osm_id":184156452,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "723":{
+  "663":{
     "name":"Chapelle Sainte-Bathilde",
     "type":{
       "landmark_type":"sightseeing"
@@ -10855,11 +10618,12 @@
     ],
     "osm_type":"way",
     "osm_id":198765990,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "724":{
+  "664":{
     "name":"Église Saint-Étienne",
     "type":{
       "landmark_type":"sightseeing"
@@ -10870,56 +10634,12 @@
     ],
     "osm_type":"way",
     "osm_id":199694468,
-    "attractiveness":23,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":22
+    "n_tags":22,
+    "time_to_reach":0
   },
-  "725":{
-    "name":"Église Saint-Luc",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8108006,
-      2.3234878
-    ],
-    "osm_type":"way",
-    "osm_id":199699485,
-    "attractiveness":17,
-    "must_do":false,
-    "n_tags":17
-  },
-  "726":{
-    "name":"Cathédrale Notre-Dame de Paris",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8529372,
-      2.3498701
-    ],
-    "osm_type":"way",
-    "osm_id":201611261,
-    "attractiveness":55,
-    "must_do":false,
-    "n_tags":54
-  },
-  "727":{
-    "name":"Chapelle Notre-Dame-des-Anges",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8462836,
-      2.3235558
-    ],
-    "osm_type":"way",
-    "osm_id":219378497,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":16
-  },
-  "728":{
+  "665":{
     "name":"Chapelle de l'hôpital",
     "type":{
       "landmark_type":"sightseeing"
@@ -10930,11 +10650,12 @@
     ],
     "osm_type":"way",
     "osm_id":223128200,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "729":{
+  "666":{
     "name":"Chapelle Notre-Dame de la Médaille Miraculeuse",
     "type":{
       "landmark_type":"sightseeing"
@@ -10945,26 +10666,12 @@
     ],
     "osm_type":"way",
     "osm_id":244749667,
-    "attractiveness":17,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "730":{
-    "name":"Chapelle des Catéchismes",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8464729,
-      2.3488067
-    ],
-    "osm_type":"way",
-    "osm_id":255080046,
-    "attractiveness":9,
-    "must_do":false,
-    "n_tags":8
-  },
-  "731":{
+  "667":{
     "name":"Église Notre-Dame-de-La-Salette",
     "type":{
       "landmark_type":"sightseeing"
@@ -10975,11 +10682,12 @@
     ],
     "osm_type":"way",
     "osm_id":304186825,
-    "attractiveness":12,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "732":{
+  "668":{
     "name":"Chapelle des petites sœurs de l'Assomption",
     "type":{
       "landmark_type":"sightseeing"
@@ -10990,11 +10698,12 @@
     ],
     "osm_type":"way",
     "osm_id":320707523,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "733":{
+  "669":{
     "name":"Notre-Dame-de-Belleville",
     "type":{
       "landmark_type":"sightseeing"
@@ -11005,11 +10714,12 @@
     ],
     "osm_type":"way",
     "osm_id":328240241,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "734":{
+  "670":{
     "name":"Michkenot Yaacov",
     "type":{
       "landmark_type":"sightseeing"
@@ -11020,11 +10730,12 @@
     ],
     "osm_type":"way",
     "osm_id":329195478,
-    "attractiveness":10,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "735":{
+  "671":{
     "name":"Chapelle Sainte-Marie",
     "type":{
       "landmark_type":"sightseeing"
@@ -11035,11 +10746,12 @@
     ],
     "osm_type":"way",
     "osm_id":337382904,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "736":{
+  "672":{
     "name":"Chapelle Notre-Dame-de-Joye",
     "type":{
       "landmark_type":"sightseeing"
@@ -11050,11 +10762,12 @@
     ],
     "osm_type":"way",
     "osm_id":356802944,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "737":{
+  "673":{
     "name":"Chapelle Saint-Vincent",
     "type":{
       "landmark_type":"sightseeing"
@@ -11065,11 +10778,12 @@
     ],
     "osm_type":"way",
     "osm_id":377136997,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "738":{
+  "674":{
     "name":"Chapelle de la Vierge",
     "type":{
       "landmark_type":"sightseeing"
@@ -11080,11 +10794,12 @@
     ],
     "osm_type":"way",
     "osm_id":377137007,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "739":{
+  "675":{
     "name":"Chapelle du Bon Pasteur",
     "type":{
       "landmark_type":"sightseeing"
@@ -11095,11 +10810,12 @@
     ],
     "osm_type":"way",
     "osm_id":377137015,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "740":{
+  "676":{
     "name":"Chapelle Sainte-Geneviève",
     "type":{
       "landmark_type":"sightseeing"
@@ -11110,11 +10826,12 @@
     ],
     "osm_type":"way",
     "osm_id":377137025,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "741":{
+  "677":{
     "name":"Chapelle Saint-Paul",
     "type":{
       "landmark_type":"sightseeing"
@@ -11125,11 +10842,12 @@
     ],
     "osm_type":"way",
     "osm_id":399204077,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "742":{
+  "678":{
     "name":"Chapelle Saint-Bernard",
     "type":{
       "landmark_type":"sightseeing"
@@ -11140,26 +10858,12 @@
     ],
     "osm_type":"way",
     "osm_id":410503747,
-    "attractiveness":15,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "743":{
-    "name":"Grande Mosquée de Paris",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8420708,
-      2.3551205
-    ],
-    "osm_type":"way",
-    "osm_id":437812893,
-    "attractiveness":29,
-    "must_do":false,
-    "n_tags":28
-  },
-  "744":{
+  "679":{
     "name":"Chapelle de la Trinité",
     "type":{
       "landmark_type":"sightseeing"
@@ -11170,11 +10874,12 @@
     ],
     "osm_type":"way",
     "osm_id":439916874,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "745":{
+  "680":{
     "name":"Église du Saint-Curé-d'Ars",
     "type":{
       "landmark_type":"sightseeing"
@@ -11185,11 +10890,12 @@
     ],
     "osm_type":"way",
     "osm_id":447028265,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "746":{
+  "681":{
     "name":"Cathédrale de la Sainte-Trinité",
     "type":{
       "landmark_type":"sightseeing"
@@ -11200,11 +10906,12 @@
     ],
     "osm_type":"way",
     "osm_id":449077939,
-    "attractiveness":18,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "747":{
+  "682":{
     "name":"Église espagnole du Coeur Immaculé de Marie",
     "type":{
       "landmark_type":"sightseeing"
@@ -11215,11 +10922,12 @@
     ],
     "osm_type":"way",
     "osm_id":462398675,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "748":{
+  "683":{
     "name":"Chapelle Saint-Symphorien",
     "type":{
       "landmark_type":"sightseeing"
@@ -11230,11 +10938,12 @@
     ],
     "osm_type":"way",
     "osm_id":495635817,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "749":{
+  "684":{
     "name":"Église Mariavite Sainte-Marie",
     "type":{
       "landmark_type":"sightseeing"
@@ -11245,26 +10954,12 @@
     ],
     "osm_type":"way",
     "osm_id":678987698,
-    "attractiveness":7,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "750":{
-    "name":"Chapelle des Franciscains",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8091333,
-      2.3311572
-    ],
-    "osm_type":"way",
-    "osm_id":680378608,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":16
-  },
-  "751":{
+  "685":{
     "name":"Église Saint-Jean des Deux Moulins",
     "type":{
       "landmark_type":"sightseeing"
@@ -11275,11 +10970,12 @@
     ],
     "osm_type":"way",
     "osm_id":962298895,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "752":{
+  "686":{
     "name":"Église Orthodoxe Notre-Dame-Joie-des-Affligés-et-Sainte-Geneviève",
     "type":{
       "landmark_type":"sightseeing"
@@ -11290,11 +10986,12 @@
     ],
     "osm_type":"way",
     "osm_id":1056837934,
-    "attractiveness":14,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "753":{
+  "687":{
     "name":"Chapelle Saint-Patrick",
     "type":{
       "landmark_type":"sightseeing"
@@ -11305,11 +11002,12 @@
     ],
     "osm_type":"way",
     "osm_id":1056864734,
-    "attractiveness":9,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "754":{
+  "688":{
     "name":"Mosquée de bercy",
     "type":{
       "landmark_type":"sightseeing"
@@ -11320,11 +11018,12 @@
     ],
     "osm_type":"way",
     "osm_id":1197529267,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "755":{
+  "689":{
     "name":"Association Culturelle Islamique Kurdes",
     "type":{
       "landmark_type":"sightseeing"
@@ -11335,11 +11034,12 @@
     ],
     "osm_type":"relation",
     "osm_id":983065,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "756":{
+  "690":{
     "name":"Centre Culturel Islamique",
     "type":{
       "landmark_type":"sightseeing"
@@ -11350,11 +11050,12 @@
     ],
     "osm_type":"relation",
     "osm_id":983153,
-    "attractiveness":6,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "757":{
+  "691":{
     "name":"Séminaire Polonais de Paris",
     "type":{
       "landmark_type":"sightseeing"
@@ -11365,11 +11066,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1442432,
-    "attractiveness":8,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "758":{
+  "692":{
     "name":"Église Saint-Joseph des Nations",
     "type":{
       "landmark_type":"sightseeing"
@@ -11380,26 +11082,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1589962,
-    "attractiveness":11,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "759":{
-    "name":"Sainte-Chapelle",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8553966,
-      2.3450136
-    ],
-    "osm_type":"relation",
-    "osm_id":3344870,
-    "attractiveness":56,
-    "must_do":false,
-    "n_tags":54
-  },
-  "760":{
+  "693":{
     "name":"Grand Bassin Rond",
     "type":{
       "landmark_type":"sightseeing"
@@ -11410,11 +11098,12 @@
     ],
     "osm_type":"way",
     "osm_id":14037695,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "761":{
+  "694":{
     "name":"Fontaine des quatre évêques",
     "type":{
       "landmark_type":"sightseeing"
@@ -11425,56 +11114,12 @@
     ],
     "osm_type":"way",
     "osm_id":40068036,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "762":{
-    "name":"Fontaine Saint-Michel",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8532077,
-      2.3437213
-    ],
-    "osm_type":"way",
-    "osm_id":40579862,
-    "attractiveness":9,
-    "must_do":false,
-    "n_tags":8
-  },
-  "763":{
-    "name":"Fontaine des Innocents",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8606368,
-      2.3480233
-    ],
-    "osm_type":"way",
-    "osm_id":52469222,
-    "attractiveness":16,
-    "must_do":false,
-    "n_tags":15
-  },
-  "764":{
-    "name":"Fontaine Molière",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8654941,
-      2.336613
-    ],
-    "osm_type":"way",
-    "osm_id":54097804,
-    "attractiveness":10,
-    "must_do":false,
-    "n_tags":9
-  },
-  "765":{
+  "695":{
     "name":"Grand Bassin Octogonal",
     "type":{
       "landmark_type":"sightseeing"
@@ -11485,11 +11130,12 @@
     ],
     "osm_type":"way",
     "osm_id":54188993,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "766":{
+  "696":{
     "name":"Vivier nord",
     "type":{
       "landmark_type":"sightseeing"
@@ -11500,11 +11146,12 @@
     ],
     "osm_type":"way",
     "osm_id":54201241,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "767":{
+  "697":{
     "name":"Vivier sud",
     "type":{
       "landmark_type":"sightseeing"
@@ -11515,11 +11162,12 @@
     ],
     "osm_type":"way",
     "osm_id":54201242,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "768":{
+  "698":{
     "name":"Fontaine du Vert Bois",
     "type":{
       "landmark_type":"sightseeing"
@@ -11530,26 +11178,12 @@
     ],
     "osm_type":"way",
     "osm_id":54964126,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "769":{
-    "name":"Fontaine du Pot-de-Fer",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8430761,
-      2.3495033
-    ],
-    "osm_type":"way",
-    "osm_id":57687072,
-    "attractiveness":13,
-    "must_do":false,
-    "n_tags":12
-  },
-  "770":{
+  "699":{
     "name":"Monument d'Eugène Delacroix",
     "type":{
       "landmark_type":"sightseeing"
@@ -11560,11 +11194,12 @@
     ],
     "osm_type":"way",
     "osm_id":62848407,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "771":{
+  "700":{
     "name":"Fontaine de la Roquette",
     "type":{
       "landmark_type":"sightseeing"
@@ -11575,11 +11210,12 @@
     ],
     "osm_type":"way",
     "osm_id":63639456,
-    "attractiveness":12,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "772":{
+  "701":{
     "name":"Fontaine Couverte",
     "type":{
       "landmark_type":"sightseeing"
@@ -11590,11 +11226,12 @@
     ],
     "osm_type":"way",
     "osm_id":63655269,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "773":{
+  "702":{
     "name":"Fontaine Miroir d'eau, la Seine et ses affluents",
     "type":{
       "landmark_type":"sightseeing"
@@ -11605,11 +11242,12 @@
     ],
     "osm_type":"way",
     "osm_id":66758129,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "774":{
+  "703":{
     "name":"Fontaine du Cirque",
     "type":{
       "landmark_type":"sightseeing"
@@ -11620,11 +11258,12 @@
     ],
     "osm_type":"way",
     "osm_id":67036988,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "775":{
+  "704":{
     "name":"Fontaine des Ambassadeurs",
     "type":{
       "landmark_type":"sightseeing"
@@ -11635,11 +11274,12 @@
     ],
     "osm_type":"way",
     "osm_id":67091995,
-    "attractiveness":8,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "776":{
+  "705":{
     "name":"Fontaine de la Grille du Coq",
     "type":{
       "landmark_type":"sightseeing"
@@ -11650,11 +11290,12 @@
     ],
     "osm_type":"way",
     "osm_id":67092064,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "777":{
+  "706":{
     "name":"Fontaine des Fleuves",
     "type":{
       "landmark_type":"sightseeing"
@@ -11665,11 +11306,12 @@
     ],
     "osm_type":"way",
     "osm_id":72937684,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "778":{
+  "707":{
     "name":"Fontaine des Mers",
     "type":{
       "landmark_type":"sightseeing"
@@ -11680,11 +11322,12 @@
     ],
     "osm_type":"way",
     "osm_id":72937685,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "779":{
+  "708":{
     "name":"Exèdre sud",
     "type":{
       "landmark_type":"sightseeing"
@@ -11695,26 +11338,12 @@
     ],
     "osm_type":"way",
     "osm_id":96156168,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "780":{
-    "name":"Fontaine du Palmier",
-    "type":{
-      "landmark_type":"sightseeing"
-    },
-    "location":[
-      48.8575005,
-      2.3472864
-    ],
-    "osm_type":"way",
-    "osm_id":261092850,
-    "attractiveness":23,
-    "must_do":false,
-    "n_tags":14
-  },
-  "781":{
+  "709":{
     "name":"Fontaine de l'Avril",
     "type":{
       "landmark_type":"sightseeing"
@@ -11725,11 +11354,12 @@
     ],
     "osm_type":"way",
     "osm_id":262367200,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "782":{
+  "710":{
     "name":"Fontaine des Polypores",
     "type":{
       "landmark_type":"sightseeing"
@@ -11740,11 +11370,12 @@
     ],
     "osm_type":"way",
     "osm_id":291115567,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "783":{
+  "711":{
     "name":"Miroir d'Eau",
     "type":{
       "landmark_type":"sightseeing"
@@ -11755,11 +11386,12 @@
     ],
     "osm_type":"way",
     "osm_id":313420244,
-    "attractiveness":3,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "784":{
+  "712":{
     "name":"Miroir d'eau",
     "type":{
       "landmark_type":"sightseeing"
@@ -11770,11 +11402,12 @@
     ],
     "osm_type":"way",
     "osm_id":418306479,
-    "attractiveness":4,
+    "attractiveness":2,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "785":{
+  "713":{
     "name":"Fontaine Trogneux",
     "type":{
       "landmark_type":"sightseeing"
@@ -11785,11 +11418,12 @@
     ],
     "osm_type":"way",
     "osm_id":435298569,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "786":{
+  "714":{
     "name":"Exèdre nord",
     "type":{
       "landmark_type":"sightseeing"
@@ -11800,11 +11434,12 @@
     ],
     "osm_type":"way",
     "osm_id":576724335,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "787":{
+  "715":{
     "name":"Fontaine de la Baleine Bleue",
     "type":{
       "landmark_type":"sightseeing"
@@ -11815,11 +11450,12 @@
     ],
     "osm_type":"way",
     "osm_id":661816194,
-    "attractiveness":2,
+    "attractiveness":1,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "788":{
+  "716":{
     "name":"Fontaine du Théâtre Français - Nymphe marine",
     "type":{
       "landmark_type":"sightseeing"
@@ -11830,11 +11466,12 @@
     ],
     "osm_type":"way",
     "osm_id":664173645,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "789":{
+  "717":{
     "name":"Fontaine du Théâtre Français - Nymphe fluviale",
     "type":{
       "landmark_type":"sightseeing"
@@ -11845,11 +11482,12 @@
     ],
     "osm_type":"way",
     "osm_id":664173647,
-    "attractiveness":7,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "790":{
+  "718":{
     "name":"L'embâcle",
     "type":{
       "landmark_type":"sightseeing"
@@ -11860,11 +11498,12 @@
     ],
     "osm_type":"way",
     "osm_id":664223075,
-    "attractiveness":5,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "791":{
+  "719":{
     "name":"Fontaine du Bassin Soufflot",
     "type":{
       "landmark_type":"sightseeing"
@@ -11875,11 +11514,12 @@
     ],
     "osm_type":"way",
     "osm_id":685770760,
-    "attractiveness":9,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "792":{
+  "720":{
     "name":"La fontaine de la Vierge",
     "type":{
       "landmark_type":"sightseeing"
@@ -11890,11 +11530,12 @@
     ],
     "osm_type":"way",
     "osm_id":948654101,
-    "attractiveness":6,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "793":{
+  "721":{
     "name":"Fontaine de Diane",
     "type":{
       "landmark_type":"sightseeing"
@@ -11905,11 +11546,12 @@
     ],
     "osm_type":"way",
     "osm_id":1136105125,
-    "attractiveness":10,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "794":{
+  "722":{
     "name":"Fontaine de la Paix",
     "type":{
       "landmark_type":"sightseeing"
@@ -11920,11 +11562,12 @@
     ],
     "osm_type":"way",
     "osm_id":1200013023,
-    "attractiveness":13,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "795":{
+  "723":{
     "name":"Fontaine du Marché-aux-Carmes",
     "type":{
       "landmark_type":"sightseeing"
@@ -11935,11 +11578,12 @@
     ],
     "osm_type":"way",
     "osm_id":1200620877,
-    "attractiveness":15,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "796":{
+  "724":{
     "name":"Parc de Bercy",
     "type":{
       "landmark_type":"nature"
@@ -11950,56 +11594,12 @@
     ],
     "osm_type":"way",
     "osm_id":4083189,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "797":{
-    "name":"Champ de Mars",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.856163,
-      2.2978311
-    ],
-    "osm_type":"way",
-    "osm_id":4208595,
-    "attractiveness":25,
-    "must_do":false,
-    "n_tags":25
-  },
-  "798":{
-    "name":"Jardin des Plantes",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8440393,
-      2.3596915
-    ],
-    "osm_type":"way",
-    "osm_id":4221369,
-    "attractiveness":22,
-    "must_do":false,
-    "n_tags":20
-  },
-  "799":{
-    "name":"Jardin du Palais Royal",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8650062,
-      2.3378176
-    ],
-    "osm_type":"way",
-    "osm_id":4263203,
-    "attractiveness":9,
-    "must_do":false,
-    "n_tags":9
-  },
-  "800":{
+  "725":{
     "name":"Square Samuel Paty",
     "type":{
       "landmark_type":"nature"
@@ -12010,11 +11610,12 @@
     ],
     "osm_type":"way",
     "osm_id":4433291,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "801":{
+  "726":{
     "name":"Parc Rodin",
     "type":{
       "landmark_type":"nature"
@@ -12025,11 +11626,12 @@
     ],
     "osm_type":"way",
     "osm_id":4788836,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "802":{
+  "727":{
     "name":"Parc de l'île Saint-Germain",
     "type":{
       "landmark_type":"nature"
@@ -12040,11 +11642,12 @@
     ],
     "osm_type":"way",
     "osm_id":4791756,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "803":{
+  "728":{
     "name":"Parc Henri Barbusse",
     "type":{
       "landmark_type":"nature"
@@ -12055,11 +11658,12 @@
     ],
     "osm_type":"way",
     "osm_id":4810516,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "804":{
+  "729":{
     "name":"Parc Saint-Jean-Paul II",
     "type":{
       "landmark_type":"nature"
@@ -12070,11 +11674,12 @@
     ],
     "osm_type":"way",
     "osm_id":4810522,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "805":{
+  "730":{
     "name":"Square Maurice Gardette",
     "type":{
       "landmark_type":"nature"
@@ -12085,11 +11690,12 @@
     ],
     "osm_type":"way",
     "osm_id":5095262,
-    "attractiveness":15,
+    "attractiveness":22,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "806":{
+  "731":{
     "name":"Jardin Lionel Assouad",
     "type":{
       "landmark_type":"nature"
@@ -12100,11 +11706,12 @@
     ],
     "osm_type":"way",
     "osm_id":13611905,
-    "attractiveness":12,
+    "attractiveness":17,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "807":{
+  "732":{
     "name":"Jardin de l'Arsenal",
     "type":{
       "landmark_type":"nature"
@@ -12115,11 +11722,12 @@
     ],
     "osm_type":"way",
     "osm_id":13862204,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "808":{
+  "733":{
     "name":"Parc Suzanne Lenglen",
     "type":{
       "landmark_type":"nature"
@@ -12130,11 +11738,12 @@
     ],
     "osm_type":"way",
     "osm_id":14036411,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "809":{
+  "734":{
     "name":"Square Necker",
     "type":{
       "landmark_type":"nature"
@@ -12145,11 +11754,12 @@
     ],
     "osm_type":"way",
     "osm_id":14320763,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "810":{
+  "735":{
     "name":"Square de l'Oiseau Lunaire",
     "type":{
       "landmark_type":"nature"
@@ -12160,11 +11770,12 @@
     ],
     "osm_type":"way",
     "osm_id":14321381,
-    "attractiveness":13,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "811":{
+  "736":{
     "name":"Square Jean Chérioux",
     "type":{
       "landmark_type":"nature"
@@ -12175,11 +11786,12 @@
     ],
     "osm_type":"way",
     "osm_id":14334838,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "812":{
+  "737":{
     "name":"Square Yvette-Chauviré",
     "type":{
       "landmark_type":"nature"
@@ -12190,11 +11802,12 @@
     ],
     "osm_type":"way",
     "osm_id":14348928,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "813":{
+  "738":{
     "name":"Square Gerbert-Blomet",
     "type":{
       "landmark_type":"nature"
@@ -12205,11 +11818,12 @@
     ],
     "osm_type":"way",
     "osm_id":14349366,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "814":{
+  "739":{
     "name":"Jardin Bargue-Platon",
     "type":{
       "landmark_type":"nature"
@@ -12220,11 +11834,12 @@
     ],
     "osm_type":"way",
     "osm_id":14349803,
-    "attractiveness":4,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "815":{
+  "740":{
     "name":"Square Pierre-Adrien Dalpayrat",
     "type":{
       "landmark_type":"nature"
@@ -12235,11 +11850,12 @@
     ],
     "osm_type":"way",
     "osm_id":14349861,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "816":{
+  "741":{
     "name":"Square Castagnary",
     "type":{
       "landmark_type":"nature"
@@ -12250,11 +11866,12 @@
     ],
     "osm_type":"way",
     "osm_id":14351065,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "817":{
+  "742":{
     "name":"Square Violet",
     "type":{
       "landmark_type":"nature"
@@ -12265,11 +11882,12 @@
     ],
     "osm_type":"way",
     "osm_id":14378202,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "818":{
+  "743":{
     "name":"Jardin Caroline Aigle",
     "type":{
       "landmark_type":"nature"
@@ -12280,11 +11898,12 @@
     ],
     "osm_type":"way",
     "osm_id":14455132,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "819":{
+  "744":{
     "name":"Jardin des Cévennes",
     "type":{
       "landmark_type":"nature"
@@ -12295,11 +11914,12 @@
     ],
     "osm_type":"way",
     "osm_id":14457178,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "820":{
+  "745":{
     "name":"Square du Clos Feuquières",
     "type":{
       "landmark_type":"nature"
@@ -12310,11 +11930,12 @@
     ],
     "osm_type":"way",
     "osm_id":14507873,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "821":{
+  "746":{
     "name":"Jardin d'Alleray",
     "type":{
       "landmark_type":"nature"
@@ -12325,11 +11946,12 @@
     ],
     "osm_type":"way",
     "osm_id":14646518,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "822":{
+  "747":{
     "name":"Square du Docteur Calmette",
     "type":{
       "landmark_type":"nature"
@@ -12340,11 +11962,12 @@
     ],
     "osm_type":"way",
     "osm_id":15091888,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "823":{
+  "748":{
     "name":"Square de la Porte de la Plaine",
     "type":{
       "landmark_type":"nature"
@@ -12355,11 +11978,12 @@
     ],
     "osm_type":"way",
     "osm_id":15091910,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "824":{
+  "749":{
     "name":"Square du Cardinal Verdier",
     "type":{
       "landmark_type":"nature"
@@ -12370,11 +11994,12 @@
     ],
     "osm_type":"way",
     "osm_id":15091961,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "825":{
+  "750":{
     "name":"Square Béla-Bartók",
     "type":{
       "landmark_type":"nature"
@@ -12385,11 +12010,12 @@
     ],
     "osm_type":"way",
     "osm_id":15273713,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "826":{
+  "751":{
     "name":"Square Jules Ferry",
     "type":{
       "landmark_type":"nature"
@@ -12400,11 +12026,12 @@
     ],
     "osm_type":"way",
     "osm_id":15275096,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "827":{
+  "752":{
     "name":"Square Samuel de Champlain",
     "type":{
       "landmark_type":"nature"
@@ -12415,11 +12042,12 @@
     ],
     "osm_type":"way",
     "osm_id":15410302,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "828":{
+  "753":{
     "name":"Jardin May Picqueray",
     "type":{
       "landmark_type":"nature"
@@ -12430,11 +12058,12 @@
     ],
     "osm_type":"way",
     "osm_id":15459294,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "829":{
+  "754":{
     "name":"Jardinet de l'Oeil du Canal",
     "type":{
       "landmark_type":"nature"
@@ -12445,11 +12074,12 @@
     ],
     "osm_type":"way",
     "osm_id":15459327,
-    "attractiveness":2,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "830":{
+  "755":{
     "name":"Square Frédéric Bazille",
     "type":{
       "landmark_type":"nature"
@@ -12460,11 +12090,12 @@
     ],
     "osm_type":"way",
     "osm_id":15799349,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "831":{
+  "756":{
     "name":"Square Gaston Baty",
     "type":{
       "landmark_type":"nature"
@@ -12475,11 +12106,12 @@
     ],
     "osm_type":"way",
     "osm_id":15800289,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "832":{
+  "757":{
     "name":"Square Jacques Antoine",
     "type":{
       "landmark_type":"nature"
@@ -12490,11 +12122,12 @@
     ],
     "osm_type":"way",
     "osm_id":15800393,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "833":{
+  "758":{
     "name":"Square Franck Bauer",
     "type":{
       "landmark_type":"nature"
@@ -12505,11 +12138,12 @@
     ],
     "osm_type":"way",
     "osm_id":15807896,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "834":{
+  "759":{
     "name":"Square Nicole de Hauteclocque",
     "type":{
       "landmark_type":"nature"
@@ -12520,11 +12154,12 @@
     ],
     "osm_type":"way",
     "osm_id":15807969,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "835":{
+  "760":{
     "name":"Square Pablo Casals",
     "type":{
       "landmark_type":"nature"
@@ -12535,11 +12170,12 @@
     ],
     "osm_type":"way",
     "osm_id":15808271,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "836":{
+  "761":{
     "name":"Square de la Tour Saint-Jacques",
     "type":{
       "landmark_type":"nature"
@@ -12550,11 +12186,12 @@
     ],
     "osm_type":"way",
     "osm_id":15895172,
-    "attractiveness":13,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "837":{
+  "762":{
     "name":"Square des Missions Étrangères",
     "type":{
       "landmark_type":"nature"
@@ -12565,11 +12202,12 @@
     ],
     "osm_type":"way",
     "osm_id":16190318,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "838":{
+  "763":{
     "name":"Jardin Villemin - Mahsa Jîna Amini",
     "type":{
       "landmark_type":"nature"
@@ -12580,11 +12218,12 @@
     ],
     "osm_type":"way",
     "osm_id":16405088,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "839":{
+  "764":{
     "name":"Square Cambronne",
     "type":{
       "landmark_type":"nature"
@@ -12595,11 +12234,12 @@
     ],
     "osm_type":"way",
     "osm_id":16811641,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "840":{
+  "765":{
     "name":"Square Garibaldi",
     "type":{
       "landmark_type":"nature"
@@ -12610,11 +12250,12 @@
     ],
     "osm_type":"way",
     "osm_id":16811756,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "841":{
+  "766":{
     "name":"Square du Temple- Elie Wiesel",
     "type":{
       "landmark_type":"nature"
@@ -12625,26 +12266,12 @@
     ],
     "osm_type":"way",
     "osm_id":16877048,
-    "attractiveness":12,
+    "attractiveness":17,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "842":{
-    "name":"Jardin Atlantique",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8398756,
-      2.3189805
-    ],
-    "osm_type":"way",
-    "osm_id":16923782,
-    "attractiveness":13,
-    "must_do":false,
-    "n_tags":13
-  },
-  "843":{
+  "767":{
     "name":"Esplanade Gaston Monnerville",
     "type":{
       "landmark_type":"nature"
@@ -12655,11 +12282,12 @@
     ],
     "osm_type":"way",
     "osm_id":16924247,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "844":{
+  "768":{
     "name":"Square Étienne Jarousse",
     "type":{
       "landmark_type":"nature"
@@ -12670,11 +12298,12 @@
     ],
     "osm_type":"way",
     "osm_id":17040699,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "845":{
+  "769":{
     "name":"Parc Frédéric Pic",
     "type":{
       "landmark_type":"nature"
@@ -12685,11 +12314,12 @@
     ],
     "osm_type":"way",
     "osm_id":17244850,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "846":{
+  "770":{
     "name":"Square Marie Trintignant",
     "type":{
       "landmark_type":"nature"
@@ -12700,11 +12330,12 @@
     ],
     "osm_type":"way",
     "osm_id":17249266,
-    "attractiveness":15,
+    "attractiveness":21,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "847":{
+  "771":{
     "name":"Square de Cluny",
     "type":{
       "landmark_type":"nature"
@@ -12715,11 +12346,12 @@
     ],
     "osm_type":"way",
     "osm_id":19741465,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "848":{
+  "772":{
     "name":"Square André Lefèvre",
     "type":{
       "landmark_type":"nature"
@@ -12730,11 +12362,12 @@
     ],
     "osm_type":"way",
     "osm_id":20105409,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "849":{
+  "773":{
     "name":"Square Jean XXIII",
     "type":{
       "landmark_type":"nature"
@@ -12745,11 +12378,12 @@
     ],
     "osm_type":"way",
     "osm_id":20444455,
-    "attractiveness":15,
+    "attractiveness":22,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "850":{
+  "774":{
     "name":"Square de l'Île-de-France",
     "type":{
       "landmark_type":"nature"
@@ -12760,11 +12394,12 @@
     ],
     "osm_type":"way",
     "osm_id":20444469,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "851":{
+  "775":{
     "name":"Parc Kellermann",
     "type":{
       "landmark_type":"nature"
@@ -12775,11 +12410,12 @@
     ],
     "osm_type":"way",
     "osm_id":21001359,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "852":{
+  "776":{
     "name":"Square du Cardinal-Wyszyński",
     "type":{
       "landmark_type":"nature"
@@ -12790,11 +12426,12 @@
     ],
     "osm_type":"way",
     "osm_id":22051814,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "853":{
+  "777":{
     "name":"Square René Le Gall",
     "type":{
       "landmark_type":"nature"
@@ -12805,11 +12442,12 @@
     ],
     "osm_type":"way",
     "osm_id":22054912,
-    "attractiveness":23,
+    "attractiveness":32,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "854":{
+  "778":{
     "name":"Jardin des Grands-Explorateurs Marco Polo et Robert Cavelier-de-la-Salle",
     "type":{
       "landmark_type":"nature"
@@ -12820,11 +12458,12 @@
     ],
     "osm_type":"way",
     "osm_id":22732250,
-    "attractiveness":13,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "855":{
+  "779":{
     "name":"Square Robert Montagne",
     "type":{
       "landmark_type":"nature"
@@ -12835,11 +12474,12 @@
     ],
     "osm_type":"way",
     "osm_id":22946834,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "856":{
+  "780":{
     "name":"Square Gustave Mesureur",
     "type":{
       "landmark_type":"nature"
@@ -12850,11 +12490,12 @@
     ],
     "osm_type":"way",
     "osm_id":23017558,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "857":{
+  "781":{
     "name":"Square Saint-Éloi",
     "type":{
       "landmark_type":"nature"
@@ -12865,11 +12506,12 @@
     ],
     "osm_type":"way",
     "osm_id":23032336,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "858":{
+  "782":{
     "name":"Jardin des Trois Cornets",
     "type":{
       "landmark_type":"nature"
@@ -12880,11 +12522,12 @@
     ],
     "osm_type":"way",
     "osm_id":23056192,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "859":{
+  "783":{
     "name":"Square Danielle Mitterrand",
     "type":{
       "landmark_type":"nature"
@@ -12895,11 +12538,12 @@
     ],
     "osm_type":"way",
     "osm_id":23071565,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "860":{
+  "784":{
     "name":"Jardin de l'Abbé Lemire",
     "type":{
       "landmark_type":"nature"
@@ -12910,11 +12554,12 @@
     ],
     "osm_type":"way",
     "osm_id":23097586,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "861":{
+  "785":{
     "name":"Jardin du Moulin de la Vierge - Carole Roussopoulos",
     "type":{
       "landmark_type":"nature"
@@ -12925,11 +12570,12 @@
     ],
     "osm_type":"way",
     "osm_id":23114922,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "862":{
+  "786":{
     "name":"Jardin Chérifa",
     "type":{
       "landmark_type":"nature"
@@ -12940,11 +12586,12 @@
     ],
     "osm_type":"way",
     "osm_id":23114950,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "863":{
+  "787":{
     "name":"Jardin Maudy Piot-Jacomet",
     "type":{
       "landmark_type":"nature"
@@ -12955,11 +12602,12 @@
     ],
     "osm_type":"way",
     "osm_id":23114966,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "864":{
+  "788":{
     "name":"Place Louise-Losserand",
     "type":{
       "landmark_type":"nature"
@@ -12970,11 +12618,12 @@
     ],
     "osm_type":"way",
     "osm_id":23114968,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "865":{
+  "789":{
     "name":"Square Vercingetorix-Jonquilles",
     "type":{
       "landmark_type":"nature"
@@ -12985,11 +12634,12 @@
     ],
     "osm_type":"way",
     "osm_id":23114982,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "866":{
+  "790":{
     "name":"Jardin Paturle",
     "type":{
       "landmark_type":"nature"
@@ -13000,11 +12650,12 @@
     ],
     "osm_type":"way",
     "osm_id":23115026,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "867":{
+  "791":{
     "name":"Jardin du Père Plumier",
     "type":{
       "landmark_type":"nature"
@@ -13015,11 +12666,12 @@
     ],
     "osm_type":"way",
     "osm_id":23115921,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "868":{
+  "792":{
     "name":"Jardin Henri et Achille Duchène",
     "type":{
       "landmark_type":"nature"
@@ -13030,11 +12682,12 @@
     ],
     "osm_type":"way",
     "osm_id":23115927,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "869":{
+  "793":{
     "name":"Jardin Maurice Noguès",
     "type":{
       "landmark_type":"nature"
@@ -13045,11 +12698,12 @@
     ],
     "osm_type":"way",
     "osm_id":23123595,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "870":{
+  "794":{
     "name":"Square Julia Bartet",
     "type":{
       "landmark_type":"nature"
@@ -13060,11 +12714,12 @@
     ],
     "osm_type":"way",
     "osm_id":23123602,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "871":{
+  "795":{
     "name":"Mail de Bièvre",
     "type":{
       "landmark_type":"nature"
@@ -13075,11 +12730,12 @@
     ],
     "osm_type":"way",
     "osm_id":23163227,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "872":{
+  "796":{
     "name":"Jardin Marie-Thérèse Auffray",
     "type":{
       "landmark_type":"nature"
@@ -13090,11 +12746,12 @@
     ],
     "osm_type":"way",
     "osm_id":23203001,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "873":{
+  "797":{
     "name":"Jardin du Moulin de la Pointe - Paul Quilès",
     "type":{
       "landmark_type":"nature"
@@ -13105,11 +12762,12 @@
     ],
     "osm_type":"way",
     "osm_id":23245272,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "874":{
+  "798":{
     "name":"Jardin Juan Miro",
     "type":{
       "landmark_type":"nature"
@@ -13120,11 +12778,12 @@
     ],
     "osm_type":"way",
     "osm_id":23245275,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "875":{
+  "799":{
     "name":"Square d'Estienne d'Orves",
     "type":{
       "landmark_type":"nature"
@@ -13135,26 +12794,12 @@
     ],
     "osm_type":"way",
     "osm_id":23272397,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "876":{
-    "name":"Jardin Tino Rossi - Musée de la Sculpture en Plein Air",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8474186,
-      2.3607371
-    ],
-    "osm_type":"way",
-    "osm_id":23644147,
-    "attractiveness":9,
-    "must_do":false,
-    "n_tags":8
-  },
-  "877":{
+  "800":{
     "name":"Jardin des Mères et Grands-Mères de la Place de Mai",
     "type":{
       "landmark_type":"nature"
@@ -13165,11 +12810,12 @@
     ],
     "osm_type":"way",
     "osm_id":23692345,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "878":{
+  "801":{
     "name":"Square Roger-Stéphane",
     "type":{
       "landmark_type":"nature"
@@ -13180,11 +12826,12 @@
     ],
     "osm_type":"way",
     "osm_id":23736351,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "879":{
+  "802":{
     "name":"Jardin du Monument aux Mères Françaises",
     "type":{
       "landmark_type":"nature"
@@ -13195,11 +12842,12 @@
     ],
     "osm_type":"way",
     "osm_id":23782577,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "880":{
+  "803":{
     "name":"Square Hélène Boucher",
     "type":{
       "landmark_type":"nature"
@@ -13210,11 +12858,12 @@
     ],
     "osm_type":"way",
     "osm_id":23782701,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "881":{
+  "804":{
     "name":"Square Robert Bajac",
     "type":{
       "landmark_type":"nature"
@@ -13225,11 +12874,12 @@
     ],
     "osm_type":"way",
     "osm_id":23782719,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "882":{
+  "805":{
     "name":"Square Émile Chautemps",
     "type":{
       "landmark_type":"nature"
@@ -13240,11 +12890,12 @@
     ],
     "osm_type":"way",
     "osm_id":23981951,
-    "attractiveness":15,
+    "attractiveness":22,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "883":{
+  "806":{
     "name":"Square Rosalind-Franklin",
     "type":{
       "landmark_type":"nature"
@@ -13255,11 +12906,12 @@
     ],
     "osm_type":"way",
     "osm_id":24000240,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "884":{
+  "807":{
     "name":"Square Héloïse et Abélard",
     "type":{
       "landmark_type":"nature"
@@ -13270,11 +12922,12 @@
     ],
     "osm_type":"way",
     "osm_id":24241484,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "885":{
+  "808":{
     "name":"Square de l'Hopital Vaugirard",
     "type":{
       "landmark_type":"nature"
@@ -13285,11 +12938,12 @@
     ],
     "osm_type":"way",
     "osm_id":24277437,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "886":{
+  "809":{
     "name":"Jardin d'Alleray-Procession",
     "type":{
       "landmark_type":"nature"
@@ -13300,11 +12954,12 @@
     ],
     "osm_type":"way",
     "osm_id":24303504,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "887":{
+  "810":{
     "name":"Square d'Alleray Labrouste-Saint-Amand",
     "type":{
       "landmark_type":"nature"
@@ -13315,11 +12970,12 @@
     ],
     "osm_type":"way",
     "osm_id":24303537,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "888":{
+  "811":{
     "name":"Jardin Berthe-Morisot",
     "type":{
       "landmark_type":"nature"
@@ -13330,11 +12986,12 @@
     ],
     "osm_type":"way",
     "osm_id":24325918,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "889":{
+  "812":{
     "name":"Square Thomas Jefferson",
     "type":{
       "landmark_type":"nature"
@@ -13345,11 +13002,12 @@
     ],
     "osm_type":"way",
     "osm_id":24928306,
-    "attractiveness":4,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "890":{
+  "813":{
     "name":"Square Paul Gilot",
     "type":{
       "landmark_type":"nature"
@@ -13360,11 +13018,12 @@
     ],
     "osm_type":"way",
     "osm_id":25370787,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "891":{
+  "814":{
     "name":"Nouvelle Place Dépinoy",
     "type":{
       "landmark_type":"nature"
@@ -13375,11 +13034,12 @@
     ],
     "osm_type":"way",
     "osm_id":25415932,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "892":{
+  "815":{
     "name":"Jardin de la Place Souham",
     "type":{
       "landmark_type":"nature"
@@ -13390,11 +13050,12 @@
     ],
     "osm_type":"way",
     "osm_id":25422948,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "893":{
+  "816":{
     "name":"Square Léo Ferré",
     "type":{
       "landmark_type":"nature"
@@ -13405,11 +13066,12 @@
     ],
     "osm_type":"way",
     "osm_id":25423021,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "894":{
+  "817":{
     "name":"Jardin du Centenaire de Malakoff",
     "type":{
       "landmark_type":"nature"
@@ -13420,11 +13082,12 @@
     ],
     "osm_type":"way",
     "osm_id":25458658,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "895":{
+  "818":{
     "name":"Square du Sentier du Tir",
     "type":{
       "landmark_type":"nature"
@@ -13435,11 +13098,12 @@
     ],
     "osm_type":"way",
     "osm_id":25490900,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "896":{
+  "819":{
     "name":"Square Carlo Sarabezolles",
     "type":{
       "landmark_type":"nature"
@@ -13450,11 +13114,12 @@
     ],
     "osm_type":"way",
     "osm_id":25848058,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "897":{
+  "820":{
     "name":"Square Claude Nicolas Ledoux",
     "type":{
       "landmark_type":"nature"
@@ -13465,11 +13130,12 @@
     ],
     "osm_type":"way",
     "osm_id":25861852,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "898":{
+  "821":{
     "name":"Square Federico-García-Lorca",
     "type":{
       "landmark_type":"nature"
@@ -13480,11 +13146,12 @@
     ],
     "osm_type":"way",
     "osm_id":25992413,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "899":{
+  "822":{
     "name":"Square Jean Cocteau",
     "type":{
       "landmark_type":"nature"
@@ -13495,11 +13162,12 @@
     ],
     "osm_type":"way",
     "osm_id":26203118,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "900":{
+  "823":{
     "name":"Parc Léon Salagnac",
     "type":{
       "landmark_type":"nature"
@@ -13510,11 +13178,12 @@
     ],
     "osm_type":"way",
     "osm_id":26224563,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "901":{
+  "824":{
     "name":"Square Louvois",
     "type":{
       "landmark_type":"nature"
@@ -13525,11 +13194,12 @@
     ],
     "osm_type":"way",
     "osm_id":26277958,
-    "attractiveness":4,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "902":{
+  "825":{
     "name":"Jardin Toussaint Louverture",
     "type":{
       "landmark_type":"nature"
@@ -13540,11 +13210,12 @@
     ],
     "osm_type":"way",
     "osm_id":26580004,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "903":{
+  "826":{
     "name":"Square Laurent Prache",
     "type":{
       "landmark_type":"nature"
@@ -13555,11 +13226,12 @@
     ],
     "osm_type":"way",
     "osm_id":26583593,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "904":{
+  "827":{
     "name":"Square Jacques Grynberg",
     "type":{
       "landmark_type":"nature"
@@ -13570,11 +13242,12 @@
     ],
     "osm_type":"way",
     "osm_id":26799003,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "905":{
+  "828":{
     "name":"Square Eugène Varlin",
     "type":{
       "landmark_type":"nature"
@@ -13585,11 +13258,12 @@
     ],
     "osm_type":"way",
     "osm_id":26954399,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "906":{
+  "829":{
     "name":"Square Henri Christiné",
     "type":{
       "landmark_type":"nature"
@@ -13600,11 +13274,12 @@
     ],
     "osm_type":"way",
     "osm_id":26954406,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "907":{
+  "830":{
     "name":"Parc Henri Matisse",
     "type":{
       "landmark_type":"nature"
@@ -13615,11 +13290,12 @@
     ],
     "osm_type":"way",
     "osm_id":27521401,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "908":{
+  "831":{
     "name":"Parc des Sarments",
     "type":{
       "landmark_type":"nature"
@@ -13630,11 +13306,12 @@
     ],
     "osm_type":"way",
     "osm_id":27521523,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "909":{
+  "832":{
     "name":"Square Théophile Gautier",
     "type":{
       "landmark_type":"nature"
@@ -13645,11 +13322,12 @@
     ],
     "osm_type":"way",
     "osm_id":27611972,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "910":{
+  "833":{
     "name":"Jardin James Joyce",
     "type":{
       "landmark_type":"nature"
@@ -13660,11 +13338,12 @@
     ],
     "osm_type":"way",
     "osm_id":29023035,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "911":{
+  "834":{
     "name":"Jardin Cyprian-Norwid",
     "type":{
       "landmark_type":"nature"
@@ -13675,11 +13354,12 @@
     ],
     "osm_type":"way",
     "osm_id":29064338,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "912":{
+  "835":{
     "name":"Jardin Brassaï",
     "type":{
       "landmark_type":"nature"
@@ -13690,11 +13370,12 @@
     ],
     "osm_type":"way",
     "osm_id":29275665,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "913":{
+  "836":{
     "name":"Jardin Gabriële Buffet",
     "type":{
       "landmark_type":"nature"
@@ -13705,11 +13386,12 @@
     ],
     "osm_type":"way",
     "osm_id":29386804,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "914":{
+  "837":{
     "name":"Square Aristide Cavaillé-Coll",
     "type":{
       "landmark_type":"nature"
@@ -13720,11 +13402,12 @@
     ],
     "osm_type":"way",
     "osm_id":29700227,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "915":{
+  "838":{
     "name":"La Jardinère",
     "type":{
       "landmark_type":"nature"
@@ -13735,11 +13418,12 @@
     ],
     "osm_type":"way",
     "osm_id":29733337,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "916":{
+  "839":{
     "name":"Parc Pablo Neruda",
     "type":{
       "landmark_type":"nature"
@@ -13750,11 +13434,12 @@
     ],
     "osm_type":"way",
     "osm_id":29850506,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "917":{
+  "840":{
     "name":"Jardin des rues Maronites-Pressoir",
     "type":{
       "landmark_type":"nature"
@@ -13765,11 +13450,12 @@
     ],
     "osm_type":"way",
     "osm_id":29857475,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "918":{
+  "841":{
     "name":"Square de la place Etienne Pernet",
     "type":{
       "landmark_type":"nature"
@@ -13780,11 +13466,12 @@
     ],
     "osm_type":"way",
     "osm_id":30781734,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "919":{
+  "842":{
     "name":"Jardin Françoise Héritier",
     "type":{
       "landmark_type":"nature"
@@ -13795,11 +13482,12 @@
     ],
     "osm_type":"way",
     "osm_id":30904451,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "920":{
+  "843":{
     "name":"Square Georges Lamarque",
     "type":{
       "landmark_type":"nature"
@@ -13810,11 +13498,12 @@
     ],
     "osm_type":"way",
     "osm_id":30992402,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "921":{
+  "844":{
     "name":"Parc du 8 mai 1945",
     "type":{
       "landmark_type":"nature"
@@ -13825,11 +13514,12 @@
     ],
     "osm_type":"way",
     "osm_id":32622250,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "922":{
+  "845":{
     "name":"Square Barye",
     "type":{
       "landmark_type":"nature"
@@ -13840,11 +13530,12 @@
     ],
     "osm_type":"way",
     "osm_id":33189664,
-    "attractiveness":9,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "923":{
+  "846":{
     "name":"Square Normandie-Niémen",
     "type":{
       "landmark_type":"nature"
@@ -13855,11 +13546,12 @@
     ],
     "osm_type":"way",
     "osm_id":33636518,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "924":{
+  "847":{
     "name":"Parc de Choisy",
     "type":{
       "landmark_type":"nature"
@@ -13870,11 +13562,12 @@
     ],
     "osm_type":"way",
     "osm_id":34056444,
-    "attractiveness":13,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "925":{
+  "848":{
     "name":"Square Pierre de Gaulle",
     "type":{
       "landmark_type":"nature"
@@ -13885,11 +13578,12 @@
     ],
     "osm_type":"way",
     "osm_id":34107132,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "926":{
+  "849":{
     "name":"Parc André Malraux",
     "type":{
       "landmark_type":"nature"
@@ -13900,11 +13594,12 @@
     ],
     "osm_type":"way",
     "osm_id":35003702,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "927":{
+  "850":{
     "name":"Jardin Yacine-Kateb",
     "type":{
       "landmark_type":"nature"
@@ -13915,11 +13610,12 @@
     ],
     "osm_type":"way",
     "osm_id":35329502,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "928":{
+  "851":{
     "name":"Jardin de la Raffinerie Say",
     "type":{
       "landmark_type":"nature"
@@ -13930,11 +13626,12 @@
     ],
     "osm_type":"way",
     "osm_id":35341750,
-    "attractiveness":13,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "929":{
+  "852":{
     "name":"Parc Renaudel",
     "type":{
       "landmark_type":"nature"
@@ -13945,11 +13642,12 @@
     ],
     "osm_type":"way",
     "osm_id":36071906,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "930":{
+  "853":{
     "name":"Parc de la Maison Blanche",
     "type":{
       "landmark_type":"nature"
@@ -13960,11 +13658,12 @@
     ],
     "osm_type":"way",
     "osm_id":37655575,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "931":{
+  "854":{
     "name":"Square du capitaine Alfred Dreyfus",
     "type":{
       "landmark_type":"nature"
@@ -13975,11 +13674,12 @@
     ],
     "osm_type":"way",
     "osm_id":38821120,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "932":{
+  "855":{
     "name":"Jardin panoramique du Coteau",
     "type":{
       "landmark_type":"nature"
@@ -13990,11 +13690,12 @@
     ],
     "osm_type":"way",
     "osm_id":39213847,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "933":{
+  "856":{
     "name":"Parc Paul Vaillant-Couturier",
     "type":{
       "landmark_type":"nature"
@@ -14005,11 +13706,12 @@
     ],
     "osm_type":"way",
     "osm_id":39523874,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "934":{
+  "857":{
     "name":"Jardin de la Place du Docteur Navarre",
     "type":{
       "landmark_type":"nature"
@@ -14020,11 +13722,12 @@
     ],
     "osm_type":"way",
     "osm_id":40000050,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "935":{
+  "858":{
     "name":"Square Eugène Thomas",
     "type":{
       "landmark_type":"nature"
@@ -14035,11 +13738,12 @@
     ],
     "osm_type":"way",
     "osm_id":40496627,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "936":{
+  "859":{
     "name":"Jardin Pablo Picasso",
     "type":{
       "landmark_type":"nature"
@@ -14050,11 +13754,12 @@
     ],
     "osm_type":"way",
     "osm_id":41856667,
-    "attractiveness":3,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "937":{
+  "860":{
     "name":"Square de Verdun",
     "type":{
       "landmark_type":"nature"
@@ -14065,11 +13770,12 @@
     ],
     "osm_type":"way",
     "osm_id":42207923,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "938":{
+  "861":{
     "name":"Place des Vins de France",
     "type":{
       "landmark_type":"nature"
@@ -14080,11 +13786,12 @@
     ],
     "osm_type":"way",
     "osm_id":42448013,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "939":{
+  "862":{
     "name":"Parc Georges Brassens",
     "type":{
       "landmark_type":"nature"
@@ -14095,11 +13802,12 @@
     ],
     "osm_type":"way",
     "osm_id":43324060,
-    "attractiveness":13,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "940":{
+  "863":{
     "name":"Jardin Audigeois",
     "type":{
       "landmark_type":"nature"
@@ -14110,11 +13818,12 @@
     ],
     "osm_type":"way",
     "osm_id":44204005,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "941":{
+  "864":{
     "name":"Square Ozanam",
     "type":{
       "landmark_type":"nature"
@@ -14125,11 +13834,12 @@
     ],
     "osm_type":"way",
     "osm_id":50385010,
-    "attractiveness":12,
+    "attractiveness":17,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "942":{
+  "865":{
     "name":"Square Saint-Laurent",
     "type":{
       "landmark_type":"nature"
@@ -14140,11 +13850,12 @@
     ],
     "osm_type":"way",
     "osm_id":52525931,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "943":{
+  "866":{
     "name":"Place Dauphine",
     "type":{
       "landmark_type":"nature"
@@ -14155,11 +13866,12 @@
     ],
     "osm_type":"way",
     "osm_id":53567907,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "944":{
+  "867":{
     "name":"Square du Vert Galant",
     "type":{
       "landmark_type":"nature"
@@ -14170,11 +13882,12 @@
     ],
     "osm_type":"way",
     "osm_id":53570787,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "945":{
+  "868":{
     "name":"Promenade Pereire",
     "type":{
       "landmark_type":"nature"
@@ -14185,11 +13898,12 @@
     ],
     "osm_type":"way",
     "osm_id":53746544,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "946":{
+  "869":{
     "name":"Jardin des Tuileries",
     "type":{
       "landmark_type":"nature"
@@ -14200,11 +13914,12 @@
     ],
     "osm_type":"way",
     "osm_id":53820452,
-    "attractiveness":23,
+    "attractiveness":32,
     "must_do":false,
-    "n_tags":23
+    "n_tags":23,
+    "time_to_reach":0
   },
-  "947":{
+  "870":{
     "name":"Jardinet place du lieutenant Henri-Karcher",
     "type":{
       "landmark_type":"nature"
@@ -14215,11 +13930,12 @@
     ],
     "osm_type":"way",
     "osm_id":53826866,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "948":{
+  "871":{
     "name":"Square Jacques Bidault",
     "type":{
       "landmark_type":"nature"
@@ -14230,11 +13946,12 @@
     ],
     "osm_type":"way",
     "osm_id":55263339,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "949":{
+  "872":{
     "name":"Square Charles Victor Langlois",
     "type":{
       "landmark_type":"nature"
@@ -14245,11 +13962,12 @@
     ],
     "osm_type":"way",
     "osm_id":55848929,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "950":{
+  "873":{
     "name":"Square Georges-Cain",
     "type":{
       "landmark_type":"nature"
@@ -14260,11 +13978,12 @@
     ],
     "osm_type":"way",
     "osm_id":57832958,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "951":{
+  "874":{
     "name":"Square François Mitterrand",
     "type":{
       "landmark_type":"nature"
@@ -14275,11 +13994,12 @@
     ],
     "osm_type":"way",
     "osm_id":61100649,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "952":{
+  "875":{
     "name":"Parc Philippe Pinel",
     "type":{
       "landmark_type":"nature"
@@ -14290,11 +14010,12 @@
     ],
     "osm_type":"way",
     "osm_id":61102770,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "953":{
+  "876":{
     "name":"Square Alban Satragne",
     "type":{
       "landmark_type":"nature"
@@ -14305,11 +14026,12 @@
     ],
     "osm_type":"way",
     "osm_id":61406614,
-    "attractiveness":9,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "954":{
+  "877":{
     "name":"Jardin Baudricourt",
     "type":{
       "landmark_type":"nature"
@@ -14320,11 +14042,12 @@
     ],
     "osm_type":"way",
     "osm_id":62092170,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "955":{
+  "878":{
     "name":"Square Gabriel Pierné",
     "type":{
       "landmark_type":"nature"
@@ -14335,11 +14058,12 @@
     ],
     "osm_type":"way",
     "osm_id":62238366,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "956":{
+  "879":{
     "name":"Square Félix Desruelles",
     "type":{
       "landmark_type":"nature"
@@ -14350,11 +14074,12 @@
     ],
     "osm_type":"way",
     "osm_id":62287123,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "957":{
+  "880":{
     "name":"Square Honoré Champion",
     "type":{
       "landmark_type":"nature"
@@ -14365,11 +14090,12 @@
     ],
     "osm_type":"way",
     "osm_id":62297777,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "958":{
+  "881":{
     "name":"Square Francis Poulenc",
     "type":{
       "landmark_type":"nature"
@@ -14380,11 +14106,12 @@
     ],
     "osm_type":"way",
     "osm_id":62522583,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "959":{
+  "882":{
     "name":"Jardin de l'Hôpital Saint-Louis",
     "type":{
       "landmark_type":"nature"
@@ -14395,11 +14122,12 @@
     ],
     "osm_type":"way",
     "osm_id":63198315,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "960":{
+  "883":{
     "name":"Square Erik Satie",
     "type":{
       "landmark_type":"nature"
@@ -14410,11 +14138,12 @@
     ],
     "osm_type":"way",
     "osm_id":63841851,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "961":{
+  "884":{
     "name":"Square Jean Morin",
     "type":{
       "landmark_type":"nature"
@@ -14425,11 +14154,12 @@
     ],
     "osm_type":"way",
     "osm_id":65237132,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "962":{
+  "885":{
     "name":"Square Taras Chevtchenko",
     "type":{
       "landmark_type":"nature"
@@ -14440,11 +14170,12 @@
     ],
     "osm_type":"way",
     "osm_id":66608003,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "963":{
+  "886":{
     "name":"Square Marcel Pagnol",
     "type":{
       "landmark_type":"nature"
@@ -14455,11 +14186,12 @@
     ],
     "osm_type":"way",
     "osm_id":67725863,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "964":{
+  "887":{
     "name":"Place du Guatémala",
     "type":{
       "landmark_type":"nature"
@@ -14470,11 +14202,12 @@
     ],
     "osm_type":"way",
     "osm_id":68507724,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "965":{
+  "888":{
     "name":"Jardin de l’Hôtel Salomon de Rothschild",
     "type":{
       "landmark_type":"nature"
@@ -14485,11 +14218,12 @@
     ],
     "osm_type":"way",
     "osm_id":68995097,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "966":{
+  "889":{
     "name":"Parc départemental Maurice Thorez",
     "type":{
       "landmark_type":"nature"
@@ -14500,11 +14234,12 @@
     ],
     "osm_type":"way",
     "osm_id":69218979,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "967":{
+  "890":{
     "name":"Jardin de la Dalle d'Ivry",
     "type":{
       "landmark_type":"nature"
@@ -14515,26 +14250,12 @@
     ],
     "osm_type":"way",
     "osm_id":71213551,
-    "attractiveness":3,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "968":{
-    "name":"Jardin de la Dalle d'Ivry",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8220431,
-      2.3642664
-    ],
-    "osm_type":"way",
-    "osm_id":71213554,
-    "attractiveness":4,
-    "must_do":false,
-    "n_tags":4
-  },
-  "969":{
+  "891":{
     "name":"Promenade des petits bois",
     "type":{
       "landmark_type":"nature"
@@ -14545,11 +14266,12 @@
     ],
     "osm_type":"way",
     "osm_id":71900172,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "970":{
+  "892":{
     "name":"Jardin Choisy Caillaux",
     "type":{
       "landmark_type":"nature"
@@ -14560,11 +14282,12 @@
     ],
     "osm_type":"way",
     "osm_id":73545020,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "971":{
+  "893":{
     "name":"Square des Recollets",
     "type":{
       "landmark_type":"nature"
@@ -14575,11 +14298,12 @@
     ],
     "osm_type":"way",
     "osm_id":76910069,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "972":{
+  "894":{
     "name":"Square Frédérick Lemaître",
     "type":{
       "landmark_type":"nature"
@@ -14590,26 +14314,12 @@
     ],
     "osm_type":"way",
     "osm_id":76910095,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "973":{
-    "name":"Square des Recollets",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8736579,
-      2.3633289
-    ],
-    "osm_type":"way",
-    "osm_id":76910102,
-    "attractiveness":6,
-    "must_do":false,
-    "n_tags":6
-  },
-  "974":{
+  "895":{
     "name":"Jardin des Grands Moulins - Abbé Pierre",
     "type":{
       "landmark_type":"nature"
@@ -14620,11 +14330,12 @@
     ],
     "osm_type":"way",
     "osm_id":77607229,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "975":{
+  "896":{
     "name":"Jardin des Écoles",
     "type":{
       "landmark_type":"nature"
@@ -14635,11 +14346,12 @@
     ],
     "osm_type":"way",
     "osm_id":77646233,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "976":{
+  "897":{
     "name":"Square Samuel Rousseau",
     "type":{
       "landmark_type":"nature"
@@ -14650,11 +14362,12 @@
     ],
     "osm_type":"way",
     "osm_id":77708549,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "977":{
+  "898":{
     "name":"Parc Juliette Dodu",
     "type":{
       "landmark_type":"nature"
@@ -14665,11 +14378,12 @@
     ],
     "osm_type":"way",
     "osm_id":77727267,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "978":{
+  "899":{
     "name":"Jardin Hector Malot",
     "type":{
       "landmark_type":"nature"
@@ -14680,11 +14394,12 @@
     ],
     "osm_type":"way",
     "osm_id":78146247,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "979":{
+  "900":{
     "name":"Coulée verte René-Dumont",
     "type":{
       "landmark_type":"nature"
@@ -14695,26 +14410,12 @@
     ],
     "osm_type":"way",
     "osm_id":78148984,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "980":{
-    "name":"Square Thomas Jefferson",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8683188,
-      2.2930354
-    ],
-    "osm_type":"way",
-    "osm_id":79638934,
-    "attractiveness":5,
-    "must_do":false,
-    "n_tags":4
-  },
-  "981":{
+  "901":{
     "name":"Place du Maréchal de Lattre de Tassigny",
     "type":{
       "landmark_type":"nature"
@@ -14725,11 +14426,12 @@
     ],
     "osm_type":"way",
     "osm_id":81041449,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "982":{
+  "902":{
     "name":"Square Robert Schuman",
     "type":{
       "landmark_type":"nature"
@@ -14740,11 +14442,12 @@
     ],
     "osm_type":"way",
     "osm_id":81130668,
-    "attractiveness":5,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "983":{
+  "903":{
     "name":"Jardin du Général Anselin",
     "type":{
       "landmark_type":"nature"
@@ -14755,11 +14458,12 @@
     ],
     "osm_type":"way",
     "osm_id":81132628,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "984":{
+  "904":{
     "name":"Jardin Maurice Barlier",
     "type":{
       "landmark_type":"nature"
@@ -14770,11 +14474,12 @@
     ],
     "osm_type":"way",
     "osm_id":81208044,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "985":{
+  "905":{
     "name":"Square Lamartine",
     "type":{
       "landmark_type":"nature"
@@ -14785,11 +14490,12 @@
     ],
     "osm_type":"way",
     "osm_id":81305633,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "986":{
+  "906":{
     "name":"Square Alexandre 1er de Yougoslavie",
     "type":{
       "landmark_type":"nature"
@@ -14800,11 +14506,12 @@
     ],
     "osm_type":"way",
     "osm_id":82325107,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "987":{
+  "907":{
     "name":"Square de Yorktown",
     "type":{
       "landmark_type":"nature"
@@ -14815,11 +14522,12 @@
     ],
     "osm_type":"way",
     "osm_id":82683449,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "988":{
+  "908":{
     "name":"Square des Combattants d'Afrique du Nord",
     "type":{
       "landmark_type":"nature"
@@ -14830,11 +14538,12 @@
     ],
     "osm_type":"way",
     "osm_id":83290878,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "989":{
+  "909":{
     "name":"Square des Écrivains Combattants Morts pour la France",
     "type":{
       "landmark_type":"nature"
@@ -14845,11 +14554,12 @@
     ],
     "osm_type":"way",
     "osm_id":83664978,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "990":{
+  "910":{
     "name":"Parc de Passy",
     "type":{
       "landmark_type":"nature"
@@ -14860,11 +14570,12 @@
     ],
     "osm_type":"way",
     "osm_id":83862956,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "991":{
+  "911":{
     "name":"Square Henri Collet",
     "type":{
       "landmark_type":"nature"
@@ -14875,11 +14586,12 @@
     ],
     "osm_type":"way",
     "osm_id":83934819,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "992":{
+  "912":{
     "name":"Square Tolstoï",
     "type":{
       "landmark_type":"nature"
@@ -14890,11 +14602,12 @@
     ],
     "osm_type":"way",
     "osm_id":85891809,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "993":{
+  "913":{
     "name":"Square Henry Bataille",
     "type":{
       "landmark_type":"nature"
@@ -14905,11 +14618,12 @@
     ],
     "osm_type":"way",
     "osm_id":85891822,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "994":{
+  "914":{
     "name":"Square Alfred Capus",
     "type":{
       "landmark_type":"nature"
@@ -14920,11 +14634,12 @@
     ],
     "osm_type":"way",
     "osm_id":85893149,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "995":{
+  "915":{
     "name":"Square Malherbe",
     "type":{
       "landmark_type":"nature"
@@ -14935,11 +14650,12 @@
     ],
     "osm_type":"way",
     "osm_id":85900099,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "996":{
+  "916":{
     "name":"Square Racan",
     "type":{
       "landmark_type":"nature"
@@ -14950,11 +14666,12 @@
     ],
     "osm_type":"way",
     "osm_id":85900108,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "997":{
+  "917":{
     "name":"Jardin des Poètes",
     "type":{
       "landmark_type":"nature"
@@ -14965,26 +14682,12 @@
     ],
     "osm_type":"way",
     "osm_id":86260472,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "998":{
-    "name":"Jardin des serres d’Auteuil",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.846698,
-      2.2526288
-    ],
-    "osm_type":"way",
-    "osm_id":86260473,
-    "attractiveness":21,
-    "must_do":false,
-    "n_tags":21
-  },
-  "999":{
+  "918":{
     "name":"Square du 19 Mars 1962",
     "type":{
       "landmark_type":"nature"
@@ -14995,11 +14698,12 @@
     ],
     "osm_type":"way",
     "osm_id":86355947,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1000":{
+  "919":{
     "name":"Jardin public de l'Observatoire de Paris",
     "type":{
       "landmark_type":"nature"
@@ -15010,11 +14714,12 @@
     ],
     "osm_type":"way",
     "osm_id":87334036,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1001":{
+  "920":{
     "name":"Square de la Bresse",
     "type":{
       "landmark_type":"nature"
@@ -15025,11 +14730,12 @@
     ],
     "osm_type":"way",
     "osm_id":88298212,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1002":{
+  "921":{
     "name":"Jardin de l'Église Saint-Éloi",
     "type":{
       "landmark_type":"nature"
@@ -15040,11 +14746,12 @@
     ],
     "osm_type":"way",
     "osm_id":93903779,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1003":{
+  "922":{
     "name":"Place des Onze Arpents",
     "type":{
       "landmark_type":"nature"
@@ -15055,11 +14762,12 @@
     ],
     "osm_type":"way",
     "osm_id":94452182,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1004":{
+  "923":{
     "name":"Cour Pasteur",
     "type":{
       "landmark_type":"nature"
@@ -15070,11 +14778,12 @@
     ],
     "osm_type":"way",
     "osm_id":95092958,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1005":{
+  "924":{
     "name":"Cour aux Ernest",
     "type":{
       "landmark_type":"nature"
@@ -15085,11 +14794,12 @@
     ],
     "osm_type":"way",
     "osm_id":95195271,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1006":{
+  "925":{
     "name":"Square Auguste Mariette-Pacha",
     "type":{
       "landmark_type":"nature"
@@ -15100,11 +14810,12 @@
     ],
     "osm_type":"way",
     "osm_id":97602191,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1007":{
+  "926":{
     "name":"Square Michel Foucault",
     "type":{
       "landmark_type":"nature"
@@ -15115,11 +14826,12 @@
     ],
     "osm_type":"way",
     "osm_id":97602192,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1008":{
+  "927":{
     "name":"Square Yves Coppens",
     "type":{
       "landmark_type":"nature"
@@ -15130,11 +14842,12 @@
     ],
     "osm_type":"way",
     "osm_id":97602197,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1009":{
+  "928":{
     "name":"Square du Tchad",
     "type":{
       "landmark_type":"nature"
@@ -15145,11 +14858,12 @@
     ],
     "osm_type":"way",
     "osm_id":99701607,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1010":{
+  "929":{
     "name":"Square Théodore Monod",
     "type":{
       "landmark_type":"nature"
@@ -15160,11 +14874,12 @@
     ],
     "osm_type":"way",
     "osm_id":100183214,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1011":{
+  "930":{
     "name":"Place Salvador Allende",
     "type":{
       "landmark_type":"nature"
@@ -15175,11 +14890,12 @@
     ],
     "osm_type":"way",
     "osm_id":103196817,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1012":{
+  "931":{
     "name":"Square Santiago du Chili",
     "type":{
       "landmark_type":"nature"
@@ -15190,11 +14906,12 @@
     ],
     "osm_type":"way",
     "osm_id":103214099,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1013":{
+  "932":{
     "name":"Square de l'Abbé Esquerré",
     "type":{
       "landmark_type":"nature"
@@ -15205,11 +14922,12 @@
     ],
     "osm_type":"way",
     "osm_id":103344111,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1014":{
+  "933":{
     "name":"Parc Jean Moulin",
     "type":{
       "landmark_type":"nature"
@@ -15220,11 +14938,12 @@
     ],
     "osm_type":"way",
     "osm_id":105728837,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1015":{
+  "934":{
     "name":"Square Alex Biscarre",
     "type":{
       "landmark_type":"nature"
@@ -15235,11 +14954,12 @@
     ],
     "osm_type":"way",
     "osm_id":107257915,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1016":{
+  "935":{
     "name":"Jardin Amadou Hampâté Bâ",
     "type":{
       "landmark_type":"nature"
@@ -15250,11 +14970,12 @@
     ],
     "osm_type":"way",
     "osm_id":112705281,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1017":{
+  "936":{
     "name":"Square Jules Verne",
     "type":{
       "landmark_type":"nature"
@@ -15265,11 +14986,12 @@
     ],
     "osm_type":"way",
     "osm_id":113735650,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1018":{
+  "937":{
     "name":"Square Marcel Rajman",
     "type":{
       "landmark_type":"nature"
@@ -15280,11 +15002,12 @@
     ],
     "osm_type":"way",
     "osm_id":114992323,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1019":{
+  "938":{
     "name":"Square de la Roquette",
     "type":{
       "landmark_type":"nature"
@@ -15295,11 +15018,12 @@
     ],
     "osm_type":"way",
     "osm_id":114992325,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "1020":{
+  "939":{
     "name":"Jardin de l'Intendant",
     "type":{
       "landmark_type":"nature"
@@ -15310,26 +15034,12 @@
     ],
     "osm_type":"way",
     "osm_id":115022783,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1021":{
-    "name":"Jardinet de l'Oeil du Canal",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8622353,
-      2.3721827
-    ],
-    "osm_type":"way",
-    "osm_id":115024601,
-    "attractiveness":3,
-    "must_do":false,
-    "n_tags":3
-  },
-  "1022":{
+  "940":{
     "name":"Jardin du Cloître",
     "type":{
       "landmark_type":"nature"
@@ -15340,11 +15050,12 @@
     ],
     "osm_type":"way",
     "osm_id":115643938,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1023":{
+  "941":{
     "name":"Square Francis Lemarque",
     "type":{
       "landmark_type":"nature"
@@ -15355,11 +15066,12 @@
     ],
     "osm_type":"way",
     "osm_id":115671979,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1024":{
+  "942":{
     "name":"Jardin Louis Majorelle",
     "type":{
       "landmark_type":"nature"
@@ -15370,11 +15082,12 @@
     ],
     "osm_type":"way",
     "osm_id":115804143,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "1025":{
+  "943":{
     "name":"Square Raoul Nordling",
     "type":{
       "landmark_type":"nature"
@@ -15385,11 +15098,12 @@
     ],
     "osm_type":"way",
     "osm_id":115804160,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1026":{
+  "944":{
     "name":"Square Duranton",
     "type":{
       "landmark_type":"nature"
@@ -15400,11 +15114,12 @@
     ],
     "osm_type":"way",
     "osm_id":116823214,
-    "attractiveness":6,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1027":{
+  "945":{
     "name":"Jardin de la Folie Titon",
     "type":{
       "landmark_type":"nature"
@@ -15415,11 +15130,12 @@
     ],
     "osm_type":"way",
     "osm_id":117887012,
-    "attractiveness":12,
+    "attractiveness":18,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "1028":{
+  "946":{
     "name":"Jardin Émile Gallé",
     "type":{
       "landmark_type":"nature"
@@ -15430,11 +15146,12 @@
     ],
     "osm_type":"way",
     "osm_id":117990783,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1029":{
+  "947":{
     "name":"Square des Chamaillards",
     "type":{
       "landmark_type":"nature"
@@ -15445,11 +15162,12 @@
     ],
     "osm_type":"way",
     "osm_id":118767352,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1030":{
+  "948":{
     "name":"Square Albert Tournaire",
     "type":{
       "landmark_type":"nature"
@@ -15460,11 +15178,12 @@
     ],
     "osm_type":"way",
     "osm_id":118852153,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1031":{
+  "949":{
     "name":"Square Trousseau",
     "type":{
       "landmark_type":"nature"
@@ -15475,11 +15194,12 @@
     ],
     "osm_type":"way",
     "osm_id":118878250,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1032":{
+  "950":{
     "name":"Square Yves Klein",
     "type":{
       "landmark_type":"nature"
@@ -15490,11 +15210,12 @@
     ],
     "osm_type":"way",
     "osm_id":122389763,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1033":{
+  "951":{
     "name":"Square de Macerata",
     "type":{
       "landmark_type":"nature"
@@ -15505,26 +15226,12 @@
     ],
     "osm_type":"way",
     "osm_id":124352831,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1034":{
-    "name":"Jardin du Luxembourg",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8467137,
-      2.3363649
-    ],
-    "osm_type":"way",
-    "osm_id":128206209,
-    "attractiveness":23,
-    "must_do":false,
-    "n_tags":23
-  },
-  "1035":{
+  "952":{
     "name":"Square Frédéric Rossif",
     "type":{
       "landmark_type":"nature"
@@ -15535,11 +15242,12 @@
     ],
     "osm_type":"way",
     "osm_id":129148726,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1036":{
+  "953":{
     "name":"Jardinières angles des rues Daumesnil - Charenton",
     "type":{
       "landmark_type":"nature"
@@ -15550,11 +15258,12 @@
     ],
     "osm_type":"way",
     "osm_id":133881479,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1037":{
+  "954":{
     "name":"Jardin Biopark",
     "type":{
       "landmark_type":"nature"
@@ -15565,11 +15274,12 @@
     ],
     "osm_type":"way",
     "osm_id":141048432,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1038":{
+  "955":{
     "name":"Square Georges Duhamel",
     "type":{
       "landmark_type":"nature"
@@ -15580,11 +15290,12 @@
     ],
     "osm_type":"way",
     "osm_id":141048438,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1039":{
+  "956":{
     "name":"Square Elstree-Borehamwood",
     "type":{
       "landmark_type":"nature"
@@ -15595,11 +15306,12 @@
     ],
     "osm_type":"way",
     "osm_id":145346313,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1040":{
+  "957":{
     "name":"Jardin rue des Couronnes",
     "type":{
       "landmark_type":"nature"
@@ -15610,11 +15322,12 @@
     ],
     "osm_type":"way",
     "osm_id":149164759,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1041":{
+  "958":{
     "name":"Jardin Le Vallon",
     "type":{
       "landmark_type":"nature"
@@ -15625,11 +15338,12 @@
     ],
     "osm_type":"way",
     "osm_id":150697498,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1042":{
+  "959":{
     "name":"Parc André Citroën",
     "type":{
       "landmark_type":"nature"
@@ -15640,11 +15354,12 @@
     ],
     "osm_type":"way",
     "osm_id":151567211,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1043":{
+  "960":{
     "name":"Square Pierre Larousse",
     "type":{
       "landmark_type":"nature"
@@ -15655,11 +15370,12 @@
     ],
     "osm_type":"way",
     "osm_id":153410232,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1044":{
+  "961":{
     "name":"Jardins Abbé Pierre - Grands Moulins",
     "type":{
       "landmark_type":"nature"
@@ -15670,11 +15386,12 @@
     ],
     "osm_type":"way",
     "osm_id":154754263,
-    "attractiveness":15,
+    "attractiveness":21,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "1045":{
+  "962":{
     "name":"Parc de Belleville",
     "type":{
       "landmark_type":"nature"
@@ -15685,11 +15402,12 @@
     ],
     "osm_type":"way",
     "osm_id":154892778,
-    "attractiveness":12,
+    "attractiveness":17,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "1046":{
+  "963":{
     "name":"Jardin Paul Nizan",
     "type":{
       "landmark_type":"nature"
@@ -15700,11 +15418,12 @@
     ],
     "osm_type":"way",
     "osm_id":157953364,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1047":{
+  "964":{
     "name":"Jardin Nelson Mandela",
     "type":{
       "landmark_type":"nature"
@@ -15715,11 +15434,12 @@
     ],
     "osm_type":"way",
     "osm_id":159103475,
-    "attractiveness":15,
+    "attractiveness":22,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "1048":{
+  "965":{
     "name":"Square d'Alleray La Quintinie",
     "type":{
       "landmark_type":"nature"
@@ -15730,11 +15450,12 @@
     ],
     "osm_type":"way",
     "osm_id":160276699,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1049":{
+  "966":{
     "name":"Square Rue de la Paix",
     "type":{
       "landmark_type":"nature"
@@ -15745,11 +15466,12 @@
     ],
     "osm_type":"way",
     "osm_id":163755259,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1050":{
+  "967":{
     "name":"Îlot Vert",
     "type":{
       "landmark_type":"nature"
@@ -15760,11 +15482,12 @@
     ],
     "osm_type":"way",
     "osm_id":163755260,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1051":{
+  "968":{
     "name":"Square Jean-Claude Nicolas Forestier",
     "type":{
       "landmark_type":"nature"
@@ -15775,11 +15498,12 @@
     ],
     "osm_type":"way",
     "osm_id":165814454,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1052":{
+  "969":{
     "name":"Square Jean Moulin",
     "type":{
       "landmark_type":"nature"
@@ -15790,11 +15514,12 @@
     ],
     "osm_type":"way",
     "osm_id":166054977,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1053":{
+  "970":{
     "name":"Jardin Monique Wittig",
     "type":{
       "landmark_type":"nature"
@@ -15805,11 +15530,12 @@
     ],
     "osm_type":"way",
     "osm_id":166054978,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1054":{
+  "971":{
     "name":"Square Marin la Meslée",
     "type":{
       "landmark_type":"nature"
@@ -15820,11 +15546,12 @@
     ],
     "osm_type":"way",
     "osm_id":167103323,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1055":{
+  "972":{
     "name":"Place de Chateaubriand",
     "type":{
       "landmark_type":"nature"
@@ -15835,11 +15562,12 @@
     ],
     "osm_type":"way",
     "osm_id":170524032,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1056":{
+  "973":{
     "name":"Parc des Buttes-Chaumont",
     "type":{
       "landmark_type":"nature"
@@ -15850,11 +15578,12 @@
     ],
     "osm_type":"way",
     "osm_id":173204460,
-    "attractiveness":17,
+    "attractiveness":25,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "1057":{
+  "974":{
     "name":"Jardin de l'hôtel-Lamoignon - Mark-Ashton",
     "type":{
       "landmark_type":"nature"
@@ -15865,11 +15594,12 @@
     ],
     "osm_type":"way",
     "osm_id":175660392,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1058":{
+  "975":{
     "name":"Square Georges Pompidou",
     "type":{
       "landmark_type":"nature"
@@ -15880,11 +15610,12 @@
     ],
     "osm_type":"way",
     "osm_id":181439037,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1059":{
+  "976":{
     "name":"Jardin sous-lieutenante Eugénie-Malika Djendi",
     "type":{
       "landmark_type":"nature"
@@ -15895,11 +15626,12 @@
     ],
     "osm_type":"way",
     "osm_id":182761369,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1060":{
+  "977":{
     "name":"Jardin de l'ancien hôpital Boucicaut",
     "type":{
       "landmark_type":"nature"
@@ -15910,11 +15642,12 @@
     ],
     "osm_type":"way",
     "osm_id":183534028,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1061":{
+  "978":{
     "name":"Jardin de la Montgolfière",
     "type":{
       "landmark_type":"nature"
@@ -15925,11 +15658,12 @@
     ],
     "osm_type":"way",
     "osm_id":183628959,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1062":{
+  "979":{
     "name":"Espace vert Robespierre",
     "type":{
       "landmark_type":"nature"
@@ -15940,11 +15674,12 @@
     ],
     "osm_type":"way",
     "osm_id":194079368,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1063":{
+  "980":{
     "name":"Square Léo Malet",
     "type":{
       "landmark_type":"nature"
@@ -15955,26 +15690,12 @@
     ],
     "osm_type":"way",
     "osm_id":196944696,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1064":{
-    "name":"Square Robert Schuman",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8179119,
-      2.3205791
-    ],
-    "osm_type":"way",
-    "osm_id":197540468,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":10
-  },
-  "1065":{
+  "981":{
     "name":"Square de la République",
     "type":{
       "landmark_type":"nature"
@@ -15985,11 +15706,12 @@
     ],
     "osm_type":"way",
     "osm_id":200280035,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1066":{
+  "982":{
     "name":"Square du Serment de Koufra",
     "type":{
       "landmark_type":"nature"
@@ -16000,11 +15722,12 @@
     ],
     "osm_type":"way",
     "osm_id":202297815,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1067":{
+  "983":{
     "name":"Jardin de la Roseraie",
     "type":{
       "landmark_type":"nature"
@@ -16015,11 +15738,12 @@
     ],
     "osm_type":"way",
     "osm_id":202541159,
-    "attractiveness":9,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1068":{
+  "984":{
     "name":"Parc du Coteau",
     "type":{
       "landmark_type":"nature"
@@ -16032,9 +15756,10 @@
     "osm_id":203768953,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1069":{
+  "985":{
     "name":"Jardin Michel Germa",
     "type":{
       "landmark_type":"nature"
@@ -16045,11 +15770,12 @@
     ],
     "osm_type":"way",
     "osm_id":205895284,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1070":{
+  "986":{
     "name":"Square Jules Coutant",
     "type":{
       "landmark_type":"nature"
@@ -16060,26 +15786,12 @@
     ],
     "osm_type":"way",
     "osm_id":207598649,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1071":{
-    "name":"Jardin de la Raffinerie Say",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8312818,
-      2.3613845
-    ],
-    "osm_type":"way",
-    "osm_id":209768434,
-    "attractiveness":4,
-    "must_do":false,
-    "n_tags":4
-  },
-  "1072":{
+  "987":{
     "name":"Square Florence Blumenthal",
     "type":{
       "landmark_type":"nature"
@@ -16090,11 +15802,12 @@
     ],
     "osm_type":"way",
     "osm_id":211636671,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1073":{
+  "988":{
     "name":"Parc Départemental des Hautes Bruyères",
     "type":{
       "landmark_type":"nature"
@@ -16105,11 +15818,12 @@
     ],
     "osm_type":"way",
     "osm_id":211971688,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1074":{
+  "989":{
     "name":"Théâtre en plein air",
     "type":{
       "landmark_type":"nature"
@@ -16120,11 +15834,12 @@
     ],
     "osm_type":"way",
     "osm_id":213862441,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1075":{
+  "990":{
     "name":"Jardin Anna-Marly",
     "type":{
       "landmark_type":"nature"
@@ -16135,11 +15850,12 @@
     ],
     "osm_type":"way",
     "osm_id":218842377,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1076":{
+  "991":{
     "name":"Jardin des Deux Moulins",
     "type":{
       "landmark_type":"nature"
@@ -16150,11 +15866,12 @@
     ],
     "osm_type":"way",
     "osm_id":220011097,
-    "attractiveness":4,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1077":{
+  "992":{
     "name":"Square Pasteur",
     "type":{
       "landmark_type":"nature"
@@ -16165,11 +15882,12 @@
     ],
     "osm_type":"way",
     "osm_id":220949556,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1078":{
+  "993":{
     "name":"Parc du Puits Saint-Étienne",
     "type":{
       "landmark_type":"nature"
@@ -16180,11 +15898,12 @@
     ],
     "osm_type":"way",
     "osm_id":223143742,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1079":{
+  "994":{
     "name":"Parc Richelieu",
     "type":{
       "landmark_type":"nature"
@@ -16197,9 +15916,10 @@
     "osm_id":223143743,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1080":{
+  "995":{
     "name":"Square Robert Doisneau",
     "type":{
       "landmark_type":"nature"
@@ -16210,11 +15930,12 @@
     ],
     "osm_type":"way",
     "osm_id":223387716,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1081":{
+  "996":{
     "name":"Square Galloy",
     "type":{
       "landmark_type":"nature"
@@ -16225,11 +15946,12 @@
     ],
     "osm_type":"way",
     "osm_id":224844048,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1082":{
+  "997":{
     "name":"Square Saint-Etienne",
     "type":{
       "landmark_type":"nature"
@@ -16240,11 +15962,12 @@
     ],
     "osm_type":"way",
     "osm_id":227573030,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1083":{
+  "998":{
     "name":"Jardin Périer-Ginoux",
     "type":{
       "landmark_type":"nature"
@@ -16255,11 +15978,12 @@
     ],
     "osm_type":"way",
     "osm_id":227933855,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1084":{
+  "999":{
     "name":"Le viaduc des arts",
     "type":{
       "landmark_type":"nature"
@@ -16270,11 +15994,12 @@
     ],
     "osm_type":"way",
     "osm_id":228005266,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1085":{
+  "1000":{
     "name":"Jardin de la Marne",
     "type":{
       "landmark_type":"nature"
@@ -16285,11 +16010,12 @@
     ],
     "osm_type":"way",
     "osm_id":228990953,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1086":{
+  "1001":{
     "name":"Promenade d'Australie",
     "type":{
       "landmark_type":"nature"
@@ -16300,11 +16026,12 @@
     ],
     "osm_type":"way",
     "osm_id":230125065,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1087":{
+  "1002":{
     "name":"Square des Guipons",
     "type":{
       "landmark_type":"nature"
@@ -16315,11 +16042,12 @@
     ],
     "osm_type":"way",
     "osm_id":232113937,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1088":{
+  "1003":{
     "name":"Parc Jean-Loup Metton",
     "type":{
       "landmark_type":"nature"
@@ -16330,11 +16058,12 @@
     ],
     "osm_type":"way",
     "osm_id":236116735,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1089":{
+  "1004":{
     "name":"fruitier Paris",
     "type":{
       "landmark_type":"nature"
@@ -16345,11 +16074,12 @@
     ],
     "osm_type":"way",
     "osm_id":236368242,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1090":{
+  "1005":{
     "name":"Square René Viviani",
     "type":{
       "landmark_type":"nature"
@@ -16360,11 +16090,12 @@
     ],
     "osm_type":"way",
     "osm_id":236820131,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1091":{
+  "1006":{
     "name":"Square de l'Avenue de la Marne",
     "type":{
       "landmark_type":"nature"
@@ -16375,11 +16106,12 @@
     ],
     "osm_type":"way",
     "osm_id":240667817,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1092":{
+  "1007":{
     "name":"Square Madeleine Tribolati",
     "type":{
       "landmark_type":"nature"
@@ -16390,11 +16122,12 @@
     ],
     "osm_type":"way",
     "osm_id":241898171,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1093":{
+  "1008":{
     "name":"Jardin Basch-Floquet",
     "type":{
       "landmark_type":"nature"
@@ -16405,26 +16138,12 @@
     ],
     "osm_type":"way",
     "osm_id":241953496,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1094":{
-    "name":"Square Jean Moulin",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8161837,
-      2.2980211
-    ],
-    "osm_type":"way",
-    "osm_id":250800636,
-    "attractiveness":3,
-    "must_do":false,
-    "n_tags":3
-  },
-  "1095":{
+  "1009":{
     "name":"Promenade du Quai André Citroën",
     "type":{
       "landmark_type":"nature"
@@ -16435,11 +16154,12 @@
     ],
     "osm_type":"way",
     "osm_id":253670807,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1096":{
+  "1010":{
     "name":"Square Charles de Gaulle",
     "type":{
       "landmark_type":"nature"
@@ -16450,11 +16170,12 @@
     ],
     "osm_type":"way",
     "osm_id":256327425,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1097":{
+  "1011":{
     "name":"Square du Petit Arpajonnais",
     "type":{
       "landmark_type":"nature"
@@ -16465,11 +16186,12 @@
     ],
     "osm_type":"way",
     "osm_id":256336307,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1098":{
+  "1012":{
     "name":"Square Élisa Borey",
     "type":{
       "landmark_type":"nature"
@@ -16480,11 +16202,12 @@
     ],
     "osm_type":"way",
     "osm_id":256437620,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1099":{
+  "1013":{
     "name":"Ferme urbaine de Malakoff",
     "type":{
       "landmark_type":"nature"
@@ -16495,11 +16218,12 @@
     ],
     "osm_type":"way",
     "osm_id":258962402,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1100":{
+  "1014":{
     "name":"Square Marc Lanvin",
     "type":{
       "landmark_type":"nature"
@@ -16510,11 +16234,12 @@
     ],
     "osm_type":"way",
     "osm_id":258962403,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1101":{
+  "1015":{
     "name":"Jardin des Colonnes - Ricardo Bofill",
     "type":{
       "landmark_type":"nature"
@@ -16525,26 +16250,12 @@
     ],
     "osm_type":"way",
     "osm_id":261450265,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1102":{
-    "name":"Square Jean Moulin",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8044611,
-      2.2903865
-    ],
-    "osm_type":"way",
-    "osm_id":263072771,
-    "attractiveness":5,
-    "must_do":false,
-    "n_tags":5
-  },
-  "1103":{
+  "1016":{
     "name":"Square Eugène Féburier",
     "type":{
       "landmark_type":"nature"
@@ -16555,11 +16266,12 @@
     ],
     "osm_type":"way",
     "osm_id":265281962,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1104":{
+  "1017":{
     "name":"Square Pierre Valette",
     "type":{
       "landmark_type":"nature"
@@ -16570,11 +16282,12 @@
     ],
     "osm_type":"way",
     "osm_id":266377593,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1105":{
+  "1018":{
     "name":"Mail Maurice Thorez",
     "type":{
       "landmark_type":"nature"
@@ -16585,11 +16298,12 @@
     ],
     "osm_type":"way",
     "osm_id":268661677,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1106":{
+  "1019":{
     "name":"Parc François Mitterrand",
     "type":{
       "landmark_type":"nature"
@@ -16600,11 +16314,12 @@
     ],
     "osm_type":"way",
     "osm_id":272170189,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1107":{
+  "1020":{
     "name":"La Petite Ceinture du 20e",
     "type":{
       "landmark_type":"nature"
@@ -16615,11 +16330,12 @@
     ],
     "osm_type":"way",
     "osm_id":272547170,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1108":{
+  "1021":{
     "name":"Espace vert Marat",
     "type":{
       "landmark_type":"nature"
@@ -16630,11 +16346,12 @@
     ],
     "osm_type":"way",
     "osm_id":276210118,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1109":{
+  "1022":{
     "name":"La Petite Ceinture du 15e",
     "type":{
       "landmark_type":"nature"
@@ -16645,11 +16362,12 @@
     ],
     "osm_type":"way",
     "osm_id":277811053,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1110":{
+  "1023":{
     "name":"Square Marius-Constant",
     "type":{
       "landmark_type":"nature"
@@ -16660,11 +16378,12 @@
     ],
     "osm_type":"way",
     "osm_id":281323266,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1111":{
+  "1024":{
     "name":"Promenade du Fort",
     "type":{
       "landmark_type":"nature"
@@ -16677,9 +16396,10 @@
     "osm_id":282933004,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1112":{
+  "1025":{
     "name":"Square Marie-Poussepin",
     "type":{
       "landmark_type":"nature"
@@ -16690,11 +16410,12 @@
     ],
     "osm_type":"way",
     "osm_id":289189169,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1113":{
+  "1026":{
     "name":"Square Georges Sarre",
     "type":{
       "landmark_type":"nature"
@@ -16705,26 +16426,12 @@
     ],
     "osm_type":"way",
     "osm_id":289451440,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1114":{
-    "name":"Square Georges Sarre",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8655215,
-      2.3810309
-    ],
-    "osm_type":"way",
-    "osm_id":290250458,
-    "attractiveness":4,
-    "must_do":false,
-    "n_tags":4
-  },
-  "1115":{
+  "1027":{
     "name":"Jardin de la rue du Chalet",
     "type":{
       "landmark_type":"nature"
@@ -16735,11 +16442,12 @@
     ],
     "osm_type":"way",
     "osm_id":290586931,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1116":{
+  "1028":{
     "name":"Parc Monmousseau",
     "type":{
       "landmark_type":"nature"
@@ -16750,11 +16458,12 @@
     ],
     "osm_type":"way",
     "osm_id":291761497,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1117":{
+  "1029":{
     "name":"Square des Acacias",
     "type":{
       "landmark_type":"nature"
@@ -16765,11 +16474,12 @@
     ],
     "osm_type":"way",
     "osm_id":292903197,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1118":{
+  "1030":{
     "name":"Square Colbert",
     "type":{
       "landmark_type":"nature"
@@ -16780,11 +16490,12 @@
     ],
     "osm_type":"way",
     "osm_id":296037215,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1119":{
+  "1031":{
     "name":"Square Edmée Chandon",
     "type":{
       "landmark_type":"nature"
@@ -16795,11 +16506,12 @@
     ],
     "osm_type":"way",
     "osm_id":304423650,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1120":{
+  "1032":{
     "name":"Jardin des Nouzeaux",
     "type":{
       "landmark_type":"nature"
@@ -16810,11 +16522,12 @@
     ],
     "osm_type":"way",
     "osm_id":307348464,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1121":{
+  "1033":{
     "name":"Square Rébeval",
     "type":{
       "landmark_type":"nature"
@@ -16825,11 +16538,12 @@
     ],
     "osm_type":"way",
     "osm_id":307363485,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1122":{
+  "1034":{
     "name":"Square du 11 Novembre 1918",
     "type":{
       "landmark_type":"nature"
@@ -16840,11 +16554,12 @@
     ],
     "osm_type":"way",
     "osm_id":308432950,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1123":{
+  "1035":{
     "name":"Square Louis Vicat",
     "type":{
       "landmark_type":"nature"
@@ -16855,11 +16570,12 @@
     ],
     "osm_type":"way",
     "osm_id":308436943,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1124":{
+  "1036":{
     "name":"Promenade Jean Moulin",
     "type":{
       "landmark_type":"nature"
@@ -16870,11 +16586,12 @@
     ],
     "osm_type":"way",
     "osm_id":312497782,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1125":{
+  "1037":{
     "name":"Jardin de la Folie-Regnault",
     "type":{
       "landmark_type":"nature"
@@ -16885,11 +16602,12 @@
     ],
     "osm_type":"way",
     "osm_id":313144545,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1126":{
+  "1038":{
     "name":"Square de l'Insurrection",
     "type":{
       "landmark_type":"nature"
@@ -16900,11 +16618,12 @@
     ],
     "osm_type":"way",
     "osm_id":313867045,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1127":{
+  "1039":{
     "name":"Place du 8 Mai 1945",
     "type":{
       "landmark_type":"nature"
@@ -16915,11 +16634,12 @@
     ],
     "osm_type":"way",
     "osm_id":313996098,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1128":{
+  "1040":{
     "name":"Square des Hautes Bruyères",
     "type":{
       "landmark_type":"nature"
@@ -16930,11 +16650,12 @@
     ],
     "osm_type":"way",
     "osm_id":313996099,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1129":{
+  "1041":{
     "name":"Square du Général de Gaulle",
     "type":{
       "landmark_type":"nature"
@@ -16945,11 +16666,12 @@
     ],
     "osm_type":"way",
     "osm_id":314004767,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1130":{
+  "1042":{
     "name":"Square des Combattants de l'Afrique du Nord et des Territoires d'Outre-Mer",
     "type":{
       "landmark_type":"nature"
@@ -16960,11 +16682,12 @@
     ],
     "osm_type":"way",
     "osm_id":314010934,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1131":{
+  "1043":{
     "name":"Espace extérieurs cité Louis Bertrand",
     "type":{
       "landmark_type":"nature"
@@ -16975,11 +16698,12 @@
     ],
     "osm_type":"way",
     "osm_id":314437192,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1132":{
+  "1044":{
     "name":"Halte des peupliers",
     "type":{
       "landmark_type":"nature"
@@ -16990,11 +16714,12 @@
     ],
     "osm_type":"way",
     "osm_id":314449486,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1133":{
+  "1045":{
     "name":"Square du Colombier",
     "type":{
       "landmark_type":"nature"
@@ -17005,11 +16730,12 @@
     ],
     "osm_type":"way",
     "osm_id":314452951,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1134":{
+  "1046":{
     "name":"Square Léopold Achille",
     "type":{
       "landmark_type":"nature"
@@ -17020,11 +16746,12 @@
     ],
     "osm_type":"way",
     "osm_id":322758768,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "1135":{
+  "1047":{
     "name":"Jardin des Thermopyles",
     "type":{
       "landmark_type":"nature"
@@ -17035,11 +16762,12 @@
     ],
     "osm_type":"way",
     "osm_id":327106745,
-    "attractiveness":6,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1136":{
+  "1048":{
     "name":"Park Nelson Mandela",
     "type":{
       "landmark_type":"nature"
@@ -17050,26 +16778,12 @@
     ],
     "osm_type":"way",
     "osm_id":331894595,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1137":{
-    "name":"TEP Ménilmontant",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8611652,
-      2.387335
-    ],
-    "osm_type":"way",
-    "osm_id":334833609,
-    "attractiveness":17,
-    "must_do":false,
-    "n_tags":17
-  },
-  "1138":{
+  "1049":{
     "name":"Jardin Charles-Trenet",
     "type":{
       "landmark_type":"nature"
@@ -17080,11 +16794,12 @@
     ],
     "osm_type":"way",
     "osm_id":334993212,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1139":{
+  "1050":{
     "name":"Jardin Truillot",
     "type":{
       "landmark_type":"nature"
@@ -17095,26 +16810,12 @@
     ],
     "osm_type":"way",
     "osm_id":336409585,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1140":{
-    "name":"Square du 19 Mars 1962",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.7992582,
-      2.3173891
-    ],
-    "osm_type":"way",
-    "osm_id":336873543,
-    "attractiveness":3,
-    "must_do":false,
-    "n_tags":3
-  },
-  "1141":{
+  "1051":{
     "name":"Square des Varennes",
     "type":{
       "landmark_type":"nature"
@@ -17125,11 +16826,12 @@
     ],
     "osm_type":"way",
     "osm_id":337990696,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1142":{
+  "1052":{
     "name":"Parc du Coteau de Bièvre",
     "type":{
       "landmark_type":"nature"
@@ -17140,11 +16842,12 @@
     ],
     "osm_type":"way",
     "osm_id":338195958,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1143":{
+  "1053":{
     "name":"La Petite Ceinture du 14e",
     "type":{
       "landmark_type":"nature"
@@ -17155,11 +16858,12 @@
     ],
     "osm_type":"way",
     "osm_id":339366085,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1144":{
+  "1054":{
     "name":"Square Alexandre-Luquet",
     "type":{
       "landmark_type":"nature"
@@ -17170,11 +16874,12 @@
     ],
     "osm_type":"way",
     "osm_id":342601519,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1145":{
+  "1055":{
     "name":"Square Charles et Suzanne Comaille",
     "type":{
       "landmark_type":"nature"
@@ -17185,11 +16890,12 @@
     ],
     "osm_type":"way",
     "osm_id":345727098,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1146":{
+  "1056":{
     "name":"Jardin des Archives Nationales",
     "type":{
       "landmark_type":"nature"
@@ -17200,11 +16906,12 @@
     ],
     "osm_type":"way",
     "osm_id":350179508,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1147":{
+  "1057":{
     "name":"Jardin Lazare-Rachline",
     "type":{
       "landmark_type":"nature"
@@ -17215,11 +16922,12 @@
     ],
     "osm_type":"way",
     "osm_id":350599788,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1148":{
+  "1058":{
     "name":"Square de Kirovakan",
     "type":{
       "landmark_type":"nature"
@@ -17230,11 +16938,12 @@
     ],
     "osm_type":"way",
     "osm_id":351907216,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1149":{
+  "1059":{
     "name":"Jardin de Reuilly - Paul-Pernin",
     "type":{
       "landmark_type":"nature"
@@ -17245,11 +16954,12 @@
     ],
     "osm_type":"way",
     "osm_id":358417047,
-    "attractiveness":9,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1150":{
+  "1060":{
     "name":"Square Saint-Gilles Grand Veneur - Pauline-Roland",
     "type":{
       "landmark_type":"nature"
@@ -17260,11 +16970,12 @@
     ],
     "osm_type":"way",
     "osm_id":364239668,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1151":{
+  "1061":{
     "name":"Place des Droits de l'Enfant",
     "type":{
       "landmark_type":"nature"
@@ -17275,11 +16986,12 @@
     ],
     "osm_type":"way",
     "osm_id":364772826,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1152":{
+  "1062":{
     "name":"Jardin Municipal des Monceaux",
     "type":{
       "landmark_type":"nature"
@@ -17290,11 +17002,12 @@
     ],
     "osm_type":"way",
     "osm_id":365358396,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1153":{
+  "1063":{
     "name":"Jardin des Rosiers – Joseph-Migneret",
     "type":{
       "landmark_type":"nature"
@@ -17305,11 +17018,12 @@
     ],
     "osm_type":"way",
     "osm_id":365878540,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1154":{
+  "1064":{
     "name":"Square Toussaint Louverture",
     "type":{
       "landmark_type":"nature"
@@ -17320,11 +17034,12 @@
     ],
     "osm_type":"way",
     "osm_id":372327300,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1155":{
+  "1065":{
     "name":"Square de l'Abbé Derry",
     "type":{
       "landmark_type":"nature"
@@ -17335,11 +17050,12 @@
     ],
     "osm_type":"way",
     "osm_id":376210894,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1156":{
+  "1066":{
     "name":"Jardin d'Arménie",
     "type":{
       "landmark_type":"nature"
@@ -17350,11 +17066,12 @@
     ],
     "osm_type":"way",
     "osm_id":378994035,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1157":{
+  "1067":{
     "name":"Square Malleret-Joinville",
     "type":{
       "landmark_type":"nature"
@@ -17365,11 +17082,12 @@
     ],
     "osm_type":"way",
     "osm_id":386993942,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1158":{
+  "1068":{
     "name":"Square de Soweto",
     "type":{
       "landmark_type":"nature"
@@ -17380,11 +17098,12 @@
     ],
     "osm_type":"way",
     "osm_id":391791791,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1159":{
+  "1069":{
     "name":"Square Jean Allemane",
     "type":{
       "landmark_type":"nature"
@@ -17395,11 +17114,12 @@
     ],
     "osm_type":"way",
     "osm_id":391792674,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1160":{
+  "1070":{
     "name":"Square Olga Bancic",
     "type":{
       "landmark_type":"nature"
@@ -17410,11 +17130,12 @@
     ],
     "osm_type":"way",
     "osm_id":392493782,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1161":{
+  "1071":{
     "name":"Parc de la Maison des Arts",
     "type":{
       "landmark_type":"nature"
@@ -17425,11 +17146,12 @@
     ],
     "osm_type":"way",
     "osm_id":399021055,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1162":{
+  "1072":{
     "name":"Jardin Dewoitine",
     "type":{
       "landmark_type":"nature"
@@ -17440,11 +17162,12 @@
     ],
     "osm_type":"way",
     "osm_id":401846641,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1163":{
+  "1073":{
     "name":"Square André Malraux",
     "type":{
       "landmark_type":"nature"
@@ -17455,11 +17178,12 @@
     ],
     "osm_type":"way",
     "osm_id":404646304,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1164":{
+  "1074":{
     "name":"Square de la 2e D. B.",
     "type":{
       "landmark_type":"nature"
@@ -17470,11 +17194,12 @@
     ],
     "osm_type":"way",
     "osm_id":404647744,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1165":{
+  "1075":{
     "name":"Square du Panorama",
     "type":{
       "landmark_type":"nature"
@@ -17485,11 +17210,12 @@
     ],
     "osm_type":"way",
     "osm_id":410962891,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1166":{
+  "1076":{
     "name":"Parc des Pierrettes",
     "type":{
       "landmark_type":"nature"
@@ -17500,11 +17226,12 @@
     ],
     "osm_type":"way",
     "osm_id":411023233,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1167":{
+  "1077":{
     "name":"Square Dreyfus",
     "type":{
       "landmark_type":"nature"
@@ -17515,11 +17242,12 @@
     ],
     "osm_type":"way",
     "osm_id":423001236,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1168":{
+  "1078":{
     "name":"Espace Verts du Douanier Rousseau",
     "type":{
       "landmark_type":"nature"
@@ -17530,11 +17258,12 @@
     ],
     "osm_type":"way",
     "osm_id":427176757,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1169":{
+  "1079":{
     "name":"Parc des Pierrelais",
     "type":{
       "landmark_type":"nature"
@@ -17545,11 +17274,12 @@
     ],
     "osm_type":"way",
     "osm_id":427180856,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1170":{
+  "1080":{
     "name":"Jardin Pierre-Joseph Redouté",
     "type":{
       "landmark_type":"nature"
@@ -17560,11 +17290,12 @@
     ],
     "osm_type":"way",
     "osm_id":429685061,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1171":{
+  "1081":{
     "name":"Esplanade de la Fraternité",
     "type":{
       "landmark_type":"nature"
@@ -17575,11 +17306,12 @@
     ],
     "osm_type":"way",
     "osm_id":433841806,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1172":{
+  "1082":{
     "name":"Jardin Toscan",
     "type":{
       "landmark_type":"nature"
@@ -17590,11 +17322,12 @@
     ],
     "osm_type":"way",
     "osm_id":439387631,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1173":{
+  "1083":{
     "name":"Jardin Yılmaz Güney",
     "type":{
       "landmark_type":"nature"
@@ -17605,11 +17338,12 @@
     ],
     "osm_type":"way",
     "osm_id":442069218,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1174":{
+  "1084":{
     "name":"Parc Sainte-Barbe",
     "type":{
       "landmark_type":"nature"
@@ -17620,11 +17354,12 @@
     ],
     "osm_type":"way",
     "osm_id":444118039,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1175":{
+  "1085":{
     "name":"Jardin du Potager",
     "type":{
       "landmark_type":"nature"
@@ -17635,11 +17370,12 @@
     ],
     "osm_type":"way",
     "osm_id":445230047,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1176":{
+  "1086":{
     "name":"Jardin de la Poterne-des-Peupliers",
     "type":{
       "landmark_type":"nature"
@@ -17650,11 +17386,12 @@
     ],
     "osm_type":"way",
     "osm_id":448361310,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1177":{
+  "1087":{
     "name":"Jardin de la maison des orphelins apprentis d'Auteuil",
     "type":{
       "landmark_type":"nature"
@@ -17665,11 +17402,12 @@
     ],
     "osm_type":"way",
     "osm_id":455091923,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1178":{
+  "1088":{
     "name":"Square Louis XVI",
     "type":{
       "landmark_type":"nature"
@@ -17680,11 +17418,12 @@
     ],
     "osm_type":"way",
     "osm_id":456447739,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "1179":{
+  "1089":{
     "name":"Jardin de la Mairie du 8e",
     "type":{
       "landmark_type":"nature"
@@ -17695,11 +17434,12 @@
     ],
     "osm_type":"way",
     "osm_id":456447743,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1180":{
+  "1090":{
     "name":"Square Anna de Noailles",
     "type":{
       "landmark_type":"nature"
@@ -17710,11 +17450,12 @@
     ],
     "osm_type":"way",
     "osm_id":456850415,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1181":{
+  "1091":{
     "name":"Square Brignole-Galliera",
     "type":{
       "landmark_type":"nature"
@@ -17725,11 +17466,12 @@
     ],
     "osm_type":"way",
     "osm_id":457478598,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1182":{
+  "1092":{
     "name":"Square du Général Morin",
     "type":{
       "landmark_type":"nature"
@@ -17740,11 +17482,12 @@
     ],
     "osm_type":"way",
     "osm_id":457652441,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1183":{
+  "1093":{
     "name":"Cité Universitaire - Parc Ouest",
     "type":{
       "landmark_type":"nature"
@@ -17755,11 +17498,12 @@
     ],
     "osm_type":"way",
     "osm_id":466176263,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1184":{
+  "1094":{
     "name":"Cité Universitaire - Parc Est",
     "type":{
       "landmark_type":"nature"
@@ -17770,11 +17514,12 @@
     ],
     "osm_type":"way",
     "osm_id":466176883,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1185":{
+  "1095":{
     "name":"Jardin des Combattants-de-la-Nueve",
     "type":{
       "landmark_type":"nature"
@@ -17785,11 +17530,12 @@
     ],
     "osm_type":"way",
     "osm_id":468735435,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1186":{
+  "1096":{
     "name":"Square Albert Schweitzer",
     "type":{
       "landmark_type":"nature"
@@ -17800,11 +17546,12 @@
     ],
     "osm_type":"way",
     "osm_id":472237323,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1187":{
+  "1097":{
     "name":"Square Paul Langevin",
     "type":{
       "landmark_type":"nature"
@@ -17815,11 +17562,12 @@
     ],
     "osm_type":"way",
     "osm_id":473958172,
-    "attractiveness":11,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "1188":{
+  "1098":{
     "name":"Jardin Carré",
     "type":{
       "landmark_type":"nature"
@@ -17830,11 +17578,12 @@
     ],
     "osm_type":"way",
     "osm_id":473958174,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1189":{
+  "1099":{
     "name":"Jardin Christiane Desroches Noblecourt",
     "type":{
       "landmark_type":"nature"
@@ -17845,11 +17594,12 @@
     ],
     "osm_type":"way",
     "osm_id":474032039,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1190":{
+  "1100":{
     "name":"Jardin Federica Montseny",
     "type":{
       "landmark_type":"nature"
@@ -17860,11 +17610,12 @@
     ],
     "osm_type":"way",
     "osm_id":475589178,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1191":{
+  "1101":{
     "name":"Square Saint-Médard",
     "type":{
       "landmark_type":"nature"
@@ -17875,11 +17626,12 @@
     ],
     "osm_type":"way",
     "osm_id":475591498,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1192":{
+  "1102":{
     "name":"Jardin des Terroirs",
     "type":{
       "landmark_type":"nature"
@@ -17890,11 +17642,12 @@
     ],
     "osm_type":"way",
     "osm_id":476602310,
-    "attractiveness":4,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1193":{
+  "1103":{
     "name":"Jardin Octave-Mirbeau",
     "type":{
       "landmark_type":"nature"
@@ -17905,11 +17658,12 @@
     ],
     "osm_type":"way",
     "osm_id":481566185,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1194":{
+  "1104":{
     "name":"Jardin intérieur Saint-Lazare",
     "type":{
       "landmark_type":"nature"
@@ -17920,11 +17674,12 @@
     ],
     "osm_type":"way",
     "osm_id":504626080,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1195":{
+  "1105":{
     "name":"Jardin Verdun-Molière",
     "type":{
       "landmark_type":"nature"
@@ -17935,11 +17690,12 @@
     ],
     "osm_type":"way",
     "osm_id":522542110,
-    "attractiveness":9,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1196":{
+  "1106":{
     "name":"Jardinets de la Place de la Porte d'Auteuil",
     "type":{
       "landmark_type":"nature"
@@ -17950,11 +17706,12 @@
     ],
     "osm_type":"way",
     "osm_id":531407913,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1197":{
+  "1107":{
     "name":"Jardin Saïda",
     "type":{
       "landmark_type":"nature"
@@ -17965,11 +17722,12 @@
     ],
     "osm_type":"way",
     "osm_id":535985024,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1198":{
+  "1108":{
     "name":"Square Marin",
     "type":{
       "landmark_type":"nature"
@@ -17980,11 +17738,12 @@
     ],
     "osm_type":"way",
     "osm_id":574683225,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1199":{
+  "1109":{
     "name":"Square Brancion",
     "type":{
       "landmark_type":"nature"
@@ -17995,11 +17754,12 @@
     ],
     "osm_type":"way",
     "osm_id":576370050,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1200":{
+  "1110":{
     "name":"Square Montholon",
     "type":{
       "landmark_type":"nature"
@@ -18010,11 +17770,12 @@
     ],
     "osm_type":"way",
     "osm_id":579263858,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1201":{
+  "1111":{
     "name":"Square de la Libération",
     "type":{
       "landmark_type":"nature"
@@ -18025,11 +17786,12 @@
     ],
     "osm_type":"way",
     "osm_id":588059322,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1202":{
+  "1112":{
     "name":"Jardin du Père-Armand-David",
     "type":{
       "landmark_type":"nature"
@@ -18040,11 +17802,12 @@
     ],
     "osm_type":"way",
     "osm_id":588324415,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1203":{
+  "1113":{
     "name":"Jardin du Petit Bois",
     "type":{
       "landmark_type":"nature"
@@ -18055,11 +17818,12 @@
     ],
     "osm_type":"way",
     "osm_id":592796821,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1204":{
+  "1114":{
     "name":"Square Croizat",
     "type":{
       "landmark_type":"nature"
@@ -18070,11 +17834,12 @@
     ],
     "osm_type":"way",
     "osm_id":593089857,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1205":{
+  "1115":{
     "name":"Jardin Clara-Zetkin",
     "type":{
       "landmark_type":"nature"
@@ -18085,11 +17850,12 @@
     ],
     "osm_type":"way",
     "osm_id":598852802,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1206":{
+  "1116":{
     "name":"Jardin Louise Talbot et Augustin Avrial",
     "type":{
       "landmark_type":"nature"
@@ -18100,11 +17866,12 @@
     ],
     "osm_type":"way",
     "osm_id":601688775,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1207":{
+  "1117":{
     "name":"Jardin Olympiades",
     "type":{
       "landmark_type":"nature"
@@ -18115,11 +17882,12 @@
     ],
     "osm_type":"way",
     "osm_id":608972570,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1208":{
+  "1118":{
     "name":"Jardin sur le toit",
     "type":{
       "landmark_type":"nature"
@@ -18130,11 +17898,12 @@
     ],
     "osm_type":"way",
     "osm_id":608987054,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1209":{
+  "1119":{
     "name":"Jardin de l'église Sainte-Jeanne-de-Chantal",
     "type":{
       "landmark_type":"nature"
@@ -18145,11 +17914,12 @@
     ],
     "osm_type":"way",
     "osm_id":621317814,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1210":{
+  "1120":{
     "name":"Square Valentine Schlegel",
     "type":{
       "landmark_type":"nature"
@@ -18160,11 +17930,12 @@
     ],
     "osm_type":"way",
     "osm_id":621322870,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1211":{
+  "1121":{
     "name":"Jardinières angle des rues de Tolbiac - Baudricourt",
     "type":{
       "landmark_type":"nature"
@@ -18175,11 +17946,12 @@
     ],
     "osm_type":"way",
     "osm_id":625919254,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1212":{
+  "1122":{
     "name":"Square Henri Dunant",
     "type":{
       "landmark_type":"nature"
@@ -18190,11 +17962,12 @@
     ],
     "osm_type":"way",
     "osm_id":627032284,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1213":{
+  "1123":{
     "name":"Jardin Jules Noël",
     "type":{
       "landmark_type":"nature"
@@ -18205,11 +17978,12 @@
     ],
     "osm_type":"way",
     "osm_id":627607894,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1214":{
+  "1124":{
     "name":"Square La Fontaine",
     "type":{
       "landmark_type":"nature"
@@ -18220,11 +17994,12 @@
     ],
     "osm_type":"way",
     "osm_id":628292444,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1215":{
+  "1125":{
     "name":"Square Georges Bouzerait",
     "type":{
       "landmark_type":"nature"
@@ -18235,11 +18010,12 @@
     ],
     "osm_type":"way",
     "osm_id":628293918,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1216":{
+  "1126":{
     "name":"Square des Oliviers",
     "type":{
       "landmark_type":"nature"
@@ -18250,11 +18026,12 @@
     ],
     "osm_type":"way",
     "osm_id":628295773,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1217":{
+  "1127":{
     "name":"Jardin Villa Leblanc",
     "type":{
       "landmark_type":"nature"
@@ -18265,11 +18042,12 @@
     ],
     "osm_type":"way",
     "osm_id":628299663,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1218":{
+  "1128":{
     "name":"Jardin Descartes",
     "type":{
       "landmark_type":"nature"
@@ -18280,11 +18058,12 @@
     ],
     "osm_type":"way",
     "osm_id":628300514,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1219":{
+  "1129":{
     "name":"Allée des Cygnes",
     "type":{
       "landmark_type":"nature"
@@ -18295,11 +18074,12 @@
     ],
     "osm_type":"way",
     "osm_id":647181807,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1220":{
+  "1130":{
     "name":"Jardin Monica Vitti",
     "type":{
       "landmark_type":"nature"
@@ -18310,11 +18090,12 @@
     ],
     "osm_type":"way",
     "osm_id":680335218,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1221":{
+  "1131":{
     "name":"Jardin Albert-Schweitzer",
     "type":{
       "landmark_type":"nature"
@@ -18325,11 +18106,12 @@
     ],
     "osm_type":"way",
     "osm_id":680895435,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1222":{
+  "1132":{
     "name":"Parc Sainte-Périne",
     "type":{
       "landmark_type":"nature"
@@ -18340,11 +18122,12 @@
     ],
     "osm_type":"way",
     "osm_id":682409543,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1223":{
+  "1133":{
     "name":"Jardin du Ranelagh",
     "type":{
       "landmark_type":"nature"
@@ -18355,11 +18138,12 @@
     ],
     "osm_type":"way",
     "osm_id":683921616,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1224":{
+  "1134":{
     "name":"Jardin d'immeubles Albert-Bartholomé",
     "type":{
       "landmark_type":"nature"
@@ -18370,11 +18154,12 @@
     ],
     "osm_type":"way",
     "osm_id":685820780,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1225":{
+  "1135":{
     "name":"Tir aux Pigeons",
     "type":{
       "landmark_type":"nature"
@@ -18385,11 +18170,12 @@
     ],
     "osm_type":"way",
     "osm_id":697607467,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1226":{
+  "1136":{
     "name":"Résidence Séverine",
     "type":{
       "landmark_type":"nature"
@@ -18400,26 +18186,12 @@
     ],
     "osm_type":"way",
     "osm_id":698719357,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1227":{
-    "name":"Résidence Séverine",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8302899,
-      2.279636
-    ],
-    "osm_type":"way",
-    "osm_id":698719359,
-    "attractiveness":3,
-    "must_do":false,
-    "n_tags":3
-  },
-  "1228":{
+  "1137":{
     "name":"Square des États-Unis",
     "type":{
       "landmark_type":"nature"
@@ -18430,11 +18202,12 @@
     ],
     "osm_type":"way",
     "osm_id":702119197,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1229":{
+  "1138":{
     "name":"Jardin de la vanne",
     "type":{
       "landmark_type":"nature"
@@ -18445,26 +18218,12 @@
     ],
     "osm_type":"way",
     "osm_id":702273972,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1230":{
-    "name":"Jardin Pablo Picasso",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8151137,
-      2.3191249
-    ],
-    "osm_type":"way",
-    "osm_id":705263270,
-    "attractiveness":9,
-    "must_do":false,
-    "n_tags":7
-  },
-  "1231":{
+  "1139":{
     "name":"Square Jean Jaurès",
     "type":{
       "landmark_type":"nature"
@@ -18477,9 +18236,10 @@
     "osm_id":711321200,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1232":{
+  "1140":{
     "name":"Jardin Élisabeth Boselli",
     "type":{
       "landmark_type":"nature"
@@ -18490,11 +18250,12 @@
     ],
     "osm_type":"way",
     "osm_id":711659077,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1233":{
+  "1141":{
     "name":"Parc Émile Zola",
     "type":{
       "landmark_type":"nature"
@@ -18505,11 +18266,12 @@
     ],
     "osm_type":"way",
     "osm_id":714032736,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1234":{
+  "1142":{
     "name":"Jardin de la Cour d'Honneur",
     "type":{
       "landmark_type":"nature"
@@ -18520,11 +18282,12 @@
     ],
     "osm_type":"way",
     "osm_id":714713961,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1235":{
+  "1143":{
     "name":"Jardins du Belvédère",
     "type":{
       "landmark_type":"nature"
@@ -18535,11 +18298,12 @@
     ],
     "osm_type":"way",
     "osm_id":715412828,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1236":{
+  "1144":{
     "name":"Jardin Marie Curie",
     "type":{
       "landmark_type":"nature"
@@ -18550,11 +18314,12 @@
     ],
     "osm_type":"way",
     "osm_id":735133918,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1237":{
+  "1145":{
     "name":"Square Oronce Fine",
     "type":{
       "landmark_type":"nature"
@@ -18565,11 +18330,12 @@
     ],
     "osm_type":"way",
     "osm_id":744830347,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1238":{
+  "1146":{
     "name":"Square Édith Piaf",
     "type":{
       "landmark_type":"nature"
@@ -18580,11 +18346,12 @@
     ],
     "osm_type":"way",
     "osm_id":751922878,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1239":{
+  "1147":{
     "name":"Espace vert de la Reine-Blanche",
     "type":{
       "landmark_type":"nature"
@@ -18595,11 +18362,12 @@
     ],
     "osm_type":"way",
     "osm_id":765745222,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1240":{
+  "1148":{
     "name":"Jardin mémorial des enfants du Vél' d'Hiv'",
     "type":{
       "landmark_type":"nature"
@@ -18610,26 +18378,12 @@
     ],
     "osm_type":"way",
     "osm_id":767547602,
-    "attractiveness":7,
+    "attractiveness":10,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1241":{
-    "name":"Square Georges Sarre",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8650166,
-      2.3814162
-    ],
-    "osm_type":"way",
-    "osm_id":775380734,
-    "attractiveness":3,
-    "must_do":false,
-    "n_tags":3
-  },
-  "1242":{
+  "1149":{
     "name":"Jardin Claude Debussy",
     "type":{
       "landmark_type":"nature"
@@ -18640,11 +18394,12 @@
     ],
     "osm_type":"way",
     "osm_id":776795708,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1243":{
+  "1150":{
     "name":"Promenade du Loing et du Lunain",
     "type":{
       "landmark_type":"nature"
@@ -18655,26 +18410,12 @@
     ],
     "osm_type":"way",
     "osm_id":798763471,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1244":{
-    "name":"Promenade du Loing et du Lunain",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.7914355,
-      2.3302968
-    ],
-    "osm_type":"way",
-    "osm_id":801782178,
-    "attractiveness":2,
-    "must_do":false,
-    "n_tags":2
-  },
-  "1245":{
+  "1151":{
     "name":"Jardin Martha Desrumaux",
     "type":{
       "landmark_type":"nature"
@@ -18685,11 +18426,12 @@
     ],
     "osm_type":"way",
     "osm_id":818166677,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1246":{
+  "1152":{
     "name":"Square Colette",
     "type":{
       "landmark_type":"nature"
@@ -18700,11 +18442,12 @@
     ],
     "osm_type":"way",
     "osm_id":827907580,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1247":{
+  "1153":{
     "name":"Jardin Laure Albin Guillot",
     "type":{
       "landmark_type":"nature"
@@ -18715,11 +18458,12 @@
     ],
     "osm_type":"way",
     "osm_id":832936860,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1248":{
+  "1154":{
     "name":"Square des Périchaux",
     "type":{
       "landmark_type":"nature"
@@ -18730,11 +18474,12 @@
     ],
     "osm_type":"way",
     "osm_id":834674045,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1249":{
+  "1155":{
     "name":"Square Condorcet",
     "type":{
       "landmark_type":"nature"
@@ -18745,11 +18490,12 @@
     ],
     "osm_type":"way",
     "osm_id":879460929,
-    "attractiveness":2,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1250":{
+  "1156":{
     "name":"Jardins du Verger",
     "type":{
       "landmark_type":"nature"
@@ -18760,11 +18506,12 @@
     ],
     "osm_type":"way",
     "osm_id":882821716,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1251":{
+  "1157":{
     "name":"Square Emmanuel Chabrier",
     "type":{
       "landmark_type":"nature"
@@ -18775,11 +18522,12 @@
     ],
     "osm_type":"way",
     "osm_id":882821720,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1252":{
+  "1158":{
     "name":"Parc Laboissière",
     "type":{
       "landmark_type":"nature"
@@ -18792,9 +18540,10 @@
     "osm_id":927072924,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1253":{
+  "1159":{
     "name":"Jardin du Père Teilhard de Chardin",
     "type":{
       "landmark_type":"nature"
@@ -18805,11 +18554,12 @@
     ],
     "osm_type":"way",
     "osm_id":953865485,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1254":{
+  "1160":{
     "name":"Jardin de Penamacor",
     "type":{
       "landmark_type":"nature"
@@ -18820,11 +18570,12 @@
     ],
     "osm_type":"way",
     "osm_id":961014838,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1255":{
+  "1161":{
     "name":"Promenade Jean-Jacques Sempé",
     "type":{
       "landmark_type":"nature"
@@ -18835,11 +18586,12 @@
     ],
     "osm_type":"way",
     "osm_id":968787390,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1256":{
+  "1162":{
     "name":"Jardin Berthe Weill",
     "type":{
       "landmark_type":"nature"
@@ -18850,11 +18602,12 @@
     ],
     "osm_type":"way",
     "osm_id":989739069,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1257":{
+  "1163":{
     "name":"Square des Justes Parmi les Nations",
     "type":{
       "landmark_type":"nature"
@@ -18865,11 +18618,12 @@
     ],
     "osm_type":"way",
     "osm_id":993037718,
-    "attractiveness":3,
+    "attractiveness":4,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1258":{
+  "1164":{
     "name":"Jardin Marielle Franco",
     "type":{
       "landmark_type":"nature"
@@ -18880,11 +18634,12 @@
     ],
     "osm_type":"way",
     "osm_id":993045874,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1259":{
+  "1165":{
     "name":"Jardin d'Isoré",
     "type":{
       "landmark_type":"nature"
@@ -18895,11 +18650,12 @@
     ],
     "osm_type":"way",
     "osm_id":993514293,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1260":{
+  "1166":{
     "name":"Parc Gabriel Cosson",
     "type":{
       "landmark_type":"nature"
@@ -18912,9 +18668,10 @@
     "osm_id":1022614650,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1261":{
+  "1167":{
     "name":"Square Bessin",
     "type":{
       "landmark_type":"nature"
@@ -18925,11 +18682,12 @@
     ],
     "osm_type":"way",
     "osm_id":1041624552,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1262":{
+  "1168":{
     "name":"Parcop",
     "type":{
       "landmark_type":"nature"
@@ -18940,11 +18698,12 @@
     ],
     "osm_type":"way",
     "osm_id":1051801801,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1263":{
+  "1169":{
     "name":"Jardin de l'Hôtel de Sens",
     "type":{
       "landmark_type":"nature"
@@ -18955,11 +18714,12 @@
     ],
     "osm_type":"way",
     "osm_id":1076267490,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1264":{
+  "1170":{
     "name":"Square du Chanoine Viollet",
     "type":{
       "landmark_type":"nature"
@@ -18970,11 +18730,12 @@
     ],
     "osm_type":"way",
     "osm_id":1093016344,
-    "attractiveness":10,
+    "attractiveness":14,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1265":{
+  "1171":{
     "name":"Jardin Du Grand-Pavois",
     "type":{
       "landmark_type":"nature"
@@ -18985,11 +18746,12 @@
     ],
     "osm_type":"way",
     "osm_id":1100805212,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1266":{
+  "1172":{
     "name":"Jardin Vivienne",
     "type":{
       "landmark_type":"nature"
@@ -19000,11 +18762,12 @@
     ],
     "osm_type":"way",
     "osm_id":1115078024,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1267":{
+  "1173":{
     "name":"Jardin du Docteur H. Damlamian",
     "type":{
       "landmark_type":"nature"
@@ -19015,11 +18778,12 @@
     ],
     "osm_type":"way",
     "osm_id":1136152534,
-    "attractiveness":3,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1268":{
+  "1174":{
     "name":"Square Jules-Durand",
     "type":{
       "landmark_type":"nature"
@@ -19030,11 +18794,12 @@
     ],
     "osm_type":"way",
     "osm_id":1170413363,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1269":{
+  "1175":{
     "name":"Place José Martí",
     "type":{
       "landmark_type":"nature"
@@ -19045,11 +18810,12 @@
     ],
     "osm_type":"way",
     "osm_id":1184939377,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1270":{
+  "1176":{
     "name":"Square Dominique Dimey",
     "type":{
       "landmark_type":"nature"
@@ -19060,26 +18826,12 @@
     ],
     "osm_type":"way",
     "osm_id":1193426056,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1271":{
-    "name":"Square du 19 Mars 1962",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.7934866,
-      2.2905348
-    ],
-    "osm_type":"way",
-    "osm_id":1198145588,
-    "attractiveness":2,
-    "must_do":false,
-    "n_tags":2
-  },
-  "1272":{
+  "1177":{
     "name":"Square Léon Zack",
     "type":{
       "landmark_type":"nature"
@@ -19090,11 +18842,12 @@
     ],
     "osm_type":"way",
     "osm_id":1202405145,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1273":{
+  "1178":{
     "name":"Square Santos Dumont",
     "type":{
       "landmark_type":"nature"
@@ -19105,26 +18858,12 @@
     ],
     "osm_type":"way",
     "osm_id":1282408164,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1274":{
-    "name":"Place des Vosges",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8556164,
-      2.3655435
-    ],
-    "osm_type":"relation",
-    "osm_id":571765,
-    "attractiveness":18,
-    "must_do":false,
-    "n_tags":18
-  },
-  "1275":{
+  "1179":{
     "name":"Place Igor Stravinsky",
     "type":{
       "landmark_type":"nature"
@@ -19135,11 +18874,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1308199,
-    "attractiveness":13,
+    "attractiveness":19,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "1276":{
+  "1180":{
     "name":"Square Roger-Coquoin",
     "type":{
       "landmark_type":"nature"
@@ -19150,11 +18890,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1309285,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1277":{
+  "1181":{
     "name":"Jardin de la Porte de Saint-Cloud",
     "type":{
       "landmark_type":"nature"
@@ -19165,11 +18906,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1310210,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1278":{
+  "1182":{
     "name":"Square de l'Abbé Migne",
     "type":{
       "landmark_type":"nature"
@@ -19180,11 +18922,12 @@
     ],
     "osm_type":"relation",
     "osm_id":1858698,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1279":{
+  "1183":{
     "name":"Square Henri Galli",
     "type":{
       "landmark_type":"nature"
@@ -19195,11 +18938,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2080074,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1280":{
+  "1184":{
     "name":"Square des Alliés",
     "type":{
       "landmark_type":"nature"
@@ -19210,11 +18954,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2081003,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":3
+    "n_tags":3,
+    "time_to_reach":0
   },
-  "1281":{
+  "1185":{
     "name":"Square de l’église Notre-Dame-de-la-Croix",
     "type":{
       "landmark_type":"nature"
@@ -19225,11 +18970,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2100826,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1282":{
+  "1186":{
     "name":"Coulée verte du sud parisien",
     "type":{
       "landmark_type":"nature"
@@ -19240,11 +18986,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2646085,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1283":{
+  "1187":{
     "name":"Parc Monceau",
     "type":{
       "landmark_type":"nature"
@@ -19255,11 +19002,12 @@
     ],
     "osm_type":"relation",
     "osm_id":2826933,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1284":{
+  "1188":{
     "name":"Square Henri-Rousselle",
     "type":{
       "landmark_type":"nature"
@@ -19270,11 +19018,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3372098,
-    "attractiveness":5,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1285":{
+  "1189":{
     "name":"Square Paul Grimault",
     "type":{
       "landmark_type":"nature"
@@ -19285,26 +19034,12 @@
     ],
     "osm_type":"relation",
     "osm_id":3396566,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1286":{
-    "name":"Parc Montsouris",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8222357,
-      2.3380114
-    ],
-    "osm_type":"relation",
-    "osm_id":4050160,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":11
-  },
-  "1287":{
+  "1190":{
     "name":"Square Saint-Lambert",
     "type":{
       "landmark_type":"nature"
@@ -19315,11 +19050,12 @@
     ],
     "osm_type":"relation",
     "osm_id":5292509,
-    "attractiveness":17,
+    "attractiveness":25,
     "must_do":false,
-    "n_tags":17
+    "n_tags":17,
+    "time_to_reach":0
   },
-  "1288":{
+  "1191":{
     "name":"Parc départemental des Cormailles",
     "type":{
       "landmark_type":"nature"
@@ -19330,26 +19066,12 @@
     ],
     "osm_type":"relation",
     "osm_id":5676653,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1289":{
-    "name":"Square des Arènes de Lutèce et Capitan",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8450847,
-      2.3534295
-    ],
-    "osm_type":"relation",
-    "osm_id":6087528,
-    "attractiveness":13,
-    "must_do":false,
-    "n_tags":11
-  },
-  "1290":{
+  "1192":{
     "name":"Le Pré Catelan",
     "type":{
       "landmark_type":"nature"
@@ -19360,11 +19082,12 @@
     ],
     "osm_type":"relation",
     "osm_id":6702068,
-    "attractiveness":6,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1291":{
+  "1193":{
     "name":"Jardins de l'Avenue Foch",
     "type":{
       "landmark_type":"nature"
@@ -19375,11 +19098,12 @@
     ],
     "osm_type":"relation",
     "osm_id":6750084,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1292":{
+  "1194":{
     "name":"Square Boucicaut",
     "type":{
       "landmark_type":"nature"
@@ -19390,11 +19114,12 @@
     ],
     "osm_type":"relation",
     "osm_id":6901878,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1293":{
+  "1195":{
     "name":"Parc du Lycée Michelet",
     "type":{
       "landmark_type":"nature"
@@ -19405,11 +19130,12 @@
     ],
     "osm_type":"relation",
     "osm_id":7615434,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1294":{
+  "1196":{
     "name":"Jardin José-Aboulker",
     "type":{
       "landmark_type":"nature"
@@ -19420,11 +19146,12 @@
     ],
     "osm_type":"relation",
     "osm_id":8250457,
-    "attractiveness":5,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1295":{
+  "1197":{
     "name":"Parc Raspail",
     "type":{
       "landmark_type":"nature"
@@ -19435,26 +19162,12 @@
     ],
     "osm_type":"relation",
     "osm_id":8433635,
-    "attractiveness":8,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1296":{
-    "name":"Jardin de l'église Sainte-Jeanne-de-Chantal",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8385675,
-      2.2559481
-    ],
-    "osm_type":"relation",
-    "osm_id":8623576,
-    "attractiveness":4,
-    "must_do":false,
-    "n_tags":3
-  },
-  "1297":{
+  "1198":{
     "name":"Square Maurice Arnoux",
     "type":{
       "landmark_type":"nature"
@@ -19465,11 +19178,12 @@
     ],
     "osm_type":"relation",
     "osm_id":8743141,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1298":{
+  "1199":{
     "name":"Square de l'Hôtel de ville",
     "type":{
       "landmark_type":"nature"
@@ -19480,11 +19194,12 @@
     ],
     "osm_type":"relation",
     "osm_id":9792499,
-    "attractiveness":9,
+    "attractiveness":13,
     "must_do":false,
-    "n_tags":9
+    "n_tags":9,
+    "time_to_reach":0
   },
-  "1299":{
+  "1200":{
     "name":"Square Edmond Champeaud",
     "type":{
       "landmark_type":"nature"
@@ -19495,11 +19210,12 @@
     ],
     "osm_type":"relation",
     "osm_id":9807510,
-    "attractiveness":7,
+    "attractiveness":11,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1300":{
+  "1201":{
     "name":"Parc Messier",
     "type":{
       "landmark_type":"nature"
@@ -19510,26 +19226,12 @@
     ],
     "osm_type":"relation",
     "osm_id":9898593,
-    "attractiveness":11,
+    "attractiveness":16,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1301":{
-    "name":"Jardins des Champs-Élysées",
-    "type":{
-      "landmark_type":"nature"
-    },
-    "location":[
-      48.8661752,
-      2.3132237
-    ],
-    "osm_type":"relation",
-    "osm_id":10142349,
-    "attractiveness":6,
-    "must_do":false,
-    "n_tags":6
-  },
-  "1302":{
+  "1202":{
     "name":"Promenade Jane et Paulette Nardal",
     "type":{
       "landmark_type":"nature"
@@ -19540,11 +19242,12 @@
     ],
     "osm_type":"relation",
     "osm_id":13048395,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1303":{
+  "1203":{
     "name":"Parc de Bicêtre",
     "type":{
       "landmark_type":"nature"
@@ -19555,11 +19258,12 @@
     ],
     "osm_type":"relation",
     "osm_id":13369912,
-    "attractiveness":4,
+    "attractiveness":6,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1304":{
+  "1204":{
     "name":"Jardins du Trocadéro",
     "type":{
       "landmark_type":"nature"
@@ -19570,11 +19274,12 @@
     ],
     "osm_type":"relation",
     "osm_id":13716106,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1305":{
+  "1205":{
     "name":"Parc Tereska Torrès-Levin",
     "type":{
       "landmark_type":"nature"
@@ -19585,11 +19290,12 @@
     ],
     "osm_type":"relation",
     "osm_id":15676372,
-    "attractiveness":4,
+    "attractiveness":5,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1306":{
+  "1206":{
     "name":"Jardin Arnaud Beltrame",
     "type":{
       "landmark_type":"nature"
@@ -19600,11 +19306,12 @@
     ],
     "osm_type":"relation",
     "osm_id":15970959,
-    "attractiveness":6,
+    "attractiveness":9,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1307":{
+  "1207":{
     "name":"Bois de Boulogne",
     "type":{
       "landmark_type":"nature"
@@ -19615,11 +19322,12 @@
     ],
     "osm_type":"relation",
     "osm_id":16731685,
-    "attractiveness":10,
+    "attractiveness":15,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1308":{
+  "1208":{
     "name":"Square Alexandre et René-Parodi",
     "type":{
       "landmark_type":"nature"
@@ -19630,11 +19338,12 @@
     ],
     "osm_type":"relation",
     "osm_id":17541388,
-    "attractiveness":8,
+    "attractiveness":12,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1309":{
+  "1209":{
     "name":"La Terasse des Galeries Lafayette",
     "type":{
       "landmark_type":"nature"
@@ -19647,9 +19356,10 @@
     "osm_id":339023638,
     "attractiveness":6,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1310":{
+  "1210":{
     "name":"Kiosque de l'Empereur",
     "type":{
       "landmark_type":"nature"
@@ -19662,9 +19372,10 @@
     "osm_id":452439840,
     "attractiveness":5,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1311":{
+  "1211":{
     "name":"Tour Eiffel 3e étage",
     "type":{
       "landmark_type":"nature"
@@ -19677,9 +19388,10 @@
     "osm_id":4114841,
     "attractiveness":15,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "1312":{
+  "1212":{
     "name":"Tour Eiffel 2e étage",
     "type":{
       "landmark_type":"nature"
@@ -19692,9 +19404,10 @@
     "osm_id":4114842,
     "attractiveness":12,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1313":{
+  "1213":{
     "name":"Ménagerie du Jardin des Plantes",
     "type":{
       "landmark_type":"nature"
@@ -19707,9 +19420,10 @@
     "osm_id":21999647,
     "attractiveness":15,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "1314":{
+  "1214":{
     "name":"Le BHV Marais",
     "type":{
       "landmark_type":"shopping"
@@ -19722,9 +19436,10 @@
     "osm_id":29168869,
     "attractiveness":16,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "1315":{
+  "1215":{
     "name":"Galerie Lafayette Maison \/ Gourmet",
     "type":{
       "landmark_type":"shopping"
@@ -19737,9 +19452,10 @@
     "osm_id":69224027,
     "attractiveness":7,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1316":{
+  "1216":{
     "name":"Galeries Lafayette Paris Haussmann",
     "type":{
       "landmark_type":"shopping"
@@ -19752,9 +19468,10 @@
     "osm_id":69224062,
     "attractiveness":29,
     "must_do":false,
-    "n_tags":29
+    "n_tags":29,
+    "time_to_reach":0
   },
-  "1317":{
+  "1217":{
     "name":"Printemps",
     "type":{
       "landmark_type":"shopping"
@@ -19767,9 +19484,10 @@
     "osm_id":69224137,
     "attractiveness":20,
     "must_do":false,
-    "n_tags":20
+    "n_tags":20,
+    "time_to_reach":0
   },
-  "1318":{
+  "1218":{
     "name":"Galeries Lafayette",
     "type":{
       "landmark_type":"shopping"
@@ -19782,24 +19500,10 @@
     "osm_id":69224141,
     "attractiveness":11,
     "must_do":false,
-    "n_tags":11
+    "n_tags":11,
+    "time_to_reach":0
   },
-  "1319":{
-    "name":"Galerie Lafayette Maison \/ Gourmet",
-    "type":{
-      "landmark_type":"shopping"
-    },
-    "location":[
-      48.8731249,
-      2.329877
-    ],
-    "osm_type":"way",
-    "osm_id":69226440,
-    "attractiveness":6,
-    "must_do":false,
-    "n_tags":6
-  },
-  "1320":{
+  "1219":{
     "name":"Printemps Homme",
     "type":{
       "landmark_type":"shopping"
@@ -19812,39 +19516,10 @@
     "osm_id":69226605,
     "attractiveness":16,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "1321":{
-    "name":"Galerie Lafayette Maison \/ Gourmet",
-    "type":{
-      "landmark_type":"shopping"
-    },
-    "location":[
-      48.8730553,
-      2.3304472
-    ],
-    "osm_type":"way",
-    "osm_id":69226660,
-    "attractiveness":7,
-    "must_do":false,
-    "n_tags":7
-  },
-  "1322":{
-    "name":"Printemps",
-    "type":{
-      "landmark_type":"shopping"
-    },
-    "location":[
-      48.8743348,
-      2.32766
-    ],
-    "osm_type":"way",
-    "osm_id":69226711,
-    "attractiveness":10,
-    "must_do":false,
-    "n_tags":10
-  },
-  "1323":{
+  "1220":{
     "name":"HEMA",
     "type":{
       "landmark_type":"shopping"
@@ -19857,24 +19532,10 @@
     "osm_id":333491865,
     "attractiveness":17,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   },
-  "1324":{
-    "name":"Printemps",
-    "type":{
-      "landmark_type":"shopping"
-    },
-    "location":[
-      48.8740054,
-      2.3283557
-    ],
-    "osm_type":"relation",
-    "osm_id":2323870,
-    "attractiveness":11,
-    "must_do":false,
-    "n_tags":11
-  },
-  "1325":{
+  "1221":{
     "name":"Le Bon Marché",
     "type":{
       "landmark_type":"shopping"
@@ -19887,9 +19548,10 @@
     "osm_id":10166422,
     "attractiveness":16,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "1326":{
+  "1222":{
     "name":"Maine Montparnasse",
     "type":{
       "landmark_type":"shopping"
@@ -19902,9 +19564,10 @@
     "osm_id":23936267,
     "attractiveness":5,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1327":{
+  "1223":{
     "name":"Beaugrenelle - Magnetic",
     "type":{
       "landmark_type":"shopping"
@@ -19917,9 +19580,10 @@
     "osm_id":53396302,
     "attractiveness":24,
     "must_do":false,
-    "n_tags":24
+    "n_tags":24,
+    "time_to_reach":0
   },
-  "1328":{
+  "1224":{
     "name":"Beaugrenelle",
     "type":{
       "landmark_type":"shopping"
@@ -19932,9 +19596,10 @@
     "osm_id":53396317,
     "attractiveness":19,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "1329":{
+  "1225":{
     "name":"Marché Saint-Honoré",
     "type":{
       "landmark_type":"shopping"
@@ -19947,9 +19612,10 @@
     "osm_id":54155008,
     "attractiveness":7,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1330":{
+  "1226":{
     "name":"Passage du Grand-Cerf",
     "type":{
       "landmark_type":"shopping"
@@ -19960,11 +19626,12 @@
     ],
     "osm_type":"way",
     "osm_id":54970437,
-    "attractiveness":7,
+    "attractiveness":8,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1331":{
+  "1227":{
     "name":"Centre Commercial Forum 20",
     "type":{
       "landmark_type":"shopping"
@@ -19977,9 +19644,10 @@
     "osm_id":62031372,
     "attractiveness":4,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1332":{
+  "1228":{
     "name":"Centre commercial de la Vache Noire",
     "type":{
       "landmark_type":"shopping"
@@ -19992,9 +19660,10 @@
     "osm_id":62643138,
     "attractiveness":16,
     "must_do":false,
-    "n_tags":16
+    "n_tags":16,
+    "time_to_reach":0
   },
-  "1333":{
+  "1229":{
     "name":"Centre commercial Italie 2",
     "type":{
       "landmark_type":"shopping"
@@ -20005,26 +19674,12 @@
     ],
     "osm_type":"way",
     "osm_id":78470246,
-    "attractiveness":12,
-    "must_do":false,
-    "n_tags":12
-  },
-  "1334":{
-    "name":"Centre commercial Italie 2",
-    "type":{
-      "landmark_type":"shopping"
-    },
-    "location":[
-      48.8302181,
-      2.3552199
-    ],
-    "osm_type":"way",
-    "osm_id":78470870,
     "attractiveness":19,
     "must_do":false,
-    "n_tags":19
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "1335":{
+  "1230":{
     "name":"Centre Commercial des Belles Feuilles",
     "type":{
       "landmark_type":"shopping"
@@ -20037,9 +19692,10 @@
     "osm_id":80858428,
     "attractiveness":7,
     "must_do":false,
-    "n_tags":7
+    "n_tags":7,
+    "time_to_reach":0
   },
-  "1336":{
+  "1231":{
     "name":"Passy Plaza",
     "type":{
       "landmark_type":"shopping"
@@ -20052,9 +19708,10 @@
     "osm_id":83830970,
     "attractiveness":15,
     "must_do":false,
-    "n_tags":15
+    "n_tags":15,
+    "time_to_reach":0
   },
-  "1337":{
+  "1232":{
     "name":"Forum les Halles",
     "type":{
       "landmark_type":"shopping"
@@ -20067,9 +19724,10 @@
     "osm_id":140901366,
     "attractiveness":14,
     "must_do":false,
-    "n_tags":13
+    "n_tags":13,
+    "time_to_reach":0
   },
-  "1338":{
+  "1233":{
     "name":"Centre commercial Okabé",
     "type":{
       "landmark_type":"shopping"
@@ -20082,9 +19740,10 @@
     "osm_id":153989918,
     "attractiveness":12,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "1339":{
+  "1234":{
     "name":"Via Bella",
     "type":{
       "landmark_type":"shopping"
@@ -20097,9 +19756,10 @@
     "osm_id":211478471,
     "attractiveness":4,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1340":{
+  "1235":{
     "name":"Arcade des Champs-Élysées",
     "type":{
       "landmark_type":"shopping"
@@ -20112,9 +19772,10 @@
     "osm_id":262677086,
     "attractiveness":12,
     "must_do":false,
-    "n_tags":12
+    "n_tags":12,
+    "time_to_reach":0
   },
-  "1341":{
+  "1236":{
     "name":"La Galerie Masséna",
     "type":{
       "landmark_type":"shopping"
@@ -20127,9 +19788,10 @@
     "osm_id":332367227,
     "attractiveness":6,
     "must_do":false,
-    "n_tags":6
+    "n_tags":6,
+    "time_to_reach":0
   },
-  "1342":{
+  "1237":{
     "name":"Galerie Berri Washington",
     "type":{
       "landmark_type":"shopping"
@@ -20142,9 +19804,10 @@
     "osm_id":370045917,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1343":{
+  "1238":{
     "name":"Galerie des Champs",
     "type":{
       "landmark_type":"shopping"
@@ -20157,9 +19820,10 @@
     "osm_id":372826821,
     "attractiveness":2,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1344":{
+  "1239":{
     "name":"Galerie du Claridge",
     "type":{
       "landmark_type":"shopping"
@@ -20170,11 +19834,12 @@
     ],
     "osm_type":"way",
     "osm_id":373232615,
-    "attractiveness":2,
+    "attractiveness":3,
     "must_do":false,
-    "n_tags":2
+    "n_tags":2,
+    "time_to_reach":0
   },
-  "1345":{
+  "1240":{
     "name":"Westfield Forum des Halles",
     "type":{
       "landmark_type":"shopping"
@@ -20187,9 +19852,10 @@
     "osm_id":408380251,
     "attractiveness":21,
     "must_do":false,
-    "n_tags":19
+    "n_tags":19,
+    "time_to_reach":0
   },
-  "1346":{
+  "1241":{
     "name":"Galerie Oslo",
     "type":{
       "landmark_type":"shopping"
@@ -20202,9 +19868,10 @@
     "osm_id":625919256,
     "attractiveness":5,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1347":{
+  "1242":{
     "name":"Les Ateliers Gaîté",
     "type":{
       "landmark_type":"shopping"
@@ -20217,9 +19884,10 @@
     "osm_id":865091400,
     "attractiveness":8,
     "must_do":false,
-    "n_tags":8
+    "n_tags":8,
+    "time_to_reach":0
   },
-  "1348":{
+  "1243":{
     "name":"Passage du Havre",
     "type":{
       "landmark_type":"shopping"
@@ -20230,11 +19898,12 @@
     ],
     "osm_type":"way",
     "osm_id":1004744975,
-    "attractiveness":6,
+    "attractiveness":7,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1349":{
+  "1244":{
     "name":"Le Village Royal",
     "type":{
       "landmark_type":"shopping"
@@ -20247,9 +19916,10 @@
     "osm_id":1094130100,
     "attractiveness":4,
     "must_do":false,
-    "n_tags":4
+    "n_tags":4,
+    "time_to_reach":0
   },
-  "1350":{
+  "1245":{
     "name":"Centre Commercial Jean Mermoz",
     "type":{
       "landmark_type":"shopping"
@@ -20262,9 +19932,10 @@
     "osm_id":1299971,
     "attractiveness":5,
     "must_do":false,
-    "n_tags":5
+    "n_tags":5,
+    "time_to_reach":0
   },
-  "1351":{
+  "1246":{
     "name":"Marché Saint-Germain",
     "type":{
       "landmark_type":"shopping"
@@ -20277,9 +19948,10 @@
     "osm_id":3038399,
     "attractiveness":10,
     "must_do":false,
-    "n_tags":10
+    "n_tags":10,
+    "time_to_reach":0
   },
-  "1352":{
+  "1247":{
     "name":"Carrousel du Louvre",
     "type":{
       "landmark_type":"shopping"
@@ -20292,6 +19964,7 @@
     "osm_id":13452556,
     "attractiveness":14,
     "must_do":false,
-    "n_tags":14
+    "n_tags":14,
+    "time_to_reach":0
   }
 }
\ No newline at end of file