Tagged Questions
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. ...