h3o 0.9.4

A Rust implementation of the H3 geospatial indexing system.
Documentation
use super::HexGridError;
use core::{error::Error, fmt};

/// Errors occurring during [`LocalIJ`](crate::LocalIJ) coordinate system
/// conversions.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[non_exhaustive]
pub enum LocalIjError {
    /// Local origin and cell index have incompatible resolutions.
    ResolutionMismatch,
    /// Pentagon distortion was encountered and could not be handled.
    Pentagon,
    /// Error related to the `IJK` coordinate system.
    HexGrid(HexGridError),
}

impl fmt::Display for LocalIjError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match *self {
            Self::ResolutionMismatch => {
                write!(f, "resolution mismatch")
            }
            Self::Pentagon => write!(f, "pentagon distortion"),
            Self::HexGrid(err) => write!(f, "hex grid error: {err}"),
        }
    }
}

impl Error for LocalIjError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match *self {
            Self::ResolutionMismatch | Self::Pentagon => None,
            Self::HexGrid(ref err) => Some(err),
        }
    }
}

impl From<HexGridError> for LocalIjError {
    fn from(value: HexGridError) -> Self {
        Self::HexGrid(value)
    }
}