Return a new geometry consisting of the region which is the union of this geometry and the other.
(self, other)
| 574 | return self._geomgen(capi.geom_sym_diff, other) |
| 575 | |
| 576 | def union(self, other): |
| 577 | """ |
| 578 | Return a new geometry consisting of the region which is the union of |
| 579 | this geometry and the other. |
| 580 | """ |
| 581 | return self._geomgen(capi.geom_union, other) |
| 582 | |
| 583 | @property |
| 584 | def centroid(self): |