Skip to main content

H3 bindings for Polars

Project description

This is a Polars extension that adds support for the H3 discrete global grid system, so you can index points and geometries to hexagons directly in Polars. All credits goes to the h3o for doing the heavy lifting.

Highlights

  • ๐Ÿš€ Blazing Fast: Built entirely in Rust, offering vectorized, multi-core H3 operations within Polars. Ideal for high-performance data processing.

  • ๐ŸŒ H3 Feature Parity: Comprehensive support for H3 functions, covering almost everything the standard H3 library provides, excluding geometric functions.

  • ๐Ÿ“‹ Fully Tested: Thoroughly tested against the standard H3 library.

  • ๐Ÿ” Data Type Agnostic: Supports string and integer H3 indexes natively, eliminating format conversion hassles.

Get started

You can get started by installing it with pip (or uv):

pip install polars-h3

You can use the extension as a drop-in replacement for the standard H3 functions.

import polars_h3 as plh3
import polars as pl

>>> df = pl.DataFrame(
...     {
...         "lat": [37.7749],
...         "long": [-122.4194],
...     }
... ).with_columns(
...     plh3.latlng_to_cell(
...         "lat",
...         "long",
...         resolution=7,
...         return_dtype=pl.Utf8
...     ).alias("h3_cell"),
... )
>>> df
shape: (1, 3)
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ lat     โ”† long      โ”† h3_cell         โ”‚
โ”‚ ---     โ”† ---       โ”† ---             โ”‚
โ”‚ f64     โ”† f64       โ”† str             โ”‚
โ•žโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•ชโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•ชโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•ก
โ”‚ 37.7749 โ”† -122.4194 โ”† 872830828ffffff โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Check out the quickstart notebook for more examples.

๐ŸŒŸ You can also find the advanced notebooks here.

Implemented functions

This extension implements most of the H3 API. The full list of functions is below - you can find full docs here.

โš ๏ธ Performance Note: When possible, prefer using pl.UInt64 for H3 indices instead of the pl.Utf8 representation. String representations require casting operations which impact performance. Working directly with the native 64-bit integer format provides better computational efficiency.

We are unable to support the functions that work with geometries.

Full list of functions

โœ… = Supported ๐Ÿšง = Pending ๐Ÿ›‘ = Not supported

Function Description Supported
latlng_to_cell Convert latitude/longitude coordinate to cell ID โœ…
cell_to_lat Convert cell ID to latitude โœ…
cell_to_lng Convert cell ID to longitude โœ…
cell_to_latlng Convert cell ID to latitude/longitude โœ…
get_resolution Get resolution number of cell ID โœ…
str_to_int Convert pl.Utf8 cell ID to pl.UInt64 โœ…
int_to_str Convert pl.UInt64 or pl.Int64 cell ID to pl.Utf8 โœ…
is_valid_cell True if this is a valid cell ID โœ…
is_res_class_iii True if the cell's resolution is class III โœ…
is_pentagon True if the cell is a pentagon โœ…
get_icosahedron_faces List of icosahedron face IDs the cell is on โœ…
cell_to_parent Get coarser cell for a cell โœ…
cell_to_children Get finer cells for a cell โœ…
cell_to_center_child Provides the center child (finer) cell contained by cell at resolution childRes. โœ…
cell_to_child_pos Position of the child cell within the ordered list of all children of its parent at the specified resolution โœ…
child_pos_to_cell Child cell at a given position within the ordered list of children for a specified parent/resolution โœ…
compact_cells Compacts a collection of H3 cells (all same resolution) by replacing child cells with their parent if all children exist โœ…
uncompact_cells Uncompacts a set of H3 cells to the resolution res โœ…
grid_ring Produces the "hollow ring" of cells which are exactly grid distance k from the origin cell โœ…
grid_disk Produces the "filled-in disk" of cells at most grid distance k from the origin cell โœ…
grid_path_cells Find a grid path to connect two cells โœ…
grid_distance Find the grid distance between two cells โœ…
cell_to_local_ij Convert a cell ID to a local I,J coordinate space โœ…
local_ij_to_cell Convert a local I,J coordinate to a cell ID โœ…
cell_to_boundary Convert cell ID to its boundary lat/lng coordinates โœ…
cell_to_vertex Get the vertex ID for a cell ID and vertex number โœ…
cell_to_vertexes Get all vertex IDs for a cell ID (5 for pentagon, 6 for hex) โœ…
vertex_to_latlng Convert a vertex ID to latitude/longitude coordinates โœ…
is_valid_vertex True if passed a valid vertex ID โœ…
is_valid_directed_edge True if passed a valid directed edge ID โœ…
origin_to_directed_edges Get all directed edge IDs for a cell ID โœ…
directed_edge_to_cells Convert a directed edge ID to origin/destination cell IDs โœ…
get_directed_edge_origin Convert a directed edge ID to origin cell ID โœ…
get_directed_edge_destination Convert a directed edge ID to destination cell ID โœ…
cells_to_directed_edge Convert an origin/destination pair to directed edge ID โœ…
are_neighbor_cells True if the two cell IDs share an edge โœ…
average_hexagon_area Get average area of a hexagon cell at resolution โœ…
cell_area Get the area of a cell ID โœ…
average_hexagon_edge_length Average hexagon edge length at resolution โœ…
edge_length Get the length of a directed edge ID โœ…
get_num_cells Get the number of cells at a resolution โœ…
get_pentagons Get all pentagons at a resolution โœ…
great_circle_distance Compute the great circle distance between two points (haversine) โœ…
cells_to_multi_polygon_wkt Convert a set of cells to multipolygon WKT ๐Ÿ›‘
polygon_wkt_to_cells Convert polygon WKT to a set of cells ๐Ÿ›‘
directed_edge_to_boundary_wkt Convert directed edge ID to linestring WKT ๐Ÿ›‘

Plotting

The library also comes with helper functions to plot hexes on a Folium map.

import polars_h3 as plh3
import polars as pl

hex_map = plh3.graphing.plot_hex_outlines(df, "h3_cell")
display(hex_map)

# or if you have a metric to plot

hex_map = plh3.graphing.plot_hex_fills(df, "h3_cell", "metric_col")
display(hex_map)

CleanShot 2024-12-08 at 00 26 22

Development

It's recommended to use uv to manage the extension dependencies. If you modify rust code, you will need to run uv run maturin develop --uv to see changes. If you're looking to benchmark the performance of the extension, build the release version with maturin develop --release --uv and then run uv run -m benchmarks.engine (assuming you have the benchmark dependencies installed). Benchmarking with the development version will lead to misleading results.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polars_h3-0.5.6.tar.gz (422.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

polars_h3-0.5.6-cp38-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.8+Windows x86-64

polars_h3-0.5.6-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

polars_h3-0.5.6-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (4.7 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.12+ i686

polars_h3-0.5.6-cp38-abi3-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

polars_h3-0.5.6-cp38-abi3-macosx_10_12_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file polars_h3-0.5.6.tar.gz.

File metadata

  • Download URL: polars_h3-0.5.6.tar.gz
  • Upload date:
  • Size: 422.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for polars_h3-0.5.6.tar.gz
Algorithm Hash digest
SHA256 8b2a7f206aa691cccf2fbe1b0919f0b47c2f28a8906e5b2437bd20b76af1d274
MD5 51f22f00fb7d97c50b329929fde0204f
BLAKE2b-256 1cdc411694a9bab530f4d2c0f9389afb0da5dec78a6f5a440ea7983c410e6905

See more details on using hashes here.

File details

Details for the file polars_h3-0.5.6-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: polars_h3-0.5.6-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for polars_h3-0.5.6-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b6f69854e761e652e2122f110a00d88eeff09b44f48e921d71a57b62bb46a96a
MD5 c4a94b86fa28ce09e930460130c92663
BLAKE2b-256 b9a46e3815984b54d5c0e1fd3094e2af49af9aed54a59a92769c0c59ff4f6ce1

See more details on using hashes here.

File details

Details for the file polars_h3-0.5.6-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_h3-0.5.6-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2471f0958385f7612af20e9bccf81051f7ddd37ad2282dae957b650db8d35b17
MD5 d301d56d0f427d433bb2e7cbd69f6b42
BLAKE2b-256 163aca793b067d9352f2820e6927f539a95acc5d64c1ee810d78aeb5f2f0bd7a

See more details on using hashes here.

File details

Details for the file polars_h3-0.5.6-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for polars_h3-0.5.6-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f3e0144bfc0709383dc900f8d75f83b403e77ebe4a36ddf88b7c27ef45924133
MD5 bf96400af2510fe416653355c78d8f28
BLAKE2b-256 ab4e436cfea01e28b00bead40395ea4cd0a793cec8e1bf52db9ff935a1917251

See more details on using hashes here.

File details

Details for the file polars_h3-0.5.6-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_h3-0.5.6-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3305af81f853293c7728320161efb730c7ca56ac560dc9daec271fbc3c1d5de
MD5 a523b2c14da45a54d82aceaf0905cf25
BLAKE2b-256 cf615bab3efa14a607efeb5f62d2d7b305eeaf343ac5d84d921c3c168ecbb335

See more details on using hashes here.

File details

Details for the file polars_h3-0.5.6-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_h3-0.5.6-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 529867614d8184a5097907488ddfea644f81c6f8412bfe6bfdc0b956d1b3da6c
MD5 9cbf2eb7eb1ef2189d6f26f7b27e1a22
BLAKE2b-256 dd26e604667875ed614c5491985276fd660e9d5dd51f38d11fe459f0c3235b7e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page