Adele Morrison
Adele Morrison
The [Meridional_heat_transport.ipynb](https://github.com/COSIMA/cosima-recipes/blob/main/Recipes/Meridional_heat_transport.ipynb) notebook currently calculates heat transport by 3 methods. Two of those methods are clearly incorrect, as shown in the figure from the notebook, copied here. The blue line...
In @Thomas-Moore-Creative's COSIMA talk, there was a lot of interest in having a tutorial in the Recipes showing best practice for chunking for different types of problems. e.g. which dimensions...
A few of the recipes with global maps have the Arctic plotted incorrectly with Canada extending all the way to the north pole. This includes: - ~Bathymetry.ipynb~ - Compare_SSH_model_obs.ipynb -...
I'm trying to encourage new users to use Intake and not the cookbook database, but the [Make_Your_Own_Intake_Datastore tutorial](https://github.com/COSIMA/cosima-recipes/blob/main/Tutorials/Make_Your_Own_Intake_Datastore.ipynb) doesn't have instructions about what builder to use for regional mom6 models...
Apparently `compat="override"` is needed when opening sea ice data using Intake to deal with CICE coordinates better. It would be useful to add a comment into `ACCESS-NRI_Intake_Catalog.ipynb` to explain this.
I'm just giving instructions to a new COSIMA recipes user and am finding it hard to find a single tutorial to direct them to as a good intro. I used...
Add documentation at top of recipe with MOM6 variable names and any grid/diagnostic differences that users need to be aware of if they want to convert the recipe on their...
With this code: `expt = "OM4_025.JRA_RYF"` `start_time = "1990-01-01"` `end_time = "1990-12-31"` `psi = cat[expt].search(variable="vmo", frequency="1mon",file_id=".*rho2_l.*")` `psi = psi.to_dask(xarray_open_kwargs={"decode_timedelta": True}).sel(time=slice(start_time, end_time))` I am getting this warning: `[/g/data/xp65/public/apps/med_conda/envs/analysis3-25.09/lib/python3.11/site-packages/intake_esm/core.py:301](http://localhost:8888/g/data/xp65/public/apps/med_conda/envs/analysis3-25.09/lib/python3.11/site-packages/intake_esm/core.py#line=300): FutureWarning: When grouping...
Simplify these recipes to only use one model and combine to compare both with WOA and SSH observations. Also add documentation at top of recipe with MOM6 variable names and...
The assumed knowledge for COSIMA Recipe users is: - Python, xarray and Jupyter notebooks. - How to find and solve bugs in code when adapting for own use. Ensure that...