Tagged Questions
1
vote
1answer
37 views
Postgresql k-nearest neighbor (KNN) on multidimensional cube
I have a cube that has 8 dimensions. I want to do nearest neighbor matching. I'm totally new to postgresql. I read that 9.1 supports nearest neighbor matching on multidimensions. I'd really appreciate ...
2
votes
2answers
1k views
ERROR: subquery in FROM cannot refer to other relations of same query level
I'm working with PostgreSQL 9 and I want to find the nearest neighbor inside table RP for all tuples in RQ, comparing the dates (t), but I get this error:
ERROR: subquery in FROM cannot refer to ...
9
votes
3answers
1k views
K-Nearest Neighbor Query in PostGIS
I am using the following Nearest Neighbor Query in PostGIS :
SELECT g1.gid g2.gid FROM points as g1, polygons g2
WHERE g1.gid <> g2.gid
ORDER BY g1.gid, ST_Distance(g1.the_geom,g2.the_geom)
...
3
votes
1answer
1k views
Slow Postgres Query
I'm new to Postgres and SQL. I created the following script that draws a line from a point to a projected point on the nearest line. It works fine on a small data set 5 to 10 points with the same ...
0
votes
2answers
1k views
Drawing a line in PostGIS using Nearest Neighbour Method
This is a cross post from an email I sent to the PostGIS mailing list
So far in my endeavor to create a line between a point and its projected
location on a line has been long but I'm almost there. ...