Tagged Questions
1
vote
1answer
70 views
Distance of point feature to nearest polygon in R
I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
1
vote
1answer
32 views
Whenever I run this command I get the error: Error in sort.list(y) : 'x' must be atomic for 'sort.list'
Currently I'm trying to use knnMCN()
I'm doing it in this format...
knnMCN(data, classification, data2, K=1, ShowObs=T)
The files data, classification, and data2 are all .csv files. 'data' is my ...
2
votes
2answers
94 views
Transforming a table of Nearest Neighbor Distances into a Matrix
I have a data frame generated from computing nearest neighbor (K=2) using the RANN package. I would like to transform this data into a matrix with values of 0,1,2 for each cell with 0 = not neighbor, ...
0
votes
2answers
705 views
Convert longitude latitude coordinates (WGS) to grid with equidistant axes (in given area)
I have a lot of geocoordinates in tow data sets and want to run a nearest-neighbor-search.
I came across the package 'RANN' and the function nn2(x,y) runs really fast.
Now there is the problem, that ...
1
vote
2answers
344 views
R: find nearest index
I have two vectors with a few thousand points, but generalized here:
A <- 10 * (1:5)
b <- c(13, 17, 20)
How can I get the indicies of A that are nearest to b? The expected outcome would be ...
1
vote
1answer
521 views
How to generate k-nearest neighbor matrix for spatial dataframe?
I have a spatial dataframe with about 3000 points. I want to generate a matrix that provides the k (in this case 30) nearest neighbors for each point.
I can do it using a loop but i feel that there ...
1
vote
2answers
934 views
Finding nearest neighbor between 2 sets of dated points
I have 2 sets of points, set1 and set2. Both sets of points have a data associated with the point. Points in set1 are "ephemeral", and only exist on the given date. Points in set2 are "permanent", ...
0
votes
2answers
559 views
knn density estimation R
Is there any function/package to perform k-Nearest Neighbor based density estimation in R?