Tagged Questions
10
votes
1answer
357 views
Spatial operators in R?
How can I do spatial selections or filters in R? I can do this in PostGIS using (e.g.):
SELECT * FROM mypoint, mypoly
WHERE ST_Within(mypoint.geom, mypoly.geom);
and it is similarly a piece of cake ...