pub trait ToLinkedPolygons {
    type Error;

    // Required method
    fn to_linked_polygons(
        &self,
        smoothen: bool
    ) -> Result<Vec<Polygon<f64>>, Self::Error>;
}
Expand description

join hexagon polygons to larger polygons where hexagons are touching each other

Required Associated Types§

Required Methods§

source

fn to_linked_polygons( &self, smoothen: bool ) -> Result<Vec<Polygon<f64>>, Self::Error>

Implementations on Foreign Types§

source§

impl ToLinkedPolygons for Vec<H3Cell>

§

type Error = Error

source§

fn to_linked_polygons( &self, smoothen: bool ) -> Result<Vec<Polygon<f64>>, Self::Error>

Implementors§