Crates.io | rs-kdbush |
lib.rs | rs-kdbush |
version | 0.2.0 |
source | src |
created_at | 2023-04-19 07:26:13.85002 |
updated_at | 2023-04-19 07:26:13.85002 |
description | A very fast static spatial index for 2D points based on a flat KD-tree. |
homepage | https://github.com/iwindx/rust-kdbush |
repository | https://github.com/iwindx/rust-kdbush |
max_upload_size | |
id | 843269 |
size | 16,512 |
A Rust port of kdbush, a very fast static spatial index for 2D points based on a flat KD-tree.
Introduction: A dive into spatial search algorithms
Comparison of point and box spatial index libraries.
let points = vec![(54.0, 1.0), (97.0, 21.0), (65.0, 35.0)];
let index = KDBush::create(points, kdbush::DEFAULT_NODE_SIZE); // make an index
index.range(20.0, 30.0, 50.0, 70.0, |id| print!("{} ", id)); // bbox search - minX, minY, maxX, maxY
index.within(50.0, 50.0, 20.0, |id| print!("{} ", id)); // radius search - x, y, radius