(id: u64, lng: f64, lat: f64)
| 152 | use nodedb_types::BoundingBox; |
| 153 | |
| 154 | fn make_entry(id: u64, lng: f64, lat: f64) -> RTreeEntry { |
| 155 | RTreeEntry { |
| 156 | id, |
| 157 | bbox: BoundingBox::from_point(lng, lat), |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | #[test] |
| 162 | fn bulk_load_500() { |
no outgoing calls