I'm getting the following warning reading a geojson with geopanda's read_file():
...geodataframe.py:422: RuntimeWarning: Sequential read of iterator was interrupted. Resetting iterator. This can negatively impact the performance.
for feature in features_lst:
Here's the code sample I used:
crime_gdf = gpd.read_file('datasets/crimes.geojson', bbox=bbox)
crimes.geojson
is a file containing a large number of points, each with a 'Crime type'
bbox
defines the boundaries
The code runs as expected, but I don't understand that warning.
EDIT
I converted the geojson to feather, and I get the same warning.