diff --git a/doc/source/reference.rst b/doc/source/reference.rst index 3617a3f..714c0b6 100644 --- a/doc/source/reference.rst +++ b/doc/source/reference.rst @@ -53,6 +53,8 @@ The following Shapely methods and attributes are available on .. automethod:: geopandas.GeoSeries.intersects +.. automethod:: geopandas.GeoSeries.overlaps + .. automethod:: geopandas.GeoSeries.touches .. automethod:: geopandas.GeoSeries.within diff --git a/geopandas/base.py b/geopandas/base.py index 39e1e75..6503ca7 100644 --- a/geopandas/base.py +++ b/geopandas/base.py @@ -374,7 +374,14 @@ class GeoPandasBase(object): return _binary_op("intersects", self, other) def overlaps(self, other): - """Return True for all geometries that overlap *other*, else False""" + """Returns True for all geometries that overlap *other*, else False. + + Parameters + ---------- + other : GeoSeries or geometric object + The GeoSeries (elementwise) or geometric object to test if + overlaps. + """ return _binary_op("overlaps", self, other) def touches(self, other):