Hello All,
I'm getting the following FutureWarning when using the SpatialDataFrame, e.g.:
sdf.query('PI == "NA"')
/.../python3.7/site-packages/arcgis/features/geo/_array.py:316: FutureWarning: Using a non-tuple sequence for multidimensional indexing is deprecated; use `arr[tuple(seq)]` instead of `arr[seq]`. In the future this will be interpreted as an array index, `arr[np.array(seq)]`, which will result either in an error or a different result.
return GeoArray(self.data[idx])
I can suppress the warning with:
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
but just wondered if it was anything to be concerned about. I'm using version 1.9.0.
Thanks!