I am calling the .explode() method on a dask GeoDataFrame which results in the warning:
FutureWarning: Currently, index_parts defaults to True, but in the future, it will default to False to be consistent with Pandas. Use index_parts=True to keep the current behavior and True/False to silence the warning.
I tried passing index_parts=False which results in an error:
TypeError: _Frame.explode() got an unexpected keyword argument 'index_parts'
Is it possible to have the method accept an index_parts argument to silence the warning? I believe this is the relevant piece of code, line 377 in core.py:
I am calling the
.explode()
method on a dask GeoDataFrame which results in the warning:I tried passing
index_parts=False
which results in an error:Is it possible to have the method accept an
index_parts
argument to silence the warning? I believe this is the relevant piece of code, line 377 in core.py:Willing to help out with code changes, just wanted to see what the approach should be.