Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

augmenting axis fall-back table (#584) #602

Merged
merged 1 commit into from
Feb 8, 2024
Merged
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
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
Loading