h3ron-polars 0.3.0

Integration of the h3 geospatial indexing system with polars dataframes
Documentation
use thiserror::Error as DeriveError;

#[derive(Debug, DeriveError)]
pub enum Error {
    #[error(transparent)]
    Polars(#[from] polars::error::PolarsError),
    #[error(transparent)]
    Arrow(#[from] polars::error::ArrowError),
    #[error(transparent)]
    H3ron(#[from] h3ron::Error),

    #[error("spatial indexing error: {0}")]
    SpatialIndex(String),

    #[error("invalid h3indexes")]
    InvalidH3Indexes,
}