increased max_iter and park support
This commit is contained in:
parent
2bf38119d6
commit
8c3145dfc9
@ -6,4 +6,4 @@ max_landmarks_refiner: 20
|
|||||||
overshoot: 0.0016
|
overshoot: 0.0016
|
||||||
time_limit: 1
|
time_limit: 1
|
||||||
gap_rel: 0.025
|
gap_rel: 0.025
|
||||||
max_iter: 40
|
max_iter: 80
|
@ -352,6 +352,7 @@ class LandmarkManager:
|
|||||||
amenity = data.get('amenity', None)
|
amenity = data.get('amenity', None)
|
||||||
building = data.get('building', None)
|
building = data.get('building', None)
|
||||||
historic = data.get('historic', None)
|
historic = data.get('historic', None)
|
||||||
|
leisure = data.get('leisure')
|
||||||
|
|
||||||
if historic and historic != "yes":
|
if historic and historic != "yes":
|
||||||
return historic
|
return historic
|
||||||
@ -359,6 +360,9 @@ class LandmarkManager:
|
|||||||
return building
|
return building
|
||||||
if amenity:
|
if amenity:
|
||||||
return amenity
|
return amenity
|
||||||
|
if leisure:
|
||||||
|
return leisure
|
||||||
|
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user