nodedb-spatial 0.2.1

Spatial indexing and query operations shared between NodeDB Origin and NodeDB-Lite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0

pub mod bulk_load;
pub mod delete;
pub mod insert;
pub mod node;
pub mod search;
pub mod split;
pub mod tree;

pub use node::{EntryId, RTreeEntry};
pub use search::NnResult;
pub use tree::RTree;