ratt-ru / dask-ms

Implementation of a dask/xarray dataset backed by a CASA MS
https://dask-ms.readthedocs.io
Other
19 stars 7 forks source link

xds_from_zarr should fall over if argument doesn't point to anything #258

Closed landmanbester closed 2 years ago

landmanbester commented 2 years ago

Description

xds_from_zarr will accept any string and return an empty list if nothing is found at the location. It should fall over or at least issue a warning. Pretty sure it used to fall over.

What I Did

from daskms.experimental.zarr import xds_from_zarr
xds = xds_from_zarr('hello')
print(xds)