Releases: zachasme/h3-pg
Releases · zachasme/h3-pg
v4.1.3
- Add
geometry @ int
and geography @ int
operators, as shortcuts for h3_lat_lng_to_cell
.
- Explain PostGIS SRID expectations (see #131 , thanks @rustprooflabs)
v4.1.2
- Actually fix
h3_postgis
upgrade path (see #117, thanks @mngr777)
v4.1.0
- Bump
h3
to v4.1.0
- Add bindings for
h3_cell_to_child_pos
and h3_child_pos_to_cell
.
- Use CMake for entire build (see #70)
- Add helper to fix pass-by-value migration (see #111)
- Allow distance operator
<->
to work for cells at different resolutions (using center child).
v4.0.3
- Add BRIN operator class (see #97, thanks @mngr777)
- Split PostGIS multipolygons by 180th meridian (see #90, thanks @mngr777)
- Add aggregate functions for
h3_postgis
(see #91, thanks @mngr777)
- Add recursive
h3_grid_path_cells
(see #93, thanks @mngr777)
v4.0.1
- Bump
h3
to v4.0.1
(was locked on rc5
for the previous release)
- Add compile flag support check (see [#78], thanks [@mngr777])
- Split polygons by 180th meridian (see [#76], thanks [@mngr777])
v4.0.0: Upgrade H3 core to `v4` (#54)
First production release for H3 v4 🎉. As noted below, most function names have changed, but the H3 indexes have not, so while using v4 will require code changes it should be 100% backwards compatible with existing data. See the 4x migration guide for more information.
[4.0.0] - 2022-08-24
- ⚠️ Update
h3
core library to v4.0.0
. Almost all functions have been renamed to align with h3
core v4
. Please take care when updating. You can see a list of changed function names in the core library documentation.
- ⚠️ The PostGIS functions has been extracted into a separate extension
h3_postgis
. Install using CREATE EXTENSION h3_postgis;
.
- Enable link time optimization (see #75, thanks @mngr777)
- Handle non-polygons for
h3_polyfill
(see #55, thanks @Lokks)
- Take advantage of the new v4 error codes (fixes #71, thanks @kalenikaliaksandr)
v3.7.2
- Allow
NULL
in holes
array for h3_polyfill
(see #64, thanks @mngr777)
- Allow >1Gb memory allocations for
h3_polyfill
(see #65, thanks @mngr777)