pub trait WithinWeightThreshold<W> {
// Required method
fn cells_within_weight_threshold(
&self,
origin_cell: H3Cell,
weight_threshold: W,
) -> Result<H3CellMap<W>, Error>;
}
Expand description
Find all cells connected to the graph around a origin cell within a given threshold