kashif HF Staff commited on
Commit
d9fc68d
·
verified ·
1 Parent(s): e1c36cd

Add converted WeatherNext 2 Mini weights and model card

Browse files
Files changed (4) hide show
  1. README.md +215 -0
  2. config.json +117 -0
  3. model.safetensors +3 -0
  4. preprocessor_config.json +1079 -0
README.md ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ tags:
4
+ - weather
5
+ - forecasting
6
+ - climate
7
+ - tropical-cyclones
8
+ - graph-neural-network
9
+ - arxiv:2506.10772
10
+ library_name: transformers
11
+ pipeline_tag: other
12
+ ---
13
+
14
+ # WeatherNext 2 Mini
15
+
16
+ WeatherNext 2 Mini is the lightweight variant of Google DeepMind's WeatherNext 2, at 1° resolution instead of 0.25°.
17
+ It forecasts the same quantities as the full model — 13 pressure levels of temperature, geopotential, wind and
18
+ humidity, surface fields, precipitation, and 16 tropical-cyclone diagnostics — and is intended for local testing and
19
+ for machines that cannot hold the 0.25° model. It is not expected to match the full model's skill.
20
+
21
+ It is a *Functional Generative Network* (FGN): rather than injecting a noise field into the input or running a
22
+ diffusion sampler, the model draws a single 32-dimensional noise vector per ensemble member and uses it to modulate
23
+ the scale and offset of **every** normalization layer. One draw gives one self-consistent forecast, and an ensemble is
24
+ simply several draws — which here is just the batch dimension.
25
+
26
+ The architecture matches the 0.25° models at reduced width and depth. See
27
+ [kashif/weathernext2](https://huggingface.co/kashif/weathernext2) and
28
+ [kashif/weathernext-cyclones](https://huggingface.co/kashif/weathernext-cyclones) for the full-resolution versions.
29
+
30
+ ## Revisions
31
+
32
+ Each revision is trained on data up to a different cut-off, so you can evaluate on a year the model has not seen.
33
+
34
+ | Revision | Trained through | Corresponds to |
35
+ |---|---|---|
36
+ | `main` | 2023 | `WeatherNextCyclones_Mini_<2024` |
37
+ | `<2023` | 2022 | `WeatherNextCyclones_Mini_<2023` |
38
+
39
+ ```python
40
+ model = WeatherNext2ForWeatherForecasting.from_pretrained("kashif/weathernext2-mini", revision="<2023")
41
+ ```
42
+
43
+ Unlike the 0.25° releases, the Mini checkpoints ship a single trained network per cut-off rather than a
44
+ four-member ensemble, so only the noise ensemble applies; see [Ensembles](#ensembles).
45
+
46
+ ## Usage
47
+
48
+ > [!NOTE]
49
+ > WeatherNext 2 support is not in a released version of Transformers yet. Until
50
+ > [huggingface/transformers#47874](https://github.com/huggingface/transformers/pull/47874) is merged, install from the
51
+ > branch:
52
+ >
53
+ > ```bash
54
+ > pip install "git+https://github.com/kashif/transformers.git@add-weathernext2" torch scipy
55
+ > ```
56
+
57
+ The model works in a normalized space; `WeatherNext2Processor` owns everything physical — the per-variable
58
+ normalization statistics, the calendar-derived forcings, and the residual connection back to an atmospheric state.
59
+
60
+ ```python
61
+ import numpy as np
62
+ import torch
63
+ from transformers import WeatherNext2ForWeatherForecasting, WeatherNext2Processor
64
+
65
+ model = WeatherNext2ForWeatherForecasting.from_pretrained("kashif/weathernext2-mini").eval()
66
+ processor = WeatherNext2Processor.from_pretrained("kashif/weathernext2-mini")
67
+
68
+ # `state` maps each input variable to its values, e.g. from an xarray Dataset of HRES analysis.
69
+ # Time-varying variables are [batch, 2, (levels,) lat, lon]; static ones are [lat, lon].
70
+ state = {name: ... for name in processor.input_variables}
71
+ valid_time = np.array([np.datetime64("2024-10-07T06:00:00").astype("datetime64[s]").astype(np.int64)])
72
+
73
+ inputs = processor(state, seconds_since_epoch=valid_time)
74
+ with torch.no_grad():
75
+ outputs = model(**inputs, generator=torch.Generator().manual_seed(0))
76
+
77
+ forecast = processor.postprocess(outputs.prediction, state)
78
+ print(forecast["2m_temperature"].shape) # (1, 181, 360)
79
+ print(forecast["cyclone_exists_gaussian_unit_mode"].max()) # cyclone probability field
80
+ ```
81
+
82
+ ### Autoregressive rollout
83
+
84
+ Each 6-hour step draws fresh noise. `advance_state` drops the oldest frame, appends the forecast, recomputes the clock
85
+ variables, and discards targets that are not also inputs (precipitation and the cyclone diagnostics).
86
+
87
+ ```python
88
+ step_seconds = processor.time_step_hours * 3600
89
+ for step in range(20): # 5 days
90
+ inputs = processor(state, seconds_since_epoch=valid_time)
91
+ with torch.no_grad():
92
+ outputs = model(**inputs)
93
+ forecast = processor.postprocess(outputs.prediction, state)
94
+ valid_time = valid_time + step_seconds
95
+ state = processor.advance_state(state, forecast, valid_time)
96
+ ```
97
+
98
+ Turning the gridded cyclone diagnostics into tracks requires the tracker from the
99
+ [original repository](https://github.com/google-deepmind/weathernext); it is not part of this port.
100
+
101
+ ## Ensembles
102
+
103
+ There are two independent ensembles here, and the operational product combines both.
104
+
105
+ ### 1. Noise ensemble (within one checkpoint)
106
+
107
+ This is the FGN mechanism: each member is one draw of the 32-dimensional noise vector through the *same* weights.
108
+ Members ride on the batch axis and stay independent through an autoregressive rollout.
109
+
110
+ ```python
111
+ members = 8
112
+ inputs = processor(state, seconds_since_epoch=valid_time)
113
+ batched = {key: value.repeat(members, *([1] * (value.ndim - 1))) for key, value in inputs.items()}
114
+ with torch.no_grad():
115
+ outputs = model(**batched, generator=torch.Generator().manual_seed(0))
116
+ # outputs.prediction is (members, channels, lat, lon)
117
+ ```
118
+
119
+ At 1° all members usually fit in one batch. If memory is tight, looping over draws gives identical results with a
120
+ constant footprint:
121
+
122
+ ```python
123
+ single = processor(state, seconds_since_epoch=valid_time) # batch of 1
124
+ predictions = []
125
+ for member in range(members):
126
+ noise = torch.randn(1, model.config.noise_channels, generator=torch.Generator().manual_seed(member))
127
+ with torch.no_grad():
128
+ predictions.append(model(**single, noise=noise).prediction)
129
+ ```
130
+
131
+ Seeding per member (rather than drawing from one stream) means the first N members are reproducible regardless of how
132
+ many you end up running — the same property the original implementation gets from `jax.random.fold_in`.
133
+
134
+ The Mini release has one trained network per cut-off, so there is no multi-model ensemble here — the noise ensemble
135
+ above is the whole ensemble. The 0.25° repositories ship four independently trained members each.
136
+
137
+ ## Model details
138
+
139
+ - **Architecture**: encode–process–decode graph network. The lat/lon grid is encoded, projected onto an icosahedral
140
+ mesh by a graph network (ball-query connectivity), processed by a 24-layer transformer whose attention is restricted
141
+ to a 16-hop neighbourhood on the mesh, projected back (in-triangle connectivity), and decoded.
142
+ - **Hidden size / layers / heads**: 512 / 16 / 4, feed-forward 2048. 56.7M parameters.
143
+ - **Mesh**: icosahedron refined 5 times → 10,242 nodes, with 16-hop attention.
144
+ - **Positional information**: none learned. Position is carried entirely by the mesh geometry and the attention mask,
145
+ both of which are rebuilt deterministically from the config at load time and cached on disk.
146
+ - **Inputs**: two frames 6h apart, 13 pressure levels, plus static fields and calendar forcings.
147
+ - **Time step**: 6 hours.
148
+
149
+ ## Evaluation
150
+
151
+ A single 6-hour step from ECMWF HRES analysis (initialized 2024-10-07 00:00 UTC), scored against the verifying
152
+ analysis with latitude weighting, using the `main` revision at 1° resolution:
153
+
154
+ | Field | WeatherNext 2 Mini | Persistence |
155
+ |---|---|---|
156
+ | 2m temperature | 0.785 K | 2.620 K |
157
+ | Temperature @500hPa | 0.414 K | 1.197 K |
158
+ | Geopotential @500hPa | 31.7 m²/s² | 224.5 m²/s² |
159
+
160
+ This is a single case, meant as a smoke test of the port rather than a benchmark. For cyclone track and intensity
161
+ scorecards see the [Nature paper](https://doi.org/10.1038/s41586-026-10953-2); for general forecast skill see
162
+ [WeatherBench 2](https://sites.research.google/weatherbench/).
163
+
164
+ ## Hardware
165
+
166
+ At 1° a forward pass fits comfortably on a small GPU (the original release notes a P100 as sufficient) or on CPU.
167
+ The mesh and graph construction takes a few seconds the first time and is then cached under `HF_HOME`.
168
+
169
+ ## Limitations
170
+
171
+ This is a research model, not an operational warning system, and it does not replace official alerts, warnings or
172
+ notices from national meteorological agencies. It was not produced in collaboration with, nor endorsed by, any
173
+ government meteorological agency. It is designed to be initialized from operational HRES analysis rather than from
174
+ reanalysis.
175
+
176
+ ## License
177
+
178
+ The weights are released by Google DeepMind under [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/). The
179
+ original code is Apache-2.0. Original repository:
180
+ [google-deepmind/weathernext](https://github.com/google-deepmind/weathernext).
181
+
182
+ ## Acknowledgements
183
+
184
+ Data and products of the European Centre for Medium-range Weather Forecasts (ECMWF), as modified by Google. Modified
185
+ Copernicus Climate Change Service information 2023. NOAA's International Best Track Archive for Climate Stewardship
186
+ (IBTrACS) data, first accessed on 1 Dec 2022. Neither the European Commission nor ECMWF is responsible for any use
187
+ that may be made of the Copernicus information or data it contains. ECMWF HRES datasets copyright statement: Copyright
188
+ "© 2023 European Centre for Medium-Range Weather Forecasts (ECMWF)". Source: [www.ecmwf.int](http://www.ecmwf.int/).
189
+ License statement: ECMWF open data is published under a Creative Commons Attribution 4.0 International (CC BY 4.0),
190
+ [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/). Disclaimer: ECMWF does
191
+ not accept any liability whatsoever for any error or omission in the data, their availability, or for any loss or
192
+ damage arising from their use.
193
+
194
+ ## Citation
195
+
196
+ ```bibtex
197
+ @article{Alet2026,
198
+ title={Operational Tropical Cyclone Forecasting with AI},
199
+ author={Alet, Ferran and Andersson, Tom R. and Price, Ilan and Markou, Stratis and El-Kadi, Andrew and Masters, Dominic and Li, Amy and Merchant, Samier and Williams, Natalie and Thornton, Gregory and MacKay, Ken and Graham, Olivia and Uddin, Akib and Gaiarin, Ben and Shah, Devaja and Kruse, Elinor and Hogsett, Wallace and Zelinsky, David and Cangialosi, John and Martinez, Jonathan and Franklin, James and DeMaria, Mark and Musgrave, Kate and Bain, Caroline L. and Titley, Helen and Stott, Jacklynn and Lam, Remi and Bell, Aaron and Komarek, Paul and Willson, Matthew and Sanchez-Gonzalez, Alvaro and Battaglia, Peter},
200
+ journal={Nature},
201
+ year={2026},
202
+ issn={1476-4687},
203
+ doi={10.1038/s41586-026-10953-2},
204
+ url={https://doi.org/10.1038/s41586-026-10953-2}
205
+ }
206
+ ```
207
+
208
+ ```bibtex
209
+ @article{alet2025skillful,
210
+ title={Skillful joint probabilistic weather forecasting from marginals},
211
+ author={Alet, Ferran and Price, Ilan and El-Kadi, Andrew and Masters, Dominic and Markou, Stratis and Andersson, Tom R and Stott, Jacklynn and Lam, Remi and Willson, Matthew and Sanchez-Gonzalez, Alvaro and Battaglia, Peter},
212
+ journal={arXiv preprint arXiv:2506.10772},
213
+ year={2025}
214
+ }
215
+ ```
config.json ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "aggregate_normalization": null,
3
+ "architectures": [
4
+ "WeatherNext2ForWeatherForecasting"
5
+ ],
6
+ "atmospheric_variables": [
7
+ "temperature",
8
+ "geopotential",
9
+ "u_component_of_wind",
10
+ "v_component_of_wind",
11
+ "vertical_velocity",
12
+ "specific_humidity"
13
+ ],
14
+ "attention_dropout": 0.0,
15
+ "attention_k_hop": 16,
16
+ "ball_query_radius_fraction": 0.6,
17
+ "dtype": "float32",
18
+ "edge_hidden_size": 32,
19
+ "forcing_variables": [
20
+ "year_progress_sin",
21
+ "year_progress_cos",
22
+ "day_progress_sin",
23
+ "day_progress_cos"
24
+ ],
25
+ "global_variables": [
26
+ "year_progress_sin",
27
+ "year_progress_cos"
28
+ ],
29
+ "grid_latitudes": 181,
30
+ "grid_longitudes": 360,
31
+ "hidden_act": "gelu_pytorch_tanh",
32
+ "hidden_size": 512,
33
+ "initializer_range": 0.02,
34
+ "input_variables": [
35
+ "temperature",
36
+ "geopotential",
37
+ "u_component_of_wind",
38
+ "v_component_of_wind",
39
+ "vertical_velocity",
40
+ "specific_humidity",
41
+ "2m_temperature",
42
+ "mean_sea_level_pressure",
43
+ "10m_v_component_of_wind",
44
+ "10m_u_component_of_wind",
45
+ "sea_surface_temperature",
46
+ "geopotential_at_surface",
47
+ "land_sea_mask",
48
+ "year_progress_sin",
49
+ "year_progress_cos",
50
+ "day_progress_sin",
51
+ "day_progress_cos"
52
+ ],
53
+ "intermediate_size": 2048,
54
+ "layer_norm_eps": 1e-05,
55
+ "mesh_splits": 5,
56
+ "mlp_act": "silu",
57
+ "model_type": "weathernext2",
58
+ "noise_channels": 32,
59
+ "num_attention_heads": 4,
60
+ "num_hidden_layers": 16,
61
+ "num_input_timesteps": 2,
62
+ "pressure_levels": [
63
+ 50,
64
+ 100,
65
+ 150,
66
+ 200,
67
+ 250,
68
+ 300,
69
+ 400,
70
+ 500,
71
+ 600,
72
+ 700,
73
+ 850,
74
+ 925,
75
+ 1000
76
+ ],
77
+ "sigmoid_shifted_outputs": {
78
+ "cyclone_exists_gaussian_unit_mode": 2.0
79
+ },
80
+ "static_variables": [
81
+ "geopotential_at_surface",
82
+ "land_sea_mask"
83
+ ],
84
+ "target_variables": [
85
+ "temperature",
86
+ "geopotential",
87
+ "u_component_of_wind",
88
+ "v_component_of_wind",
89
+ "vertical_velocity",
90
+ "specific_humidity",
91
+ "2m_temperature",
92
+ "mean_sea_level_pressure",
93
+ "10m_v_component_of_wind",
94
+ "10m_u_component_of_wind",
95
+ "sea_surface_temperature",
96
+ "total_precipitation_6hr",
97
+ "cyclone_exists_gaussian_unit_mode",
98
+ "cyclone_all_wind_disc",
99
+ "cyclone_usa_wind_disc",
100
+ "cyclone_usa_r34_ne_radius_disc",
101
+ "cyclone_usa_r34_se_radius_disc",
102
+ "cyclone_usa_r34_sw_radius_disc",
103
+ "cyclone_usa_r34_nw_radius_disc",
104
+ "cyclone_usa_r50_ne_radius_disc",
105
+ "cyclone_usa_r50_se_radius_disc",
106
+ "cyclone_usa_r50_sw_radius_disc",
107
+ "cyclone_usa_r50_nw_radius_disc",
108
+ "cyclone_usa_r64_ne_radius_disc",
109
+ "cyclone_usa_r64_se_radius_disc",
110
+ "cyclone_usa_r64_sw_radius_disc",
111
+ "cyclone_usa_r64_nw_radius_disc",
112
+ "cyclone_usa_rmw_disc",
113
+ "cyclone_usa_pres_disc"
114
+ ],
115
+ "time_step_hours": 6,
116
+ "transformers_version": "5.15.0.dev0"
117
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86d5e971c8a89fbb01893e23fb0641e35a52ad700765badc7d991d54a18c3bd6
3
+ size 226771316
preprocessor_config.json ADDED
@@ -0,0 +1,1079 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "atmospheric_variables": [
3
+ "temperature",
4
+ "geopotential",
5
+ "u_component_of_wind",
6
+ "v_component_of_wind",
7
+ "vertical_velocity",
8
+ "specific_humidity"
9
+ ],
10
+ "diffs_stddev_by_level": {
11
+ "100m_u_component_of_wind": 2.8724644772751793,
12
+ "100m_v_component_of_wind": 3.1648334389975545,
13
+ "10m_u_component_of_wind": 2.2499901294404236,
14
+ "10m_v_component_of_wind": 2.477609082148393,
15
+ "10m_wind_gust_since_previous_post_processing": 2.545839214725464,
16
+ "2m_dewpoint_temperature": 1.8065216717852064,
17
+ "2m_temperature": 2.5883234840491407,
18
+ "clear_sky_direct_solar_radiation_at_surface": 1289174.214185969,
19
+ "clear_sky_direct_solar_radiation_at_surface_12hr": 8340957.42302206,
20
+ "clear_sky_direct_solar_radiation_at_surface_1hr": 1289174.2141859706,
21
+ "clear_sky_direct_solar_radiation_at_surface_24hr": 167095.398938028,
22
+ "clear_sky_direct_solar_radiation_at_surface_2hr": 2536436.333345841,
23
+ "clear_sky_direct_solar_radiation_at_surface_3hr": 3704104.4479462453,
24
+ "clear_sky_direct_solar_radiation_at_surface_6hr": 6462412.430241175,
25
+ "convective_available_potential_energy": 187.68694596776757,
26
+ "convective_inhibition": 128.01245802376496,
27
+ "convective_precipitation": 0.00028841567987796993,
28
+ "cyclone_all_wind_disc": 2.5184570234783696,
29
+ "cyclone_all_wind_sparse": 2.4397211372759102,
30
+ "cyclone_bom_exists_disc": 0.0015831270177122782,
31
+ "cyclone_bom_exists_gaussian_probability": 0.00016628465412838172,
32
+ "cyclone_bom_exists_gaussian_unit_mode": 0.0012859740241440627,
33
+ "cyclone_bom_exists_sparse": 0.00181477975471265,
34
+ "cyclone_bom_pres_disc": 2.270500160040555,
35
+ "cyclone_bom_pres_sparse": 2.1850131999648577,
36
+ "cyclone_bom_r34_ne_radius_disc": 6.155237914984527,
37
+ "cyclone_bom_r34_ne_radius_sparse": 6.2620533154418885,
38
+ "cyclone_bom_r34_nw_radius_disc": 6.277125511931334,
39
+ "cyclone_bom_r34_nw_radius_sparse": 6.3995579183391875,
40
+ "cyclone_bom_r34_se_radius_disc": 6.483152724121697,
41
+ "cyclone_bom_r34_se_radius_sparse": 6.448400354949988,
42
+ "cyclone_bom_r34_shape": 0.0008279523511924564,
43
+ "cyclone_bom_r34_sw_radius_disc": 6.696074460663313,
44
+ "cyclone_bom_r34_sw_radius_sparse": 6.907212582908189,
45
+ "cyclone_bom_r50_ne_radius_disc": 2.60727678209751,
46
+ "cyclone_bom_r50_ne_radius_sparse": 2.394840521046414,
47
+ "cyclone_bom_r50_nw_radius_disc": 2.504259954814536,
48
+ "cyclone_bom_r50_nw_radius_sparse": 2.230143449179911,
49
+ "cyclone_bom_r50_se_radius_disc": 2.6549595824552568,
50
+ "cyclone_bom_r50_se_radius_sparse": 2.433215460041769,
51
+ "cyclone_bom_r50_shape": 0.0003268006675995735,
52
+ "cyclone_bom_r50_sw_radius_disc": 2.628924804788086,
53
+ "cyclone_bom_r50_sw_radius_sparse": 2.464393749473248,
54
+ "cyclone_bom_r64_ne_radius_disc": 0.7441480431448463,
55
+ "cyclone_bom_r64_ne_radius_sparse": 0.6850354652600797,
56
+ "cyclone_bom_r64_nw_radius_disc": 0.693578531534209,
57
+ "cyclone_bom_r64_nw_radius_sparse": 0.6568169521891097,
58
+ "cyclone_bom_r64_se_radius_disc": 0.7427240735355044,
59
+ "cyclone_bom_r64_se_radius_sparse": 0.6921648884001543,
60
+ "cyclone_bom_r64_shape": 0.00012351973479337339,
61
+ "cyclone_bom_r64_sw_radius_disc": 0.6900866111051587,
62
+ "cyclone_bom_r64_sw_radius_sparse": 0.6443472221764024,
63
+ "cyclone_bom_rmw_disc": 4.806891770492594,
64
+ "cyclone_bom_rmw_sparse": 4.760948211035226,
65
+ "cyclone_bom_wind_disc": 2.9377486661575887,
66
+ "cyclone_bom_wind_sparse": 2.8553397366913686,
67
+ "cyclone_cma_exists_disc": 0.0032294154610436544,
68
+ "cyclone_cma_exists_gaussian_probability": 0.0003195787697503206,
69
+ "cyclone_cma_exists_gaussian_unit_mode": 0.002637128539953232,
70
+ "cyclone_cma_exists_sparse": 0.0031742050869964494,
71
+ "cyclone_cma_pres_disc": 2.2730521147216765,
72
+ "cyclone_cma_pres_sparse": 2.1369488274692894,
73
+ "cyclone_cma_wind_disc": 2.7314723505246574,
74
+ "cyclone_cma_wind_sparse": 2.5831341412335562,
75
+ "cyclone_exists_disc": 0.006011186466179216,
76
+ "cyclone_exists_gaussian_probability": 0.000590827164190585,
77
+ "cyclone_exists_sparse": 0.006054012557302335,
78
+ "cyclone_hko_exists_disc": 0.002681903548752642,
79
+ "cyclone_hko_exists_gaussian_probability": 0.00027139162789773115,
80
+ "cyclone_hko_exists_gaussian_unit_mode": 0.002179257838323949,
81
+ "cyclone_hko_exists_sparse": 0.002750837000156746,
82
+ "cyclone_hko_pres_disc": 2.389387130006958,
83
+ "cyclone_hko_pres_sparse": 2.2831211898430417,
84
+ "cyclone_nadi_exists_disc": 0.0010680890596544022,
85
+ "cyclone_nadi_exists_gaussian_probability": 0.000111796633237082,
86
+ "cyclone_nadi_exists_gaussian_unit_mode": 0.0008955324931705966,
87
+ "cyclone_nadi_exists_sparse": 0.001024255969745037,
88
+ "cyclone_nadi_pres_disc": 2.7716676350789746,
89
+ "cyclone_nadi_pres_sparse": 2.6390506737705888,
90
+ "cyclone_newdelhi_exists_disc": 0.0009734984407750268,
91
+ "cyclone_newdelhi_exists_gaussian_probability": 0.00010967985952916936,
92
+ "cyclone_newdelhi_exists_gaussian_unit_mode": 0.0008465482327552693,
93
+ "cyclone_newdelhi_exists_sparse": 0.0010219671266920327,
94
+ "cyclone_newdelhi_pres_disc": 2.2392873747975663,
95
+ "cyclone_newdelhi_pres_sparse": 2.070122595267689,
96
+ "cyclone_newdelhi_wind_disc": 3.8750702660922594,
97
+ "cyclone_newdelhi_wind_sparse": 3.8412675639693408,
98
+ "cyclone_reunion_exists_disc": 0.0017394109431647024,
99
+ "cyclone_reunion_exists_gaussian_probability": 0.00017599399539571916,
100
+ "cyclone_reunion_exists_gaussian_unit_mode": 0.0014020127334704853,
101
+ "cyclone_reunion_exists_sparse": 0.001887890595690338,
102
+ "cyclone_reunion_pres_disc": 2.212644445653957,
103
+ "cyclone_reunion_pres_sparse": 2.166076001219455,
104
+ "cyclone_reunion_r34_ne_radius_disc": 19.644550191695327,
105
+ "cyclone_reunion_r34_ne_radius_sparse": 30.193607667397387,
106
+ "cyclone_reunion_r34_nw_radius_disc": 33.364173676073854,
107
+ "cyclone_reunion_r34_nw_radius_sparse": 38.11835673064169,
108
+ "cyclone_reunion_r34_se_radius_disc": 54.8726455328265,
109
+ "cyclone_reunion_r34_se_radius_sparse": 62.47180849727573,
110
+ "cyclone_reunion_r34_shape": 0.005118396365481937,
111
+ "cyclone_reunion_r34_sw_radius_disc": 37.13954192716535,
112
+ "cyclone_reunion_r34_sw_radius_sparse": 30.65859360650965,
113
+ "cyclone_reunion_r50_ne_radius_disc": 2.2382655939038676,
114
+ "cyclone_reunion_r50_ne_radius_sparse": 1.9981033351604651,
115
+ "cyclone_reunion_r50_nw_radius_disc": 35.26421862277804,
116
+ "cyclone_reunion_r50_nw_radius_sparse": 1.6626122757299102,
117
+ "cyclone_reunion_r50_se_radius_disc": 2.6109274498208577,
118
+ "cyclone_reunion_r50_se_radius_sparse": 1.858804061467679,
119
+ "cyclone_reunion_r50_shape": 0.003797112157186874,
120
+ "cyclone_reunion_r50_sw_radius_disc": 35.26602641991311,
121
+ "cyclone_reunion_r50_sw_radius_sparse": 1.939537278113604,
122
+ "cyclone_reunion_r64_ne_radius_disc": 0.0,
123
+ "cyclone_reunion_r64_ne_radius_sparse": 0.0,
124
+ "cyclone_reunion_r64_nw_radius_disc": 0.0,
125
+ "cyclone_reunion_r64_nw_radius_sparse": 0.0,
126
+ "cyclone_reunion_r64_se_radius_disc": 0.0,
127
+ "cyclone_reunion_r64_se_radius_sparse": 0.0,
128
+ "cyclone_reunion_r64_shape": 0.0,
129
+ "cyclone_reunion_r64_sw_radius_disc": 0.0,
130
+ "cyclone_reunion_r64_sw_radius_sparse": 0.0,
131
+ "cyclone_reunion_rmw_disc": 4.566284946974094,
132
+ "cyclone_reunion_rmw_sparse": 4.514100026122906,
133
+ "cyclone_reunion_wind_disc": 2.4655805444580134,
134
+ "cyclone_reunion_wind_sparse": 2.450672748323272,
135
+ "cyclone_tokyo_exists_disc": 0.0034749491634245362,
136
+ "cyclone_tokyo_exists_gaussian_probability": 0.00033149241872545645,
137
+ "cyclone_tokyo_exists_gaussian_unit_mode": 0.0028381331339520674,
138
+ "cyclone_tokyo_exists_sparse": 0.0032671999429063968,
139
+ "cyclone_tokyo_pres_disc": 2.239819859977888,
140
+ "cyclone_tokyo_pres_sparse": 2.145319831638121,
141
+ "cyclone_usa_exists_disc": 0.005319850943420696,
142
+ "cyclone_usa_exists_gaussian_probability": 0.0005323862365199121,
143
+ "cyclone_usa_exists_gaussian_unit_mode": 0.0043061884871642515,
144
+ "cyclone_usa_exists_sparse": 0.005539468853658768,
145
+ "cyclone_usa_pres_disc": 2.2918336083559585,
146
+ "cyclone_usa_pres_sparse": 2.2245502577175484,
147
+ "cyclone_usa_r34_ne_radius_disc": 18.48031104614361,
148
+ "cyclone_usa_r34_ne_radius_sparse": 17.023910964538626,
149
+ "cyclone_usa_r34_nw_radius_disc": 16.565046374843522,
150
+ "cyclone_usa_r34_nw_radius_sparse": 15.273982130257018,
151
+ "cyclone_usa_r34_se_radius_disc": 18.532950162222704,
152
+ "cyclone_usa_r34_se_radius_sparse": 17.040035246466314,
153
+ "cyclone_usa_r34_shape": 0.004182173291907463,
154
+ "cyclone_usa_r34_sw_radius_disc": 16.481278495101066,
155
+ "cyclone_usa_r34_sw_radius_sparse": 14.685119643363043,
156
+ "cyclone_usa_r50_ne_radius_disc": 7.686087953615665,
157
+ "cyclone_usa_r50_ne_radius_sparse": 7.129837653612941,
158
+ "cyclone_usa_r50_nw_radius_disc": 6.410636352780501,
159
+ "cyclone_usa_r50_nw_radius_sparse": 5.806606576623521,
160
+ "cyclone_usa_r50_se_radius_disc": 7.266560632260921,
161
+ "cyclone_usa_r50_se_radius_sparse": 6.701182109403972,
162
+ "cyclone_usa_r50_shape": 0.001976115279480986,
163
+ "cyclone_usa_r50_sw_radius_disc": 6.322613244529427,
164
+ "cyclone_usa_r50_sw_radius_sparse": 6.055935998486411,
165
+ "cyclone_usa_r64_ne_radius_disc": 4.40277916579224,
166
+ "cyclone_usa_r64_ne_radius_sparse": 4.334112329021647,
167
+ "cyclone_usa_r64_nw_radius_disc": 4.311397510081953,
168
+ "cyclone_usa_r64_nw_radius_sparse": 4.128655212455156,
169
+ "cyclone_usa_r64_se_radius_disc": 4.332624047653693,
170
+ "cyclone_usa_r64_se_radius_sparse": 4.011572096019312,
171
+ "cyclone_usa_r64_shape": 0.0009748456223495286,
172
+ "cyclone_usa_r64_sw_radius_disc": 4.098455323874933,
173
+ "cyclone_usa_r64_sw_radius_sparse": 3.7587074621908907,
174
+ "cyclone_usa_rmw_disc": 8.755314956498294,
175
+ "cyclone_usa_rmw_sparse": 8.557166655847237,
176
+ "cyclone_usa_sshs_disc": 0.049033909706532174,
177
+ "cyclone_usa_sshs_sparse": 0.4827523082286293,
178
+ "cyclone_usa_wind_disc": 2.912463105763889,
179
+ "cyclone_usa_wind_sparse": 2.838149152202801,
180
+ "cyclone_wellington_exists_disc": 0.0016601732206077502,
181
+ "cyclone_wellington_exists_gaussian_probability": 0.00016364625246858487,
182
+ "cyclone_wellington_exists_gaussian_unit_mode": 0.001385464531689659,
183
+ "cyclone_wellington_exists_sparse": 0.0015287440069722206,
184
+ "cyclone_wellington_pres_disc": 2.134240011814986,
185
+ "cyclone_wellington_pres_sparse": 2.1814260083762935,
186
+ "cyclone_wmo_pres_disc": 3.3879541307190153,
187
+ "cyclone_wmo_pres_sparse": 3.3217719856843106,
188
+ "day_progress": 0.43301426804372967,
189
+ "day_progress_cos": 1.0000000009520187,
190
+ "day_progress_sin": 0.9999999955503477,
191
+ "geopotential": [
192
+ 206.88442396928045,
193
+ 189.8381035111522,
194
+ 212.54846403275388,
195
+ 258.096555936811,
196
+ 305.433700108044,
197
+ 321.67797653429494,
198
+ 287.5500853017669,
199
+ 239.3412680255088,
200
+ 206.08297299899954,
201
+ 189.48475010808139,
202
+ 189.59518717026674,
203
+ 198.7134607578307,
204
+ 210.54082143481966
205
+ ],
206
+ "high_cloud_cover": 0.35659661599440806,
207
+ "low_cloud_cover": 0.28059396752921145,
208
+ "mean_sea_level_pressure": 267.0929164007011,
209
+ "medium_cloud_cover": 0.3185876128711013,
210
+ "sea_ice_cover": 0.01020475159019906,
211
+ "sea_surface_temperature": 0.08692196775243116,
212
+ "snowfall": 8.432087757797045e-05,
213
+ "specific_humidity": [
214
+ 4.6648426263989086e-08,
215
+ 1.6358086270252938e-07,
216
+ 1.471214517401307e-06,
217
+ 9.761340576329602e-06,
218
+ 3.410155411034937e-05,
219
+ 7.351664717275939e-05,
220
+ 0.0002151321707813298,
221
+ 0.00042616843128736594,
222
+ 0.000646339009346108,
223
+ 0.0008848491883248863,
224
+ 0.0011419059623143967,
225
+ 0.0009328165278634082,
226
+ 0.000740506846072479
227
+ ],
228
+ "surface_net_solar_radiation": 1086615.3474133573,
229
+ "surface_pressure": 249.2741535756491,
230
+ "surface_solar_radiation_downwards": 1217803.0039494361,
231
+ "surface_solar_radiation_downwards_12hr": 7871158.679063228,
232
+ "surface_solar_radiation_downwards_1hr": 1217803.0039494385,
233
+ "surface_solar_radiation_downwards_24hr": 1542818.6310146158,
234
+ "surface_solar_radiation_downwards_2hr": 2392769.9407185013,
235
+ "surface_solar_radiation_downwards_3hr": 3492345.845141753,
236
+ "surface_solar_radiation_downwards_6hr": 6091900.789045352,
237
+ "surface_thermal_radiation_downwards": 71919.64487053723,
238
+ "temperature": [
239
+ 1.2651878840541229,
240
+ 1.0789105561930832,
241
+ 1.1282617300622761,
242
+ 1.5405761676649259,
243
+ 1.5081619943983546,
244
+ 1.239358283160938,
245
+ 1.335626602751505,
246
+ 1.4027901056018761,
247
+ 1.3721788518852183,
248
+ 1.3738485486921121,
249
+ 1.6144387398522824,
250
+ 1.7438315300334615,
251
+ 1.8471319863115858
252
+ ],
253
+ "toa_incident_solar_radiation": 1956919.3710786356,
254
+ "toa_incident_solar_radiation_12hr": 13191836.428541662,
255
+ "toa_incident_solar_radiation_1hr": 1956919.3710786356,
256
+ "toa_incident_solar_radiation_24hr": 67523.62525619438,
257
+ "toa_incident_solar_radiation_2hr": 3856028.595576687,
258
+ "toa_incident_solar_radiation_3hr": 5646123.02947482,
259
+ "toa_incident_solar_radiation_4hr": 7284374.995716885,
260
+ "toa_incident_solar_radiation_6hr": 9984274.826193672,
261
+ "toa_incident_solar_radiation_8hr": 11830526.930751732,
262
+ "total_cloud_cover": 0.2846947044578822,
263
+ "total_column_water_vapour": 2.766763427413473,
264
+ "total_precipitation_12hr": 0.002280960627130619,
265
+ "total_precipitation_1hr": 0.0004400931885651837,
266
+ "total_precipitation_24hr": 0.0024114356030997394,
267
+ "total_precipitation_2hr": 0.000819497372101123,
268
+ "total_precipitation_3hr": 0.001148032974606813,
269
+ "total_precipitation_4hr": 0.0014307646206101025,
270
+ "total_precipitation_6hr": 0.0018540753884510068,
271
+ "total_precipitation_8hr": 0.002078404475261587,
272
+ "total_sky_direct_solar_radiation_at_surface": 916424.7822553555,
273
+ "total_sky_direct_solar_radiation_at_surface_12hr": 5704503.24305572,
274
+ "total_sky_direct_solar_radiation_at_surface_1hr": 916424.8182180378,
275
+ "total_sky_direct_solar_radiation_at_surface_24hr": 1845315.90116826,
276
+ "total_sky_direct_solar_radiation_at_surface_2hr": 1793444.2307150923,
277
+ "total_sky_direct_solar_radiation_at_surface_3hr": 2608468.9747257833,
278
+ "total_sky_direct_solar_radiation_at_surface_6hr": 4495560.767828691,
279
+ "u_component_of_wind": [
280
+ 2.6892472402651473,
281
+ 2.7285660846360744,
282
+ 3.2043343161120483,
283
+ 4.190904529894584,
284
+ 5.315607396208148,
285
+ 5.742644770378758,
286
+ 5.036749760180084,
287
+ 4.016421627568388,
288
+ 3.3735121650295445,
289
+ 3.052916893601753,
290
+ 3.0694188284039616,
291
+ 3.1904707868983384,
292
+ 2.439142802673995
293
+ ],
294
+ "v_component_of_wind": [
295
+ 2.9728879786316855,
296
+ 3.014730331328867,
297
+ 3.6121010246572154,
298
+ 4.912630407837334,
299
+ 6.362866406225139,
300
+ 6.891528904266095,
301
+ 6.035505599468126,
302
+ 4.779611657158412,
303
+ 3.9406896719882454,
304
+ 3.48184678020705,
305
+ 3.4309960485424966,
306
+ 3.6038215166961316,
307
+ 2.719821133740157
308
+ ],
309
+ "vertical_velocity": [
310
+ 0.016622444962875193,
311
+ 0.03279800343481829,
312
+ 0.06485680797519774,
313
+ 0.099686194524111,
314
+ 0.13318656691716832,
315
+ 0.16992798136446097,
316
+ 0.22968228479149413,
317
+ 0.25544030962378106,
318
+ 0.26666977444672557,
319
+ 0.27335643727809705,
320
+ 0.2506542768758355,
321
+ 0.18982759329980023,
322
+ 0.08671152419431256
323
+ ],
324
+ "year_progress": 0.02469775443402594,
325
+ "year_progress_cos": 0.003040794260759542,
326
+ "year_progress_sin": 0.003041238187359349
327
+ },
328
+ "feature_extractor_type": "WeatherNext2Processor",
329
+ "forcing_variables": [
330
+ "year_progress_sin",
331
+ "year_progress_cos",
332
+ "day_progress_sin",
333
+ "day_progress_cos"
334
+ ],
335
+ "global_variables": [
336
+ "year_progress_sin",
337
+ "year_progress_cos"
338
+ ],
339
+ "grid_latitudes": 181,
340
+ "grid_longitudes": 360,
341
+ "input_variables": [
342
+ "temperature",
343
+ "geopotential",
344
+ "u_component_of_wind",
345
+ "v_component_of_wind",
346
+ "vertical_velocity",
347
+ "specific_humidity",
348
+ "2m_temperature",
349
+ "mean_sea_level_pressure",
350
+ "10m_v_component_of_wind",
351
+ "10m_u_component_of_wind",
352
+ "sea_surface_temperature",
353
+ "geopotential_at_surface",
354
+ "land_sea_mask",
355
+ "year_progress_sin",
356
+ "year_progress_cos",
357
+ "day_progress_sin",
358
+ "day_progress_cos"
359
+ ],
360
+ "mean_by_level": {
361
+ "100m_u_component_of_wind": 0.007409798637938105,
362
+ "100m_v_component_of_wind": 0.19947960129393033,
363
+ "10m_u_component_of_wind": -0.05670530344539667,
364
+ "10m_v_component_of_wind": 0.18847506543795223,
365
+ "10m_wind_gust_since_previous_post_processing": 9.21009342387968,
366
+ "2m_dewpoint_temperature": 273.78809085328425,
367
+ "2m_temperature": 278.279618589098,
368
+ "angle_of_sub_gridscale_orography": 0.5139553718730816,
369
+ "anisotropy_of_sub_gridscale_orography": 0.16101400938555094,
370
+ "clear_sky_direct_solar_radiation_at_surface": 635689.6451810927,
371
+ "clear_sky_direct_solar_radiation_at_surface_12hr": 7627070.326335175,
372
+ "clear_sky_direct_solar_radiation_at_surface_1hr": 635689.7080417434,
373
+ "clear_sky_direct_solar_radiation_at_surface_24hr": 15253989.787108656,
374
+ "clear_sky_direct_solar_radiation_at_surface_2hr": 1271373.8843462246,
375
+ "clear_sky_direct_solar_radiation_at_surface_3hr": 1907043.917004297,
376
+ "clear_sky_direct_solar_radiation_at_surface_6hr": 3813907.298219767,
377
+ "convective_available_potential_energy": 122.00933087783916,
378
+ "convective_inhibition": 147.09294682782664,
379
+ "convective_precipitation": 4.826570449978973e-05,
380
+ "cyclone_all_wind_disc": 44.18215864371375,
381
+ "cyclone_all_wind_sparse": 44.124050968159615,
382
+ "cyclone_bom_exists_disc": 1.3850304595966e-05,
383
+ "cyclone_bom_exists_gaussian_probability": 3.614478348368439e-06,
384
+ "cyclone_bom_exists_gaussian_unit_mode": 2.7681602664781247e-05,
385
+ "cyclone_bom_exists_sparse": 3.6142441741962092e-06,
386
+ "cyclone_bom_pres_disc": 988.027005054611,
387
+ "cyclone_bom_pres_sparse": 988.0534361471862,
388
+ "cyclone_bom_r34_ne_radius_disc": 2.755945424571458,
389
+ "cyclone_bom_r34_ne_radius_sparse": 2.849648178807947,
390
+ "cyclone_bom_r34_nw_radius_disc": 2.682657649881752,
391
+ "cyclone_bom_r34_nw_radius_sparse": 2.7779036067349483,
392
+ "cyclone_bom_r34_se_radius_disc": 2.801215064993354,
393
+ "cyclone_bom_r34_se_radius_sparse": 2.8954592742654217,
394
+ "cyclone_bom_r34_shape": 4.536603983193409e-06,
395
+ "cyclone_bom_r34_sw_radius_disc": 2.891727157382313,
396
+ "cyclone_bom_r34_sw_radius_sparse": 2.993543946156061,
397
+ "cyclone_bom_r50_ne_radius_disc": 0.5753778332096187,
398
+ "cyclone_bom_r50_ne_radius_sparse": 0.5926314112781594,
399
+ "cyclone_bom_r50_nw_radius_disc": 0.5516454409708437,
400
+ "cyclone_bom_r50_nw_radius_sparse": 0.568878446228045,
401
+ "cyclone_bom_r50_se_radius_disc": 0.5827379205579244,
402
+ "cyclone_bom_r50_se_radius_sparse": 0.6012609068425816,
403
+ "cyclone_bom_r50_shape": 4.725175883635866e-07,
404
+ "cyclone_bom_r50_sw_radius_disc": 0.5958364981270176,
405
+ "cyclone_bom_r50_sw_radius_sparse": 0.6154242699635282,
406
+ "cyclone_bom_r64_ne_radius_disc": 0.11752987763037512,
407
+ "cyclone_bom_r64_ne_radius_sparse": 0.12114871536632937,
408
+ "cyclone_bom_r64_nw_radius_disc": 0.11124771271729186,
409
+ "cyclone_bom_r64_nw_radius_sparse": 0.11483429943835438,
410
+ "cyclone_bom_r64_se_radius_disc": 0.11547627267862383,
411
+ "cyclone_bom_r64_se_radius_sparse": 0.11913208227071422,
412
+ "cyclone_bom_r64_shape": 6.2768904253068e-08,
413
+ "cyclone_bom_r64_sw_radius_disc": 0.11660165353277288,
414
+ "cyclone_bom_r64_sw_radius_sparse": 0.12026629695662458,
415
+ "cyclone_bom_rmw_disc": 36.42250756598531,
416
+ "cyclone_bom_rmw_sparse": 36.276225769669324,
417
+ "cyclone_bom_wind_disc": 42.3061870908707,
418
+ "cyclone_bom_wind_sparse": 42.29067887931034,
419
+ "cyclone_cma_exists_disc": 3.458294420611134e-05,
420
+ "cyclone_cma_exists_gaussian_probability": 8.66093175992269e-06,
421
+ "cyclone_cma_exists_gaussian_unit_mode": 6.914341500963149e-05,
422
+ "cyclone_cma_exists_sparse": 8.66093175992269e-06,
423
+ "cyclone_cma_pres_disc": 984.0385969204007,
424
+ "cyclone_cma_pres_sparse": 984.0232539274801,
425
+ "cyclone_cma_wind_disc": 48.24050641518158,
426
+ "cyclone_cma_wind_sparse": 48.37332251082251,
427
+ "cyclone_exists_disc": 0.00013582595218684208,
428
+ "cyclone_exists_gaussian_probability": 3.4159923199863795e-05,
429
+ "cyclone_exists_sparse": 3.4158049806485956e-05,
430
+ "cyclone_hko_exists_disc": 2.628536294617486e-05,
431
+ "cyclone_hko_exists_gaussian_probability": 6.666704509212899e-06,
432
+ "cyclone_hko_exists_gaussian_unit_mode": 5.251925880005932e-05,
433
+ "cyclone_hko_exists_sparse": 6.666704509212899e-06,
434
+ "cyclone_hko_pres_disc": 978.4722629564719,
435
+ "cyclone_hko_pres_sparse": 978.5298148213219,
436
+ "cyclone_nadi_exists_disc": 3.7344194322074387e-06,
437
+ "cyclone_nadi_exists_gaussian_probability": 9.549622743535144e-07,
438
+ "cyclone_nadi_exists_gaussian_unit_mode": 7.462161241534885e-06,
439
+ "cyclone_nadi_exists_sparse": 9.549622743535144e-07,
440
+ "cyclone_nadi_pres_disc": 980.8261154855643,
441
+ "cyclone_nadi_pres_sparse": 980.8134595701126,
442
+ "cyclone_newdelhi_exists_disc": 4.3600596409768985e-06,
443
+ "cyclone_newdelhi_exists_gaussian_probability": 1.1343396902816144e-06,
444
+ "cyclone_newdelhi_exists_gaussian_unit_mode": 8.718824920806511e-06,
445
+ "cyclone_newdelhi_exists_sparse": 1.1343396902816144e-06,
446
+ "cyclone_newdelhi_pres_disc": 993.1358845250084,
447
+ "cyclone_newdelhi_pres_sparse": 993.2204134366925,
448
+ "cyclone_newdelhi_wind_disc": 38.24579290013512,
449
+ "cyclone_newdelhi_wind_sparse": 38.35705840624261,
450
+ "cyclone_reunion_exists_disc": 1.4534795701393985e-05,
451
+ "cyclone_reunion_exists_gaussian_probability": 3.718920029182973e-06,
452
+ "cyclone_reunion_exists_gaussian_unit_mode": 2.904068552840334e-05,
453
+ "cyclone_reunion_exists_sparse": 3.718217506666283e-06,
454
+ "cyclone_reunion_pres_disc": 988.3971534301168,
455
+ "cyclone_reunion_pres_sparse": 988.4014037680089,
456
+ "cyclone_reunion_r34_ne_radius_disc": 4.289028379568092,
457
+ "cyclone_reunion_r34_ne_radius_sparse": 4.299917389933227,
458
+ "cyclone_reunion_r34_nw_radius_disc": 3.317555542129158,
459
+ "cyclone_reunion_r34_nw_radius_sparse": 3.334151078729793,
460
+ "cyclone_reunion_r34_se_radius_disc": 5.271305822644962,
461
+ "cyclone_reunion_r34_se_radius_sparse": 5.279344141198086,
462
+ "cyclone_reunion_r34_shape": 4.803786493047663e-05,
463
+ "cyclone_reunion_r34_sw_radius_disc": 4.415883667938338,
464
+ "cyclone_reunion_r34_sw_radius_sparse": 4.465367186321693,
465
+ "cyclone_reunion_r50_ne_radius_disc": 0.9540886257314989,
466
+ "cyclone_reunion_r50_ne_radius_sparse": 0.9639373637448069,
467
+ "cyclone_reunion_r50_nw_radius_disc": 1.0221432702100848,
468
+ "cyclone_reunion_r50_nw_radius_sparse": 1.0215795233296312,
469
+ "cyclone_reunion_r50_se_radius_disc": 0.9974876573046315,
470
+ "cyclone_reunion_r50_se_radius_sparse": 1.0089211802270577,
471
+ "cyclone_reunion_r50_shape": 9.819037395780805e-06,
472
+ "cyclone_reunion_r50_sw_radius_disc": 1.1152407472941015,
473
+ "cyclone_reunion_r50_sw_radius_sparse": 1.124168114913688,
474
+ "cyclone_reunion_r64_ne_radius_disc": 0.0,
475
+ "cyclone_reunion_r64_ne_radius_sparse": 0.0,
476
+ "cyclone_reunion_r64_nw_radius_disc": 0.0,
477
+ "cyclone_reunion_r64_nw_radius_sparse": 0.0,
478
+ "cyclone_reunion_r64_se_radius_disc": 0.0,
479
+ "cyclone_reunion_r64_se_radius_sparse": 0.0,
480
+ "cyclone_reunion_r64_shape": 0.0,
481
+ "cyclone_reunion_r64_sw_radius_disc": 0.0,
482
+ "cyclone_reunion_r64_sw_radius_sparse": 0.0,
483
+ "cyclone_reunion_rmw_disc": 47.80460105463347,
484
+ "cyclone_reunion_rmw_sparse": 47.32724730911537,
485
+ "cyclone_reunion_wind_disc": 41.38800414799452,
486
+ "cyclone_reunion_wind_sparse": 41.37732717563862,
487
+ "cyclone_tokyo_exists_disc": 3.641361543340431e-05,
488
+ "cyclone_tokyo_exists_gaussian_probability": 8.928592838781462e-06,
489
+ "cyclone_tokyo_exists_gaussian_unit_mode": 7.282199853764786e-05,
490
+ "cyclone_tokyo_exists_sparse": 8.928592838781462e-06,
491
+ "cyclone_tokyo_pres_disc": 984.2139004310011,
492
+ "cyclone_tokyo_pres_sparse": 984.0491016393443,
493
+ "cyclone_usa_exists_disc": 0.00011373838081617455,
494
+ "cyclone_usa_exists_gaussian_probability": 2.8893580240585674e-05,
495
+ "cyclone_usa_exists_gaussian_unit_mode": 0.00022727349845085354,
496
+ "cyclone_usa_exists_sparse": 2.8892175195552293e-05,
497
+ "cyclone_usa_pres_disc": 990.374993053626,
498
+ "cyclone_usa_pres_sparse": 990.4236377167113,
499
+ "cyclone_usa_r34_ne_radius_disc": 43.776550605051014,
500
+ "cyclone_usa_r34_ne_radius_sparse": 42.981815501899,
501
+ "cyclone_usa_r34_nw_radius_disc": 37.83970032280896,
502
+ "cyclone_usa_r34_nw_radius_sparse": 37.30876969273169,
503
+ "cyclone_usa_r34_se_radius_disc": 42.082677070206636,
504
+ "cyclone_usa_r34_se_radius_sparse": 40.958653832969986,
505
+ "cyclone_usa_r34_shape": 9.269868572845685e-05,
506
+ "cyclone_usa_r34_sw_radius_disc": 35.03049595194117,
507
+ "cyclone_usa_r34_sw_radius_sparse": 34.193355545500665,
508
+ "cyclone_usa_r50_ne_radius_disc": 12.314503098620726,
509
+ "cyclone_usa_r50_ne_radius_sparse": 12.130081718837838,
510
+ "cyclone_usa_r50_nw_radius_disc": 10.755220183327866,
511
+ "cyclone_usa_r50_nw_radius_sparse": 10.646439197619733,
512
+ "cyclone_usa_r50_se_radius_disc": 11.851644254173213,
513
+ "cyclone_usa_r50_se_radius_sparse": 11.547609621159147,
514
+ "cyclone_usa_r50_shape": 1.4399069784692404e-05,
515
+ "cyclone_usa_r50_sw_radius_disc": 9.843964163027154,
516
+ "cyclone_usa_r50_sw_radius_sparse": 9.689183051567877,
517
+ "cyclone_usa_r64_ne_radius_disc": 4.571896632084103,
518
+ "cyclone_usa_r64_ne_radius_sparse": 4.584296974620542,
519
+ "cyclone_usa_r64_nw_radius_disc": 4.132333546237636,
520
+ "cyclone_usa_r64_nw_radius_sparse": 4.152468704153127,
521
+ "cyclone_usa_r64_se_radius_disc": 4.432679228020508,
522
+ "cyclone_usa_r64_se_radius_sparse": 4.403495331331496,
523
+ "cyclone_usa_r64_shape": 3.142892546213742e-06,
524
+ "cyclone_usa_r64_sw_radius_disc": 3.8137457059503874,
525
+ "cyclone_usa_r64_sw_radius_sparse": 3.808503181001741,
526
+ "cyclone_usa_rmw_disc": 67.1426451129257,
527
+ "cyclone_usa_rmw_sparse": 66.58142133786937,
528
+ "cyclone_usa_sshs_disc": 0.0006769460135987377,
529
+ "cyclone_usa_sshs_sparse": 5.0488462013080495,
530
+ "cyclone_usa_wind_disc": 47.81546813650211,
531
+ "cyclone_usa_wind_sparse": 47.733622708321434,
532
+ "cyclone_wellington_exists_disc": 8.189919684253784e-06,
533
+ "cyclone_wellington_exists_gaussian_probability": 2.030290073233195e-06,
534
+ "cyclone_wellington_exists_gaussian_unit_mode": 1.6373721568258063e-05,
535
+ "cyclone_wellington_exists_sparse": 2.030290073233195e-06,
536
+ "cyclone_wellington_pres_disc": 983.648699049818,
537
+ "cyclone_wellington_pres_sparse": 983.4920104936799,
538
+ "cyclone_wmo_pres_disc": 988.3693155405434,
539
+ "cyclone_wmo_pres_sparse": 988.3811378780113,
540
+ "day_progress": 0.4998711469790174,
541
+ "day_progress_cos": 2.5610077298349803e-08,
542
+ "day_progress_sin": -8.632842865255143e-09,
543
+ "geopotential": [
544
+ 199326.1416820135,
545
+ 157589.37262124004,
546
+ 133086.62099447515,
547
+ 115277.02786985881,
548
+ 101174.04444444444,
549
+ 89369.8042971148,
550
+ 69945.74536525476,
551
+ 54088.757274401476,
552
+ 40628.37470841007,
553
+ 28915.54966236955,
554
+ 13744.377163904235,
555
+ 7012.913934929405,
556
+ 739.1845303867403
557
+ ],
558
+ "geopotential_at_surface": 3764.3027624309393,
559
+ "high_cloud_cover": 0.32649580719574894,
560
+ "high_vegetation_cover": 0.08262674929980049,
561
+ "lake_cover": 0.006582444426909482,
562
+ "lake_depth": 2272.2055248618785,
563
+ "land_sea_mask": 0.33665826187461634,
564
+ "low_cloud_cover": 0.46289871805939226,
565
+ "low_vegetation_cover": 0.11036909746201658,
566
+ "mean_sea_level_pressure": 100962.48995165745,
567
+ "medium_cloud_cover": 0.2989171486533149,
568
+ "sea_ice_cover": 0.17178855882117097,
569
+ "sea_surface_temperature": 286.77307335622453,
570
+ "slope_of_sub_gridscale_orography": 0.0034532487282656395,
571
+ "snowfall": 1.5509441412614854e-05,
572
+ "soil_type": 0.6712915803406998,
573
+ "specific_humidity": [
574
+ 2.6763233306438664e-06,
575
+ 2.628975554138989e-06,
576
+ 5.225885254682538e-06,
577
+ 1.9251515413077058e-05,
578
+ 5.725079551659309e-05,
579
+ 0.00012632720378222387,
580
+ 0.00038239980783105407,
581
+ 0.0008464789815004652,
582
+ 0.00153133446194044,
583
+ 0.0024146476356876343,
584
+ 0.004545984800934718,
585
+ 0.005995240512986063,
586
+ 0.006987575580182435
587
+ ],
588
+ "standard_deviation_of_filtered_subgrid_orography": 14.084696324432167,
589
+ "standard_deviation_of_orography": 20.350742403314918,
590
+ "surface_net_solar_radiation": 464161.2847145488,
591
+ "surface_pressure": 96606.18123657152,
592
+ "surface_solar_radiation_downwards": 590316.1988950276,
593
+ "surface_solar_radiation_downwards_12hr": 7083843.6694904845,
594
+ "surface_solar_radiation_downwards_1hr": 590316.1988950276,
595
+ "surface_solar_radiation_downwards_24hr": 14167119.078698589,
596
+ "surface_solar_radiation_downwards_2hr": 1180649.1187231431,
597
+ "surface_solar_radiation_downwards_3hr": 1770986.815960712,
598
+ "surface_solar_radiation_downwards_6hr": 3541931.38956415,
599
+ "surface_thermal_radiation_downwards": 1081186.5969306324,
600
+ "temperature": [
601
+ 212.50174953959484,
602
+ 208.43818293431553,
603
+ 213.31437998772253,
604
+ 218.02147022713322,
605
+ 222.6927869858809,
606
+ 228.7637200736648,
607
+ 242.01385819521178,
608
+ 252.82420196439534,
609
+ 261.00337630448126,
610
+ 267.2267955801105,
611
+ 274.3885819521179,
612
+ 277.18704726826275,
613
+ 280.8368017188459
614
+ ],
615
+ "toa_incident_solar_radiation": 1072221.5312461632,
616
+ "toa_incident_solar_radiation_12hr": 12866569.682259055,
617
+ "toa_incident_solar_radiation_1hr": 1072221.5312461632,
618
+ "toa_incident_solar_radiation_24hr": 25732937.704112954,
619
+ "toa_incident_solar_radiation_2hr": 2144441.7259975444,
620
+ "toa_incident_solar_radiation_3hr": 3216660.5735420506,
621
+ "toa_incident_solar_radiation_4hr": 4288878.0653775325,
622
+ "toa_incident_solar_radiation_6hr": 6433309.062983425,
623
+ "toa_incident_solar_radiation_8hr": 8577718.987354206,
624
+ "total_cloud_cover": 0.6752740336313359,
625
+ "total_column_water_vapour": 18.19501442203791,
626
+ "total_precipitation_12hr": 0.0011899597915672703,
627
+ "total_precipitation_1hr": 9.913920549262187e-05,
628
+ "total_precipitation_24hr": 0.0023800570661850397,
629
+ "total_precipitation_2hr": 0.0001982857754299368,
630
+ "total_precipitation_3hr": 0.00029743483603518613,
631
+ "total_precipitation_4hr": 0.00039658596128296216,
632
+ "total_precipitation_6hr": 0.0005948954942036463,
633
+ "total_precipitation_8hr": 0.0007932438742097277,
634
+ "total_sky_direct_solar_radiation_at_surface": 371724.1006752609,
635
+ "total_sky_direct_solar_radiation_at_surface_12hr": 4461098.682381829,
636
+ "total_sky_direct_solar_radiation_at_surface_1hr": 371724.1006752609,
637
+ "total_sky_direct_solar_radiation_at_surface_24hr": 8921531.544751382,
638
+ "total_sky_direct_solar_radiation_at_surface_2hr": 743472.1512584408,
639
+ "total_sky_direct_solar_radiation_at_surface_3hr": 1115231.799631676,
640
+ "total_sky_direct_solar_radiation_at_surface_6hr": 2230482.9603437693,
641
+ "type_of_high_vegetation": 1.8231297239487416,
642
+ "type_of_low_vegetation": 1.4019073242786986,
643
+ "u_component_of_wind": [
644
+ 5.5790856161755675,
645
+ 10.206358387047269,
646
+ 13.457599562615101,
647
+ 14.127138006445673,
648
+ 13.268340431246163,
649
+ 11.732045158072436,
650
+ 8.76000517955801,
651
+ 6.51583601903008,
652
+ 4.775625863259669,
653
+ 3.316255659146716,
654
+ 1.4011914182397176,
655
+ 0.6022675553445366,
656
+ -0.04172965015202962
657
+ ],
658
+ "v_component_of_wind": [
659
+ 0.0037617179350738807,
660
+ 0.01457689541699039,
661
+ -0.03869846219881829,
662
+ -0.04672639869048304,
663
+ -0.031059584550289673,
664
+ -0.021650498157779887,
665
+ -0.01655089657609634,
666
+ -0.02398066043561042,
667
+ -0.027963635261399823,
668
+ 0.021129368828292857,
669
+ 0.14130658547229896,
670
+ 0.20475531684027778,
671
+ 0.18577553390212553
672
+ ],
673
+ "vertical_velocity": [
674
+ -5.926265169170607e-05,
675
+ -1.7960597357916788e-05,
676
+ 1.9891460370695467e-05,
677
+ 2.0051459873871543e-05,
678
+ 4.230715000534292e-05,
679
+ 0.00014087789405555794,
680
+ 0.00031541425659292093,
681
+ 0.0003188604222549991,
682
+ 0.00038675348622583774,
683
+ 0.0029756109285676603,
684
+ 0.011667071506975617,
685
+ 0.01747165068737051,
686
+ 0.02085213470927333
687
+ ],
688
+ "year_progress": 0.4988392721284072,
689
+ "year_progress_cos": -0.004568948580583765,
690
+ "year_progress_sin": 0.0006449962704664358
691
+ },
692
+ "nan_filled_variables": [
693
+ "sea_surface_temperature"
694
+ ],
695
+ "num_input_timesteps": 2,
696
+ "pressure_levels": [
697
+ 50,
698
+ 100,
699
+ 150,
700
+ 200,
701
+ 250,
702
+ 300,
703
+ 400,
704
+ 500,
705
+ 600,
706
+ 700,
707
+ 850,
708
+ 925,
709
+ 1000
710
+ ],
711
+ "static_variables": [
712
+ "geopotential_at_surface",
713
+ "land_sea_mask"
714
+ ],
715
+ "stddev_by_level": {
716
+ "100m_u_component_of_wind": 6.931105734972708,
717
+ "100m_v_component_of_wind": 6.067227027256341,
718
+ "10m_u_component_of_wind": 5.524868625211731,
719
+ "10m_v_component_of_wind": 4.744295414648787,
720
+ "10m_wind_gust_since_previous_post_processing": 4.688101116245255,
721
+ "2m_dewpoint_temperature": 20.888567648782224,
722
+ "2m_temperature": 21.408149469543627,
723
+ "angle_of_sub_gridscale_orography": 0.5657162704458326,
724
+ "anisotropy_of_sub_gridscale_orography": 0.251740002489918,
725
+ "clear_sky_direct_solar_radiation_at_surface": 928217.6996224329,
726
+ "clear_sky_direct_solar_radiation_at_surface_12hr": 7465302.978395218,
727
+ "clear_sky_direct_solar_radiation_at_surface_1hr": 928217.6565723298,
728
+ "clear_sky_direct_solar_radiation_at_surface_24hr": 9152779.072728928,
729
+ "clear_sky_direct_solar_radiation_at_surface_2hr": 1835441.725682428,
730
+ "clear_sky_direct_solar_radiation_at_surface_3hr": 2703075.0323175024,
731
+ "clear_sky_direct_solar_radiation_at_surface_6hr": 4937558.568937136,
732
+ "convective_available_potential_energy": 362.17597262832885,
733
+ "convective_inhibition": 172.4834838308513,
734
+ "convective_precipitation": 0.000232941960928049,
735
+ "cyclone_all_wind_disc": 23.69031855702728,
736
+ "cyclone_all_wind_sparse": 23.819150351423282,
737
+ "cyclone_bom_exists_disc": 0.0031485379026394344,
738
+ "cyclone_bom_exists_gaussian_probability": 0.000486084334222227,
739
+ "cyclone_bom_exists_gaussian_unit_mode": 0.003721319068107968,
740
+ "cyclone_bom_exists_sparse": 0.0019011131243130322,
741
+ "cyclone_bom_pres_disc": 17.688081853528903,
742
+ "cyclone_bom_pres_sparse": 17.79830363013786,
743
+ "cyclone_bom_r34_ne_radius_disc": 21.899490446946324,
744
+ "cyclone_bom_r34_ne_radius_sparse": 22.183814940252283,
745
+ "cyclone_bom_r34_nw_radius_disc": 20.808358099357527,
746
+ "cyclone_bom_r34_nw_radius_sparse": 21.124349496642626,
747
+ "cyclone_bom_r34_se_radius_disc": 21.85082889370399,
748
+ "cyclone_bom_r34_se_radius_sparse": 22.143821958544677,
749
+ "cyclone_bom_r34_shape": 0.0018846183315076015,
750
+ "cyclone_bom_r34_sw_radius_disc": 22.31464506858657,
751
+ "cyclone_bom_r34_sw_radius_sparse": 22.65313766033155,
752
+ "cyclone_bom_r50_ne_radius_disc": 7.066577157445349,
753
+ "cyclone_bom_r50_ne_radius_sparse": 7.146331801509687,
754
+ "cyclone_bom_r50_nw_radius_disc": 6.7115724551161255,
755
+ "cyclone_bom_r50_nw_radius_sparse": 6.800927013113001,
756
+ "cyclone_bom_r50_se_radius_disc": 7.2002993405258024,
757
+ "cyclone_bom_r50_se_radius_sparse": 7.2989690786469925,
758
+ "cyclone_bom_r50_shape": 0.0005335875636670281,
759
+ "cyclone_bom_r50_sw_radius_disc": 7.30153924084016,
760
+ "cyclone_bom_r50_sw_radius_sparse": 7.414763981019785,
761
+ "cyclone_bom_r64_ne_radius_disc": 2.630869335062458,
762
+ "cyclone_bom_r64_ne_radius_sparse": 2.670839080721757,
763
+ "cyclone_bom_r64_nw_radius_disc": 2.4738153581620543,
764
+ "cyclone_bom_r64_nw_radius_sparse": 2.516054043276018,
765
+ "cyclone_bom_r64_se_radius_disc": 2.5810023842641354,
766
+ "cyclone_bom_r64_se_radius_sparse": 2.622612457628603,
767
+ "cyclone_bom_r64_shape": 0.00017013640883995718,
768
+ "cyclone_bom_r64_sw_radius_disc": 2.618670458753952,
769
+ "cyclone_bom_r64_sw_radius_sparse": 2.660547750657891,
770
+ "cyclone_bom_rmw_disc": 18.996455470915915,
771
+ "cyclone_bom_rmw_sparse": 18.825755392675816,
772
+ "cyclone_bom_wind_disc": 22.325768296866727,
773
+ "cyclone_bom_wind_sparse": 22.361049382710547,
774
+ "cyclone_cma_exists_disc": 0.004991890602840817,
775
+ "cyclone_cma_exists_gaussian_probability": 0.0007386934872848874,
776
+ "cyclone_cma_exists_gaussian_unit_mode": 0.005879571405211853,
777
+ "cyclone_cma_exists_sparse": 0.002942933357754426,
778
+ "cyclone_cma_pres_disc": 21.04592870752187,
779
+ "cyclone_cma_pres_sparse": 21.169390468701415,
780
+ "cyclone_cma_wind_disc": 24.2940031107341,
781
+ "cyclone_cma_wind_sparse": 24.450006914009677,
782
+ "cyclone_exists_disc": 0.009887676709466343,
783
+ "cyclone_exists_gaussian_probability": 0.0014724481267356015,
784
+ "cyclone_exists_sparse": 0.005844389021456338,
785
+ "cyclone_hko_exists_disc": 0.004348190688175641,
786
+ "cyclone_hko_exists_gaussian_probability": 0.0006513037690574331,
787
+ "cyclone_hko_exists_gaussian_unit_mode": 0.005124181595594448,
788
+ "cyclone_hko_exists_sparse": 0.002581987618921494,
789
+ "cyclone_hko_pres_disc": 21.94045265998878,
790
+ "cyclone_hko_pres_sparse": 22.14807542164556,
791
+ "cyclone_nadi_exists_disc": 0.0016365096385963815,
792
+ "cyclone_nadi_exists_gaussian_probability": 0.0002474984294312884,
793
+ "cyclone_nadi_exists_gaussian_unit_mode": 0.0019315468126872416,
794
+ "cyclone_nadi_exists_sparse": 0.0009772212453690152,
795
+ "cyclone_nadi_pres_disc": 21.4469485346061,
796
+ "cyclone_nadi_pres_sparse": 21.551573501145732,
797
+ "cyclone_newdelhi_exists_disc": 0.0017802804603560096,
798
+ "cyclone_newdelhi_exists_gaussian_probability": 0.0002717279485882698,
799
+ "cyclone_newdelhi_exists_gaussian_unit_mode": 0.0020878645051775817,
800
+ "cyclone_newdelhi_exists_sparse": 0.0010650532397749332,
801
+ "cyclone_newdelhi_pres_disc": 12.92153085742393,
802
+ "cyclone_newdelhi_pres_sparse": 12.957772675011123,
803
+ "cyclone_newdelhi_wind_disc": 20.62368998689247,
804
+ "cyclone_newdelhi_wind_sparse": 20.630845606723657,
805
+ "cyclone_reunion_exists_disc": 0.0032229371970215154,
806
+ "cyclone_reunion_exists_gaussian_probability": 0.0004887996904386029,
807
+ "cyclone_reunion_exists_gaussian_unit_mode": 0.0038130240824231203,
808
+ "cyclone_reunion_exists_sparse": 0.0019282644220969425,
809
+ "cyclone_reunion_pres_disc": 18.67100533786406,
810
+ "cyclone_reunion_pres_sparse": 18.58539764941879,
811
+ "cyclone_reunion_r34_ne_radius_disc": 81.21920958463929,
812
+ "cyclone_reunion_r34_ne_radius_sparse": 80.14779656575423,
813
+ "cyclone_reunion_r34_nw_radius_disc": 72.60044788010804,
814
+ "cyclone_reunion_r34_nw_radius_sparse": 71.76991350340002,
815
+ "cyclone_reunion_r34_se_radius_disc": 69.32363806952489,
816
+ "cyclone_reunion_r34_se_radius_sparse": 67.83110377532559,
817
+ "cyclone_reunion_r34_shape": 0.006807190122676651,
818
+ "cyclone_reunion_r34_sw_radius_disc": 51.64385340203464,
819
+ "cyclone_reunion_r34_sw_radius_sparse": 53.50887399452012,
820
+ "cyclone_reunion_r50_ne_radius_disc": 10.18815318205798,
821
+ "cyclone_reunion_r50_ne_radius_sparse": 10.183125039431566,
822
+ "cyclone_reunion_r50_nw_radius_disc": 43.00761492754783,
823
+ "cyclone_reunion_r50_nw_radius_sparse": 42.35208444594937,
824
+ "cyclone_reunion_r50_se_radius_disc": 10.656696807905925,
825
+ "cyclone_reunion_r50_se_radius_sparse": 10.664564615153916,
826
+ "cyclone_reunion_r50_shape": 0.003074461515641982,
827
+ "cyclone_reunion_r50_sw_radius_disc": 40.73703234065318,
828
+ "cyclone_reunion_r50_sw_radius_sparse": 40.59858676680343,
829
+ "cyclone_reunion_r64_ne_radius_disc": 0.0,
830
+ "cyclone_reunion_r64_ne_radius_sparse": 0.0,
831
+ "cyclone_reunion_r64_nw_radius_disc": 0.0,
832
+ "cyclone_reunion_r64_nw_radius_sparse": 0.0,
833
+ "cyclone_reunion_r64_se_radius_disc": 0.0,
834
+ "cyclone_reunion_r64_se_radius_sparse": 0.0,
835
+ "cyclone_reunion_r64_shape": 0.0,
836
+ "cyclone_reunion_r64_sw_radius_disc": 0.0,
837
+ "cyclone_reunion_r64_sw_radius_sparse": 0.0,
838
+ "cyclone_reunion_rmw_disc": 42.48401204962948,
839
+ "cyclone_reunion_rmw_sparse": 42.01080792316547,
840
+ "cyclone_reunion_wind_disc": 20.345642111774012,
841
+ "cyclone_reunion_wind_sparse": 20.412319586299958,
842
+ "cyclone_tokyo_exists_disc": 0.005127470732220812,
843
+ "cyclone_tokyo_exists_gaussian_probability": 0.0007439358966113116,
844
+ "cyclone_tokyo_exists_gaussian_unit_mode": 0.00603395495720605,
845
+ "cyclone_tokyo_exists_sparse": 0.0029880617662644427,
846
+ "cyclone_tokyo_pres_disc": 22.18277589300155,
847
+ "cyclone_tokyo_pres_sparse": 22.28374756234849,
848
+ "cyclone_usa_exists_disc": 0.009038961713990292,
849
+ "cyclone_usa_exists_gaussian_probability": 0.0013584080134673784,
850
+ "cyclone_usa_exists_gaussian_unit_mode": 0.010659936364102998,
851
+ "cyclone_usa_exists_sparse": 0.005375066551938195,
852
+ "cyclone_usa_pres_disc": 20.58837988581305,
853
+ "cyclone_usa_pres_sparse": 20.75635279680329,
854
+ "cyclone_usa_r34_ne_radius_disc": 97.00127501726416,
855
+ "cyclone_usa_r34_ne_radius_sparse": 94.60167823940952,
856
+ "cyclone_usa_r34_nw_radius_disc": 86.30944484181059,
857
+ "cyclone_usa_r34_nw_radius_sparse": 84.32224302221206,
858
+ "cyclone_usa_r34_se_radius_disc": 95.18386513583137,
859
+ "cyclone_usa_r34_se_radius_sparse": 91.8948169842608,
860
+ "cyclone_usa_r34_shape": 0.008859747644889306,
861
+ "cyclone_usa_r34_sw_radius_disc": 83.32746059660876,
862
+ "cyclone_usa_r34_sw_radius_sparse": 80.491287376048,
863
+ "cyclone_usa_r50_ne_radius_disc": 39.81164861552094,
864
+ "cyclone_usa_r50_ne_radius_sparse": 38.923057429816836,
865
+ "cyclone_usa_r50_nw_radius_disc": 35.79378640312732,
866
+ "cyclone_usa_r50_nw_radius_sparse": 35.155811085211845,
867
+ "cyclone_usa_r50_se_radius_disc": 39.744814145291286,
868
+ "cyclone_usa_r50_se_radius_sparse": 38.29877096090255,
869
+ "cyclone_usa_r50_shape": 0.0032513134084117394,
870
+ "cyclone_usa_r50_sw_radius_disc": 33.794565966208836,
871
+ "cyclone_usa_r50_sw_radius_sparse": 33.01222012143348,
872
+ "cyclone_usa_r64_ne_radius_disc": 18.597985823536153,
873
+ "cyclone_usa_r64_ne_radius_sparse": 18.507035464350924,
874
+ "cyclone_usa_r64_nw_radius_disc": 17.270567391299615,
875
+ "cyclone_usa_r64_nw_radius_sparse": 17.210595755382514,
876
+ "cyclone_usa_r64_se_radius_disc": 18.59752628277015,
877
+ "cyclone_usa_r64_se_radius_sparse": 18.28661150322104,
878
+ "cyclone_usa_r64_shape": 0.0013410004669353187,
879
+ "cyclone_usa_r64_sw_radius_disc": 16.30225529939991,
880
+ "cyclone_usa_r64_sw_radius_sparse": 16.159494699421046,
881
+ "cyclone_usa_rmw_disc": 42.94756693728391,
882
+ "cyclone_usa_rmw_sparse": 42.27546355983567,
883
+ "cyclone_usa_sshs_disc": 0.06429696612835017,
884
+ "cyclone_usa_sshs_sparse": 2.332877348026138,
885
+ "cyclone_usa_wind_disc": 27.476168605843316,
886
+ "cyclone_usa_wind_sparse": 27.61648355659001,
887
+ "cyclone_wellington_exists_disc": 0.002428312211891703,
888
+ "cyclone_wellington_exists_gaussian_probability": 0.00035608432534459865,
889
+ "cyclone_wellington_exists_gaussian_unit_mode": 0.0028611544583259183,
890
+ "cyclone_wellington_exists_sparse": 0.0014248810305269046,
891
+ "cyclone_wellington_pres_disc": 17.559866064408173,
892
+ "cyclone_wellington_pres_sparse": 17.810982433390553,
893
+ "cyclone_wmo_pres_disc": 20.11073066476604,
894
+ "cyclone_wmo_pres_sparse": 20.191494647790062,
895
+ "day_progress": 0.28867731019933424,
896
+ "day_progress_cos": 0.7071067817353341,
897
+ "day_progress_sin": 0.7071067794743318,
898
+ "geopotential": [
899
+ 5913.352624854123,
900
+ 5526.8752063196,
901
+ 5837.354642575843,
902
+ 5831.1500034732935,
903
+ 5542.671638418843,
904
+ 5100.704903006732,
905
+ 4157.25354615382,
906
+ 3356.406434032527,
907
+ 2698.351631254122,
908
+ 2135.5178510377373,
909
+ 1466.41327500351,
910
+ 1224.5059838320788,
911
+ 1067.9617602617227
912
+ ],
913
+ "geopotential_at_surface": 8403.270176549393,
914
+ "high_cloud_cover": 0.4134011657612363,
915
+ "high_vegetation_cover": 0.24549546218862894,
916
+ "lake_cover": 0.04530940497505089,
917
+ "lake_depth": 2117.047295251493,
918
+ "land_sea_mask": 0.4609399796233273,
919
+ "low_cloud_cover": 0.39380527618814914,
920
+ "low_vegetation_cover": 0.28147005509312106,
921
+ "mean_sea_level_pressure": 1327.4867691170932,
922
+ "medium_cloud_cover": 0.3735152988790268,
923
+ "sea_ice_cover": 0.35639245096207045,
924
+ "sea_surface_temperature": 11.650927797848997,
925
+ "slope_of_sub_gridscale_orography": 0.009944139529737528,
926
+ "snowfall": 8.159606700220416e-05,
927
+ "soil_type": 1.1670392783453456,
928
+ "specific_humidity": [
929
+ 3.6089981214039234e-07,
930
+ 5.683971645599807e-07,
931
+ 3.7657552871311204e-06,
932
+ 2.249121951354903e-05,
933
+ 7.391955661239891e-05,
934
+ 0.00016728355333172663,
935
+ 0.0005041502338144687,
936
+ 0.001072544597238845,
937
+ 0.0017621133844766324,
938
+ 0.0025397864706660886,
939
+ 0.004106465240573036,
940
+ 0.00506807544003444,
941
+ 0.005911299788570023
942
+ ],
943
+ "standard_deviation_of_filtered_subgrid_orography": 42.55937783744212,
944
+ "standard_deviation_of_orography": 59.27252261204485,
945
+ "surface_net_solar_radiation": 793998.9512952002,
946
+ "surface_pressure": 9653.102225748145,
947
+ "surface_solar_radiation_downwards": 893574.7234486073,
948
+ "surface_solar_radiation_downwards_12hr": 7326244.170728167,
949
+ "surface_solar_radiation_downwards_1hr": 893574.7234486073,
950
+ "surface_solar_radiation_downwards_24hr": 9487740.081814153,
951
+ "surface_solar_radiation_downwards_2hr": 1765275.8544159308,
952
+ "surface_solar_radiation_downwards_3hr": 2599829.479411982,
953
+ "surface_solar_radiation_downwards_6hr": 4763933.137828389,
954
+ "surface_thermal_radiation_downwards": 340575.896024603,
955
+ "temperature": [
956
+ 10.306437254105417,
957
+ 12.5365034836574,
958
+ 8.968560739411428,
959
+ 7.234074147923595,
960
+ 8.543491998186497,
961
+ 10.726519915635718,
962
+ 12.71843128145324,
963
+ 13.092765443550014,
964
+ 13.462085116529137,
965
+ 14.891317141065588,
966
+ 15.708181889823756,
967
+ 16.203157099725075,
968
+ 17.245807378978935
969
+ ],
970
+ "toa_incident_solar_radiation": 1437315.534081273,
971
+ "toa_incident_solar_radiation_12hr": 11768660.040727401,
972
+ "toa_incident_solar_radiation_1hr": 1437315.534081273,
973
+ "toa_incident_solar_radiation_24hr": 14350913.587802254,
974
+ "toa_incident_solar_radiation_2hr": 2844416.0682731033,
975
+ "toa_incident_solar_radiation_3hr": 4195103.611294751,
976
+ "toa_incident_solar_radiation_4hr": 5467782.928361664,
977
+ "toa_incident_solar_radiation_6hr": 7716666.422150695,
978
+ "toa_incident_solar_radiation_8hr": 9513659.202270199,
979
+ "total_cloud_cover": 0.36563854200270834,
980
+ "total_column_water_vapour": 16.348594493935913,
981
+ "total_precipitation_12hr": 0.003384403891563649,
982
+ "total_precipitation_1hr": 0.0003836215378069519,
983
+ "total_precipitation_24hr": 0.005761335178667874,
984
+ "total_precipitation_2hr": 0.0007339367667162156,
985
+ "total_precipitation_3hr": 0.0010590749140499264,
986
+ "total_precipitation_4hr": 0.0013644967079968766,
987
+ "total_precipitation_6hr": 0.0019294529512661385,
988
+ "total_precipitation_8hr": 0.0024474135272612783,
989
+ "total_sky_direct_solar_radiation_at_surface": 680286.4207239569,
990
+ "total_sky_direct_solar_radiation_at_surface_12hr": 5628740.889482833,
991
+ "total_sky_direct_solar_radiation_at_surface_1hr": 680286.4207239569,
992
+ "total_sky_direct_solar_radiation_at_surface_24hr": 7783126.459006423,
993
+ "total_sky_direct_solar_radiation_at_surface_2hr": 1340111.6233197392,
994
+ "total_sky_direct_solar_radiation_at_surface_3hr": 1970112.4609623747,
995
+ "total_sky_direct_solar_radiation_at_surface_6hr": 3601777.4013797175,
996
+ "type_of_high_vegetation": 5.1262587537852164,
997
+ "type_of_low_vegetation": 3.5754746482577477,
998
+ "u_component_of_wind": [
999
+ 15.24589683464578,
1000
+ 13.476343430949226,
1001
+ 16.000975834001327,
1002
+ 17.62984539712644,
1003
+ 17.91347734935007,
1004
+ 17.062321230973726,
1005
+ 14.290464433000025,
1006
+ 11.938333523079558,
1007
+ 10.29388432317244,
1008
+ 9.131456349212133,
1009
+ 8.151894441787931,
1010
+ 7.905613355922395,
1011
+ 6.113443775275096
1012
+ ],
1013
+ "v_component_of_wind": [
1014
+ 7.004395300740542,
1015
+ 7.4439860454349,
1016
+ 9.530971466781395,
1017
+ 11.833251453884516,
1018
+ 13.323697105050952,
1019
+ 13.281009474266675,
1020
+ 11.176528485619341,
1021
+ 9.138486340819489,
1022
+ 7.7688275505141196,
1023
+ 6.842992386527618,
1024
+ 6.236308409453112,
1025
+ 6.441839341845105,
1026
+ 5.282142263549749
1027
+ ],
1028
+ "vertical_velocity": [
1029
+ 0.012572451721676007,
1030
+ 0.02594134710703176,
1031
+ 0.05227129338800826,
1032
+ 0.0830063057075752,
1033
+ 0.11417074817832003,
1034
+ 0.1455834123707333,
1035
+ 0.19457869795194835,
1036
+ 0.2172654473332933,
1037
+ 0.2280859108142561,
1038
+ 0.23842950166337834,
1039
+ 0.238405529771511,
1040
+ 0.20379343277531195,
1041
+ 0.1437028599390172
1042
+ ],
1043
+ "year_progress": 0.2881891384922495,
1044
+ "year_progress_cos": 0.7071509235274698,
1045
+ "year_progress_sin": 0.707047579547844
1046
+ },
1047
+ "target_variables": [
1048
+ "temperature",
1049
+ "geopotential",
1050
+ "u_component_of_wind",
1051
+ "v_component_of_wind",
1052
+ "vertical_velocity",
1053
+ "specific_humidity",
1054
+ "2m_temperature",
1055
+ "mean_sea_level_pressure",
1056
+ "10m_v_component_of_wind",
1057
+ "10m_u_component_of_wind",
1058
+ "sea_surface_temperature",
1059
+ "total_precipitation_6hr",
1060
+ "cyclone_exists_gaussian_unit_mode",
1061
+ "cyclone_all_wind_disc",
1062
+ "cyclone_usa_wind_disc",
1063
+ "cyclone_usa_r34_ne_radius_disc",
1064
+ "cyclone_usa_r34_se_radius_disc",
1065
+ "cyclone_usa_r34_sw_radius_disc",
1066
+ "cyclone_usa_r34_nw_radius_disc",
1067
+ "cyclone_usa_r50_ne_radius_disc",
1068
+ "cyclone_usa_r50_se_radius_disc",
1069
+ "cyclone_usa_r50_sw_radius_disc",
1070
+ "cyclone_usa_r50_nw_radius_disc",
1071
+ "cyclone_usa_r64_ne_radius_disc",
1072
+ "cyclone_usa_r64_se_radius_disc",
1073
+ "cyclone_usa_r64_sw_radius_disc",
1074
+ "cyclone_usa_r64_nw_radius_disc",
1075
+ "cyclone_usa_rmw_disc",
1076
+ "cyclone_usa_pres_disc"
1077
+ ],
1078
+ "time_step_hours": 6
1079
+ }