Solid k-d tree implementation in javascript? [closed]

点点圈 提交于 2019-12-03 08:54:35

Here is another pretty good implementation that might prove useful (disclaimer - I am the author):

https://github.com/ubilabs/kd-tree-javascript

Here is a library that I wrote:

In Chrome, it is up to several orders of magnitude faster than Ubilabs' kdtree and supports a larger set of queries (orthogonal range query and bounding sphere). Here is a link to the benchmark results for the latest version of Google Chrome.

It uses CommonJS/npm, but works great with browserify.

Late answer but this is a good one https://github.com/dbotha/Javascript-k-d-tree (disclaimer - I know the author)

This R-Tree implementation looks pretty good.

RBush is another javascript R-Tree implementation.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!