1
vote
1answer
28 views

MySQL Query get minimal distance (nearest neighbour)

I am trying to find the nearest neighbour to the GPS coordinate (52,14) in a geospatial database with the following query: SELECT geonameid, SQRT(POW(latitude-52, 2) + POW(longitude-14, 2)) as ...
2
votes
2answers
423 views

Simple k-nearest-neighbor algorithm for euclidean data with variable density?

An elaboration on this question, but with more constraints. The idea is the same, to find a simple, fast algorithm for k-nearest-neighbors in 2 euclidean dimensions. The bucketing grid seems to work ...
8
votes
1answer
1k views

Suitable choice of data structure and algorithm for fast k-Nearest Neighbor search in 2D

I have a dataset of approximately 100,000 (X, Y) pairs representing points in 2D space. For each point, I want to find its k-nearest neighbors. So, my question is - what data-structure / algorithm ...
13
votes
5answers
1k views

How to find the closest 2 points in a 100 dimensional space with 500,000 points?

I have a database with 500,000 points in a 100 dimensional space, and I want to find the closest 2 points. How do I do it? Update: Space is Euclidean, Sorry. And thanks for all the answers. BTW this ...