如何从另一个SqlGeometry对象获取SqlGeometry对象上的最近点?

时间:2010-02-17 10:20:16

标签: c# spatial spatial-query

我有一组line和polygon对象(SqlGeometry类型)和一个point对象(SqlGeometry类型)。如何从给定的点对象中找到每条线上最近的点?有没有用于执行此操作的API?

3 个答案:

答案 0 :(得分:6)

这里有一个使用SqlGeometry和C#呈现可能解决方案的示例,不需要SQL Server:

using System;
using Microsoft.SqlServer.Types;
namespace MySqlGeometryTest
{
    class ReportNearestPointTest
    {
        static void ReportNearestPoint(string wktPoint, string wktGeom)
        {
            SqlGeometry point = SqlGeometry.Parse(wktPoint);
            SqlGeometry geom = SqlGeometry.Parse(wktGeom);
            double distance = point.STDistance(geom).Value;
            SqlGeometry pointBuffer = point.STBuffer(distance);
            SqlGeometry pointResult = pointBuffer.STIntersection(geom);
            string wktResult = new string(pointResult.STAsText().Value);
            Console.WriteLine(wktResult);
        }

        static void Main(string[] args)
        {
            ReportNearestPoint("POINT(10 10)", "MULTIPOINT (80 70, 20 20, 200 170, 140 120)");
            ReportNearestPoint("POINT(110 200)", "LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)");
            ReportNearestPoint("POINT(0 0)", "POLYGON((10 20, 10 10, 20 10, 20 20, 10 20))");
            ReportNearestPoint("POINT(70 170)", "POLYGON ((110 230, 80 160, 20 160, 20 20, 200 20, 200 160, 140 160, 110 230))");
        }
    }
}

节目输出:

POINT (20 20)
POINT (160 150)
POINT (10 10)
POINT (70 160)

答案 1 :(得分:3)

我不确定这是否可以直接在SQL Server 2008中使用:

http://social.msdn.microsoft.com/Forums/en/sqlspatial/thread/cb094fb8-07ba-4219-8d3d-572874c271b5

该主题中建议的解决方法是:

declare @g geometry = 'LINESTRING(0 0, 10 10)' 
declare @h geometry = 'POINT(0 10)' 

select @h.STBuffer(@h.STDistance(@g)).STIntersection(@g).ToString()

否则,您必须编写脚本以从数据库中读取几何图形并使用单独的空间库。

答案 2 :(得分:2)

如果您对实际找到线上最近的点(也称为节点)感兴趣,可以将每一行转换为具有相同lineid的一组点。然后查询最近并计算距离。

如果您正在尝试计算从点到最近线的距离 - stdistance http://msdn.microsoft.com/en-us/library/bb933808.aspx 我想其他答案解决的问题是你的where子句中的内容,尽管你可以使用stdistance指定一个你不关心的距离,如

其中pointGeom.stdistance(lineGeom)< “你关心的距离”