Return True if this geometry touches the other.
(self, other)
| 512 | return self._topology(capi.ogr_disjoint, other) |
| 513 | |
| 514 | def touches(self, other): |
| 515 | "Return True if this geometry touches the other." |
| 516 | return self._topology(capi.ogr_touches, other) |
| 517 | |
| 518 | def crosses(self, other): |
| 519 | "Return True if this geometry crosses the other." |