Datasets:
Formats:
parquet
Languages:
English
Size:
1K - 10K
Tags:
remote-sensing
carbon-flux
time-series
earth-system-science
knowledge-guided-machine-learning
process-based-modeling
File size: 8,999 Bytes
094d608 72746ea 094d608 72746ea 094d608 72746ea 094d608 | 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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | # Dimension definitions
This document defines the dimensions and array orientations used in the
released DERE dataset.
## Temporal prediction setup
The complete ED target sequence spans 29 calendar years from 1992 to 2020.
The ED target values from December 1992 are used once as the initial state.
Together with the monthly input features from the following 28 years, this
initial state is used to predict the ED target variables for every month of
the following 28 years.
The model performs prediction over 336 monthly time steps:
```text
28 years × 12 months = 336 monthly prediction steps
```
The temporal relationship is:
```text
Initial state:
ed_simulation_y from the final month of the first year
Inputs:
ed_simulation_x from every month of the following 28 years
Prediction targets:
ed_simulation_y from every month of the following 28 years
```
## Core dimensions
| Dimension | Meaning |
|---|---|
| `sample` | A sampled global grid cell or an in-situ site matched to the corresponding simulation grid cell |
| `full_year` | Year axis of the complete ED target sequence, corresponding to 1992–2020; length 29 |
| `prediction_year` | Year axis of the prediction period, corresponding to 1993–2020; length 28 |
| `month` | Calendar month within a year; length 12 |
| `feature` | Model-input variable; length 136 |
| `simulation_target` | ED simulation output variable; length 10 |
| `observed_target` | In-situ carbon-flux variable; length 3 |
| `age_class` | Forest initial-age class used for age-specific ED simulation outputs, ED simulation PFT arrays, and LiDAR-derived age weights; length 18 |
| `network` | In-situ dataset identifier: `above` (ABoVE), `ameriflux` (AmeriFlux), `fluxnet` (FLUXNET), `icos-ww` (ICOS-WW), or `multiple` (sites occurring in more than one network, separated to keep the network-specific subsets non-overlapping) |
| `split` | Dataset partition. The released data contain training and testing splits. |
The 18 representative forest ages are:
```text
[1, 10, 20, 30, 41, 50, 60, 70, 90,
110, 140, 190, 240, 290, 340, 390, 440, 490]
```
## GlobalMask arrays
The GlobalMask dataset is divided into two non-overlapping subsets:
- `training split`: 3373 global grid-cell samples used for model training.
- `testing split`: 852 held-out global grid-cell samples used for final model
evaluation.
The two splits contain the same variables and use the same dimension
definitions. They differ only in the number of samples.
### `ed_simulation_x`
The array contains the monthly ED input features for the 28-year prediction
period.
Dimensions:
```text
[sample, prediction_year, month, feature]
```
Released shapes:
```text
training split: [3373, 28, 12, 136]
testing split: [852, 28, 12, 136]
```
### `ed_simulation_y`
The array contains the complete 29-year age-specific ED simulation target
sequence.
Dimensions:
```text
[sample, age_class, full_year, month, simulation_target]
```
Released shapes:
```text
training split: [3373, 18, 29, 12, 10]
testing split: [852, 18, 29, 12, 10]
```
The initial target state is derived from the final month of the first year:
```python
initial_y = ed_simulation_y[:, :, 0, -1, :]
```
Derived dimensions:
```text
[sample, age_class, simulation_target]
```
The prediction target contains every month of the following 28 years:
```python
target_y = ed_simulation_y[:, :, 1:, :, :]
```
Derived dimensions:
```text
[sample, age_class, prediction_year, month, simulation_target]
```
The model relationship is:
```text
initial_y from December 1992
+
ed_simulation_x from January 1993 through December 2020
→
target_y from January 1993 through December 2020
```
### `ed_simulation_pft_bl`, `ed_simulation_pft_nl`, and `ed_simulation_pft_gs`
The arrays contain the annual age-specific ED simulation PFT fractions for
broadleaf, needleleaf, and grass-and-shrub vegetation.
Dimensions:
```text
[sample, age_class, full_year]
```
Released shapes:
```text
training split: [3373, 18, 29]
testing split: [852, 18, 29]
```
BL, NL, and GS are stored as separate arrays, so `pft_type` is not an explicit
dimension.
### `lidar_age_weight_fraction`
The array contains the LiDAR-derived fraction associated with each of the
18 forest age classes.
Dimensions:
```text
[sample, age_class]
```
Released shapes:
```text
training split: [3373, 18]
testing split: [852, 18]
```
### `esa_cci_bl_fraction`, `esa_cci_nl_fraction`, and `esa_cci_gs_fraction`
The arrays contain the annual ESA CCI broadleaf, needleleaf, and grass-and-shrub
vegetation PFT fractions.
Dimensions:
```text
[sample, full_year]
```
Released shapes:
```text
training split: [3373, 29]
testing split: [852, 29]
```
The three PFT groups are stored as separate arrays. There is no monthly
dimension in these arrays.
## InSituMatched arrays
The number of matched in-situ sites depends on the network subset and data
split. Therefore, the symbolic `sample` dimension is used below instead of a
fixed sample count.
### `ed_simulation_x`
The array contains the same 28-year monthly ED input sequence used in the
GlobalMask dataset, extracted at the matched in-situ locations.
Dimensions:
```text
[sample, prediction_year, month, feature]
```
Shape:
```text
[sample, 28, 12, 136]
```
### `ed_simulation_y`
The array contains the complete 29-year age-specific ED simulation target
sequence at the matched in-situ locations.
Dimensions:
```text
[sample, age_class, full_year, month, simulation_target]
```
Shape:
```text
[sample, 18, 29, 12, 10]
```
The initial state and prediction target are derived in the same way as for
GlobalMask:
```python
initial_y = ed_simulation_y[:, :, 0, -1, :]
target_y = ed_simulation_y[:, :, 1:, :, :]
```
Derived shapes:
```text
initial_y:
[sample, 18, 10]
target_y:
[sample, 18, 28, 12, 10]
```
### `observed_y`
The array contains the in-situ carbon-flux observations.
Dimensions:
```text
[sample, full_year, month, observed_target]
```
Shape:
```text
[sample, 29, 12, 3]
```
The three observed target variables are:
```text
GPP
RECO
NEE
```
The first year is retained for temporal alignment with the complete ED target
sequence. For model evaluation, predictions are compared with the available
in-situ observations over the following 28-year prediction period. Missing
observation time steps are excluded from evaluation.
### `lidar_age_weight_fraction`
The array contains one LiDAR-derived fraction for each of the 18 age classes.
Dimensions:
```text
[sample, age_class]
```
Shape:
```text
[sample, 18]
```
### `esa_cci_bl_fraction`, `esa_cci_nl_fraction`, and `esa_cci_gs_fraction`
The arrays contain the annual ESA CCI broadleaf, needleleaf, and grass-and-shrub
vegetation PFT fractions at the matched in-situ locations.
Dimensions:
```text
[sample, full_year]
```
Shape:
```text
[sample, 29]
```
The three PFT groups are stored as separate arrays. There is no monthly
dimension in these arrays.
## Conceptual relationship to the paper
In the paper:
- `x_(s,t)` denotes physical and environmental conditions at location `s` and
time `t`.
- `c_k` denotes an initial forest-age state.
- `(y^P_(s,t))_k` denotes the ED simulation output corresponding to initial age
state `c_k`.
- `y_(s,t)` denotes the in-situ carbon-flux observation.
- `z_(s,t)` denotes the aggregated satellite PFT observation.
- `alpha_k` denotes the weight associated with an initial forest-age state.
In the released prediction setup, the first-year final-month ED target values
provide the one-time initial target state. The monthly input features from the
following 28 years are then used to predict the monthly ED target values over
the same 28-year period.
## Released-array summary
All released arrays use sample-first orientation whenever a `sample`
dimension is present.
### GlobalMask
```text
ed_simulation_x:
[sample, prediction_year, month, feature]
ed_simulation_y:
[sample, age_class, full_year, month, simulation_target]
ed_simulation_pft_bl:
[sample, age_class, full_year]
ed_simulation_pft_nl:
[sample, age_class, full_year]
ed_simulation_pft_gs:
[sample, age_class, full_year]
lidar_age_weight_fraction:
[sample, age_class]
esa_cci_bl_fraction:
[sample, full_year]
esa_cci_nl_fraction:
[sample, full_year]
esa_cci_gs_fraction:
[sample, full_year]
```
### InSituMatched
```text
ed_simulation_x:
[sample, prediction_year, month, feature]
ed_simulation_y:
[sample, age_class, full_year, month, simulation_target]
lidar_age_weight_fraction:
[sample, age_class]
esa_cci_bl_fraction:
[sample, full_year]
esa_cci_nl_fraction:
[sample, full_year]
esa_cci_gs_fraction:
[sample, full_year]
observed_y:
[sample, full_year, month, observed_target]
```
The following arrays are derived from `ed_simulation_y`:
```text
initial_y:
[sample, age_class, simulation_target]
target_y:
[sample, age_class, prediction_year, month, simulation_target]
```
|