Tagged Questions
2
votes
1answer
46 views
Extract number of vertices in each polygon in R
Simple question: how best to do this?
I've found one way that works, but this is very slow (when x is a SpatialPolygonsDataFrame):
y <- fortify(x)
n.verts <- aggregate(y, by=list(y$id), ...
0
votes
0answers
41 views
R-raster versus ArcMap Bioclim clipped values differ?
I have a set of lat/long ccordinates for which I wanted to pull corresponding BioClim (1-19) values. I first used ArcMap, without interpolating, and came up with a set of data. I then used R's ...
3
votes
1answer
126 views
Extract pixel value for corresponding gps location in R
I have animal gps data with several locations for each day and regular gaps of several days when no location of the animal was recorded. Additionally, I have satellite data in intervals of 16 days. I ...
4
votes
0answers
141 views
What open source solution would work best for auto extracting features from satellite images? [duplicate]
Possible Duplicate:
Feature Extraction - Land cover
I have been looking for an open source solution which would allow me to define a region (or collection of images) and extract features ...