pub trait WithinWeightThreshold<W> {
    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

Required Methods§

Find all cells connected to the graph within a given weight_threshold around the given origin_cell

Implementors§