Convert geography to geometry SQL Server 2008R2

后端 未结 1 418
礼貌的吻别
礼貌的吻别 2020-12-15 01:24

Hello, i have the following code in SQL Server, why if i want to calculate the sTArea of @geog fails and with @geom succeed?, how can i convert this polyg

1条回答
  •  醉梦人生
    2020-12-15 02:28

    I poked around a little and this answer How can I convert Geometry data into a Geography data in MS SQL Server 2008? which more or less just points to http://blogs.msdn.com/b/edkatibah/archive/2008/08/19/working-with-invalid-data-and-the-sql-server-2008-geography-data-type-part-1b.aspx leads me to a reasonable explanation and working code.

    The crux: You have to make sure your geometry can be translated to valid geography first.

    The code (which can certainly have some operations combined, but they are broken out here for clarity.)

    DECLARE @geog GEOGRAPHY;
    DECLARE @geom GEOMETRY;
    
    SET @geom = GEOMETRY::STGeomFromText('POLYGON ((-99.213546752929688 19.448402404785156, -99.2157974243164 19.449802398681641, -99.2127456665039 19.450002670288086, -99.213546752929688 19.448402404785156))', 4326); 
    SET @geom = @geom.MakeValid() --Force to valid geometry
    SET @geom = @geom.STUnion(@geom.STStartPoint()); --Forces the correct the geometry ring orientation
    SET @geog = GEOGRAPHY::STGeomFromText(@geom.STAsText(),4326) 
    
    SELECT @geog.STArea();
    

    And for those that won't read all the way through Spatial Ed's blog post one important tip, "please bear in mind that this approach is naive in that it does not accommodate several potential edge conditions. Never-the-less, this approach should work in many cases."

    0 讨论(0)
提交回复
热议问题