Skip to content

Commit 30e3969

Browse files
committed
add ocean constants for future use cases, can be ignored rn
1 parent 51614eb commit 30e3969

File tree

1 file changed

+22
-0
lines changed
  • climateset/download/constants

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class OmipConstants:
2+
"""
3+
Attributes:
4+
NODE_LINK (str): Where the data can be accessed
5+
MODEL_SOURCES (List<str>): Identifiers for supported climate models
6+
VAR_SOURCE_LOOKUP (Dict<str, List<str>>): model and raw variables
7+
SUPPORTED_EXPERIMENTS (list<str>): experiments of climate models (runs) that are supported
8+
"""
9+
10+
NODE_LINK = "http://esgf-data2.llnl.gov"
11+
12+
MODEL_SOURCES = [
13+
"NorESM2-LM",
14+
]
15+
16+
VAR_SOURCE_LOOKUP = [
17+
"omldamax",
18+
]
19+
20+
SUPPORTED_EXPERIMENTS = [
21+
"omip1",
22+
]

0 commit comments

Comments
 (0)