GeoSeries.
contains
Returns a Series of dtype('bool') with value True for each geometry that contains other.
Series
dtype('bool')
True
An object is said to contain other if its interior contains the boundary and interior of the other object and their boundaries do not touch at all.
This is the inverse of within() in the sense that the expression a.contains(b) == b.within(a) always evaluates to True.
within()
a.contains(b) == b.within(a)
The GeoSeries (elementwise) or geometric object to test if is contained.