gpt4 book ai didi

sql-server - 使用地理数据类型(DbGeography)时查询矩形区域

转载 作者:行者123 更新时间:2023-12-03 17:20:27 25 4
gpt4 key购买 nike

我正在查询 SQL Server 中的表以在 Google map 上显示结果,并且我在服务器应用程序上使用 Entity Framework 和 DbGeography 数据类型。

简单地说,我从 Google Maps 实例中获取 map 边界,并使用以下内容从中构造一个 DbGeography 实例:

var wkt = string.Format("POLYGON(({0} {1}, {0} {2}, {3} {2}, {3} {1}, {0} {1}))", EastLng, NorthLat, SouthLat, WestLng);
var bounds = DbGeography.FromText(wkt);

然后使用它查询数据库(作为更大查询的一部分):
dbset.Where(i => bounds.Intersects(l.GeographicLocation));

这工作正常,我实际上已经在生产中工作了一段时间。今天我注意到有时有些结果在 map 上显示不正确。

经过一番调查,我意识到这是因为地球的曲率;谷歌地图使用地球的矩形投影,但是当我创建一个矩形多边形时,它意味着这样的形状(从 SQL Server Management Studio 复制,来自正在运行的查询):

Boundary projection

查看非常大区域的 map (缩小)时,效果会增加。但是当我放大时,地球曲率的影响会减小,查询似乎工作正常。

我需要做的是基本上查询数据库中位于 Lat/Lng 边界内的所有点。有没有办法做到这一点?

编辑:

这是我用来创建 DbGeography 实例的完整代码:
public class LatLngBounds
{
// ...

public DbGeography ToDbGeography()
{
return DbGeographyUtil.CreatePolygon(string.Format("POLYGON(({0} {1}, {0} {2}, {3} {2}, {3} {1}, {0} {1}))", EastLng, NorthLat, SouthLat, WestLng));
}
}


public static class DbGeographyUtil
{
public static DbGeography CreatePolygon(string wktString)
{
if (string.IsNullOrWhiteSpace(wktString))
return null;

var sqlGeography = SqlGeography.STGeomFromText(new SqlChars(wktString), DbGeography.DefaultCoordinateSystemId).MakeValid();

var invertedSqlGeography = sqlGeography.ReorientObject();
if (sqlGeography.STArea() > invertedSqlGeography.STArea())
{
sqlGeography = invertedSqlGeography;
}

return DbSpatialServices.Default.GeographyFromProviderValue(sqlGeography);
}

}

编辑2:

在上面的例子中,来自谷歌地图的坐标是:
  • 东北:纬度=53.6 Lng=92.5
  • 西南:纬度=35.0 经度=21.2

  • 这是我使用 SQL Server Profiler 捕获的正在运行的查询的一部分:
    declare @p4 sys.geography
    set @p4=convert(sys.geography,0xE6100000010405000000463E933FAFD64A40070000006E3F354061E412079A894140070000006E3F354061E412079A894140020000808B245740463E933FAFD64A40020000808B245740463E933FAFD64A40070000006E3F354001000000020000000001000000FFFFFFFF0000000003)

    SELECT @p4;

    (我添加了 SELECT 以查看它的外观,并生成了上图)

    最佳答案

    我设法通过使用 DbGeometry 而不是 DbGeography 来解决这个问题

    var boundsAsGeometry = DbGeometry.FromText(bounds.AsText(), bounds.CoordinateSystemId);

    dbset.Where(x => boundsAsGeometry.Intersects(DbGeometry.FromText(x.GeographicLocation.AsText(), x.GeographicLocation.CoordinateSystemId)));

    请注意,如果您有 GeographicLocation 字段,这将不会使用现有的数据库索引。

    关于sql-server - 使用地理数据类型(DbGeography)时查询矩形区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26313086/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com