Return True if geometry is within a given distance from the other. Refer to `shapely.dwithin` for full documentation.
(self, other, distance)
| 831 | return _maybe_unpack(shapely.within(self, other)) |
| 832 | |
| 833 | def dwithin(self, other, distance): |
| 834 | """Return True if geometry is within a given distance from the other. |
| 835 | |
| 836 | Refer to `shapely.dwithin` for full documentation. |
| 837 | """ |
| 838 | return _maybe_unpack(shapely.dwithin(self, other, distance)) |
| 839 | |
| 840 | def equals_exact(self, other, tolerance=0.0, *, normalize=False): |
| 841 | """Return True if the geometries are equivalent within the tolerance. |