following problem: I've got an Array with thousands of entries (people with id and geolocation (lat,long)). The aim is to connect each person with another person within a given radius (e.g. 20km). I'm looking for an efficient way to do so. I've already tried Geohashes but since every entry of the array needs to be compared with every other entry, the execution time is horrible when scaling. I would appreciate any great hint! Thanks a lot. I'm using a NodeJS server for the matching algorithm.
Looking for an JavaScript algorithm to match 2 persons within a given radius
269 Views Asked by sebsebli At
2
There are 2 best solutions below
0

I can think of several improvements here:
- If you calculate a distance from Ai point to Aj point then you already have a distance from Aj to Ai. It means you have
N*(N-1)/2
comparisons instead ofN*(N-1)
. - Because you have a constant radius You can take
radius * radius
(i.eradius^2
) and not to use a square root to compare a calculated distance with a given radius - If all calculations are synchronous you should use something like
worker threads
because Node.Js is single-threaded by design.
Maybe you can take a glance at JSTS
package because it may save you some time with geospatial calculations.
Another approach is to load all data into DB with a geospatial support, add needed geospatial indexes and use specialized geospatial functions of this DB to calculate a distance and group people by it
I don't understand why you need to compare the geohash of every entry with every other entry?
Start with an empty Map where each key is a geohash and each value is a Set of ids. For each entry, compute the geohash and add the entry id to the related Set. Now for each entry you can pick any other id from the set, if there is no other you'll need to decrease the precision. (Implementation will be bit different if an entry cannot be matched with multiple others.)