Created
February 20, 2014 00:17
-
-
Save eightysteele/9104402 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
SELECT SUM(count) as value, 'FORMA' as name, | |
'alerts' as unit, '500 meters' as resolution | |
FROM | |
(SELECT COUNT(*) AS count | |
FROM forma_api | |
WHERE date <= now() - INTERVAL '1 Months' | |
AND ST_INTERSECTS(ST_SetSRID(ST_GeomFromGeoJSON('{"coordinates": [[[["22.5000", "3.3380"], ["21.9727", "-7.8851"], ["32.8711", "1.7575"]]]], "type": "MultiPolygon"}'), 4326), | |
the_geom) | |
GROUP BY date, iso | |
ORDER BY iso, date) AS alias |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment