From 94271f151b182c6b8dd4cb726df1dcc2658e2b4d Mon Sep 17 00:00:00 2001 From: "Paul J. Durack" Date: Thu, 8 Feb 2024 14:37:43 -0800 Subject: [PATCH] augmenting axis fall-back table (#584) (#602) --- xcdat/axis.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/xcdat/axis.py b/xcdat/axis.py index c32f02c8..1fc36008 100644 --- a/xcdat/axis.py +++ b/xcdat/axis.py @@ -2,6 +2,7 @@ Axis module for utilities related to axes, including functions to manipulate coordinates. """ + from typing import Dict, List, Literal, Optional, Tuple, Union import numpy as np @@ -44,7 +45,17 @@ "X": ["longitude", "lon"], "Y": ["latitude", "lat"], "T": ["time"], - "Z": ["vertical", "height", "pressure", "lev", "plev"], + "Z": [ + "vertical", + "height", + "pressure", + "lev", + "plev", + "depth", + "deptht", + "olevel", + "rho", + ], }