You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GeoPandas read_file and to_file attempts a path.expanduser() which raises NotImplementedError when path is a UPath.
Is it intended that UPath.expanduser must raise NotImplementedError, or is it a matter of not getting round to it yet? For context I have had this issue when attempting to read/write on GCS.
In the meantime I am using a workaround to read/write via a io.BytesIO buffer, e.g.:
GeoPandas
read_file
andto_file
attempts apath.expanduser()
which raisesNotImplementedError
whenpath
is aUPath
.Is it intended that
UPath.expanduser
must raiseNotImplementedError
, or is it a matter of not getting round to it yet? For context I have had this issue when attempting to read/write on GCS.In the meantime I am using a workaround to read/write via a
io.BytesIO
buffer, e.g.:The text was updated successfully, but these errors were encountered: