Return True if this geometry and the other are spatially disjoint.
(self, 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." |
| 512 | return self._topology(capi.ogr_disjoint, other) |
| 513 | |
| 514 | def touches(self, other): |
| 515 | "Return True if this geometry touches the other." |