Skip to content

Instantly share code, notes, and snippets.

@zacharyDez
Created June 1, 2021 11:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zacharyDez/1f96fc71dcfa7216dcf524cc9375cce8 to your computer and use it in GitHub Desktop.
Save zacharyDez/1f96fc71dcfa7216dcf524cc9375cce8 to your computer and use it in GitHub Desktop.
create table hex_r8 as (
with envelope as (
select st_envelope(wkb_geometry) geom from quartiers_sociologiques
), h3_id as (
select h3_polyfill(geom, 8) id from envelope
)
select id, st_setsrid(h3_h3index_to_geoboundary(id), 4326) geom from h3_id
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment