Skip to content
Merged
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: 1 addition & 1 deletion docs/getting_started/explanation_concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ We have to be careful with writing kernels for vector fields on Curvilinear grid
- [Sample fields like temperature](../user_guide/examples/tutorial_sampling.ipynb).
- [Mimic the behaviour of ARGO floats](../user_guide/examples/tutorial_Argofloats.ipynb).
- [Add diffusion to approximate subgrid-scale processes and unresolved physics](../user_guide/examples/tutorial_diffusion.ipynb).
- [Convert between units in m/s and degrees](../user_guide/examples/tutorial_unitconverters.ipynb).
- [Convert velocities between units in m s<sup>-1</sup> and degrees s<sup>-1</sup>](../user_guide/examples/tutorial_velocityconversion.ipynb).
```

## 4. Execute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Nemo 3D tutorial\n"
"# 🖥️ Nemo 3D tutorial\n"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ The tutorials written for Parcels v3 are currently being updated for Parcels v4.
:titlesonly:
examples/explanation_grids.md
examples/tutorial_nemo_curvilinear.ipynb
examples_v3/tutorial_nemo_3D.ipynb # TODO move to examples folder
examples/tutorial_unitconverters.ipynb
examples/tutorial_nemo_3D.ipynb
examples/tutorial_velocityconversion.ipynb
examples/tutorial_nestedgrids.ipynb
```

Expand Down
1 change: 0 additions & 1 deletion src/parcels/_core/fieldset.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ def add_constant_field(self, name: str, value, mesh: Mesh = "spherical"):
Value of the constant field
mesh : str
String indicating the type of mesh coordinates,
see also `this tutorial <../examples/tutorial_unitconverters.ipynb>`__:

1. spherical (default): Lat and lon in degree, with a
correction for zonal velocity U near the poles.
Expand Down
Loading