h3arrow 0.4.0

Integration of the H3 geospatial grid with the arrow memory model
Documentation
1
2
3
4
5
6
7
use crate::array::{CellIndexArray, VertexIndexArray};

impl VertexIndexArray {
    pub fn owner(&self) -> CellIndexArray {
        self.iter().map(|vx| vx.map(|vx| vx.owner())).collect()
    }
}