Philipp Rudiger
Philipp Rudiger
To kick this off I suggest let's break this into three tasks: 1. Research xarray-datatree storage conventions in zarr, summarize the options here and then write a notebook that takes...
Oh I suppose the part I missed about the microscopy imagery dataset is that you indeed might want a time cross-section so it might still be useful to resample it...
Note if you don't want to use the `downsample1d` operation it should be straightforward to just use the `tsdownsample` library directly.
No worries it's not a super high priority.
>So, I'm wondering whether each channel should be downsampled individually (looped) or together (stacked)? Timeseries should be downsampled individually (although it can of course happen in parallel) since the LTTB...
Not sure if decimation or downsampling is the better approach here. Certainly we could simply apply `regrid` on the 2D array keeping the number of channels fixed so it only...
Could you try: ``` sub_ds = _extract_ds(ts_dt, zoom_level, ch).sel(time=x_slice).persist() ```
Not sure what precisely was causing that in older Panel versions but the memory works correctly with Panel master.
Made a bunch of updates but one thing I haven't solved is how to deal with the in-memory data source correctly. Since it can't be serialized properly (at least for...
Seems like someone else encountered this in a slightly different setup: https://github.com/holoviz/panel/issues/5930