Datasets:

License:
dzambon commited on
Commit
f6f951c
·
verified ·
1 Parent(s): bd711c6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -12
README.md CHANGED
@@ -4,26 +4,39 @@ license: cc-by-4.0
4
 
5
  # PeakWeather 🌦️🌤️⛈️
6
 
7
- PeakWeather is a dataset of surface weather measurements for spatiotemporal deep learning
8
- with data collected every 10 minutes over the course of more than 8 years, from January 2017 until March 2025.
9
- It includes a diverse set of meteorological variables obtained from of SwissMetNet,
10
- the network of automatic weather stations operated by
11
- the Swiss Federal Office of Meteorology and Climatology (MeteoSwiss). The network counts over 300 station locations
12
- distributed across Switzerland's complex terrain.
13
- To provide geographical context, it is enriched with topographical features derived from a digital elevation model.
14
- Additionally, ensemble forecasts from the currently operational high-resolution NWP model ICON-CH1-EPS are included
15
- as a baseline for evaluating new forecasting approaches.
16
 
17
  <div style="display: flex; justify-content: center; gap: 20px;">
18
  <img src="https://raw.githubusercontent.com/MeteoSwiss/PeakWeather/main/figures/stations.png" alt="Description" width="450"/>
19
  </div>
20
 
 
 
 
 
 
 
 
 
 
 
21
  ## How to use PeakWeather
22
 
23
- To load the data, refer to the dataset implementation and instructions provided [on GitHub](https://github.com/MeteoSwiss/PeakWeather) 📦.
 
 
 
 
 
 
24
 
25
- The dataset is distributed as a lightweight, framework-agnostic Python library that exposes the data in a way that can
26
- easily integrate with modern deep learning frameworks while keeping dependencies to a minimum.
27
 
28
  **License**: CC-BY-4.0
29
 
 
4
 
5
  # PeakWeather 🌦️🌤️⛈️
6
 
7
+ PeakWeather is a high-resolution, quality-controlled dataset of surface weather
8
+ observations from 302 stations across Switzerland, collected by the Swiss
9
+ Federal Office for Meteorology and Climatology (MeteoSwiss) over more than
10
+ eight years. Designed to support research in spatiotemporal modeling, it
11
+ includes dense time series data, topographical features, and numerical weather
12
+ forecasts from an operational model at MeteoSwiss.
 
 
 
13
 
14
  <div style="display: flex; justify-content: center; gap: 20px;">
15
  <img src="https://raw.githubusercontent.com/MeteoSwiss/PeakWeather/main/figures/stations.png" alt="Description" width="450"/>
16
  </div>
17
 
18
+ ## What's Inside
19
+
20
+ - 302 weather stations across complex Swiss topography;
21
+ - 10-minute sampling from January 1st, 2017 to March 31th, 2025 (433,728 time steps);
22
+ - 8 meteorological variables: air temperature, relative humidity, air pressure, precipitation amount, wind speed/direction, wind gust, sunshine duration;
23
+ - Topographic features from a 50m-resolution digital height model;
24
+ - Numerical weather forecasts (ICON-CH1-EPS) for benchmarking;
25
+ - Metadata for stations and variables, as well as sensor relocations information;
26
+ - Missing values and resampling utilities.
27
+
28
  ## How to use PeakWeather
29
 
30
+ Use the companion [GitHub library](https://github.com/MeteoSwiss/PeakWeather) 📦 to:
31
+
32
+ - Download and cache the data locally;
33
+ - Load time series and static data into ready-to-use formats;
34
+ - Extract sliding windows of a size W and horizon H from the time series;
35
+ - Handle missing data via built-in imputation tools and (un)availability masks;
36
+ - Downsample or resample as needed for your modeling task.
37
 
38
+ For more details refer to the dataset implementation and instructions provided
39
+ [on GitHub](https://github.com/MeteoSwiss/PeakWeather).
40
 
41
  **License**: CC-BY-4.0
42