I try to merge two Shapely Objects in my Python Project.
There is a sort of kind of manual that describes some features of Shapely such as cascaded_union() but I that only works for Polygons. The shapely.ops.unary_union() method should work for other geometries as well but I can’t get it to work.
In a nutshell: how do I merge 2 LinearRing Objects?
I actually solved the problem myself.
to make polygons from my rings. then I create an array with those polygons. merge them with cascaded_union and create a LinearRing from the new polygon.