Skip to content

Commit 1eea95e

Browse files
committed
Add ISIMIP3b tropical cyclones data
1 parent b489c2d commit 1eea95e

File tree

10 files changed

+173
-8
lines changed

10 files changed

+173
-8
lines changed

definitions/climate_dataset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@
55

66
- specifier: tracks
77
title: Tracks
8+
9+
- specifier: chr
10+
title: CHR

definitions/climate_variable/tropical_cyclones.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,6 @@
179179
resolution: 300 arcsec grid
180180
path:
181181
ISIMIP3a: ISIMIP3a/InputData/climate/tropical_cyclones/obsclim/global/hourly/historical/<model>/<model>_obsclim_historical_rain_<storm_id>.nc
182-
simulation_rounds:
183-
- ISIMIP3a
184182
sectors:
185183
- coastal
186184

@@ -193,8 +191,6 @@
193191
resolution: 300 arcsec grid
194192
path:
195193
ISIMIP3a: ISIMIP3a/InputData/climate/tropical_cyclones/obsclim/global/storm/historical/<model>/<model>_obsclim_historical_maxrain_<year>.nc
196-
simulation_rounds:
197-
- ISIMIP3a
198194
sectors:
199195
- coastal
200196

@@ -207,8 +203,6 @@
207203
resolution: 300 arcsec grid
208204
path:
209205
ISIMIP3a: ISIMIP3a/InputData/climate/tropical_cyclones/obsclim/global/hourly/historical/<model>/<model>_obsclim_historical_wind_<storm_id>.nc
210-
simulation_rounds:
211-
- ISIMIP3a
212206
sectors:
213207
- coastal
214208

@@ -221,8 +215,6 @@
221215
resolution: 300 arcsec grid
222216
path:
223217
ISIMIP3a: ISIMIP3a/InputData/climate/tropical_cyclones/obsclim/global/storm/historical/<model>/<model>_obsclim_historical_windlifetimemax_<year>.nc
224-
simulation_rounds:
225-
- ISIMIP3a
226218
sectors:
227219
- coastal
228220

definitions/identifier.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,12 @@
128128
- specifier: subcategory
129129
title: Input subcategory
130130

131+
- specifier: tc_model
132+
title: Tropical cyclones model
133+
134+
- specifier: tc_ensemble_member
135+
title: Tropical cyclones ensemble member
136+
131137
- specifier: time_span
132138
title: Time span
133139

