I'm looking for approach to merge polygons which produce holes that covers between polygons. I already tried to use cascading union in Shapely, but it gives polygon that cover holes.
Reference question : polygon union without holes
expected output
I'm looking for approach to merge polygons which produce holes that covers between polygons. I already tried to use cascading union in Shapely, but it gives polygon that cover holes.
Reference question : polygon union without holes
expected output
I just solved this, you can extract list(concatenated_polygon.interiors)
and pass it to MultiPolygon Geojson object where first geometry is Polygon Outerline and the rest are holes LinearRing