Skip to content

Commit 770f40c

Browse files
authored
Add grads_dim to identifying criteria (#244)
1 parent a093991 commit 770f40c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

cf_xarray/criteria.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"Pressure",
5959
),
6060
"axis": ("Z",),
61+
"grads_dim": ("z",),
6162
},
6263
"vertical": {
6364
"standard_name": (
@@ -77,15 +78,23 @@
7778
"standard_name": ("projection_x_coordinate",),
7879
"_CoordinateAxisType": ("GeoX",),
7980
"axis": ("X",),
81+
"grads_dim": ("x",),
8082
},
8183
"Y": {
8284
"standard_name": ("projection_y_coordinate",),
8385
"_CoordinateAxisType": ("GeoY",),
8486
"axis": ("Y",),
87+
"grads_dim": ("y",),
88+
},
89+
"T": {
90+
"standard_name": ("time",),
91+
"_CoordinateAxisType": ("Time",),
92+
"axis": ("T",),
93+
"grads_dim": ("t",),
8594
},
86-
"T": {"standard_name": ("time",), "_CoordinateAxisType": ("Time",), "axis": ("T",)},
8795
"time": {
8896
"standard_name": ("time",),
97+
"grads_dim": ("t",),
8998
},
9099
}
91100

0 commit comments

Comments
 (0)