溶解重叠多边形(使用GDAL / OGR),同时保持非连接结果不同

时间:2017-10-31 14:57:03

标签: python gdal shapely ogr fiona

有没有办法使用任何GDAL / OGR API或命令行工具来解散(合并)重叠多边形,同时保持产生的非重叠区域不同?我经常搜索,找不到任何需要的东西。但是,我认为这个问题还不太可能解决。

以下是我需要的更详细说明:

  • 我的输入包含单个形状文件(ESRI Shapefile)和单个图层。
  • 此图层包含无法通过属性区分的多边形。 (所有属性都相同)。
  • 他们中的许多都是重叠的,我想得到那些重叠的人的联合。
  • 未连接的区域应生成单独的多边形。

这是造成麻烦的最后一点。除了最后一点,我基本上得到了我需要的东西。如果我运行解决形状文件的典型解决方案

$ ogr2ogr -f "ESRI Shapefile" dissolved.shp input.shp -dialect sqlite -sql "select ST_union(Geometry) from input"

我最终得到一个包含所有内容的多边形,即使这些区域没有连接。

更新 我完全放弃了GDAL解决了这个问题。正如许多消息来源所指出的那样,使用fiona和使用shapefile时通常是一种更好的方法。我在下面发布了我的解决方案。

2 个答案:

答案 0 :(得分:1)

所以,经过多次不成功的尝试后,我放弃了gdal / ogr,继续身材匀称和fiona。这完全符合我的需要。过滤是必要的,因为我的数据集包含自相交的多边形,需要在调用cascaded_union之前将其过滤掉。

import fiona                                                                                                       
from shapely.ops import cascaded_union                                                                             
from shapely.geometry import shape, mapping  

with fiona.open(src, 'r') as ds_in:                                                                                                                                                                                                                   
    crs = ds_in.crs 
    drv = ds_in.driver 

    filtered = filter(lambda x: shape(x["geometry"]).is_valid, list(ds_in))                                                                                   

    geoms = [shape(x["geometry"]) for x in filtered]                                                   
    dissolved = cascaded_union(geoms)                                    

schema = {                                                                                                     
    "geometry": "Polygon",                                                                                     
    "properties": {"id": "int"}                                                                                
}  

with fiona.open(dst, 'w', driver=drv, schema=schema, crs=crs) as ds_dst:                                       
    for i,g in enumerate(dissolved):                                                                           
        ds_dst.write({"geometry": mapping(g), "properties": {"id": i}}) 

答案 1 :(得分:1)

我遇到了类似的问题,并像这样解决了这个问题,并考虑了Taking Union of several geometries in GEOS Python?的所有先前答案:

import os
from osgeo import ogr

def createDS(ds_name, ds_format, geom_type, srs, overwrite=False):
    drv = ogr.GetDriverByName(ds_format)
    if os.path.exists(ds_name) and overwrite is True:
        deleteDS(ds_name)
    ds = drv.CreateDataSource(ds_name)
    lyr_name = os.path.splitext(os.path.basename(ds_name))[0]
    lyr = ds.CreateLayer(lyr_name, srs, geom_type)
    return ds, lyr

def dissolve(input, output, multipoly=False, overwrite=False):
    ds = ogr.Open(input)
    lyr = ds.GetLayer()
    out_ds, out_lyr = createDS(output, ds.GetDriver().GetName(), lyr.GetGeomType(), lyr.GetSpatialRef(), overwrite)
    defn = out_lyr.GetLayerDefn()
    multi = ogr.Geometry(ogr.wkbMultiPolygon)
    for feat in lyr:
        if feat.geometry():
            feat.geometry().CloseRings() # this copies the first point to the end
            wkt = feat.geometry().ExportToWkt()
            multi.AddGeometryDirectly(ogr.CreateGeometryFromWkt(wkt))
    union = multi.UnionCascaded()
    if multipoly is False:
        for geom in union:
            poly = ogr.CreateGeometryFromWkb(geom.ExportToWkb())
            feat = ogr.Feature(defn)
            feat.SetGeometry(poly)
            out_lyr.CreateFeature(feat)
    else:
        out_feat = ogr.Feature(defn)
        out_feat.SetGeometry(union)
        out_lyr.CreateFeature(out_feat)
        out_ds.Destroy()
    ds.Destroy()
    return True

UnionCascaded要求MultiPolygon作为几何类型,这就是为什么我实现了重新创建单个多边形的选项的原因。您还可以在命令行中将ogr2ogr与选项-explodecollections一起使用:

ogr2ogr -f "ESRI Shapefile" -explodecollections dissolved.shp input.shp -dialect sqlite -sql "select ST_union(Geometry) from input"