Created
October 25, 2011 23:16
-
-
Save jatorre/1314768 to your computer and use it in GitHub Desktop.
Closest bathrooms to a location
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
--https://jatorre.cartodb.com/api/v1/sql?q= | |
select | |
ST_X(ST_Centroid(the_geom)) as longitude, | |
ST_Y(ST_Centroid(the_geom)) as latitude, | |
bathroom,class,comfortsta,comments,descriptio,name,organizati,status, | |
ST_Distance(the_geom::geography, | |
ST_PointFromText('POINT(-73.999548 40.71954)', 4326)::geography) as distance | |
from bathrooms | |
ORDER BY distance ASC | |
LIMIT 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment