在.net 4.5中有类似dbgeometry makevalid的东西吗?
本文关键字:makevalid dbgeometry net | 更新日期: 2023-09-27 18:14:35
我想计算折线的面积
string poly = "POLYGON ((637604.918432772 2230520.64934531,
637622.257266129 2230419.44632915, 637279.107128549 2230192.04910755, 636765.470527745 2230179.6468564, 636778.005055813 2229861.77192838, 636529.81646905 2229464.29327025, 635813.486592791 2229523.30345774, 636017.385069448 2229974.32341381, 636267.323659164 2230070.32127916, 637035.026966561 2230404.70764784, 637275.265066307 2230401.13408429, 637604.918432772 2230520.64934531, 637604.918432772 2230520.64934531))";
DbGeometry gm = DbGeometry.FromText(poly, 32637);
double area= gm.Area.Value; // here I got the error Exception has been thrown by the target of an invocation.
我后来注意到错误的原因是dbgeometry是无效的我尝试在ms sql 2012的代码也给我的错误,但当我尝试这样的
SELECT @gm.MakeValid().STArea()
在SQL中工作我的问题是,有一种方法可以使几何体在。net中有效谢谢你
你绝对不应该去数据库获取你想要的东西。一个简单而快速的方法是通过在项目中添加以下代码来扩展DbGeography:
using System.Data.SqlTypes;
using Microsoft.SqlServer.Types;
namespace System.Data.Spatial
{
public static class DbGeometryExtension
{
public static DbGeometry MakeValid(this DbGeometry geom)
{
if (geom.IsValid)
return geom;
return DbGeometry.FromText(SqlGeometry.STGeomFromText(new SqlChars(geom.AsText()), 4326).MakeValid().STAsText().ToSqlString().ToString(), 4326);
}
}
}
在创建此代码时做了一些假设,所以不要"原样"使用它
我同意Bojan的观点,除非你正在使用实体框架?
SqlGeometry对象有一个MakeValid()函数,因此使用您的示例,允许在DbGeography和SqlGeography之间进行转换:
DbGeography geog;
SqlGeometry geom = SqlGeometry.STGeomFromWKB(new SqlBytes(geog.AsBinary()), 32637);
但是,除非您使用EF,否则我建议您直接使用SqlGeometry作为
- 没有强制转换
- SqlGeometry比DbGeometry提供更多的功能。
希望对你有帮助。
SqlSpatialFunctions.MakeValid
是SQL server特定的方法。
如果你有兴趣为什么你的几何是无效的,你可以问SQL Server:
SELECT @gm.IsValidDetailed()
同样,你可能想要考虑直接使用SQL Server的几何类型:SqlGeometry.MakeValid
.
这里有一个解决这个问题的方法我把标量函数写成这样
CREATE FUNCTION [dbo].[GeomMakeValid](@geom as geometry)
RETURNS geometry
AS
BEGIN
DECLARE @gm as geometry;
set @gm = @geom.MakeValid();
return (@gm);
END
GO
然后我像这样从模型中调用它
public static DbGeometry geoMakeValid(DbGeometry geom)
{
EntityConnection Connec = getConnection();
DbCommand com = Connec.StoreConnection.CreateCommand();
com.CommandText = "select dbo.GeomMakeValid(@geom)";
com.CommandType = System.Data.CommandType.Text;
com.Parameters.Add(new SqlParameter("@geom", geom.AsText()));
if (com.Connection.State == ConnectionState.Closed) com.Connection.Open();
try
{
var result = com.ExecuteScalar(); // should properly get your value
Connec.Close();
return DbGeometry.FromText( result.ToString(),geom.CoordinateSystemId);
}
catch (System.Exception e)
{
}
Connec.Close();
return geom;
}
任何代码的任何部分我都可以调用这个函数使几何图形有效