-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclimate.yaml
More file actions
101 lines (98 loc) · 2.38 KB
/
climate.yaml
File metadata and controls
101 lines (98 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
plugins:
source:
- module: intake_xarray
- module: remote_climate_data
sources:
Global_Carbon_Budget_2025:
description: Global Carbon Budget 2025
metadata:
url: https://globalcarbonbudget.org/
doi:
- https://doi.org/10.5194/essd-2025-659
- https://doi.org/10.18160/gcp-2025
driver: excel_url
args:
urlpath: simplecache::https://data.icos-cp.eu/licence_accept?ids=%5B%22UtUDiUg-PuYWkAiHoUNn83e0%22%5D
sheet_name: Global Carbon Budget
header: 21
index_col: Year
skipfooter: 0
Global_Carbon_Budget_2021:
description: Global Carbon Budget 2021
metadata:
url: https://www.globalcarbonproject.org/carbonbudget/
doi:
- https://doi.org/10.5194/essd-2021-386
- https://doi.org/10.18160/gcp-2021
driver: excel_url
args:
urlpath: simplecache::https://data.icos-cp.eu/licence_accept?ids=%5B%220ST81nXCND5VfAQdOCSJDveT%22%5D
sheet_name: Global Carbon Budget
header: 20
index_col: Year
skipfooter: 0
NOAA_correlation:
description: climate indices from psl.noaa.gov/data/correlation
metadata:
url: https://www.psl.noaa.gov/data/correlation/
driver: csv
parameters:
index:
description: name of the index
default: nina34
type: str
allowed:
- pna
- wp
- ea
- nao
- jonesnao
- soi
- nina3
- censo
- oni
- nina1
- nina4
- nina34
- np
- hurr
- pacwarm
- swmonsoon
args:
urlpath: simplecache::https://psl.noaa.gov/data/correlation/{{index}}.data
sep: ' '
skiprows: 3
skipfooter: 4
dtype:
year: object
names:
- year
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
na_values:
- -999.90
- '-999.90'
- '-99.90'
- -99.90
- -99.0
- '-99.0'
engine: python
NOAA_correlation_xr:
description: NOAA_correlation as xr.DataArray
driver: intake.source.derived.GenericTransform
args:
targets:
- NOAA_correlation
transform: "remote_climate_data.utils.convert.monthly_csv_to_DataArray"
transform_kwargs: {}