I don't know how to add two polygons in Python using Shapely.
By adding I mean for instance if I was adding two squares with height 4 and width 2, and they had the same coordinates, it should return a square that has height 8 and width 2.
I have tried using MultiPolygons and also using union between the two polygons but I'm not able to get the desired accumulative height result.
Does anybody know how to do what I described? Or are there any other Python modules out there that will allow me to do the same?