I have a set of line and polygon object (SqlGeometry type) and a point object (SqlGeometry type). How can we find the the nearest point on each line from the given point object? Are there any API for doing this operation?
|
I'm not sure if this is possible directly in SQL Server 2008: http://social.msdn.microsoft.com/Forums/en/sqlspatial/thread/cb094fb8-07ba-4219-8d3d-572874c271b5 The workaround suggested in that thread is:
Otherwise you would have to write a script to read the geometry from your database and use separate spatial libraries. |
|||
|
|
Here a sample presenting possible solution using SqlGeometry and C#, no SQL Server is required:
The program output:
|
|||
|
If you are interested in actually finding the nearest point on the line (otherwise called a node) you can turn each line into a set of points with the same lineid. Then query for the closest and calc the distance. If instead you are trying to calc the distance from a point to the nearest line - stdistance http://msdn.microsoft.com/en-us/library/bb933808.aspx I guess the problem that the other answer addresses is what to put in your where clause though you could use stdistance to specify a distance above which you don't care such as Where pointGeom.stdistance(lineGeom) < "distance you care about" |
|||
|
|