Return True if this geometry intersects with the other.
(self, other)
| 500 | return func(self.ptr, other.ptr) |
| 501 | |
| 502 | def intersects(self, other): |
| 503 | "Return True if this geometry intersects with the 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." |