Return True if this geometry overlaps the other.
(self, other)
| 528 | return self._topology(capi.ogr_contains, other) |
| 529 | |
| 530 | def overlaps(self, other): |
| 531 | "Return True if this geometry overlaps the other." |
| 532 | return self._topology(capi.ogr_overlaps, other) |
| 533 | |
| 534 | # #### Geometry-generation Methods #### |
| 535 | def _geomgen(self, gen_func, other=None): |