increased max_iter and park support

This commit is contained in:
kscheidecker 2025-02-19 11:11:23 +01:00
parent 2bf38119d6
commit 8c3145dfc9
2 changed files with 5 additions and 1 deletions

View File

@ -6,4 +6,4 @@ max_landmarks_refiner: 20
overshoot: 0.0016
time_limit: 1
gap_rel: 0.025
max_iter: 40
max_iter: 80

View File

@ -352,6 +352,7 @@ class LandmarkManager:
amenity = data.get('amenity', None)
building = data.get('building', None)
historic = data.get('historic', None)
leisure = data.get('leisure')
if historic and historic != "yes":
return historic
@ -359,6 +360,9 @@ class LandmarkManager:
return building
if amenity:
return amenity
if leisure:
return leisure
return None