rbush
rbush copied to clipboard
RBush — a high-performance JavaScript R-tree-based 2D spatial index for points and rectangles
Bumps [terser](https://github.com/terser/terser) from 4.6.7 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) v4.8.0 Support for numeric separators (million...
Hi, We have your rtree code working well and wanted to use the simple extension for points in the docs. We can create the point tree (or we think we...
Hi @mourner, thank you for the great lib! I'm faced with the issue of using it with VITE (yet another js bundler) which is using *next* version of rollup behind...
This is a question about the proper way to handle an object that is moving around in an r-bush. Would one remove the object and add it every time it...
Currently `package.json` specifies `index.js` as the `module`; `index.js` includes ES6 features that require transpiling to ES5 to support older environments. The new `rbush.esm.js` includes `import`/ `export` statements but all other...
Hello, I really like this project and it helped me a lot for my Advanced Data Structures course at university :) so thank you for making it! Anyway, I used...
Thank you for the great library ! I am using it in https://github.com/Displayr/rhtmlLabeledScatter which is a scatter / bubble plot library I have inherited and am heavily recfactoring. rbush has...
``` tree.remove({ id: '1234' }, (a, b) => { console.log(a, b); return a.id === b.id; }); ``` I know the callback is never called because I never see the log...
Currently, the bulk loading algorithm partitions each node into approximately `sqrt(N) x sqrt(N)` child nodes. This becomes a problem if a node is not a perfect square — child nodes...
I was reading [this blog post](http://lin-ear-th-inking.blogspot.com/2019/03/fast-geometry-distance-in-jts.html) from the author of JTS about searching across two of their `STRtree` indices to assist with distance between geometries calculations. So I'm hypothesising out...