Struct h3ron::Index[][src]

pub struct Index(_);

a single H3 index

Implementations

impl Index[src]

pub fn new(h3index: H3Index) -> Self[src]

pub fn h3index(&self) -> H3Index[src]

pub fn resolution(&self) -> u8[src]

pub fn is_valid(&self) -> bool[src]

pub fn is_parent_of(&self, other: &Index) -> bool[src]

pub fn is_child_of(&self, other: &Index) -> bool[src]

pub fn contains(&self, other: &Index) -> bool[src]

pub fn get_parent(&self, parent_resolution: u8) -> Index[src]

pub fn get_children(&self, child_resolution: u8) -> Vec<Index>[src]

pub fn from_point(pt: &Point<f64>, h3_resolution: u8) -> Self[src]

pub fn from_coordinate(c: &Coordinate<f64>, h3_resolution: u8) -> Self[src]

pub fn is_neighbor_to(&self, other: &Self) -> bool[src]

Checks if the current index and other are neighbors.

pub fn k_ring(&self, k: u32) -> Vec<Index>[src]

pub fn hex_ring(&self, k: u32) -> Result<Vec<Index>, Error>[src]

pub fn k_ring_distances(&self, k_min: u32, k_max: u32) -> Vec<(u32, Index)>[src]

pub fn hex_range_distances(
    &self,
    k_min: u32,
    k_max: u32
) -> Result<Vec<(u32, Index)>, Error>
[src]

pub fn area(&self, area_units: AreaUnits) -> f64[src]

exact area for a specific cell (hexagon or pentagon)

pub fn is_pentagon(&self) -> bool[src]

determines if an H3 cell is a pentagon

pub fn get_base_cell(&self) -> u8[src]

returns the base cell “number” (0 to 121) of the provided H3 cell

Trait Implementations

impl Clone for Index[src]

impl Debug for Index[src]

impl<'de> Deserialize<'de> for Index[src]

impl Eq for Index[src]

impl From<u64> for Index[src]

impl FromIterator<Index> for H3CompactedVec[src]

impl FromStr for Index[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for Index[src]

impl Ord for Index[src]

impl PartialEq<Index> for Index[src]

impl PartialOrd<Index> for Index[src]

impl Serialize for Index[src]

impl StructuralEq for Index[src]

impl StructuralPartialEq for Index[src]

impl ToCoordinate for Index[src]

fn to_coordinate(&self) -> Coordinate<f64>[src]

the centroid coordinate of the h3 index

impl ToPolygon for Index[src]

fn to_polygon(&self) -> Polygon<f64>[src]

the polygon spanning the area of the index

impl ToString for Index[src]

Auto Trait Implementations

impl RefUnwindSafe for Index

impl Send for Index

impl Sync for Index

impl Unpin for Index

impl UnwindSafe for Index

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.