Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ dependencies:
- nbsphinx
- ipykernel
- pip
- xarray
- dask
172 changes: 87 additions & 85 deletions examples/4_sections_on_global_tripolar_grid.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions examples/load_example_model_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ def download_MOM6_example_data():
# download the data
url = 'https://zenodo.org/record/15384910/files/'
file_name = 'MOM6_global_example_sigma2_budgets_v0_0_6.nc'
os.makedirs("../data", exist_ok=True)
destination_path = f"../data/{file_name}"
if not os.path.exists(destination_path):
print(f"File '{file_name}' being downloaded to {destination_path}.")
Expand Down
Loading