Multilateration using combinations of KNN #126
Labels
accuracy enhancement
Improves positioning accuracy
core lib
Core Library
location estimation
Affects location estimation (i.e. multilateration)
Milestone
The current implementation uses the available beacons, sorts them by distance, removes far away beacons if there are more than
MAXIMUM_BEACON_COUNT
and passes them toMultilateration
.I think we could use all combinations of the
k
nearest beacons, pass them toMultilateration
and then merge the results.Merging could be done be weighting each result based on the distance sum of the used beacons. The results from closer beacons should obviously be weighted more that the ones from beacons that are far away.
We could iteratively adjust
k
fromMINIMUM_BEACON_COUNT
(3) up toMAXIMUM_BEACON_COUNT
(currently 10) to find the best results.The text was updated successfully, but these errors were encountered: