-
-
Save ramiroaznar/95c7491cfc187dab362dc608eeb9c3a4 to your computer and use it in GitHub Desktop.
Selecting stations within a minimun distance of 100m from the L1 metro line
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
SELECT | |
a.* | |
FROM | |
estaciones a, | |
lineas b | |
WHERE | |
ST_DWithin( | |
a.the_geom_webmercator, | |
b.the_geom_webmercator, | |
100 | |
) | |
AND | |
b.name ilike 'L1'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment