geopandas.GeoSeries.crosses

GeoSeries.crosses(self, other)

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

An object is said to cross other if its interior intersects the interior of the other but does not contain it, and the dimension of the intersection is less than the dimension of the one or the other.

Parameters
otherGeoSeries or geometric object

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