rosewood 0.6.2

A file-based RTree for geospatial data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// lib.rs
//
// Copyright (c) 2021-2022  Douglas P Lau
//
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]
#![forbid(unsafe_code)]

pub mod gis;
mod node;
mod reader;
mod writer;

pub use reader::RTree;
pub use writer::BulkWriter;