Skip to content

Commit b25f25b

Browse files
committed
add labour sector
1 parent 0d948fc commit b25f25b

File tree

4 files changed

+124
-0
lines changed

4 files changed

+124
-0
lines changed

definitions/sector.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,13 @@
102102
"ISIMIP2a": "https://www.isimip.org/protocol/2a/",
103103
"ISIMIP2b": "https://www.isimip.org/protocol/2b/"
104104
}
105+
},
106+
{
107+
"specifier": "labour",
108+
"title": "Labour",
109+
"urls": {
110+
"ISIMIP2a": "https://www.isimip.org/protocol/2a/",
111+
"ISIMIP2b": "https://www.isimip.org/protocol/2b/"
112+
}
105113
}
106114
]

definitions/variable.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2103,5 +2103,47 @@
21032103
],
21042104
"specifier": "fldfrc",
21052105
"units": ""
2106+
},
2107+
{
2108+
"long_name": "Changes in Effective Labour",
2109+
"extension": [
2110+
"<inoutdoor>"
2111+
],
2112+
"products": [
2113+
"OutputData"
2114+
],
2115+
"sectors": [
2116+
"labour"
2117+
],
2118+
"specifier": "el",
2119+
"units": "%"
2120+
},
2121+
{
2122+
"long_name": "Changes in Labour Productivity",
2123+
"extension": [
2124+
"<inoutdoor>"
2125+
],
2126+
"products": [
2127+
"OutputData"
2128+
],
2129+
"sectors": [
2130+
"labour"
2131+
],
2132+
"specifier": "lp",
2133+
"units": "%"
2134+
},
2135+
{
2136+
"long_name": "Changes in Labour Supply",
2137+
"extension": [
2138+
"<inoutdoor>"
2139+
],
2140+
"products": [
2141+
"OutputData"
2142+
],
2143+
"sectors": [
2144+
"labour"
2145+
],
2146+
"specifier": "ls",
2147+
"units": "%"
21062148
}
21072149
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"file": [
3+
"(?P<model>[a-z0-9-]+)",
4+
"(?P<climate_forcing>[a-z0-9-]+)",
5+
"(?P<bias_adjustment>[a-z0-9-]+)",
6+
"(?P<climate_scenario>[a-z0-9-]+)",
7+
"(?P<soc_scenario>[a-z0-9-]+)",
8+
"(?P<variable>[a-z0-9-]+)(-(?P<inoutdoor>[a-z]+)?)",
9+
"(?P<region>(global))",
10+
"(?P<time_step>[a-z0-9-]+)",
11+
"(?P<start_year>\\d{4})",
12+
"(?P<end_year>\\d{4})"
13+
]
14+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"type": "object",
3+
"required": [
4+
"specifiers"
5+
],
6+
"properties": {
7+
"specifiers": {
8+
"type": "object",
9+
"required": [
10+
"model",
11+
"climate_forcing",
12+
"bias_adjustment",
13+
"climate_scenario",
14+
"soc_scenario",
15+
"variable",
16+
"inoutdoor",
17+
"region",
18+
"time_step"
19+
],
20+
"properties": {
21+
"model": {
22+
"type": "string"
23+
},
24+
"climate_forcing": {
25+
"type": "string"
26+
},
27+
"bias_adjustment": {
28+
"type": "string"
29+
},
30+
"climate_scenario": {
31+
"type": "string"
32+
},
33+
"soc_scenario": {
34+
"type": "string"
35+
},
36+
"sens_scenario": {
37+
"type": "string"
38+
},
39+
"variable": {
40+
"type": "string"
41+
},
42+
"inoutdoor": {
43+
"type": "string"
44+
},
45+
"region": {
46+
"type": "string"
47+
},
48+
"time_step": {
49+
"type": "string"
50+
},
51+
"start_year": {
52+
"type": "number"
53+
},
54+
"end_year": {
55+
"type": "number"
56+
}
57+
}
58+
}
59+
}
60+
}

0 commit comments

Comments
 (0)