-
-
Save strk/3620249 to your computer and use it in GitHub Desktop.
grid postgis query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH | |
hgrid AS ( | |
SELECT CDB_HexagonGrid( | |
ST_Transform(ST_MakeEnvelope(-180, -89, 180, 89, 4326), 3857), -- extent of the grid | |
CDB_XYZ_Resolution({z}) * 15 -- size of each cell | |
) as cell | |
) | |
SELECT count(i.<%=prop%>) as points_count | |
FROM hgrid, <%= table_name %> i | |
where ST_Intersects(i.the_geom_webmercator, hgrid.cell) GROUP BY hgrid.cell; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment