use eyros::{Row,Coord}; use rand::random; use async_std::prelude::*; type P = (Coord,Coord,Coord); type V = u64; type E = Box; #[async_std::main] async fn main() -> Result<(),E> { let mut db = eyros::open_from_path3( &std::path::PathBuf::from("/tmp/eyros.db") ).await?; let batch: Vec> = (0..5_000).map(|i| { let xmin = (random::()*2.0-1.0)*180.0; let xmax = xmin + random::().powf(16.0)*(180.0-xmin); let ymin = (random::()*2.0-1.0)*90.0; let ymax = ymin + random::().powf(16.0)*(90.0-ymin); let z = random::(); let point = ( Coord::Interval(xmin,xmax), Coord::Interval(ymin,ymax), Coord::Scalar(z) ); Row::Insert(point, i) }).collect(); db.batch(&batch).await?; db.sync().await?; let bbox = ((-120.0,20.0,10_000),(-100.0,35.0,20_000)); let mut stream = db.query(&bbox).await?; while let Some(result) = stream.next().await { println!("{:?}", result?); } Ok(()) }