diff --git a/docs/getting_started/explanation_concepts.md b/docs/getting_started/explanation_concepts.md index b58ddb61eb..bce1b30eb6 100644 --- a/docs/getting_started/explanation_concepts.md +++ b/docs/getting_started/explanation_concepts.md @@ -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-1 and degrees s-1](../user_guide/examples/tutorial_velocityconversion.ipynb). ``` ## 4. Execute diff --git a/docs/user_guide/examples_v3/tutorial_nemo_3D.ipynb b/docs/user_guide/examples/tutorial_nemo_3D.ipynb similarity index 99% rename from docs/user_guide/examples_v3/tutorial_nemo_3D.ipynb rename to docs/user_guide/examples/tutorial_nemo_3D.ipynb index 86bc7fc38e..38d79a5bab 100644 --- a/docs/user_guide/examples_v3/tutorial_nemo_3D.ipynb +++ b/docs/user_guide/examples/tutorial_nemo_3D.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Nemo 3D tutorial\n" + "# 🖥️ Nemo 3D tutorial\n" ] }, { diff --git a/docs/user_guide/examples/tutorial_unitconverters.ipynb b/docs/user_guide/examples/tutorial_velocityconversion.ipynb similarity index 100% rename from docs/user_guide/examples/tutorial_unitconverters.ipynb rename to docs/user_guide/examples/tutorial_velocityconversion.ipynb diff --git a/docs/user_guide/index.md b/docs/user_guide/index.md index c97864c699..1729f4af3d 100644 --- a/docs/user_guide/index.md +++ b/docs/user_guide/index.md @@ -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 ``` diff --git a/src/parcels/_core/fieldset.py b/src/parcels/_core/fieldset.py index 289d41c025..50c764c2d4 100644 --- a/src/parcels/_core/fieldset.py +++ b/src/parcels/_core/fieldset.py @@ -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.