Skip to content

Commit

Permalink
augmenting axis fall-back table (#584) (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
durack1 committed Feb 8, 2024
1 parent fbf1db6 commit 94271f1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion xcdat/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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",
],
}


Expand Down

0 comments on commit 94271f1

Please sign in to comment.