I understand that I can read the parquet file in pandas, but why does the documentation claim you can read into a spatial dataframe when you cannot?
The docs claim, new in version 1.9 and I'm using arcgis version 2.0.1
This is from the docs:
static from_parquet
(path, columns=None, **kwargs)¶ Load a Parquet object from the file path, returning a Spatially Enabled DataFrame.
Returns
Spatially Enabled DataFrame
>>> df = pd.DataFrame.spatial.read_parquet("data.parquet") https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html?
but every time I try to read a parquet file, i get the same error
AttributeError: type object 'GeoAccessor' has no attribute 'read_parquet'
---------------------------------------------------------------------------
Why not remove it from the docs if you cannot read a parquet file?
I