pub trait H3ChangeResolution {
// Required method
fn h3_change_resolution(
&self,
target_resolution: u8,
) -> Result<ListChunked, Error>;
}
Expand description
Changes the resolution of the contained H3Cell
values.
Required Methods§
Sourcefn h3_change_resolution(
&self,
target_resolution: u8,
) -> Result<ListChunked, Error>
fn h3_change_resolution( &self, target_resolution: u8, ) -> Result<ListChunked, Error>
Changes the resolution of the contained H3Cell
values
For each cell of the input array a list of cells is produced. This list may
only contain a single element for cases where target_resolution
is <= the array
elements resolution.