Return True if this geometry is equivalent to the other.
(self, other)
| 504 | return self._topology(capi.ogr_intersects, other) |
| 505 | |
| 506 | def equals(self, other): |
| 507 | "Return True if this geometry is equivalent to the other." |
| 508 | return self._topology(capi.ogr_equals, other) |
| 509 | |
| 510 | def disjoint(self, other): |
| 511 | "Return True if this geometry and the other are spatially disjoint." |