geopandas.GeoSeries.touches

GeoSeries.touches(self, other)

Returns a Series of dtype('bool') with value True for each geometry that touches other.

An object is said to touch other if it has at least one point in common with other and its interior does not intersect with any part of the other.

Parameters
otherGeoSeries or geometric object

The GeoSeries (elementwise) or geometric object to test if is touched.