Last active
August 29, 2015 13:55
-
-
Save strk/8693074 to your computer and use it in GitHub Desktop.
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 clusters AS ( | |
SELECT | |
ST_Collect(the_geom_webmercator) as g, | |
count(*) as count | |
FROM the_tornados WHERE the_geom_webmercator && !bbox! | |
GROUP BY ST_SnapToGrid(the_geom_webmercator, greatest(!pixel_width!,!pixel_height!)*48) | |
) | |
SELECT row_number() over () as cartodb_id, | |
count, | |
least(100, greatest(count,10)) as size, | |
ST_Centroid(g) as the_geom_webmercator | |
from clusters |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment