Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dlr-eoc/pgh3
PostgreSQL extension for the H3 hierarchical geospatial indexing system
https://github.com/dlr-eoc/pgh3
geospatial h3 hexagon postgis postgresql spatial-indexing ukis
Last synced: 12 days ago
JSON representation
PostgreSQL extension for the H3 hierarchical geospatial indexing system
- Host: GitHub
- URL: https://github.com/dlr-eoc/pgh3
- Owner: dlr-eoc
- License: apache-2.0
- Archived: true
- Created: 2018-09-12T15:32:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-03T05:58:50.000Z (almost 3 years ago)
- Last Synced: 2024-08-01T00:37:34.462Z (3 months ago)
- Topics: geospatial, h3, hexagon, postgis, postgresql, spatial-indexing, ukis
- Language: C
- Homepage:
- Size: 143 KB
- Stars: 85
- Watchers: 6
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# [PostgreSQL](https://www.postgresql.org) extension for the [H3](https://uber.github.io/h3) hierarchical geospatial indexing system
![](doc/hexagons-example.png)
This extension integrates with the [PostGIS](https://postgis.net/) geometry type. Namely `Point`, `Polygon` and `MultiPolygon` geometries are supported.
To see the functions implemented in this extension please refer to the [SQL API](doc/pgh3.md).
## Installation
__Compile H3 as a shared library__. The source is available on [github](https://github.com/uber/h3), there are als
o detailed instructions for building H3 available in that repository, but to make H3 work with this extension there
are additional build flags required. There are essentialy two ways to compile H3 which allow building the pgh3 extension
later.Compile H3 as a static library. This allows statically linking H3 to the pgh3 extension.
cmake -DCMAKE_C_FLAGS=-fPIC .
make
sudo make installOr compile H3 as a shared library. This creates a dynamically loaded library which may also be used by other programs. When
you update the H3 library, all programms using it will automatically use the new version (PostgreSQL needs to
be restarted for that).cmake -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_PREFIX:PATH=/usr .
make
sudo make installIn case you have set up your `LD_LIBRARY_PATH` for PostgreSQL to also look in `/usr/local` for libraries, you can ommit the `-DCMAKE_INSTALL_PREFIX:PATH=/usr` switch.
__Compile the pgh3 extension__:
make
sudo make install__Run the tests__ (this is an optional step):
make installcheck
## Usage
Before using this extension, it needs to be added to the databases using postgresqls [CREATE EXTENSION](https://www.postgresql.org/docs/current/static/sql-createextension.html) command:
create extension postgis; -- dependency of pgh3, must be created first
create extension pgh3;For usage examples see the unittests in the `sql/*_test.sql` files.
### Configuration
This extensions allows configuring some parts of its behaviour. This configuration is done using additional keys to `postgresql.conf`
#### pgh3.polyfill_mem
The H3 `polyfill` function requires a preallocation of the memory for the generates indexes. Depending of the size of the
given polygon, its shape and the resolution this may exhaust the memory given to this extension. In this case
this function will be terminated by the database server and a corresponding notice will be given.This memory limit can be increased using the `pgh3.polyfill_mem` configuration parameter in the `postgresql.conf` file. The
default value for this setting 1024MB (PostgreSQL internal `MaxAllocSize`). Syntax for the setting ispgh3.polyfill_mem = 1024MB
For values larger than `MaxAllocSize`, the PostgreSQL `MemoryContextAllocHuge` allocator will be used.
_This setting is only available when using a PostgreSQL version >= 10_. On earlier versions the memory limit is set to 1024MB.
### Error handling
Most errors emmitted by this extension are making use of the [PostgreSQL error codes](https://www.postgresql.org/docs/current/errcodes-appendix.html).
This allows a more explicit handling of certain errors in application code or PL/pgSQL procedures. To give a short example using the `psql` command line:h3=# \set VERBOSITY verbose
h3=# select count(*) from h3_polyfill(st_geomfromtext('POLYGON((30 10,40 40,20 40,10 20,30 10))'), 10);
ERROR: 53400: pgh3.polyfill_mem: requested memory allocation (7.58GB) exceeded the configured value (1023MB).
CONTEXT: PL/pgSQL function h3_polyfill(geometry,integer) line 4 at RETURN QUERY
LOCATION: __h3_polyfill_palloc0, util.c:158Looking at he PostgreSQL documentaion, error code `53400` stands for `configuration_limit_exceeded`.
## TODO
* Implement more parts of the H3 API
* Use the `numeric`-type for H3 indexes?# Legal an Licensing
This software is licensed under the [Apache 2.0 License](LICENSE.txt).
(c) 2018 German Aerospace Center (DLR); German Remote Sensing Data Center; Department: Geo-Risks and Civil Security
[![UKIS](doc/ukis-logo.png)](https://www.dlr.de/eoc/en/desktopdefault.aspx/tabid-5413/10560_read-21914/)