An API to easily download open access weather recordings from MeteoSwiss
Project description
Overview
This package provides a set of convenience tools to seamlessly download meteorological data collected and made available to the public as Open Government Data (OGD) by the Federal Office for Meteorology and Climatology MeteoSwiss. More information about the Open Data from MeteoSwiss is available here.
Currently, the data available through this interface concerns ground-base measurements (gbm) coming from the MeteoSwiss automatic weather stations network SwissMetNet (SMN).
Important notice:
This package was not developed and is not suppported by MeteoSwiss. It however relies on the MeteoSwiss Open Data API which allows public access to meteorological data provided by the Federal Office for Meteorology and Climatology, and which can be used independently of this package.
Installation
pip install swiss-weatherdata
Usage
Import all functions at once:
import swiss_weatherdata.gbm as gbm
Information about weather stations and meteorological parameters
Get information about all SwissMetNet (SMN) weather stations in a pd.DataFrame:
gbm.get_smn_stations_info()
Look for a meteorological parameter:
gbm.get_meteo_parameters_info()
The lookup argument allows to filter meteorological parameters by category, e.g., the following lists all parameters related to Wind:
gbm.get_meteo_parameters_info(lookup='wind', language='en')
Same output but in french:
gbm.get_meteo_parameters_info(lookup='vent', language='fr')
Currently, meteorological parameters are grouped into the following categories:
| language='en' | language='fr' |
|---|---|
| Wind | Vent |
| Evaporation | évaporation |
| Radiation | Rayonnement |
| Snow | neige |
| Pressure | Pression |
| Humidity | Humidité |
| Precipitation | Précipitations |
| Sunshine | Ensoleillement |
| Temperature | Température |
Get the parameter description from its shortname:
gbm.get_param_description(shortname='rre150d0', language='fr')
Get the list of available parameters for a given weather station. For example, at Genève-Cointrin (GVE):
gbm.get_parameters_by_station('GVE')
Time-granularity of recordings
Recordings are generally available at different time granularities: 10 minutes, hourly, daily, monthly or yearly.
Each parameter has its own granularity, as specified in the output of get_meteo_parameters_info(), for instance:
| parameter_shortname | parameter_description_en |
|---|---|
| tre200s0 | 'Air temperature 2 m above ground; current value' |
| tre200h0 | 'Air temperature 2 m above ground; hourly mean' |
| tre200d0 | 'Air temperature 2 m above ground; daily mean' |
| tre200m0 | 'Air temperature 2 m above ground; monthly mean' |
| tre200y0 | 'Air temperature 2 m above ground; annual mean' |
Download recordings from a given weather station:
The function get_smn_measures() downloads data recorded at a given weather station for several meteorological parameters and for a specified period. It returns data organized in a Pandas pd.DataFrame.
Example 1: get daily maximum temperature and daily sum of precipitation recorded at Genève-Cointrin from May 15. 2025 and to the latest available record:
df = gbm.get_smn_measures(
sta='GVE',
parameters=['tre200dx', 'rka150d0'],
beg='202405150000'
)
Example 2: get hourly mean temperature and hourly sum of precipitation recorded at Payerne from January 15. 2010 at 06:00 UTC to March 1. 2010 at 18:00 UTC:
df = gbm.get_smn_measures(
sta='PAY',
parameters=['tre200h0', 'rre150h0'],
beg='201001150600',
end='201003011800'
)
Examples
All previous examples are available in a Jupyter Notebook on GitHub.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swiss_weatherdata-0.0.2.tar.gz.
File metadata
- Download URL: swiss_weatherdata-0.0.2.tar.gz
- Upload date:
- Size: 133.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c31e8eb681fccd2ba6c683b25ea3687f3f40ed2a71b02e9383d61a918197372
|
|
| MD5 |
8c32f681cc09184b16d57ed4dec110d5
|
|
| BLAKE2b-256 |
55b973874eb665241e6f547383c838ea12438874bf819487d865fd9def83e31a
|
File details
Details for the file swiss_weatherdata-0.0.2-py3-none-any.whl.
File metadata
- Download URL: swiss_weatherdata-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3e55d41b04dc310c98e116c880883995db3d9d87b7c6436e9129e8c61f75b56
|
|
| MD5 |
12b3f7ac6f638de451b4c8684d4e67d3
|
|
| BLAKE2b-256 |
6449b3343d14a5edfd78b925da2f0017df044340a2f5bf0bdcfe0b430a7f17c6
|