pub trait ToH3Cells {
    fn to_h3_cells(&self, h3_resolution: u8) -> Result<IndexVec<H3Cell>, Error>;
}
Expand description

convert to indexes at the given resolution

The output vec may contain duplicate indexes in case of overlapping input geometries.

Required Methods

Implementations on Foreign Types

Implementors