Tagged Questions
5
votes
2answers
148 views
Spatial Analysis with Factors/Classifications
When doing analysis on spatial data with associated information that is numeric, it is possible to use techniques such as Kriging or Interpolation or Cluster Analysis to find out interesting ...
6
votes
3answers
399 views
Identification of consecutive points within a specified buffer
I have a point file, hourly relocations of an animal, and I want to be able to place a buffer around each point and calculate the number of subsequent points which are within the buffer zone. I am ...
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 ...