We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf85f1 commit 4057962Copy full SHA for 4057962
2 files changed
src/access_moppy/driver.py
@@ -485,7 +485,6 @@ def __init__(
485
"6hrPlev",
486
"E1hr",
487
"Eday",
488
- "Emon",
489
"fx",
490
"Efx",
491
"atmos", # CMIP7 atmosphere table prefix
src/access_moppy/utilities.py
@@ -35,6 +35,7 @@
35
"Amon",
36
"Lmon",
37
"Omon",
38
+ "Emon",
39
"SImon",
40
"CFmon",
41
"mon",
@@ -674,6 +675,11 @@ def parse_cmip6_table_frequency(compound_name: str) -> pd.Timedelta:
674
675
# Land tables
676
"Lmon": pd.Timedelta(days=30),
677
"Lday": pd.Timedelta(days=1),
678
+ # Emergent/extended tables
679
+ "Emon": pd.Timedelta(days=30),
680
+ "Eday": pd.Timedelta(days=1),
681
+ "Eyr": pd.Timedelta(days=365),
682
+ "Efx": pd.Timedelta(days=0),
683
# Sea ice tables
684
"SImon": pd.Timedelta(days=30),
685
"SIday": pd.Timedelta(days=1),
0 commit comments