rbush-knn icon indicating copy to clipboard operation
rbush-knn copied to clipboard

k-nearest neighbors search (KNN) for RBush

Results 2 rbush-knn issues
Sort by recently updated
recently updated
newest added

Hi, right now I am using it directly over github, is it possible to release the new version to npm (and possibly also add a typing file or what its...

From the code below (taken from lines 39-53 of index.js), spherical coordinates may yield funky results. ```javascript function compareDist(a, b) { return a.dist - b.dist; } function boxDist(x, y, box)...

enhancement