Return True if this geometry contains the other.
(self, other)
| 524 | return self._topology(capi.ogr_within, other) |
| 525 | |
| 526 | def contains(self, other): |
| 527 | "Return True if this geometry contains the other." |
| 528 | return self._topology(capi.ogr_contains, other) |
| 529 | |
| 530 | def overlaps(self, other): |
| 531 | "Return True if this geometry overlaps the other." |
no test coverage detected