Return the union of the two geometries.
(self, other)
| 180 | # ### Geometry set-like operations ### |
| 181 | # g = g1 | g2 |
| 182 | def __or__(self, other): |
| 183 | "Return the union of the two geometries." |
| 184 | return self.union(other) |
| 185 | |
| 186 | # g = g1 & g2 |
| 187 | def __and__(self, other): |