Struct h3ron::Index[][src]

pub struct Index(_);

a single H3 index

Implementations

impl Index[src]

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

create an index from the given u64.

No validation is performed - use the TryInto trait in case that is desired.

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

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

Checks the validity of the index

pub fn validate(&self) -> Result<(), Error>[src]

Checks the validity of the index

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) -> Result<Self, Error>[src]

Retrieves the parent index at parent_resolution.

Returns

This method may fail if the parent_resolution is higher than current self resolution.

If you don’t want it to fail use get_parent_unchecked

pub fn get_parent_unchecked(&self, parent_resolution: u8) -> Self[src]

Retrieves the parent index at parent_resolution.

Returns

This method may return an invalid Index if the parent_resolutionis higher than current self resolution.

Use get_parent for validity check.

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

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

Build a new Index from a Point.

Returns

The built index may be invalid. Use the from_point method for validity check.

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

Build a new Index from a Point.

Returns

If the built index is invalid, returns an Error. Use the from_point_unchecked to avoid error.

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

Build a new Index from coordinates.

Returns

The built index may be invalid. Use the from_coordinate method for validity check.

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

Build a new Index from coordinates.

Returns

If the built index is invalid, returns an Error. Use the from_coordinate_unchecked to avoid error.

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]

Retrieves indexes around self through K Rings.

Arguments

  • k_min - the minimum k ring distance
  • k_max - the maximum k ring distance

Returns

A Vec of (u32, Index) tuple is returned. The u32 value is the K Ring distance of the Index value.

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

pub fn distance_to(&self, other: &Self) -> i32[src]

Retrieves the number of K Rings between self and other.

For distance in miles or kilometers use haversine algorithms.

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 Copy for Index[src]

impl Debug for Index[src]

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

impl Eq for Index[src]

impl FromH3Index 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 HasH3Index for Index[src]

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 ToIndex for Index[src]

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]

impl TryFrom<u64> for Index[src]

convert to index including validation

type Error = Error

The type returned in the event of a conversion error.

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.