when loading to_dask with caching as in pangeo-data/pangeo-datastore#113, fsspec.open_local first loads the whole dataset and then opens the data in xarray, still with chunks but after having spend the time on downloading.
is there a way to circumvent this in intake-xarray or is this a consequence from fsspec caching that cannot be changed for intake-xarray?
it would be great to just do to_dask() without spending the time to download and only cache when xarray runs compute.
when loading
to_daskwith caching as in pangeo-data/pangeo-datastore#113,fsspec.open_localfirst loads the whole dataset and then opens the data inxarray, still with chunks but after having spend the time on downloading.is there a way to circumvent this in
intake-xarrayor is this a consequence fromfsspeccaching that cannot be changed forintake-xarray?it would be great to just do
to_dask()without spending the time to download and only cache whenxarrayrunscompute.