nearest_points profile parameter

This commit is contained in:
Ilya Zverev 2018-05-26 10:53:33 +03:00
parent 74ae123f31
commit 18ef5346a1
2 changed files with 2 additions and 1 deletions

View file

@ -8,6 +8,7 @@
* New argument `--alt-overpass` to use Kumi Systems' server (since the main one is blocked in Russia).
* Better handling of server runtime errors.
* Find matches in OSM with `--list <result.csv>`.
* Control number of nearest points to check for matches with `nearest_points` profile parameter.
## 1.3.3

View file

@ -863,7 +863,7 @@ class OsmConflator:
the average case complexity is ~O(n*log^2 n), this is fine.
"""
def search_nn_fix(kd, point):
nearest = kd.search_knn(point, 10)
nearest = kd.search_knn(point, self.profile.get('nearest_points', 10))
if not nearest:
return None, None
match_func = self.profile.get_raw('matches')