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 51614eb commit 30e3969Copy full SHA for 30e3969
climateset/download/constants/omip.py
@@ -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