definitions/tc_model.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- specifier: chaz
2+
title: CHAZ
3+
4+
- specifier: mit
5+
title: MIT
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
path: >-
2+
(?P<simulation_round>[A-Za-z0-9]+)
3+
/(?P<product>[A-Za-z]+)
4+
/(?P<category>[a-z0-9-_]+)
5+
/(?P<subcategory>[a-z0-9-_]+)
6+
/(?P<tc_model>(CHAZ))
7+
/(?P<region>(global))
8+
/(storm)
9+
/(?P<climate_scenario>[a-z0-9]+)
10+
/(?P<climate_forcing>[A-Za-z0-9-]+)
11+
12+
dataset: >-
13+
(?P<tc_model>(chaz))
14+
_(?P<climate_forcing>[a-z0-9-]+)
15+
_(?P<climate_scenario>[a-z0-9]+)
16+
_(?P<climate_dataset>(chr))
17+
_(?P<tc_ensemble_member>[a-z0-9]+)
18+
_(?P<region>(global))
19+
20+
file: >-
21+
(?P<tc_model>(chaz))
22+
_(?P<climate_forcing>[a-z0-9-]+)
23+
_(?P<climate_scenario>[a-z0-9]+)
24+
_(?P<climate_dataset>(chr))
25+
_(?P<tc_ensemble_member>[a-z0-9]+)
26+
_(?P<region>(global))
27+
_(?P<start_year>\d{4})
28+
_(?P<end_year>\d{4})
29+
30+
suffix:
31+
- .nc
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
path: >-
2+
(?P<simulation_round>[A-Za-z0-9]+)
3+
/(?P<product>[A-Za-z]+)
4+
/(?P<category>[a-z0-9-_]+)
5+
/(?P<subcategory>[a-z0-9-_]+)
6+
/(?P<tc_model>(MIT))
7+
/(?P<region>(global))
8+
/(?P<time_step>[a-z0-9-]+)
9+
/(?P<climate_scenario>[a-z0-9]+)
10+
/(?P<model>[A-Za-z0-9-.]+)
11+
/(?P<climate_forcing>[A-Za-z0-9-]+)
12+
13+
dataset: >-
14+
(?P<model>[a-z0-9-.]+)
15+
_(?P<tc_model>(mit))
16+
_(?P<climate_forcing>[a-z0-9-]+)
17+
_(?P<climate_scenario>[a-z0-9]+)
18+
_(?P<climate_variable>[a-z]+)
19+
_(?P<start_year>\d{4})
20+
21+
file: >-
22+
(?P<model>[a-z0-9-.]+)
23+
_(?P<tc_model>(mit))
24+
_(?P<climate_forcing>[a-z0-9-]+)
25+
_(?P<climate_scenario>[a-z0-9]+)
26+
_(?P<climate_variable>[a-z]+)
27+
_(?P<start_year>\d{4})
28+
_(?P<storm_id>\d{7})
29+
30+
suffix:
31+
- .nc
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
path: >-
2+
(?P<simulation_round>[A-Za-z0-9]+)
3+
/(?P<product>[A-Za-z]+)
4+
/(?P<category>[a-z0-9-_]+)
5+
/(?P<subcategory>[a-z0-9-_]+)
6+
/(?P<tc_model>(MIT))
7+
/(?P<region>(global))
8+
/(storm)
9+
/(?P<climate_scenario>[a-z0-9]+)
10+
/(?P<model>[A-Za-z0-9-.]+)
11+
/(?P<climate_forcing>[A-Za-z0-9-]+)
12+
13+
dataset: >-
14+
(?P<model>[a-z0-9-.]+)
15+
_(?P<tc_model>(mit))
16+
_(?P<climate_forcing>[a-z0-9-]+)
17+
_(?P<climate_scenario>[a-z0-9]+)
18+
_(?P<climate_variable>[a-z]+)
19+
20+
file: >-
21+
(?P<model>[a-z0-9-.]+)
22+
_(?P<tc_model>(mit))
23+
_(?P<climate_forcing>[a-z0-9-]+)
24+
_(?P<climate_scenario>[a-z0-9]+)
25+
_(?P<climate_variable>[a-z]+)
26+
_(?P<start_year>\d{4})
27+
28+
suffix:
29+
- .nc
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
path: >-
2+
(?P<simulation_round>[A-Za-z0-9]+)
3+
/(?P<product>[A-Za-z]+)
4+
/(?P<category>[a-z0-9-_]+)
5+
/(?P<subcategory>[a-z0-9-_]+)
6+
/(?P<tc_model>(MIT))
7+
/(?P<climate_dataset>(tracks))
8+
/(?P<time_step>[a-z0-9-]+)
9+
/(?P<climate_scenario>[a-z0-9]+)
10+
/(?P<climate_forcing>[A-Za-z0-9-]+)
11+
12+
dataset: >-
13+
(?P<climate_dataset>(tracks))
14+
_(?P<tc_model>(mit))
15+
_(?P<climate_forcing>[a-z0-9-]+)
16+
_(?P<climate_scenario>[a-z0-9]+)
17+
18+
file: >-
19+
(?P<climate_dataset>(tracks))
20+
_(?P<tc_model>(mit))
21+
_(?P<climate_forcing>[a-z0-9-]+)
22+
_(?P<climate_scenario>[a-z0-9]+)
23+
_(?P<start_year>\d{4})
24+
_(?P<end_year>\d{4})
25+
26+
suffix:
27+
- .nc
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
type: object
2+
required:
3+
- specifiers
4+
properties:
5+
specifiers:
6+
type: object
7+
required:
8+
- tc_model
9+
- climate_forcing
10+
- climate_scenario
11+
- start_year
12+
properties:
13+
tc_model:
14+
type: string
15+
model:
16+
type: string
17+
climate_forcing:
18+
type: string
19+
climate_scenario:
20+
type: string
21+
climate_dataset:
22+
type: string
23+
climate_variable:
24+
type: string
25+
region:
26+
type: string
27+
time_step:
28+
type: string
29+
start_year:
30+
type: number
31+
end_year:
32+
type: number
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[
2+
"simulation_round",
3+
"product",
4+
"category",
5+
"subcategory",
6+
"tc_model",
7+
"model | climate_dataset",
8+
"climate_variable"
9+
]

0 commit comments

Comments
 (0)