diff --git a/atl11_play.ipynb b/atl11_play.ipynb index 69bef72..3598287 100644 --- a/atl11_play.ipynb +++ b/atl11_play.ipynb @@ -123,8 +123,11 @@ }, "outputs": [], "source": [ + "# Load dataset from all Zarr stores\n", + "# Aligning chunks spatially along cycle_number (i.e. time)\n", "ds = xr.open_mfdataset(\n", " paths=stores,\n", + " chunks={\"cycle_number\": 6},\n", " group=\"pt123\",\n", " engine=\"zarr\",\n", " combine=\"nested\",\n", diff --git a/atl11_play.py b/atl11_play.py index 8451279..1ca6b76 100644 --- a/atl11_play.py +++ b/atl11_play.py @@ -63,8 +63,11 @@ print(f"{len(stores)} reference ground track Zarr stores") # %% +# Load dataset from all Zarr stores +# Aligning chunks spatially along cycle_number (i.e. time) ds = xr.open_mfdataset( paths=stores, + chunks={"cycle_number": 6}, group="pt123", engine="zarr", combine="nested",