view = {
const store = new zarr.FetchStore(url);
const spied = tinyspy.spyOn(store, 'get');
const arr = await zarr.open(store, { kind: "array" });
const channelIndex = ["red", "green", "blue"].indexOf(radios);
const view = await zarr.get(arr, [null, null, channelIndex]);
return [view, spied.calls, spied.returns];
}