nearest_points profile parameter
This commit is contained in:
parent
74ae123f31
commit
18ef5346a1
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Add table
Reference in a new issue