H3GridDisk

Trait H3GridDisk 

Source
pub trait H3GridDisk {
    // Required method
    fn h3_grid_disk(&self, k: u32) -> Result<ListChunked, Error>;
}
Expand description

Produces all cells within k distance of the origin cell.

Required Methods§

Source

fn h3_grid_disk(&self, k: u32) -> Result<ListChunked, Error>

Produces all cells within k distance of the origin cell.

k=0 is defined as the origin cell, k=1 is defined as k=0 + all neighboring cells, and so on.

Implementors§