DOC: modify read_file bbox example so that bbox is shaped like a box (#2069)

This commit is contained in:
danielpallen
2021-08-22 20:27:07 +02:00
committed by GitHub
parent 4e2c8343e5
commit d07003dfd2
+1 -1
View File
@@ -112,7 +112,7 @@ def _read_file(filename, bbox=None, mask=None, rows=None, **kwargs):
Reading only geometries intersecting ``bbox``:
>>> df = geopandas.read_file("nybb.shp", bbox=(0, 10, 0, 20)) # doctest: +SKIP
>>> df = geopandas.read_file("nybb.shp", bbox=(0, 0, 10, 20)) # doctest: +SKIP
Returns
-------