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
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ authors:
family-names: Smith
repository-code: 'https://github.com/MPAS-Dev/MPAS-Tools'
url: 'https://mpas-dev.github.io/MPAS-Tools/master/'
version: 1.6.0
date-released: '2026-05-09'
version: 2.0.0
date-released: '2026-06-26'
8 changes: 8 additions & 0 deletions conda_package/docs/ocean/depth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ directly if one has a suitable ``refBottomDepth`` data array indicating the
reference depth of the bottom of each layer in a 1D coordinate that is
independent of both time and horizontal coordinate.

.. warning::

This 1D ``depth`` coordinate relies on ``refBottomDepth`` and therefore
assumes a z-level/z-star vertical coordinate. It is **not supported for
Omega or other general vertical coordinates**, which do not provide
``refBottomDepth``. In those cases, use the 3D ``zMid`` coordinate
(:py:func:`mpas_tools.ocean.depth.add_zmid()`) described below.


Adding a 3D zMid coordinate
---------------------------
Expand Down
2 changes: 1 addition & 1 deletion conda_package/mpas_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (1, 6, 0)
__version_info__ = (2, 0, 0)
__version__ = '.'.join(str(vi) for vi in __version_info__)
Loading
Loading