Meteomatics Weather API
Weather API provides access to current weather, forecasts, and historical data.
Meteomatics weather
- 🌡️ Temperature Parameters
- 💦 Humidity Parameters
- 🌧 Precipitation Parameters
- 🚂 Evaporation Parameters
- 🌬 Wind Parameters
- ☁️ Cloud Parameters
- ❄️ Snow and Frost Parameters
- 🌱 Soil Parameters
- ☢️ Radiation Parameters
- ⚖️ Atmospheric Stability Parameters
- 🌾 Agricultural Parameters
- ⚠️ Weather Warnings
- Other parameters
- List of all available parameters
Why EOSDA API Connect Weather?
EOSDA API Connect Weather API provides a range of accurate and reliable weather information. By integrating Meteomatics weather into your API, you can access a wealth of weather data that can be used to enhance your applications:
🔘 historical weather data from 1979
🔘 forecast data, ensemble and trend forecasts, forecasts up to 7 months
🔘 up to 1500 different weather parameters
🔘 90 meter resolution worldwide
🔘 mix data from more than 25 weather models
Getting Started
To use Meteomatics weather, you first need to sign up for an account in EOSDA API Connect user dashboard.
Then, contact our sales team through email <api.support@eosda.com>
to activate your trial.
Once you have created an account, you can obtain an API key, which is used to authenticate API requests.
To authenticate API requests, you need to replace your_api_key in environments settings with your personal API key from EOSDA API Connect user dashboard end send it in every single request in headers parameter:
Endpoint structure
POST https://api-connect.eos.com/weather/v1/meteomatics/<date_start>--<date_end>:<time_step>
{
"parameters": "<parameter1>,<parameter2>,...,<parameter10>/<lat>,<lon>/<format>"
}
Parameter | Description | Example |
---|---|---|
date_start | (required) start date. Dates and times are specified according to the ISO-86011 format (YYYY-MM-DDThh:mm:ssZ). All times are in UTC. Note that the part containing time specifications (Thh:mm:ss) is optional. | 2017-05-28T13:00:00Z |
date_end | (required) end date, for example "2023-01-24". Note, that end date can be be maximum 90 days ahead from the start date | 2017-05-30T13:00:00Z |
time_step | time step, for example "1D". Options for duration and step: 1D=1 day, 1W=1 week, 1M=1 month, T1H=1 hour, T1M=1 minute, T1S=1 second, and combinations of the previous, e.g. 1DT1H | P1D |
parameters | Here you can see the list of all available weather parameters. In one request you can use up to 10 parameters in array, separated by commas. In this case, you would specify "t_2m:C,windspeed_10m:ms" to fetch the temperature at 2 meters above ground in Celsius and the wind speed at 10 meters above ground in meters per second. | t_2m:C,windspeed_10m:ms |
coordinates | Geo-coordinates (latitude and longitude) in WGS-84 decimal format. It is possible to query a single point, a point list, a line, or a rectangle. In one request you can use up to 10 points. Please note that their representation in the response will contain at most 6 digits after the decimal point. | Single point: 50.44,30.52; Point list: 50.44,30.52+48.44,10.52 |
format | The data format of the output. | json, csv, xml, html |
If you query parameters, which are averaged or accumulated over a certain time interval, you have to note that all time intervals are right-bounded. This means that a parameter like precip_3h:mm yields the accumulated precipitation sum over the previous 3 hours. So, the value at 18 UTC represents the precipitation sum from 15 UTC until 18 UTC
Standard weather parameters
🌡️Temperature parameters
Immediate Temperature - gives the instantaneous temperature at the indicated level above ground in the corresponding unit.
t_<level>:<unit>
Parameter | Available options |
---|---|
levels (global) | -150cm, -50cm, -15cm, -5cm, 0m, 2m - 20000m (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels | FL10 - FL900 (continuously) |
units | C, K, F |
List of all Temperature Parameters available
Examples
⚫ Create a time series of temperature values in °C at different altitudes for Kyiv:
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-25T00:00:00Z--2023-04-26T00:00:00Z:PT1H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "t_2m:C,t_20m:C,t_100m:C,t_200m:C,t_500m:C,t_850hPa:C,t_700hPa:C/50.447235,30.522595/html"
}'
HTTP Response
⚫ Tempreture at 2m in °C for the JSON format
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-25T00:00:00Z--2023-04-27T00:00:00Z:P1D' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "t_2m:C/50.447235,30.522595/json"
}'
HTTP Response
{
"version": "3.0",
"user": "eos_data_analytics",
"dateGenerated": "2023-04-26T14:56:01Z",
"status": "OK",
"data": [
{
"parameter": "t_2m:C",
"coordinates": [
{
"lat": 50.447235,
"lon": 30.522595,
"dates": [
{
"date": "2023-04-25T00:00:00Z",
"value": 7.7
},
{
"date": "2023-04-26T00:00:00Z",
"value": 8.8
},
{
"date": "2023-04-27T00:00:00Z",
"value": 8.3
}
]
}
]
}
]
}
Interval Values of Temperature - gives the mean, maximum or minimum temperature at the indicated level over the indicated duration.
t_<measure>_<level>_<interval>:<unit>
Parameter | Available options |
---|---|
measures | mean, min, max |
levels (global) | -150cm, -50cm, -15cm, -5cm, 0m, 2m - 20000m (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels | FL10 - FL900 (continuously) |
intervals | 1h - 24h (spacing: 1 h) |
units | C, K, F |
⚫ Example Create a request for the mean temperature in °C at height 2m for one point using 3 hour intervals.
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-26T00:00:00Z--2023-04-27T00:00:00Z:PT1H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "t_mean_2m_3h:C/50.447235,30.522595/csv"
}'
HTTP Response
validdate;t_mean_2m_3h:C
2023-04-26T00:00:00Z;9.5
2023-04-26T01:00:00Z;9.1
2023-04-26T02:00:00Z;8.8
2023-04-26T03:00:00Z;8.5
2023-04-26T04:00:00Z;8.4
2023-04-26T05:00:00Z;8.8
2023-04-26T06:00:00Z;9.6
2023-04-26T07:00:00Z;10.3
2023-04-26T08:00:00Z;10.9
2023-04-26T09:00:00Z;12.0
2023-04-26T10:00:00Z;13.1
2023-04-26T11:00:00Z;13.9
2023-04-26T12:00:00Z;14.3
2023-04-26T13:00:00Z;14.2
2023-04-26T14:00:00Z;14.1
2023-04-26T15:00:00Z;14.0
2023-04-26T16:00:00Z;14.0
2023-04-26T17:00:00Z;13.8
2023-04-26T18:00:00Z;12.8
2023-04-26T19:00:00Z;11.8
2023-04-26T20:00:00Z;11.2
2023-04-26T21:00:00Z;10.8
2023-04-26T22:00:00Z;10.5
2023-04-26T23:00:00Z;10.1
2023-04-27T00:00:00Z;9.6
💦 Humidity Parameters
Instantaneous Relative Humidity
Gives the instantaneous value of the relative humidity at the indicated level in percent.
relative_humidity_<level>:<unit>
Parameter | Available options |
---|---|
levels (global) | 2m - 20000m (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa |
flight levels | FL10 - FL605 (continuously) |
units | p |
List of all Humidity Parameters available
⚫ Example: Create a time series of relative humidity in % at different altitudes:
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-27T00:00:00Z--2023-04-29T00:00:00Z:PT1H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "relative_humidity_2m:p,relative_humidity_20m:p,relative_humidity_200m:p,relative_humidity_500m:p,relative_humidity_700hPa:p/50.447235,30.522595/html"
}'
HTTP Response
Interval Values of Relative Humidity
Gives the mean, maximum or minimum relative humidity at the indicated level over the indicated duration.
relative_humidity_<measure>_<level>_<interval>:p
Parameter | Available options |
---|---|
measures | mean, min, max |
levels (global) | 2m - 20000m (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa |
flight levels | FL10 - FL605 (continuously) |
intervals | 1h, 2h, 3h, 6h, 12h, 24h |
units | p |
⚫ Example: Create a time series for the maximum relative humidity at different altitudes using 3 hour intervals. Current situation:
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-26T00:00:00Z--2023-04-27T00:00:00Z:PT3H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "relative_humidity_max_2m_3h:p,relative_humidity_max_100m_3h:p,relative_humidity_max_850hPa_3h:p/50.447235,30.522595/json"
}
'
HTTP Response
{
"version": "3.0",
"user": "eos_data_analytics",
"dateGenerated": "2023-04-26T18:35:05Z",
"status": "OK",
"data": [
{
"parameter": "relative_humidity_max_2m_3h:p",
"coordinates": [
{
"lat": 50.447235,
"lon": 30.522595,
"dates": [
{
"date": "2023-04-26T00:00:00Z",
"value": 81.5
},
{
"date": "2023-04-26T03:00:00Z",
"value": 84.8
},
...
{
"date": "2023-04-27T00:00:00Z",
"value": 97.7
}
]
}
]
},
{
"parameter": "relative_humidity_max_100m_3h:p",
"coordinates": [
{
"lat": 50.447235,
"lon": 30.522595,
"dates": [
{
"date": "2023-04-26T00:00:00Z",
"value": 75.0
},
...
{
"date": "2023-04-27T00:00:00Z",
"value": 98.0
}
]
}
]
},
{
"parameter": "relative_humidity_max_850hPa_3h:p",
"coordinates": [
{
"lat": 50.447235,
"lon": 30.522595,
"dates": [
{
"date": "2023-04-26T00:00:00Z",
"value": 64.8
},
...
{
"date": "2023-04-27T00:00:00Z",
"value": 97.7
}
]
}
]
}
]
}
Mean Relative Humidity over the Last 10 Years
Gives the mean relative humidity 2 m above ground over the last 10 years on a certain date at a specific location.
relative_humidity_2m_10y_mean:p
⚫ Example: Compare the mean relative humidity of the last ten years with the relative humidity of 10 days starts from 2024-02-19.
HTTP Request
curl --location --request POST 'https://api-connect.eos.com/weather/v1/meteomatics/2024-02-19T12:00:00ZP10D:P2D' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "relative_humidity_2m_10y_mean:p,relative_humidity_2m:p/50.447235,30.522595/json"
}'
HTTP Response
Absolute Humidity
Gives the absolute humidity at 2m in . Note: the absolute humidity is only available at 2m.
absolute_humidity_2m:gm3
⚫ Example: Absolute humidity for 1 point in json format with time step 8 hours
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-27T00:00:00Z--2023-04-29T00:00:00Z:PT8H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "absolute_humidity_2m:gm3/50.447235,30.522595/json"
}'
HTTP Response
{
"version": "3.0",
"user": "eos_data_analytics",
"dateGenerated": "2023-04-27T10:22:48Z",
"status": "OK",
"data": [
{
"parameter": "absolute_humidity_2m:gm3",
"coordinates": [
{
"lat": 50.447235,
"lon": 30.522595,
"dates": [
{
"date": "2023-04-27T00:00:00Z",
"value": 8.3
},
{
"date": "2023-04-27T08:00:00Z",
"value": 7.1
},
{
"date": "2023-04-27T16:00:00Z",
"value": 5.8
},
{
"date": "2023-04-28T00:00:00Z",
"value": 4.7
},
{
"date": "2023-04-28T08:00:00Z",
"value": 4.2
},
{
"date": "2023-04-28T16:00:00Z",
"value": 5.2
},
{
"date": "2023-04-29T00:00:00Z",
"value": 4.7
}
]
}
]
}
]
}
🌧 Precipitation Parameters
Accumulated Precipitation
Gives the amount of precipitation in millimeters that has fallen during the indicated interval. Here, precipitation is the sum of liquid (rain, freezing rain), mix (sleet), and solid (hail, graupel, snow) precipitation.
precip_<interval>:mm
Parameter | Available options |
---|---|
accumulation intervals | 5min, 10min, 15min, 30min, 1h, 3h, 6h, 12h, 24h |
List of all Precipitation Parameters available
Note: Interval depending values are always "right-aligned". This means a parameter like
precip_12h
at avaliddate
of2015-10-16T18:00:00Z
contains the amount of precipitation which fell between 6:00 and 18:00 (UTC) on the 16th of October.
⚫ Example: Show a three-day forecast of the expected precipitation accumulation with five minute resolution.
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-26T00:00:00Z--2023-04-29T00:00:00Z:PT5M' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "precip_5min:mm/50.447235,30.522595/html"
}'
HTTP Response
Mean Accumulated Precipitation over the Last 10 Years
Gives the mean amount of precipitation over the last 10 years on a certain date at a specific location.
precip_<interval>_10y_mean:mm
Parameter | Available options |
---|---|
intervals | 1h, 2h, 3h, 6h, 12h, 24h |
Precipitation Type
You can query an integer indicating the precipitation type with the parameter
precip_type:idx
Index | Precipitation Type |
---|---|
0 | None |
1 | Rain |
2 | Rain and snow mixed |
3 | Snow |
4 | Sleet |
5 | Freezing rain |
6 | Hail |
Precipitation Probability
You can query an integer indicating the precipitation type with the parameter
prob_precip_<interval>:p
Parameter | Available options |
---|---|
intervals | 1h, 3h, 6h, 12h, 24h |
Note: Please note that since this parameter is based on multiple models, it does not fulfill all mathematical requirements of a probability.
Note: Interval depending values are always "right-aligned". This means a parameter like
precip_12h
at avaliddate
of2015-10-16T18:00:00Z
contains the amount of precipitation which fell between 6:00 and 18:00 (UTC) on the 16th of October.
Rainfall
Check if there was any rain within the last 30 minutes or last hour. 0: no rain, 1: rain event
is_rain_<interval>:idx
Parameter | Available options |
---|---|
intervals | 30min, 1h |
Snowfall
Check if there was any snowfall within the last hour or last 30 minutes. 0: no snowfall, 1: snowfall event
is_snow_<interval>:idx
Parameter | Available options |
---|---|
intervals | 30min, 1h |
Sleet
Check if there was any sleet within the last hour or last 30 minutes. 0: no sleet, 1: sleet event
is_sleet_<interval>:idx
Parameter | Available options |
---|---|
intervals | 30min, 1h |
Hail
The API features a hail parameter describing the maximum size of the hailstones.
Occurring hail for a time interval:
hail_<interval>:cm
Parameter | Available options |
---|---|
intervals | 10min, 20min, 30min, 1h, 3h, 6h, 12h, 24h |
Freezing Rain
Freezing rain occurs when raindrops freeze on contact with the surface. This leads to a coating of ice on everything that the raindrops contact. Thus, freezing rain can be dangerous e.g. for motorists as the ice can create slick spots on roadways. Furthermore, the ice formed by freezing rain can cause tree branches and power lines to break leading to damage and/or power outages.
freezing_rain_1h:idx
The parameter goes from 0 (no freezing rain) to 1 (freezing rain).
Supercooled Liquid Water
Supercooled liquid water refers to water droplets that remain liquid below their normal freezing point. While this parameter describes the vertically integrated supercooled liquid water content, our API also offers bottom/top altitudes (in meters) where supercooled liquid water is present. If no supercooled liquid water is present, bottom/top altitudes are not defined.
super_cooled_liquid_water:kgm2
super_cooled_liquid_water_layer_bottom:m
super_cooled_liquid_water_layer_top:m
🚂 Evaporation Parameters
Accumulated Evaporation
Gives the accumulated amount of evaporation in millimeters. The amount of evaporation depends on factors such as cloudiness, air temperature and wind speed. Negative values indicate evaporation, while positive values indicate condensation.
evaporation_<interval>:<unit>
Parameter | Available options |
---|---|
intervals | 1h, 3h, 6h, 12h, 24h |
units | mm |
List of all Evaporation Parameters available
⚫ Example: Show a three-day forecast of the expected precipitation accumulation with five minute resolution.
HTTP Request
curl --location --request POST 'https://api-connect.eos.com/weather/v1/meteomatics/2024-02-20T00:00:00Z--2024-02-22T00:00:00Z:PT5M' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "precip_5min:mm/50.447235,30.522595/json"
}'
HTTP Response
🌬 Wind Parameters
Instantaneous Wind Speed
Gives the instantaneous wind speed at the indicated level.
wind_speed_<level>:<unit>
Parameter | Available options |
---|---|
altitude levels | 2m - 20000m (continuously), 5ft - 65000ft (continuously) |
pressure levels (global) | 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels (global) | FL10 - FL900 (continuously) |
speed units | ms, kmh, mph, kn, bft |
⚫ Example: Check the wind on different altitudes:
HTTP Request
curl --location --request POST 'https://api-connect.eos.com/weather/v1/meteomatics/2024-02-20T00:00:00ZP1D:PT5H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "wind_speed_2m:ms,wind_speed_10m:ms,wind_speed_100m:ms,wind_speed_1000m:ms,wind_speed_10000m:ms/50.447235,30.522595/json"
}'
HTTP Response
Instantaneous Wind Direction
Gives the instantaneous wind direction at the indicated height in degrees from North. For example, a direction of 45 degrees means that the wind is coming from the Northeast.
wind_dir_<level>:d
Parameter | Available options |
---|---|
altitude levels | 2m - 20000m (continuously), 5ft - 65000ft (continuously) |
pressure levels (global) | 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels (global) | FL10 - FL900 (continuously) |
Wind Speed: u and v components
Gives the immediate wind u and v components at the indicated level. Components (surface level, u is positive for a west to east flow, v is positive for a south to north flow).
wind_speed_u_<level>:<unit>
wind_speed_v_<level>:<unit>
Parameter | Available options |
---|---|
altitude levels | 2m - 20000m (continuously), 5ft - 65000ft (continuously) |
pressure levels (global) | 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels (global) | FL10 - FL900 (continuously) |
speed units | ms, kmh, mph, kn, bft |
Wind Speed: vertical component (w)
Gives the immediate vertical wind component at the indicated level.
wind_speed_w_<level>:<unit>
Negative values denote rising motions and positive values denote descending motions.
Parameter | Available options |
---|---|
altitude levels | 2m - 20000m (continuously), 5ft - 65000ft (continuously) |
pressure levels (global) | 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels (global) | FL10 - FL900 (continuously) |
speed units | Pas, ms |
Interval Wind Speed
Gives the mean, maximum or minimum wind speed over the specified interval at the indicated level.
wind_speed_<measure>_<level>_<interval>:<unit>
Parameter | Available options |
---|---|
levels | 2m - 20000m (continuously), 5ft - 65000ft (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels (global) | FL10 - FL900 (continuously) |
measures | max, mean, min |
Intervals | 1h, 3h, 6h, 12h, 24h |
speed units | ms, kmh, mph, kn, bft |
Interval Wind Gusts
Gives the wind gusts over the specified interval at the indicated level:
wind_gusts_<level>_<interval>:<unit>
Parameter | Available options |
---|---|
levels | 2m - 20000m (continuously), 5ft - 65000ft (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels (global) | FL10 - FL900 (continuously) |
Intervals | 1h, 3h, 6h, 12h, 24h |
speed units | ms, kmh, mph, kn, bft |
Interval Wind Direction
Gives the mean wind direction over the specified interval at the indicated height in degrees:
wind_dir_mean_<level>_<interval>:d
Parameter | Available options |
---|---|
levels | 2m - 20000m (continuously), 5ft - 65000ft (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa, 50hPa, 10hPa |
flight levels (global) | FL10 - FL900 (continuously) |
Intervals | 1h, 3h, 6h, 12h, 24h |
Mean Wind Speed over the Last 10 Years
Gives the mean 10m wind speed over the last 10 years on a certain date at a specific location.
wind_speed_10m_10y_mean:<unit>
Parameter | Available options |
---|---|
units | ms, kmh |
Wind Shear
This parameter denotes the vertical wind shear between 850 hPa and 200 hPa and describes how the wind changes with height. The vertical wind shear is often used to assess favorbale environmental conditions for tropical cyclone formation and thunderstorm development.
wind_shear:<unit>
Parameter | Available options |
---|---|
units | ms, kn |
☁️ Cloud Parameters
Amount of Cloud Cover
Gives the amount of cloud cover in percent or octas.
<level>_cloud_cover:<unit>
Parameter | Available options |
---|---|
levels | low, medium, high, total, effective |
units | octas, p |
Note: A value of -666 denotes that there are no clouds present and hence no ceiling height or cloud base can be determined.
⚫ Example: Generate a json file containing the amount of cloud cover in octas for the specified area.
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-28T12:00:00ZP2D:PT8H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "effective_cloud_cover:octas/50.447235,30.522595/json"
}
'
HTTP Response
{
"version": "3.0",
"user": "eos_data_analytics",
"dateGenerated": "2023-04-28T12:50:40Z",
"status": "OK",
"data": [
{
"parameter": "effective_cloud_cover:octas",
"coordinates": [
{
"lat": 50.447235,
"lon": 30.522595,
"dates": [
{
"date": "2023-04-28T12:00:00Z",
"value": 8
},
{
"date": "2023-04-28T20:00:00Z",
"value": 0
},
{
"date": "2023-04-29T04:00:00Z",
"value": 0
},
{
"date": "2023-04-29T12:00:00Z",
"value": 0
},
{
"date": "2023-04-29T20:00:00Z",
"value": 4
},
{
"date": "2023-04-30T04:00:00Z",
"value": 4
},
{
"date": "2023-04-30T12:00:00Z",
"value": 8
}
]
}
]
}
]
}
Mean Amount of Cloud Cover over the Last 10 Years
Gives the mean amount of cloud cover over the last 10 years on a certain date at a specific location.
<level>_cloud_cover_10y_mean:p
Parameter | Available options |
---|---|
levels | low, medium, high, total |
Ceiling Height
The ceiling height is an important parameter in aviation and is defined as the height of the lowest cloud layer covering more than half of the sky or where clouds are present above 6000m.
ceiling_height_agl:<unit>
Parameter | Available options |
---|---|
units | m, ft |
Note: A value of -666 denotes that there are no clouds present and hence no ceiling height or cloud base can be determined.
Cloud Base
The cloud base gives the lowest altitude of the visible portion of a cloud.
cloud_base_agl:<unit>
Parameter | Available options |
---|---|
units | m, ft |
Note: A value of -666 denotes that there are no clouds present and hence no ceiling height or cloud base can be determined.
❄️ Snow and Frost Parameters
Frost & Thaw Depth
The frost and thaw depth parameters indicate the depth to which the earth has frozen and the depth to which the earth has thawed in centimeters based on information from different soil layers.
frost_depth:cm
⚫ Example: Time series showing the frost and thaw depth:
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-03-01T00:00:00Z--2023-03-02T00:00:00Z:PT1H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "frost_depth:cm,thaw_depth:cm/50.447235,30.522595/csv"
}
'
HTTP Response
validdate;frost_depth:cm;thaw_depth:cm
2023-03-01T00:00:00Z;-666;-666
...
2023-03-01T06:00:00Z;-666;-666
2023-03-01T07:00:00Z;10.6;-666
2023-03-01T08:00:00Z;10.6;-666
2023-03-01T09:00:00Z;10.5;-666
2023-03-01T10:00:00Z;10.4;-666
2023-03-01T11:00:00Z;10.3;-666
2023-03-01T12:00:00Z;10.3;-666
2023-03-01T13:00:00Z;10.7;-666
2023-03-01T14:00:00Z;10.6;-666
2023-03-01T15:00:00Z;10.5;-666
2023-03-01T16:00:00Z;10.5;-666
2023-03-01T17:00:00Z;10.5;-666
2023-03-01T18:00:00Z;10.5;-666
2023-03-01T19:00:00Z;9.3;-666
2023-03-01T20:00:00Z;9.4;-666
2023-03-01T21:00:00Z;9.5;-666
2023-03-01T22:00:00Z;9.5;-666
2023-03-01T23:00:00Z;9.4;-666
2023-03-02T00:00:00Z;9.5;-666
Soil Frost
This parameter provides the probability in percent for the occurrence of soil frost based on surface and ground temperatures.
soil_frost:p
Amount of Snow Melt
Following parameter returns the snow height that melted within the given interval, i.e. the difference in snow height in cm: snow_melt_<interval>:cm
Following paramter returns the height of the water equivalent of the melted snow in mm (that is the same as l/m²). Please note that it is not the height of the snow cover in mm: snow_melt_<interval>:mm
Parameter | Available options |
---|---|
intervals | 1h, 3h, 6h, 12h, 24h |
Amount of Fresh Snow
Gives the amount in centimeters of fresh snow accumulated on the ground during the indicated time interval.
fresh_snow_<interval>:cm
Parameter | Available options |
---|---|
intervals | 1h, 3h, 6h, 12h, 24h |
Snow Depth
Gives the snow depth.
snow_depth:<unit>
Parameter | Available options |
---|---|
units | m, cm, mm |
Snow Water Equivalent
Gives the snow height.
snow_water_equivalent:<unit>
Parameter | Available options |
---|---|
units | m, mm |
Snow Density
Gives the snow density in kg m-3.
snow_density:kgm3
Snowfall Probability
This index provides the probability in percent for precipitation to occur in the form of snow.
prob_snowfall:p
Rime Probability
This index describes the probability of rime occurrence.
prob_rime:p
🌱 Soil Parameters
Soil Moisture Index (SMI)
The soil moisture index indicates the wetness of the soil. This index is computed using the permanent wilting point and the field capacity, which both depend on the geographical location (soil type). The index is 0 if the permanent wilting point is reached and 1 at field capacity. Note that the index can exceed 1 after rainfall events. The soil moisture index is available for 4 depth levels.
Note: The range goes from 0 when the wilting point is reached and 1 is when the ground becomes saturated. However after rain events there can more water above saturation thus leading to the above 1 index values. The index is a volumetric soil moisture, ie a ratio between water volume vs soil volume for the specific grid point and soil layer selected.
soil_moisture_index_<depth>:idx
Parameter | Available options |
---|---|
depths | -5cm, -15cm, -50cm, -150cm |
Depth Identifier | Soil Layer |
---|---|
-5cm | 0 - 7 cm |
-15cm | 7 - 28 cm |
-50cm | 28 - 100 cm |
-150cm | 100 - 289 cm |
⚫ Example: SMI on different layers
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-05-01T00:00:00Z--2023-05-31T12:00:00Z:PT4H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "soil_moisture_index_-5cm:idx,soil_moisture_index_-15cm:idx,soil_moisture_index_-50cm:idx,soil_moisture_index_-150cm:idx/50.447235,30.522595/html"
}'
HTTP Response
Soil Moisture Deficit (SMD)
This parameter computes the difference between the actual water content of the soil and the possible water content that the soil can hold in mm. The amount of water that can be hold is called field capacity. The calculation of the SMD is mainly based on soil water information in several depths as well as other meteorological parameters. The SMD is a useful tool in order to assess prevailing soil conditions like droughts. The SMD also depends on the soil type.
soil_moisture_deficit:mm
Soil Water Content
This parameter provides the volume of water for 4 soil layers. The soil water content depends on the soil type, soil depth and the groundwater level.
volumetric_soil_water_<depth>:m3m3
Parameter | Available options |
---|---|
depths | -5cm, -15cm, -50cm, -150cm |
⚫ Example: Soil Water Content shows the volume of water for 4 soil layers during 2 months:
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-01T00:00:00Z--2023-05-31T12:00:00Z:PT4H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "volumetric_soil_water_-5cm:m3m3,volumetric_soil_water_-15cm:m3m3,volumetric_soil_water_-50cm:m3m3,volumetric_soil_water_-150cm:m3m3/50.44276010,30.504633828/html"
}'
HTTP Response
Soil Type
This parameter provides the soil type for any location on the globe. The index takes values from 0 to 7, where each number indicates an individual soil type.
soil_type:idx
Soil Type | Description |
---|---|
0 | Ocean/Lake |
1 | Coarse |
2 | Medium |
3 | Medium Fine |
4 | Fine |
5 | Very Fine |
6 | Organic |
7 | Tropical Organic |
Soil Temperatures
Soil temperatures refer to temperatures in various soil depths. In general, soil temperatures depend on the soil type and represent the middle of each layer.
t_<depth>:<unit>
Parameter | Available options |
---|---|
depths | -5cm, -15cm, -50cm, -150cm |
units | C, K, F |
Example for tempretature t_<level>:<unit>
parameter
List of all Soil Parameters available
☢️ Radiation Parameters
Note: All radiation parameters are normalized on one square meter. The effective unit therefore is W/m2 or J/m2, respectively.
Clear Sky Radiation: Instantaneous Flux
Gives the instantaneous flux of clear sky radiation in Watts per square meter.
clear_sky_rad:W
⚫ Example: Show the expected instantaneous flux of clear sky radiation for the next two days.
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-30T00:00:00ZP2D:PT1H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"parameters": "clear_sky_rad:W/50.447235,30.522595/html"
}'
HTTP Response
Diffuse Radiation: Instantaneous flux
Gives the instantaneous flux of diffuse radiation in Watts per square meter.
diffuse_rad:W
Direct Radiation: Instantaneous Flux
Gives the instantaneous flux of direct radiation in Watts per square meter.
direct_rad:W
Global Radiation: Instantaneous Flux
Gives the instantaneous flux of global radiation (diffuse + direct radiation) in Watts per square meter.
global_rad:W
Mean Global Radiation over the Last 10 Years
Gives the mean global radiation over the last 10 years on a certain date at a specific location.
global_rad_10y_mean:W
Accumulated Energy
Gives the accumulated energy of direct, diffuse, global or clear sky radiation in Ws, Wh or J per square meter.
<type>_rad_<interval>:<unit>
Parameter | Available options |
---|---|
type | global, direct, diffuse, clear_sky |
intervals | 5min, 10min, 15min, 20min, 30min, 1h, 3h, 6h, 12h, 24h |
units | Ws, Wh, J |
⚫ Show the direct, diffuse and global radiation accumulated over one hour intervals for the next five days.
HTTP Request
curl --location 'https://api-connect.eos.com/weather/v1/meteomatics/2023-04-30T00:00:00Z--2023-05-05T00:00:00Z:PT1H' \
--header 'x-api-key: <your_api_key>' \
--header 'Content-Type: text/plain' \
--data '{
"direct_rad_1h:J,diffuse_rad_1h:J,global_rad_1h:J,clear_sky_rad_1h:J/52.652,7.865/html"
}'
HTTP Response
⚖️ Atmospheric Stability Parameters
Convective Available Potential Energy (CAPE)
The convective available potential energy (given in joules per kilogram air) is the amount of energy a parcel of air would have if lifted a certain distance vertically through the atmosphere. Any value greater than 0 J/kg indicates instability and an increasing probability of thunderstorms and hail.
cape:Jkg
Convective Inhibition (CIN)
The convective inhibition (given in joules per kilogram air) is the amount of energy required to lift the parcel to the level of free convection (LFC). While high values (150 J/kg and above) of CIN suppress thunderstorm development, lower CIN values suggest favorable thunderstorm development conditions (i.e. when CIN is 30 J/kg or less).
cin:Jkg
Lifted Index
The lifted index (given in Kelvin) is the difference between the temperature of the environment and that of an air parcel lifted adiabatically to a given pressure height in the troposphere, usually 500 hPa. The atmosphere at the given height is stable for positive values of the lifted index and unstable for negative values. When the value falls below -2, thunderstorms are anticipated. and for lower values, especially those below -6, severe weather is expected.
lifted_index:K
Thunderstorm Probabilities
Gives the probability of a thunderstorm to occur.
prob_tstorm_<interval>:p
Parameter | Available options |
---|---|
intervals | 1h, 2h, 3h, 6h, 12h, 24h |
🌾 Agricultural Parameters
List of all Agricultural Parameters available
Evapotranspiration
Evapotranspiration in millimeters accumulated for 1h, 3h, 6h, 12h, or 24h. Evapotranspiration (ET) is the sum of evaporation and plant transpiration from the Earth's land and ocean surface to the atmosphere. Evaporation accounts for the movement of water to the air from sources such as the soil, canopy interception, and bodies of water. Transpiration accounts for the movement of water within a plant and the subsequent loss of water as vapor through stomata in its leaves. Evapotranspiration is an important part of the water cycle. This parameter shows the reference evapotranspiration, which is the evapotranspiration from a hypothetical well-watered grass surface.
evapotranspiration_<interval>:mm
Parameter | Available options |
---|---|
intervals | 1h, 3h, 6h, 12h, 24h |
Growing Degree Days
Growing degree days (GDD), also called growing degree units (GDUs), are a heuristic tool in phenology. GDD are a measure of heat accumulation used by horticulturists, gardeners, and farmers to predict plant and animal development rates such as the date that a flower will bloom, an insect will emerge from dormancy, or a crop will reach maturity.
growing_degree_days_accumulated:gdd
Grass Land Temperature Sum
This is a special form of the GDD (Growing degree days). It is used for the date determination for the start of field work after the winter. Accumulation of the mean day temperatures starts on the first of January of the indicated year.
grass_land_temperature_sum:C
Leaf Wetness
Leaf wetness describes the amount of dew left on surfaces. It is used for detection of fog and dew conditions. The output is binary where 1 indicates wetness.
leaf_wetness:idx
Phytophthora Negative Prognosis
The Phytophthora negative prognosis is an index for the necessity of safety measures against potato blight. No safety measures against Phytophthora infestans are necessary up to a value of 150.
phytophthora_negative:idx
Most Similar Year
The year in which conditions on a particular date were most similar to those on the queried year.
most_similar_year:y
⚠️ Weather Warnings
List of all Weather Warnings Parameters available
Frost
This parameter indicates if there is any frost.
frost_warning_<interval>:idx
Parameter | Available options |
---|---|
intervals | 1h, 2h, 3h, 6h, 12h, 24h |
Warning | Description | Limits |
---|---|---|
0 | No frost | Temperature > 0°C |
1 | Frost | Temperature from -9 °C to -1°C |
2 | Severe Frost | Temperature < -10°C |
Heavy Rain Warning
This parameter indicates if any heavy rain events will occur in a given time interval.
heavy_rain_warning_<interval>:idx
Parameter | Available options |
---|---|
intervals | 1h, 2h, 3h, 6h, 12h, 24h |
Warning | Description | Limits for 1h | Limits for 6h |
---|---|---|---|
0 | No severe rainfall | < 15mm | < 20mm |
1 | Heavy Rainfall | 15mm to 25mm | 20 mm to 35mm |
2 | Severe Heavy Rainfall | 25mm to 40mm | 35 mm to 60mm |
3 | Extreme Heavy Rainfall | > 40mm | > 60mm |
Incessant Rain Warning
This parameter indicates if any incessant rain events will occur in a given time interval. A rain event is defined incessant if it lasts for at least 60 minutes.
incessant_rain_warning_<interval>:idx
Parameter | Available options |
---|---|
intervals | 12h, 24h, 48h, 72h |
Warning | Description | Limits for 12h | Limits for 24h | Limits for 48h | Limits for 72h |
---|---|---|---|---|---|
0 | No incessant rainfall | < 25mm | < 30mm | < 40mm | < 60mm |
1 | Incessant Rainfall | 25mm to 40mm | 30mm to 50mm | 40mm to 60mm | 60mm to 90mm |
2 | Severe Incessant Rainfall | 40mm to 70mm | 50mm to 80mm | 60mm to 90mm | 90mm to 120mm |
3 | Extreme Incessant Rainfall | > 70mm | > 80mm | > 90mm | > 120mm |
Snow Warning
This parameter indicates if any severe snow fall will occur in a given time interval.
snow_warning_<interval>:idx
Parameter | Available options |
---|---|
intervals | 1h, 2h, 3h, 6h, 12h, 24h, 48h |
Warning | Description | Limits for 1h | Limits for 6h | Limits for 12h | Limits for 24h | Limits for 48h |
---|---|---|---|---|---|---|
0 | No severe snowfall | < 1cm | ||||
1 | Snowfall | < 1cm | < 5cm | < 10cm | < 15cm | < 20cm |
2 | Snowfall | below 800m: 1cm to 2cmabove 800m: 1cm to 4cm | below 800m: 5cm to 10cmabove 800m: 5cm to 20cm | below 800m: 10cm to 15cmabove 800m: 10cm to 30cm | below 800m: 15cm to 30cmabove 800m: 15cm to 40cm | 20cm to 50cm |
3 | Heavy Snowfall | below 800m: 2cm to 4cmabove 800m: 4cm to 6cm | below 800m: 10cm to 20cmabove 800m: 20cm to 30cm | below 800m: 15cm to 25cmabove 800m: 30cm to 50cm | below 800m: 30cm to 40cmabove 800m: 40cm to 60cm | 50cm to 70cm |
4 | Extreme Heavy Snowfall | below 800m: > 4cmabove 800m: > 6cm | below 800m: > 20cmabove 800m: > 30cm | below 800m: > 25cmabove 800m: > 50cm | below 800m: > 40cmabove 800m: > 60cm | > 70cm |
Wind Warning
This parameter indicates if any dangerous wind speeds will occur in a given time interval. Wind speeds are considered dangerous if they exceed 50 km/h.
wind_warning_<interval>:idx
Parameter | Available options |
---|---|
intervals | 1h, 2h, 3h, 6h, 12h, 24h |
Warning | Description | Limits |
---|---|---|
0 | No severe wind conditions | < 50km/h |
1 | Wind Gusts | 50km/h to 64km/h |
2 | Squall | 65km/h to 89km/h |
3 | Severe Squall | 90km/h to 104km/h |
4 | Violent squall | 105km/h to 119km/h |
5 | Gale-Force Winds | 120km/h to 139km/h |
6 | Extreme Gale-Force Winds | > 140km/h |
Thunderstorm Warning
This parameter indicates if any thunderstorms will occur in a given time interval.
tstorm_warning_<interval>:idx
Parameter | Available options |
---|---|
intervals | 1h, 2h, 3h, 6h, 12h, 24h |
Warning | Description | Criteria |
---|---|---|
0 | No thunderstorms | |
1 | Thunderstorm | Occurrence of electric discharge |
2 | Heavy thunderstorm | Occurrence of electric discharge in combination with strong gale, heavy rain or hail |
3 | Severe thunderstorm | Occurrence of electric discharge in combination with strong gale, heavy rain or hail where at least on accompanying feature has warning level |
4 | Severe thunderstorm with extreme squalls and heavy rainfall | Occurrence of electric discharge in combination with strong gale, heavy rain or hail where at least on accompanying feature has allerting level |
📆 Yearly Accumulated Day Counts
These parameters represent the number of days that fulfilled a certain condition starting from January 1st of the queried year.
List of all Yearly Accumulated Day Counts parameters
Temperature Dependent
Below is an overview of all temperature dependent parameters:
- Vegetation Days: This parameter returns the number of vegetation days (days on which the mean temperature was above 5 degrees C) since 1st of January.
vegetation_days:d
- Heating Days: This parameter returns the number of heating days (days for which the 24h-mean is less than 15°C, or the number of days buildings need to be heated) since 1st of January.
heating_days:d
- Heating Degree Days: Heating degree day (HDD) is a measurement designed to quantify the demand for energy needed to heat a building. This parameter returns the accumulated temperature difference to a configurable base temperature, if the temperature is below that base temperature, since 1st of January.
heating_degree_days:hdd
heating_degree_days_base_<base_temperature>:hdd
Available base temperatures: continuous from 0°C to 30°C
- Cooling Degree Days: Cooling degree day (CDD) is a measurement designed to quantify the demand for energy needed to cool a building. This parameter returns the accumulated temperature difference to a configurable base temperature, if the temperature is above that base temperature, since 1st of January.
cooling_degree_days:cdd
cooling_degree_days_base_<base_temperature>:cdd
- Desert Days / Extremely Hot Days: This parameter returns the number of extremely hot days (days on which the maximum temperature at 2m exceeds 35 degrees C) since 1st of January.
desert_days:d
- Hot Days: This parameter returns the number of hot days (days for which the 24-hour maximum temperature was greater than 30°C) since 1st of January.
hot_days:d
- Summer Days: This parameter returns the number of summer days (days for which the 24-hour maximum temperature was greater than 25°C) since 1st of January.
summer_days:d
- Tropical Nights: This parameter returns the number of tropical nights (days for which the 24-hour minimum temperature was greater than 20°C) since 1st of January.
tropical_nights:d
- Frost Days: This parameter returns the number of frost days (days on which some frost occurred) since 1st of January.
frost_days:d
- Ice Days: This parameter returns the number of ice days (days for which the 24-hour maximum temperature was less than 0°C) since 1st of January.
ice_days:d
Precipitation Dependent
Below is an overview of all precipitation dependent parameters:
- Rain Days: This parameter returns the number of rain days (days on which at least 0.1 mm of rain fell) since 1st of January.
rain_days:d
- Heavy Rain Days: This parameter returns the number of heavy rain days (days for which the precipitation sum was greater than 10mm) since 1st of January.
heavy_rain_days:d
- Dry Days: This parameter returns the number of dry days since 1st of January.
dry_days:d
Weather icons
To request the icons in a certain area, we need to add the following in "parameters"
weather_symbol_<interval>:idx
Available intervals: 20min, 30min, 1h, 3h, 6h, 12h, 24h
Example:
Post - https://api-connect.eos.com/weather/v1/meteomatics/2023-08-04T00:00:00Z--2023-08-09T00:00:00Z:PT1H
Raw data:
{
"parameters": "weather_symbol_1h:idx/50,10/xml"
}
Answer:
<?xml version="1.0" encoding="utf-8"?>
<meteomatics-api-response version="3.0">
<user>eos_data_analytics</user>
<dateGenerated>2023-08-04T11:51:24Z</dateGenerated>
<status>OK</status>
<data>
<parameter name="weather_symbol_1h:idx">
<location lat="50" lon="10">
<value date="2023-08-04T00:00:00Z">103</value>
<value date="2023-08-04T01:00:00Z">103</value>
<value date="2023-08-04T02:00:00Z">103</value>
<value date="2023-08-04T03:00:00Z">104</value>
<value date="2023-08-04T04:00:00Z">4</value>
<value date="2023-08-04T05:00:00Z">4</value>
<value date="2023-08-04T06:00:00Z">8</value>
<value date="2023-08-04T07:00:00Z">5</value>
<value date="2023-08-04T08:00:00Z">5</value>
<value date="2023-08-04T09:00:00Z">8</value>
<value date="2023-08-04T10:00:00Z">5</value>
<value date="2023-08-04T11:00:00Z">5</value>
<value date="2023-08-04T12:00:00Z">8</value>
<value date="2023-08-04T13:00:00Z">8</value>
<value date="2023-08-04T14:00:00Z">4</value>
<value date="2023-08-04T15:00:00Z">8</value>
<value date="2023-08-04T16:00:00Z">2</value>
<value date="2023-08-04T17:00:00Z">3</value>
<value date="2023-08-04T18:00:00Z">3</value>
<value date="2023-08-04T19:00:00Z">108</value>
<value date="2023-08-04T20:00:00Z">108</value>
<value date="2023-08-04T21:00:00Z">115</value>
<value date="2023-08-04T22:00:00Z">115</value>
<value date="2023-08-04T23:00:00Z">108</value>
<value date="2023-08-05T00:00:00Z">103</value>
<value date="2023-08-05T01:00:00Z">103</value>
<value date="2023-08-05T02:00:00Z">103</value>
<value date="2023-08-05T03:00:00Z">103</value>
<value date="2023-08-05T04:00:00Z">103</value>
<value date="2023-08-05T05:00:00Z">3</value>
<value date="2023-08-05T06:00:00Z">2</value>
<value date="2023-08-05T07:00:00Z">2</value>
<value date="2023-08-05T08:00:00Z">2</value>
<value date="2023-08-05T09:00:00Z">5</value>
<value date="2023-08-05T10:00:00Z">5</value>
<value date="2023-08-05T11:00:00Z">5</value>
<value date="2023-08-05T12:00:00Z">15</value>
<value date="2023-08-05T13:00:00Z">15</value>
<value date="2023-08-05T14:00:00Z">15</value>
<value date="2023-08-05T15:00:00Z">1</value>
<value date="2023-08-05T16:00:00Z">1</value>
<value date="2023-08-05T17:00:00Z">1</value>
<value date="2023-08-05T18:00:00Z">1</value>
<value date="2023-08-05T19:00:00Z">102</value>
<value date="2023-08-05T20:00:00Z">102</value>
<value date="2023-08-05T21:00:00Z">105</value>
<value date="2023-08-05T22:00:00Z">105</value>
<value date="2023-08-05T23:00:00Z">105</value>
<value date="2023-08-06T00:00:00Z">105</value>
<value date="2023-08-06T01:00:00Z">104</value>
<value date="2023-08-06T02:00:00Z">103</value>
<value date="2023-08-06T03:00:00Z">103</value>
<value date="2023-08-06T04:00:00Z">108</value>
<value date="2023-08-06T05:00:00Z">8</value>
<value date="2023-08-06T06:00:00Z">5</value>
<value date="2023-08-06T07:00:00Z">8</value>
<value date="2023-08-06T08:00:00Z">8</value>
<value date="2023-08-06T09:00:00Z">5</value>
<value date="2023-08-06T10:00:00Z">8</value>
<value date="2023-08-06T11:00:00Z">8</value>
<value date="2023-08-06T12:00:00Z">8</value>
<value date="2023-08-06T13:00:00Z">15</value>
<value date="2023-08-06T14:00:00Z">15</value>
<value date="2023-08-06T15:00:00Z">15</value>
<value date="2023-08-06T16:00:00Z">15</value>
<value date="2023-08-06T17:00:00Z">15</value>
<value date="2023-08-06T18:00:00Z">15</value>
<value date="2023-08-06T19:00:00Z">108</value>
<value date="2023-08-06T20:00:00Z">108</value>
<value date="2023-08-06T21:00:00Z">108</value>
<value date="2023-08-06T22:00:00Z">115</value>
<value date="2023-08-06T23:00:00Z">115</value>
<value date="2023-08-07T00:00:00Z">115</value>
<value date="2023-08-07T01:00:00Z">104</value>
<value date="2023-08-07T02:00:00Z">104</value>
<value date="2023-08-07T03:00:00Z">104</value>
<value date="2023-08-07T04:00:00Z">105</value>
<value date="2023-08-07T05:00:00Z">5</value>
<value date="2023-08-07T06:00:00Z">5</value>
<value date="2023-08-07T07:00:00Z">15</value>
<value date="2023-08-07T08:00:00Z">15</value>
<value date="2023-08-07T09:00:00Z">15</value>
<value date="2023-08-07T10:00:00Z">5</value>
<value date="2023-08-07T11:00:00Z">5</value>
<value date="2023-08-07T12:00:00Z">5</value>
<value date="2023-08-07T13:00:00Z">1</value>
<value date="2023-08-07T14:00:00Z">1</value>
<value date="2023-08-07T15:00:00Z">2</value>
<value date="2023-08-07T16:00:00Z">2</value>
<value date="2023-08-07T17:00:00Z">1</value>
<value date="2023-08-07T18:00:00Z">1</value>
<value date="2023-08-07T19:00:00Z">101</value>
<value date="2023-08-07T20:00:00Z">101</value>
<value date="2023-08-07T21:00:00Z">101</value>
<value date="2023-08-07T22:00:00Z">101</value>
<value date="2023-08-07T23:00:00Z">101</value>
<value date="2023-08-08T00:00:00Z">101</value>
<value date="2023-08-08T01:00:00Z">101</value>
<value date="2023-08-08T02:00:00Z">102</value>
<value date="2023-08-08T03:00:00Z">103</value>
<value date="2023-08-08T04:00:00Z">103</value>
<value date="2023-08-08T05:00:00Z">4</value>
<value date="2023-08-08T06:00:00Z">4</value>
<value date="2023-08-08T07:00:00Z">15</value>
<value date="2023-08-08T08:00:00Z">15</value>
<value date="2023-08-08T09:00:00Z">15</value>
<value date="2023-08-08T10:00:00Z">3</value>
<value date="2023-08-08T11:00:00Z">3</value>
<value date="2023-08-08T12:00:00Z">2</value>
<value date="2023-08-08T13:00:00Z">3</value>
<value date="2023-08-08T14:00:00Z">3</value>
<value date="2023-08-08T15:00:00Z">4</value>
<value date="2023-08-08T16:00:00Z">4</value>
<value date="2023-08-08T17:00:00Z">4</value>
<value date="2023-08-08T18:00:00Z">4</value>
<value date="2023-08-08T19:00:00Z">104</value>
<value date="2023-08-08T20:00:00Z">103</value>
<value date="2023-08-08T21:00:00Z">103</value>
<value date="2023-08-08T22:00:00Z">103</value>
<value date="2023-08-08T23:00:00Z">103</value>
<value date="2023-08-09T00:00:00Z">103</value>
</location>
</parameter>
</data>
</meteomatics-api-response>
The values correspond to the following icons:
You can download the icons here
Other parameters
- Dew Point Parameters
- Atmospheric Pressure and Density Parameters
- Atmospheric Stability Parameters
- Various Meteorological Parameters
- General Weather State
- Wind Phenomena
- Wind and Solar Power
- Global Circulation Patterns
- Forest Fire Risk Indices
- Weather Extremes
- Soil Parameters
- Atmospheric Turbulence
- Oceanic Tides
- Topography and Land Usage
- Marine Parameters
- Climate Scenarios
- Tropical Cyclones and Hurricanes
- Atmospheric Trace Gases
- Particles
- Health
- Moon Parameters
- Sun Parameters
- Space Weather Forecast
- Lightning Observations & Nowcast
- Station Parameters
- MOS Parameters
- Cluster Parameters
- Auxiliary Parameters
- General Weather State
If you would like to know more about specific parameters, please feel free to reach out to us
List of all parameters
Temperature parameters
Parameter | Description |
---|---|
t_-150cm:C | temperature at -150cm [C] |
t_-150cm:F | temperature at -150cm [F] |
t_-150cm:K | temperature at -150cm [K] |
t_-15cm:C | temperature at -15cm [C] |
t_-15cm:F | temperature at -15cm [F] |
t_-15cm:K | temperature at -15cm [K] |
t_-50cm:C | temperature at -50cm [C] |
t_-50cm:F | temperature at -50cm [F] |
t_-50cm:K | temperature at -50cm [K] |
t_-5cm:C | temperature at -5cm [C] |
t_-5cm:F | temperature at -5cm [F] |
t_-5cm:K | temperature at -5cm [K] |
t_000m:C | Temperature at 0 up to 20000 m height [C] |
t_000m:F | Temperature at 0 up to 20000 m height [F] |
t_000m:K | Temperature at 0 up to 20000 m height [K] |
t_0m:C | temperature at 0m [C] |
t_0m:F | temperature at 0m [F] |
t_0m:K | temperature at 0m [K] |
t_1000hPa:C | temperature at 1000 hPa [C] |
t_1000hPa:F | temperature at 1000 hPa [F] |
t_1000hPa:K | temperature at 1000 hPa [K] |
t_10hPa:C | temperature at 10hPa [C] |
t_10hPa:F | temperature at 10hPa [F] |
t_10hPa:K | temperature at 10hPa [K] |
t_200hPa:C | temperature at 200hPa [C] |
t_200hPa:F | temperature at 200hPa [F] |
t_200hPa:K | temperature at 200hPa [K] |
t_2m:C | temperature at 2m [C] |
t_2m:F | temperature at 2m [F] |
t_2m:K | temperature at 2m [K] |
t_2m_10d_efi:idx | 2 metre temperature index, anomaly likelihood (EFI) over 10 days range |
t_2m_10d_sot:idx | 2 metre temperature index, potential extremity (SOT) over 10 days range |
t_2m_10d_sot_q10:idx | 2 metre temperature index, potential extremity (SOT, lower tail) over 10 days range |
t_2m_10y_mean:C | temperature at 2m - 10 year average [C] |
t_2m_10y_mean:F | temperature at 2m - 10 year average [F] |
t_2m_10y_mean:K | temperature at 2m - 10 year average [K] |
t_2m_1d_efi:idx | 2 metre temperature index, anomaly likelihood (EFI) over 1 day range |
t_2m_1d_sot:idx | 2 metre temperature index, potential extremity (SOT) over 1 day range |
t_2m_1d_sot_q10:idx | 2 metre temperature index, potential extremity (SOT, lower tail) over 1 day range |
t_2m_3d_efi:idx | 2 metre temperature index, anomaly likelihood (EFI) over 3 days range |
t_2m_3d_sot:idx | 2 metre temperature index, potential extremity (SOT) over 3 days range |
t_2m_3d_sot_q10:idx | 2 metre temperature index, potential extremity (SOT, lower tail) over 3 days range |
t_2m_5d_efi:idx | 2 metre temperature index, anomaly likelihood (EFI) over 5 days range |
t_2m_5d_sot:idx | 2 metre temperature index, potential extremity (SOT) over 5 days range |
t_2m_5d_sot_q10:idx | 2 metre temperature index, potential extremity (SOT, lower tail) over 5 days range |
t_2m_6w_efi:idx | 2 metre temperature index, weekly mean, anomaly likelihood (EFI) anomaly likelihood (EFI) for 6 weeks horizon |
t_2m_6w_sot:idx | 2 metre temperature index, weekly mean, potential extremity (SOT) for 6 weeks horizon |
t_2m_6w_sot_q10:idx | 2 metre temperature index, weekly mean, potential extremity (SOT, lower tail) for 6 weeks horizon |
t_2m_max_1d_efi:idx | Maximum temperature at 2 metres index, anomaly likelihood (EFI) over 1 day range |
t_2m_max_1d_sot:idx | Maximum temperature at 2 metres index, potential extremity (SOT) over 1 day range |
t_2m_max_1d_sot_q10:idx | Maximum temperature at 2 metres index |
t_2m_min_1d_efi:idx | Minimum temperature at 2 metres index, anomaly likelihood (EFI) over 1 day range |
t_2m_min_1d_sot:idx | Minimum temperature at 2 metres index, potential extremity (SOT) over 1 day range |
t_2m_min_1d_sot_q10:idx | Minimum temperature at 2 metres index |
t_300hPa:C | temperature at 300 hPa [C] |
t_300hPa:F | temperature at 300 hPa [F] |
t_300hPa:K | temperature at 300 hPa [K] |
t_350hPa:C | temperature at 350 hPa [C] |
t_350hPa:F | temperature at 350 hPa [F] |
t_350hPa:K | temperature at 350 hPa [K] |
t_400hPa:C | temperature at 400 hPa [C] |
t_400hPa:F | temperature at 400 hPa [F] |
t_400hPa:K | temperature at 400 hPa [K] |
t_450hPa:C | temperature at 450 hPa [C] |
t_450hPa:F | temperature at 450 hPa [F] |
t_450hPa:K | temperature at 450 hPa [K] |
t_500hPa:C | temperature at 500 hPa [C] |
t_500hPa:F | temperature at 500 hPa [F] |
t_500hPa:K | temperature at 500 hPa [K] |
t_50hPa:C | temperature at 50 hPa [C] |
t_50hPa:F | temperature at 50 hPa [F] |
t_50hPa:K | temperature at 50 hPa [K] |
t_550hPa:C | temperature at 550 hPa [C] |
t_550hPa:F | temperature at 550 hPa [F] |
t_550hPa:K | temperature at 550 hPa [K] |
t_600hPa:C | temperature at 600 hPa [C] |
t_600hPa:F | temperature at 600 hPa [F] |
t_600hPa:K | temperature at 600 hPa [K] |
t_650hPa:C | temperature at 650 hPa [C] |
t_650hPa:F | temperature at 650 hPa [F] |
t_650hPa:K | temperature at 650 hPa [K] |
t_700hPa:C | temperature at 700 hPa [C] |
t_700hPa:F | temperature at 700 hPa [F] |
t_700hPa:K | temperature at 700 hPa [K] |
t_750hPa:C | temperature at 750 hPa [C] |
t_750hPa:F | temperature at 750 hPa [F] |
t_750hPa:K | temperature at 750 hPa [K] |
t_775hPa:C | temperature at 775 hPa [C] |
t_775hPa:F | temperature at 775 hPa [F] |
t_775hPa:K | temperature at 775 hPa [K] |
t_800hPa:C | temperature at 800 hPa [C] |
t_800hPa:F | temperature at 800 hPa [F] |
t_800hPa:K | temperature at 800 hPa [K] |
t_825hPa:C | temperature at 800 hPa [C] |
t_825hPa:F | temperature at 825 hPa [F] |
t_825hPa:F | temperature at 800 hPa [F] |
t_825hPa:K | temperature at 825 hPa [K] |
t_825hPa:K | temperature at 800 hPa [K] |
t_850hPa:C | temperature at 850 hPa [C] |
t_850hPa:F | temperature at 850 hPa [F] |
t_850hPa:K | temperature at 850 hPa [K] |
t_875hPa:C | temperature at 875 hPa [C] |
t_875hPa:F | temperature at 875 hPa [F] |
t_875hPa:K | temperature at 875 hPa [K] |
t_900hPa:C | temperature at 900 hPa [C] |
t_900hPa:F | temperature at 900 hPa [F] |
t_900hPa:K | temperature at 900 hPa [K] |
t_925hPa:C | temperature at 925 hPa [C] |
t_925hPa:F | temperature at 925 hPa [F] |
t_925hPa:K | temperature at 925 hPa [K] |
t_950hPa:C | temperature at 950 hPa [C] |
t_950hPa:F | temperature at 950 hPa [F] |
t_950hPa:K | temperature at 950 hPa [K] |
t_975hPa:C | temperature at 975 hPa [C] |
t_975hPa:F | temperature at 975 hPa [F] |
t_975hPa:K | temperature at 975 hPa [K] |
t_apparent:C | temperature perceived by humans [C] |
t_apparent:F | temperature perceived by humans [F] |
t_apparent:K | temperature perceived by humans [K] |
t_cloud_top:C | temperature at cloud top [C] |
t_cloud_top:K | temperature at cloud top [K] |
t_lake:C | Lake temperature [C] (for lakes in Switzerland, Austria and Germany) |
t_lake:K | Lake temperature [K] (for lakes in Switzerland, Austria and Germany) |
tmax-150cm_12h:C | maximum temperature at -150cm in the previous 12h [C] |
tmax-150cm_12h:F | maximum temperature at -150cm in the previous 12h [F] |
tmax-150cm_12h:K | maximum temperature at -150cm in the previous 12h [K] |
t_max_000m_12h:C | maximum temperature at any of the available heights in m in the previous 12h [C] |
t_max_000m_12h:F | maximum temperature at any of the available heights in m in the previous 12h [F] |
t_max_000m_12h:K | maximum temperature at any of the available heights in m in the previous 12h [K] |
t_max_000m_1h:C | maximum temperature at any of the available heights in m in the previous 1h [C] |
t_max_000m_1h:F | maximum temperature at any of the available heights in m in the previous 1h [F] |
t_max_000m_1h:K | maximum temperature at any of the available heights in m in the previous 1h [K] |
t_max_000m_24h:C | maximum temperature at any of the available heights in m in the previous 24h [C] |
t_max_000m_24h:F | maximum temperature at any of the available heights in m in the previous 24h [F] |
t_max_000m_24h:K | maximum temperature at any of the available heights in m in the previous 24h [K] |
t_max_000m_3h:C | maximum temperature at any of the available heights in m in the previous 3h [C] |
t_max_000m_3h:F | maximum temperature at any of the available heights in m in the previous 3h [F] |
t_max_000m_3h:K | maximum temperature at any of the available heights in m in the previous 3h [K] |
t_max_000m_6h:C | maximum temperature at any of the available heights in m in the previous 6h [C] |
t_max_000m_6h:F | maximum temperature at any of the available heights in m in the previous 6h [F] |
t_max_000m_6h:K | maximum temperature at any of the available heights in m in the previous 6h [K] |
t_mean_000m_12h:C | mean temperature at any of the available heights in m for the previous 12h [C] |
t_mean_000m_12h:F | mean temperature at any of the available heights in m for the previous 12h [F] |
t_mean_000m_12h:K | mean temperature at any of the available heights in m for the previous 12h [K] |
t_mean_000m_1h:C | mean temperature at any of the available heights in m for the previous 1h [C] |
t_mean_000m_1h:F | mean temperature at any of the available heights in m for the previous 1h [F] |
t_mean_000m_1h:K | mean temperature at any of the available heights in m for the previous 1h [K] |
t_mean_000m_24h:C | mean temperature at any of the available heights in m for the previous 24h [C] |
t_mean_000m_24h:F | mean temperature at any of the available heights in m for the previous 24h [F] |
t_mean_000m_24h:K | mean temperature at any of the available heights in m for the previous 24h [K] |
t_mean_000m_3h:C | mean temperature at any of the available heights in m for the previous 3h [C] |
t_mean_000m_3h:F | mean temperature at any of the available heights in m for the previous 3h [F] |
t_mean_000m_3h:K | mean temperature at any of the available heights in m for the previous 3h [K] |
t_mean_000m_6h:C | mean temperature at any of the available heights in m for the previous 6h [C] |
t_mean_000m_6h:F | mean temperature at any of the available heights in m for the previous 6h [F] |
t_mean_000m_6h:K | mean temperature at any of the available heights in m for the previous 6h [K] |
t_min_0m_12h:C | minimum temperature at any of the available heights in m in the previous 12h [C] |
t_min_0m_12h:F | minimum temperature at any of the available heights in m in the previous 12h [F] |
t_min_0m_12h:K | minimum temperature at any of the available heights in m in the previous 12h [K] |
t_min_0m_1h:C | minimum temperature at any of the available heights in m in the previous 1h [C] |
t_min_0m_1h:F | minimum temperature at any of the available heights in m in the previous 1h [F] |
t_min_0m_1h:K | minimum temperature at any of the available heights in m in the previous 1h [K] |
t_min_0m_24h:C | minimum temperature at any of the available heights in m in the previous 24h [C] |
t_min_0m_24h:F | minimum temperature at any of the available heights in m in the previous 24h [F] |
t_min_0m_24h:K | minimum temperature at any of the available heights in m in the previous 24h [K] |
t_min_0m_3h:C | minimum temperature at any of the available heights in m in the previous 3h [C] |
t_min_0m_3h:F | minimum temperature at any of the available heights in m in the previous 3h [F] |
t_min_0m_3h:K | minimum temperature at any of the available heights in m in the previous 3h [K] |
t_min_0m_6h:C | minimum temperature at any of the available heights in m in the previous 6h [C] |
t_min_0m_6h:F | minimum temperature at any of the available heights in m in the previous 6h [F] |
t_min_0m_6h:K | minimum temperature at any of the available heights in m in the previous 6h [K] |
Humidity parameters
Parameter | Description |
---|---|
absolute_humidity_2m:gm3 | abs. humidity at level 2m [g/m3] |
relative_humidity_1000hPa:p | relative humidity at 1000 hPa [%] |
relative_humidity_100m:p | relative humidity at 100m [%] |
relative_humidity_20m:p | relative humidity at 20m [%] |
relative_humidity_2m:p | relative humidity at 2m [%] |
relative_humidity_2m_10y_mean:p | relative humidity at 2m - 10 year average [%] |
relative_humidity_300hPa:p | relative humidity at 300 hPa [%] |
relative_humidity_350hPa:p | relative humidity at 350 hPa [%] |
relative_humidity_400hPa:p | relative humidity at 400 hPa [%] |
relative_humidity_450hPa:p | relative humidity at 450 hPa [%] |
relative_humidity_500hPa:p | relative humidity at 500 hPa [%] |
relative_humidity_550hPa:p | relative humidity at 550 hPa [%] |
relative_humidity_600hPa:p | relative humidity at 600 hPa [%] |
relative_humidity_650hPa:p | relative humidity at 650 hPa [%] |
relative_humidity_700hPa:p | relative humidity at 700 hPa [%] |
relative_humidity_750hPa:p | relative humidity at 750 hPa [%] |
relative_humidity_775hPa:p | relative humidity at 775 hPa [%] |
relative_humidity_800hPa:p | relative humidity at 800 hPa [%] |
relative_humidity_825hPa:p | relative humidity at 825 hPa [%] |
relative_humidity_850hPa:p | relative humidity at 850 hPa [%] |
relative_humidity_875hPa:p | relative humidity at 875 hPa [%] |
relative_humidity_900hPa:p | relative humidity at 900 hPa [%] |
relative_humidity_925hPa:p | relative humidity at 925 hPa [%] |
relative_humidity_950hPa:p | relative humidity at 950 hPa [%] |
relative_humidity_975hPa:p | relative humidity at 975 hPa [%] |
Evaporation parameters
Parameter | Description |
---|---|
evaporation_12h:mm | evaporation of previous 12h [mm] |
evaporation_1h:mm | evaporation of previous 1h [mm] |
evaporation_24h:mm | evaporation of previous 24h [mm] |
evaporation_3h:mm | evaporation of previous 3h [mm] |
evaporation_6h:mm | evaporation of previous 6h [mm] |
Precipitation Parameters
Parameter | Description |
---|---|
precip_10min:mm | amount of precipitation in the previous 10min [mm] |
precip_12h:mm | amount of precipitation in the previous 12h [mm] |
precip_12h_10y_mean:mm | amount of precipitation in the previous 12h - 10 year average [mm] |
precip_15min:mm | amount of precipitation in the previous 15min [mm] |
precip_1h:mm | amount of precipitation in the previous 1h [mm] |
precip_1h_10y_mean:mm | amount of precipitation in the previous 1h - 10 year average [mm] |
precip_24h:mm | amount of precipitation in the previous 24h [mm] |
precip_24h_10y_mean:mm | amount of precipitation in the previous 24h - 10 year average [mm] |
precip_2h_10y_mean:mm | amount of precipitation in the previous 2h - 10 year average [mm] |
precip_30min:mm | amount of precipitation in the previous 30min [mm] |
precip_3h:mm | amount of precipitation in the previous 3h [mm] |
precip_3h_10y_mean:mm | amount of precipitation in the previous 3h - 10 year average [mm] |
precip_5min:mm | amount of precipitation in the previous 5min [mm] |
precip_6h:mm | amount of precipitation in the previous 6h [mm] |
precip_6h_10y_mean:mm | amount of precipitation in the previous 6h - 10 year average [mm] |
precip_layer_5min:idx | precipitation type with intensities (only for RGB images) |
precip_type:idx | precipitation type |
precip_type_10min:idx | precipitation type during the previous 10min |
precip_type_12h:idx | precipitation type during the previous 12h |
precip_type_15min:idx | precipitation type during the previous 15min |
precip_type_1h:idx | precipitation type during the previous 1h |
precip_type_20min:idx | precipitation type during the previous 20min |
precip_type_24h:idx | precipitation type during the previous 24h |
precip_type_2h:idx | precipitation type during the previous 2h |
precip_type_30min:idx | precipitation type during the previous 30min |
precip_type_3h:idx | precipitation type during the previous 3h |
precip_type_5min:idx | precipitation type during the previous 5min |
precip_type_6h:idx | precipitation type during the previous 6h |
prob_precip_12h:p | probability of precipitation in the previous 12h [%] |
prob_precip_1h:p | probability of precipitation in the previous 1h [%] |
prob_precip_24h:p | probability of precipitation in the previous 24h [%] |
prob_precip_3h:p | probability of precipitation in the previous 3h [%] |
prob_precip_6h:p | probability of precipitation in the previous 6h [%] |
hail_10min:cm | max. diameter of hail in the previous 10min [cm] |
hail_12h:cm | max. diameter of hail in the previous 12h [cm] |
hail_1h:cm | max. diameter of hail in the previous 1h [cm] |
hail_20min:cm | max. diameter of hail in the previous 20min [cm] |
hail_24h:cm | max. diameter of hail in the previous 24h [cm] |
hail_2h:cm | max. diameter of hail in the previous 2h [cm] |
hail_30min:cm | max. diameter of hail in the previous 30min [cm] |
hail_3h:cm | max. diameter of hail in the previous 3h [cm] |
hail_6h:cm | max. diameter of hail in the previous 6h [cm] |
freezing_rain_1h:idx | Index for freezing rain |
super_cooled_liquid_water:kgm2 | super cooled liquid water (total column) [kg/m2] |
super_cooled_liquid_water_layer_bottom:m | super cooled liquid water layer bottom [m] |
super_cooled_liquid_water_layer_top:m | super cooled liquid water layer top [m] |
is_rain_1h:idx | was there rain within the last hour (0/1) |
is_rain_30min:idx | was there rain within the last 30 minutes (0/1) |
is_snow_1h:idx | was there snow fall within the last hour (0/1) |
is_snow_30min:idx | was there snow fall within the last 30 minutes (0/1) |
Wind Parameters
Parameter | Description |
---|---|
wind_speed_000m:bft | wind speed in any arbitrary height up to 20000 m [bft] |
:---- | :---- |
wind_speed_000m:kmh | wind speed in any arbitrary height up to 20000 m [km/h] |
wind_speed_000m:kn | wind speed in any arbitrary height up to 20000 m [kn] |
wind_speed_000m:ms | wind speed in any arbitrary height up to 20000 m [m/s] |
wind_speed_1000hPa:bft | wind speed in 1000 hPa [bft] |
wind_speed_1000hPa:kmh | wind speed in 1000 hPa [km/h] |
wind_speed_1000hPa:kn | wind speed in 1000 hPa [kn] |
wind_speed_1000hPa:ms | wind speed in 1000 hPa [m/s] |
wind_speed_100m:bft | wind speed in 100 m [bft] |
wind_speed_100m:kmh | wind speed in 100 m [km/h] |
wind_speed_100m:kn | wind speed in 100 m [kn] |
wind_speed_100m:ms | wind speed in 100 m [m/s] |
wind_speed_10hPa:bft | wind speed in 10 hPa [bft] |
wind_speed_10hPa:kmh | wind speed in 10 hPa [km/h] |
wind_speed_10hPa:kn | wind speed in 10 hPa [kn] |
wind_speed_10hPa:ms | wind speed in 10 hPa [m/s] |
wind_speed_10m:bft | wind speed in 10 m [bft] |
wind_speed_10m:kmh | wind speed in 10 m [km/h] |
wind_speed_10m:kn | wind speed in 10 m [kn] |
wind_speed_10m:ms | wind speed in 10 m [m/s] |
wind_speed_10m_10d_efi:idx | 10 metre wind speed index, anomaly likelihood (EFI) over 10 days range |
wind_speed_10m_10d_sot:idx | 10 metre wind speed index, potential extremity (SOT) over 10 days range |
wind_speed_10m_10y_mean:kmh | wind speed in 10 m - 10 year average [km/h] |
wind_speed_10m_10y_mean:ms | wind speed in 10 m - 10 year average [m/hs] |
wind_speed_10m_1d_efi:idx | 10 metre wind speed index, anomaly likelihood (EFI) over 1 day range |
wind_speed_10m_1d_sot:idx | 10 metre wind speed index, potential extremity (SOT) over 1 day range |
wind_speed_10m_3d_efi:idx | 10 metre wind speed index, anomaly likelihood (EFI) over 3 days range |
wind_speed_10m_3d_sot:idx | 10 metre wind speed index, potential extremity (SOT) over 3 days range |
wind_speed_10m_5d_efi:idx | 10 metre wind speed index, anomaly likelihood (EFI) over 5 days range |
wind_speed_10m_5d_sot:idx | 10 metre wind speed index, potential extremity (SOT) over 5 days range |
wind_speed_200hPa:bft | wind speed in 200 hPa [bft] |
wind_speed_200hPa:kmh | wind speed in 200 hPa [km/h] |
wind_speed_200hPa:kn | wind speed in 200 hPa [kn] |
wind_speed_200hPa:ms | wind speed in 200 hPa [m/s] |
wind_speed_300hPa:bft | wind speed in 300 hPa [bft] |
wind_speed_300hPa:kmh | wind speed in 300 hPa [km/h] |
wind_speed_300hPa:kn | wind speed in 300 hPa [kn] |
wind_speed_300hPa:ms | wind speed in 300 hPa [m/s] |
wind_speed_350hPa:bft | wind speed in 350 hPa [bft] |
wind_speed_350hPa:kmh | wind speed in 350 hPa [km/h] |
wind_speed_350hPa:kn | wind speed in 350 hPa [kn] |
wind_speed_350hPa:ms | wind speed in 350 hPa [m/s] |
wind_speed_400hPa:bft | wind speed in 400 hPa [bft] |
wind_speed_400hPa:kmh | wind speed in 400 hPa [km/h] |
wind_speed_400hPa:kn | wind speed in 400 hPa [kn] |
wind_speed_400hPa:ms | wind speed in 400 hPa [m/s] |
wind_speed_450hPa:bft | wind speed in 450 hPa [bft] |
wind_speed_450hPa:kmh | wind speed in 450 hPa [km/h] |
wind_speed_450hPa:kn | wind speed in 450 hPa [kn] |
wind_speed_450hPa:ms | wind speed in 450 hPa [m/s] |
wind_speed_500hPa:bft | wind speed in 500 hPa [bft] |
wind_speed_500hPa:kmh | wind speed in 500 hPa [km/h] |
wind_speed_500hPa:kn | wind speed in 500 hPa [kn] |
wind_speed_500hPa:ms | wind speed in 500 hPa [m/s] |
wind_speed_50hPa:bft | wind speed in 50 hPa [bft] |
wind_speed_50hPa:kmh | wind speed in 50 hPa [km/h] |
wind_speed_50hPa:kn | wind speed in 50 hPa [kn] |
wind_speed_50hPa:ms | wind speed in 50 hPa [m/s] |
wind_speed_550hPa:bft | wind speed in 550 hPa [bft] |
wind_speed_550hPa:kmh | wind speed in 550 hPa [km/h] |
wind_speed_550hPa:kn | wind speed in 550 hPa [kn] |
wind_speed_550hPa:ms | wind speed in 550 hPa [m/s] |
wind_speed_600hPa:bft | wind speed in 600 hPa [bft] |
wind_speed_600hPa:kmh | wind speed in 600 hPa [km/h] |
wind_speed_600hPa:kn | wind speed in 600 hPa [kn] |
wind_speed_600hPa:ms | wind speed in 600 hPa [m/s] |
wind_speed_650hPa:bft | wind speed in 650 hPa [bft] |
wind_speed_650hPa:kmh | wind speed in 650 hPa [km/h] |
wind_speed_650hPa:kn | wind speed in 650 hPa [kn] |
wind_speed_650hPa:ms | wind speed in 650 hPa [m/s] |
wind_speed_700hPa:bft | wind speed in 700 hPa [bft] |
wind_speed_700hPa:kmh | wind speed in 700 hPa [km/h] |
wind_speed_700hPa:kn | wind speed in 700 hPa [kn] |
wind_speed_700hPa:ms | wind speed in 700 hPa [m/s] |
wind_speed_750hPa:bft | wind speed in 750 hPa [bft] |
wind_speed_750hPa:kmh | wind speed in 750 hPa [km/h] |
wind_speed_750hPa:kn | wind speed in 750 hPa [kn] |
wind_speed_750hPa:ms | wind speed in 750 hPa [m/s] |
wind_speed_775hPa:bft | wind speed in 775 hPa [bft] |
wind_speed_775hPa:kmh | wind speed in 775 hPa [km/h] |
wind_speed_775hPa:kn | wind speed in 775 hPa [kn] |
wind_speed_775hPa:ms | wind speed in 775 hPa [m/s] |
wind_speed_800hPa:bft | wind speed in 800 hPa [bft] |
wind_speed_800hPa:kmh | wind speed in 800 hPa [km/h] |
wind_speed_800hPa:kn | wind speed in 800 hPa [kn] |
wind_speed_800hPa:ms | wind speed in 800 hPa [m/s] |
wind_speed_825hPa:bft | wind speed in 825 hPa [bft] |
wind_speed_825hPa:kmh | wind speed in 825 hPa [km/h] |
wind_speed_825hPa:kn | wind speed in 825 hPa [kn] |
wind_speed_825hPa:ms | wind speed in 825 hPa [m/s] |
wind_speed_850hPa:bft | wind speed in 850 hPa [bft] |
wind_speed_850hPa:kmh | wind speed in 850 hPa [km/h] |
wind_speed_850hPa:kn | wind speed in 850 hPa [kn] |
wind_speed_850hPa:ms | wind speed in 850 hPa [m/s] |
wind_speed_875hPa:bft | wind speed in 875 hPa [bft] |
wind_speed_875hPa:kmh | wind speed in 875 hPa [km/h] |
wind_speed_875hPa:kn | wind speed in 875 hPa [kn] |
wind_speed_875hPa:ms | wind speed in 875 hPa [m/s] |
wind_speed_900hPa:bft | wind speed in 900 hPa [bft] |
wind_speed_900hPa:kmh | wind speed in 900 hPa [km/h] |
wind_speed_900hPa:kn | wind speed in 900 hPa [kn] |
wind_speed_900hPa:ms | wind speed in 900 hPa [m/s] |
wind_speed_925hPa:bft | wind speed in 925 hPa [bft] |
wind_speed_925hPa:kmh | wind speed in 925 hPa [km/h] |
wind_speed_925hPa:kn | wind speed in 925 hPa [kn] |
wind_speed_925hPa:ms | wind speed in 925 hPa [m/s] |
wind_speed_950hPa:bft | wind speed in 950 hPa [bft] |
wind_speed_950hPa:kmh | wind speed in 950 hPa [km/h] |
wind_speed_950hPa:kn | wind speed in 950 hPa [kn] |
wind_speed_950hPa:ms | wind speed in 950 hPa [m/s] |
wind_speed_975hPa:bft | wind speed in 975 hPa [bft] |
wind_speed_975hPa:kmh | wind speed in 975 hPa [km/h] |
wind_speed_975hPa:kn | wind speed in 975 hPa [kn] |
wind_speed_975hPa:ms | wind speed in 975 hPa [m/s] |
wind_speed_mean_000m_12h:kmh | mean wind speed at any altitude from 0 to 10000 m height for the previous 12h [km/h] |
wind_speed_mean_000m_12h:ms | mean wind speed at any altitude from 0 to 10000 m height for the previous 12h [m/s] |
wind_speed_mean_000m_1h:kmh | mean wind speed at any altitude from 0 to 10000 m height for the previous 1h [km/h] |
wind_speed_mean_000m_1h:ms | mean wind speed at any altitude from 0 to 10000 m height for the previous 1h [m/s] |
wind_speed_mean_000m_24h:kmh | mean wind speed at any altitude from 0 to 10000 m height for the previous 24h [km/h] |
wind_speed_mean_000m_24h:ms | mean wind speed at any altitude from 0 to 10000 m height for the previous 24h [m/s] |
wind_speed_mean_000m_2h:kmh | mean wind speed at any altitude from 0 to 10000 m height for the previous 2h [km/h] |
wind_speed_mean_000m_2h:ms | mean wind speed at any altitude from 0 to 10000 m height for the previous 2h [m/s] |
wind_speed_mean_000m_3h:kmh | mean wind speed at any altitude from 0 to 10000 m height for the previous 3h [km/h] |
wind_speed_mean_000m_3h:ms | mean wind speed at any altitude from 0 to 10000 m height for the previous 3h [m/s] |
wind_speed_mean_000m_6h:kmh | mean wind speed at any altitude from 0 to 10000 m height for the previous 6h [km/h] |
wind_speed_mean_000m_6h:ms | mean wind speed at any altitude from 0 to 10000 m height for the previous 6h [m/s] |
wind_speed_u_000m:kmh | wind speed vector u at an arbitrary height up to 20000 m [km/h] |
wind_speed_u_000m:ms | wind speed vector u at an arbitrary height up to 20000 m [m/s] |
wind_speed_v_000m:kmh | wind speed vector v at an arbitrary height up to 20000 m [km/h] |
wind_speed_v_000m:ms | wind speed vector v at an arbitrary height up to 20000 m [m/s] |
wind_speed_w_70hPa:Pas | vertical wind speed on model level 300hPa [Pa/s] |
wind_speed_w_100hPa:Pas | vertical wind speed on model level 300hPa [Pa/s] |
wind_speed_w_150hPa:Pas | vertical wind speed on model level 300hPa [Pa/s] |
wind_speed_w_200hPa:Pas | vertical wind speed on model level 300hPa [Pa/s] |
wind_speed_w_250hPa:Pas | vertical wind speed on model level 300hPa [Pa/s] |
wind_speed_w_300hPa:Pas | vertical wind speed on model level 300hPa [Pa/s] |
wind_speed_w_500hPa:Pas | vertical wind speed on model level 500hPa [Pa/s] |
wind_speed_w_700hPa:Pas | vertical wind speed on model level 700hPa [Pa/s] |
wind_speed_w_800hPa:Pas | vertical wind speed on model level 800hPa [Pa/s] |
wind_speed_w_850hPa:Pas | vertical wind speed on model level 850hPa [Pa/s] |
wind_speed_w_900hPa:Pas | vertical wind speed on model level 950hPa [Pa/s] |
wind_speed_w_925hPa:Pas | vertical wind speed on model level 925hPa [Pa/s] |
wind_speed_w_950hPa:Pas | vertical wind speed on model level 950hPa [Pa/s] |
wind_speed_w_1000hPa:Pas | vertical wind speed on model level 1000hPa [Pa/s] |
wind_speed_w_70hPa:ms | vertical wind speed on model level 300hPa [m/s] |
wind_speed_w_100hPa:ms | vertical wind speed on model level 300hPa [m/s] |
wind_speed_w_150hPa:ms | vertical wind speed on model level 300hPa [m/s] |
wind_speed_w_200hPa:ms | vertical wind speed on model level 300hPa [m/s] |
wind_speed_w_250hPa:ms | vertical wind speed on model level 300hPa [m/s] |
wind_speed_w_300hPa:ms | vertical wind speed on model level 300hPa [m/s] |
wind_speed_w_500hPa:ms | vertical wind speed on model level 500hPa [m/s] |
wind_speed_w_700hPa:ms | vertical wind speed on model level 700hPa [m/s] |
wind_speed_w_800hPa:ms | vertical wind speed on model level 800hPa [m/s] |
wind_speed_w_850hPa:ms | vertical wind speed on model level 850hPa [m/s] |
wind_speed_w_900hPa:Pas | vertical wind speed on model level 950hPa [m/s] |
wind_speed_w_925hPa:ms | vertical wind speed on model level 925hPa [m/s] |
wind_speed_w_950hPa:ms | vertical wind speed on model level 950hPa [m/s] |
wind_speed_w_1000hPa:ms | vertical wind speed on model level 1000hPa [m/s] |
wind_dir_000m:d | wind direction of any arbitrary height up to 20000 m [d] |
wind_dir_1000hPa:d | wind direction in 1000 hPa [d] |
wind_dir_100m:d | wind direction in 100 m [d] |
wind_dir_10hPa:d | wind direction in 10 hPa [d] |
wind_dir_10m:d | wind direction in 10 m [d] |
wind_dir_120m:d | wind direction in 120 m [d] |
wind_dir_200hPa:d | wind direction in 200 hPa [d] |
wind_dir_20m:d | wind direction in 20 m [d] |
wind_dir_300hPa:d | wind direction in 300 hPa [d] |
wind_dir_350hPa:d | wind direction in 350 hPa [d] |
wind_dir_400hPa:d | wind direction in 400 hPa [d] |
wind_dir_40m:d | wind direction in 40 m [d] |
wind_dir_450hPa:d | wind direction in 450 hPa [d] |
wind_dir_500hPa:d | wind direction in 500 hPa [d] |
wind_dir_50hPa:d | wind direction in 50 hPa [d] |
wind_dir_50m:d | wind direction in 50 m [d] |
wind_dir_550hPa:d | wind direction in 550 hPa [d] |
wind_dir_600hPa:d | wind direction in 600 hPa [d] |
wind_dir_650hPa:d | wind direction in 650 hPa [d] |
wind_dir_700hPa:d | wind direction in 700 hPa [d] |
wind_dir_750hPa:d | wind direction in 750 hPa [d] |
wind_dir_775hPa:d | wind direction in 775 hPa [d] |
wind_dir_800hPa:d | wind direction in 800 hPa [d] |
wind_dir_80m:d | wind direction in 80 m [d] |
wind_dir_825hPa:d | wind direction in 825 hPa [d] |
wind_dir_850hPa:d | wind direction in 850 hPa [d] |
wind_dir_875hPa:d | wind direction in 875 hPa [d] |
wind_dir_900hPa:d | wind direction in 900 hPa [d] |
wind_dir_925hPa:d | wind direction in 925 hPa [d] |
wind_dir_950hPa:d | wind direction in 950 hPa [d] |
wind_dir_975hPa:d | wind direction in 975 hPa [d] |
wind_dir_mean_100m_12h:d | mean wind direction at 100 m for the previous 12h [d] |
wind_dir_mean_100m_1h:d | mean wind direction at 100 m for the previous 1h [d] |
wind_dir_mean_100m_24h:d | mean wind direction at 100 m for the previous 24h [d] |
wind_dir_mean_100m_2h:d | mean wind direction at 100 m for the previous 2h [d] |
wind_dir_mean_100m_3h:d | mean wind direction at 100 m for the previous 3h [d] |
wind_dir_mean_100m_6h:d | mean wind direction at 100 m for the previous 6h [d] |
wind_dir_mean_10m_12h:d | mean wind direction at 10 m for the previous 12h [d] |
wind_dir_mean_10m_1h:d | mean wind direction at 10 m for the previous 1h [d] |
wind_dir_mean_10m_24h:d | mean wind direction at 10 m for the previous 24h [d] |
wind_dir_mean_10m_2h:d | mean wind direction at 10 m for the previous 2h [d] |
wind_dir_mean_10m_3h:d | mean wind direction at 10 m for the previous 3h [d] |
wind_dir_mean_10m_6h:d | mean wind direction at 10 m for the previous 6h [d] |
wind_gusts_1000hPa_12h:bft | wind gusts in 1000 hPa in the previous 12h [bft] |
wind_gusts_1000hPa_12h:kmh | wind gusts in 1000 hPa in the previous 12h [km/h] |
wind_gusts_1000hPa_12h:kn | wind gusts in 1000 hPa in the previous 12h [kn] |
wind_gusts_1000hPa_12h:ms | wind gusts in 1000 hPa in the previous 12h [m/s] |
wind_gusts_1000hPa_1h:bft | wind gusts in 1000 hPa in the previous 1h [bft] |
wind_gusts_1000hPa_1h:kmh | wind gusts in 1000 hPa in the previous 1h [km/h] |
wind_gusts_1000hPa_1h:kn | wind gusts in 1000 hPa in the previous 1h [kn] |
wind_gusts_1000hPa_1h:ms | wind gusts in 1000 hPa in the previous 1h [m/s] |
wind_gusts_1000hPa_24h:bft | wind gusts in 1000 hPa in the previous 24h [bft] |
wind_gusts_1000hPa_24h:kmh | wind gusts in 1000 hPa in the previous 24h [km/h] |
wind_gusts_1000hPa_24h:kn | wind gusts in 1000 hPa in the previous 24h [kn] |
wind_gusts_1000hPa_24h:ms | wind gusts in 1000 hPa in the previous 24h [m/s] |
wind_gusts_1000hPa_2h:bft | wind gusts in 1000 hPa in the previous 2h [bft] |
wind_gusts_1000hPa_2h:kmh | wind gusts in 1000 hPa in the previous 2h [km/h] |
wind_gusts_1000hPa_2h:kn | wind gusts in 1000 hPa in the previous 2h [kn] |
wind_gusts_1000hPa_2h:ms | wind gusts in 1000 hPa in the previous 2h [m/s] |
wind_gusts_1000hPa_3h:bft | wind gusts in 1000 hPa in the previous 3h [bft] |
wind_gusts_1000hPa_3h:kmh | wind gusts in 1000 hPa in the previous 3h [km/h] |
wind_gusts_1000hPa_3h:kn | wind gusts in 1000 hPa in the previous 3h [kn] |
wind_gusts_1000hPa_3h:ms | wind gusts in 1000 hPa in the previous 3h [m/s] |
wind_gusts_1000hPa_6h:bft | wind gusts in 1000 hPa in the previous 6h [bft] |
wind_gusts_1000hPa_6h:kmh | wind gusts in 1000 hPa in the previous 6h [km/h] |
wind_gusts_1000hPa_6h:kn | wind gusts in 1000 hPa in the previous 6h [kn] |
wind_gusts_1000hPa_6h:ms | wind gusts in 1000 hPa in the previous 6h [m/s] |
wind_gusts_100m_12h:bft | wind gusts in 100 m in the previous 12h [bft] |
wind_gusts_100m_12h:kmh | wind gusts in 100 m in the previous 12h [km/h] |
wind_gusts_100m_12h:kn | wind gusts in 100 m in the previous 12h [kn] |
wind_gusts_100m_12h:ms | wind gusts in 100 m in the previous 12h [m/s] |
wind_gusts_100m_1h:bft | wind gusts in 100 m in the previous 1h [bft] |
wind_gusts_100m_1h:kmh | wind gusts in 100 m in the previous 1h [km/h] |
wind_gusts_100m_1h:kn | wind gusts in 100 m in the previous 1h [kn] |
wind_gusts_100m_1h:ms | wind gusts in 100 m in the previous 1h [m/s] |
wind_gusts_100m_24h:bft | wind gusts in 100 m in the previous 24h [bft] |
wind_gusts_100m_24h:kmh | wind gusts in 100 m in the previous 24h [km/h] |
wind_gusts_100m_24h:kn | wind gusts in 100 m in the previous 24h [kn] |
wind_gusts_100m_24h:ms | wind gusts in 100 m in the previous 24h [m/s] |
wind_gusts_100m_2h:bft | wind gusts in 100 m in the previous 2h [bft] |
wind_gusts_100m_2h:kmh | wind gusts in 100 m in the previous 2h [km/h] |
wind_gusts_100m_2h:kn | wind gusts in 100 m in the previous 2h [kn] |
wind_gusts_100m_2h:ms | wind gusts in 100 m in the previous 2h [m/s] |
wind_gusts_100m_3h:bft | wind gusts in 100 m in the previous 3h [bft] |
wind_gusts_100m_3h:kmh | wind gusts in 100 m in the previous 3h [km/h] |
wind_gusts_100m_3h:kn | wind gusts in 100 m in the previous 3h [kn] |
wind_gusts_100m_3h:ms | wind gusts in 100 m in the previous 3h [m/s] |
wind_gusts_100m_6h:bft | wind gusts in 100 m in the previous 6h [bft] |
wind_gusts_100m_6h:kmh | wind gusts in 100 m in the previous 6h [km/h] |
wind_gusts_100m_6h:kn | wind gusts in 100 m in the previous 6h [kn] |
wind_gusts_100m_6h:ms | wind gusts in 100 m in the previous 6h [m/s] |
wind_gusts_10hPa_12h:bft | wind gusts in 10 hPa in the previous 12h [bft] |
wind_gusts_10hPa_12h:kmh | wind gusts in 10 hPa in the previous 12h [km/h] |
wind_gusts_10hPa_12h:kn | wind gusts in 10 hPa in the previous 12h [kn] |
wind_gusts_10hPa_12h:ms | wind gusts in 10 hPa in the previous 12h [m/s] |
wind_gusts_10hPa_1h:bft | wind gusts in 10 hPa in the previous 1h [bft] |
wind_gusts_10hPa_1h:kmh | wind gusts in 10 hPa in the previous 1h [km/h] |
wind_gusts_10hPa_1h:kn | wind gusts in 10 hPa in the previous 1h [kn] |
wind_gusts_10hPa_1h:ms | wind gusts in 10 hPa in the previous 1h [m/s] |
wind_gusts_10hPa_24h:bft | wind gusts in 10 hPa in the previous 24h [bft] |
wind_gusts_10hPa_24h:kmh | wind gusts in 10 hPa in the previous 24h [km/h] |
wind_gusts_10hPa_24h:kn | wind gusts in 10 hPa in the previous 24h [kn] |
wind_gusts_10hPa_24h:ms | wind gusts in 10 hPa in the previous 24h [m/s] |
wind_gusts_10hPa_2h:bft | wind gusts in 10 hPa in the previous 2h [bft] |
wind_gusts_10hPa_2h:kmh | wind gusts in 10 hPa in the previous 2h [km/h] |
wind_gusts_10hPa_2h:kn | wind gusts in 10 hPa in the previous 2h [kn] |
wind_gusts_10hPa_2h:ms | wind gusts in 10 hPa in the previous 2h [m/s] |
wind_gusts_10hPa_3h:bft | wind gusts in 10 hPa in the previous 3h [bft] |
wind_gusts_10hPa_3h:kmh | wind gusts in 10 hPa in the previous 3h [km/h] |
wind_gusts_10hPa_3h:kn | wind gusts in 10 hPa in the previous 3h [kn] |
wind_gusts_10hPa_3h:ms | wind gusts in 10 hPa in the previous 3h [m/s] |
wind_gusts_10hPa_6h:bft | wind gusts in 10 hPa in the previous 6h [bft] |
wind_gusts_10hPa_6h:kmh | wind gusts in 10 hPa in the previous 6h [km/h] |
wind_gusts_10hPa_6h:kn | wind gusts in 10 hPa in the previous 6h [kn] |
wind_gusts_10hPa_6h:ms | wind gusts in 10 hPa in the previous 6h [m/s] |
wind_gusts_10m_12h:bft | wind gusts in 10 m in the previous 12h [bft] |
wind_gusts_10m_12h:kmh | wind gusts in 10 m in the previous 12h [km/h] |
wind_gusts_10m_12h:kn | wind gusts in 10 m in the previous 12h [kn] |
wind_gusts_10m_12h:ms | wind gusts in 10 m in the previous 12h [m/s] |
wind_gusts_10m_1h:bft | wind gusts in 10 m in the previous 1h [bft] |
wind_gusts_10m_1h:kmh | wind gusts in 10 m in the previous 1h [km/h] |
wind_gusts_10m_1h:kn | wind gusts in 10 m in the previous 1h [kn] |
wind_gusts_10m_1h:ms | wind gusts in 10 m in the previous 1h [m/s] |
wind_gusts_10m_24h:bft | wind gusts in 10 m in the previous 24h [bft] |
wind_gusts_10m_24h:kmh | wind gusts in 10 m in the previous 24h [km/h] |
wind_gusts_10m_24h:kn | wind gusts in 10 m in the previous 24h [kn] |
wind_gusts_10m_24h:ms | wind gusts in 10 m in the previous 24h [m/s] |
wind_gusts_10m_2h:bft | wind gusts in 10 m in the previous 2h [bft] |
wind_gusts_10m_2h:kmh | wind gusts in 10 m in the previous 2h [km/h] |
wind_gusts_10m_2h:kn | wind gusts in 10 m in the previous 2h [kn] |
wind_gusts_10m_2h:ms | wind gusts in 10 m in the previous 2h [m/s] |
wind_gusts_10m_3h:bft | wind gusts in 10 m in the previous 3h [bft] |
wind_gusts_10m_3h:kmh | wind gusts in 10 m in the previous 3h [km/h] |
wind_gusts_10m_3h:kn | wind gusts in 10 m in the previous 3h [kn] |
wind_gusts_10m_3h:ms | wind gusts in 10 m in the previous 3h [m/s] |
wind_gusts_10m_6h:bft | wind gusts in 10 m in the previous 6h [bft] |
wind_gusts_10m_6h:kmh | wind gusts in 10 m in the previous 6h [km/h] |
wind_gusts_10m_6h:kn | wind gusts in 10 m in the previous 6h [kn] |
wind_gusts_10m_6h:ms | wind gusts in 10 m in the previous 6h [m/s] |
wind_gusts_200hPa_12h:bft | wind gusts in 200 hPa in the previous 12h [bft] |
wind_gusts_200hPa_12h:kmh | wind gusts in 200 hPa in the previous 12h [km/h] |
wind_gusts_200hPa_12h:kn | wind gusts in 200 hPa in the previous 12h [kn] |
wind_gusts_200hPa_12h:ms | wind gusts in 200 hPa in the previous 12h [m/s] |
wind_gusts_200hPa_1h:bft | wind gusts in 200 hPa in the previous 1h [bft] |
wind_gusts_200hPa_1h:kmh | wind gusts in 200 hPa in the previous 1h [km/h] |
wind_gusts_200hPa_1h:kn | wind gusts in 200 hPa in the previous 1h [kn] |
wind_gusts_200hPa_1h:ms | wind gusts in 200 hPa in the previous 1h [m/s] |
wind_gusts_200hPa_24h:bft | wind gusts in 200 hPa in the previous 24h [bft] |
wind_gusts_200hPa_24h:kmh | wind gusts in 200 hPa in the previous 24h [km/h] |
wind_gusts_200hPa_24h:kn | wind gusts in 200 hPa in the previous 24h [kn] |
wind_gusts_200hPa_24h:ms | wind gusts in 200 hPa in the previous 24h [m/s] |
wind_gusts_200hPa_2h:bft | wind gusts in 200 hPa in the previous 2h [bft] |
wind_gusts_200hPa_2h:kmh | wind gusts in 200 hPa in the previous 2h [km/h] |
wind_gusts_200hPa_2h:kn | wind gusts in 200 hPa in the previous 2h [kn] |
wind_gusts_200hPa_2h:ms | wind gusts in 200 hPa in the previous 2h [m/s] |
wind_gusts_200hPa_3h:bft | wind gusts in 200 hPa in the previous 3h [bft] |
wind_gusts_200hPa_3h:kmh | wind gusts in 200 hPa in the previous 3h [km/h] |
wind_gusts_200hPa_3h:kn | wind gusts in 200 hPa in the previous 3h [kn] |
wind_gusts_200hPa_3h:ms | wind gusts in 200 hPa in the previous 3h [m/s] |
wind_gusts_200hPa_6h:bft | wind gusts in 200 hPa in the previous 6h [bft] |
wind_gusts_200hPa_6h:kmh | wind gusts in 200 hPa in the previous 6h [km/h] |
wind_gusts_200hPa_6h:kn | wind gusts in 200 hPa in the previous 6h [kn] |
wind_gusts_200hPa_6h:ms | wind gusts in 200 hPa in the previous 6h [m/s] |
wind_gusts_300hPa_12h:bft | wind gusts in 1000 hPa in the previous 12h [bft] |
wind_gusts_300hPa_12h:kmh | wind gusts in 1000 hPa in the previous 12h [km/h] |
wind_gusts_300hPa_12h:kn | wind gusts in 1000 hPa in the previous 12h [kn] |
wind_gusts_300hPa_12h:ms | wind gusts in 1000 hPa in the previous 12h [m/s] |
wind_gusts_300hPa_1h:bft | wind gusts in 300 hPa in the previous 1h [bft] |
wind_gusts_300hPa_1h:kmh | wind gusts in 300 hPa in the previous 1h [km/h] |
wind_gusts_300hPa_1h:kn | wind gusts in 300 hPa in the previous 1h [kn] |
wind_gusts_300hPa_1h:ms | wind gusts in 300 hPa in the previous 1h [m/s] |
wind_gusts_300hPa_24h:bft | wind gusts in 300 hPa in the previous 24h [bft] |
wind_gusts_300hPa_24h:kmh | wind gusts in 300 hPa in the previous 24h [km/h] |
wind_gusts_300hPa_24h:kn | wind gusts in 300 hPa in the previous 24h [kn] |
wind_gusts_300hPa_24h:ms | wind gusts in 300 hPa in the previous 24h [m/s] |
wind_gusts_300hPa_2h:bft | wind gusts in 300 hPa in the previous 2h [bft] |
wind_gusts_300hPa_2h:kmh | wind gusts in 300 hPa in the previous 2h [km/h] |
wind_gusts_300hPa_2h:kn | wind gusts in 300 hPa in the previous 2h [kn] |
wind_gusts_300hPa_2h:ms | wind gusts in 300 hPa in the previous 2h [m/s] |
wind_gusts_300hPa_3h:bft | wind gusts in 300 hPa in the previous 3h [bft] |
wind_gusts_300hPa_3h:kmh | wind gusts in 300 hPa in the previous 3h [km/h] |
wind_gusts_300hPa_3h:kn | wind gusts in 300 hPa in the previous 3h [kn] |
wind_gusts_300hPa_3h:ms | wind gusts in 300 hPa in the previous 3h [m/s] |
wind_gusts_300hPa_6h:bft | wind gusts in 300 hPa in the previous 6h [bft] |
wind_gusts_300hPa_6h:kmh | wind gusts in 300 hPa in the previous 6h [km/h] |
wind_gusts_300hPa_6h:kn | wind gusts in 300 hPa in the previous 6h [kn] |
wind_gusts_300hPa_6h:ms | wind gusts in 300 hPa in the previous 6h [m/s] |
wind_gusts_350hPa_12h:bft | wind gusts in 350 hPa in the previous 12h [bft] |
wind_gusts_350hPa_12h:kmh | wind gusts in 350 hPa in the previous 12h [km/h] |
wind_gusts_350hPa_12h:kn | wind gusts in 350 hPa in the previous 12h [kn] |
wind_gusts_350hPa_12h:ms | wind gusts in 350 hPa in the previous 12h [m/s] |
wind_gusts_350hPa_1h:bft | wind gusts in 350 hPa in the previous 1h [bft] |
wind_gusts_350hPa_1h:kmh | wind gusts in 350 hPa in the previous 1h [km/h] |
wind_gusts_350hPa_1h:kn | wind gusts in 350 hPa in the previous 1h [kn] |
wind_gusts_350hPa_1h:ms | wind gusts in 350 hPa in the previous 1h [m/s] |
wind_gusts_350hPa_24h:bft | wind gusts in 350 hPa in the previous 24h [bft] |
wind_gusts_350hPa_24h:kmh | wind gusts in 350 hPa in the previous 24h [km/h] |
wind_gusts_350hPa_24h:kn | wind gusts in 350 hPa in the previous 24h [kn] |
wind_gusts_350hPa_24h:ms | wind gusts in 350 hPa in the previous 24h [m/s] |
wind_gusts_350hPa_2h:bft | wind gusts in 350 hPa in the previous 2h [bft] |
wind_gusts_350hPa_2h:kmh | wind gusts in 350 hPa in the previous 2h [km/h] |
wind_gusts_350hPa_2h:kn | wind gusts in 350 hPa in the previous 2h [kn] |
wind_gusts_350hPa_2h:ms | wind gusts in 350 hPa in the previous 2h [m/s] |
wind_gusts_350hPa_3h:bft | wind gusts in 350 hPa in the previous 3h [bft] |
wind_gusts_350hPa_3h:kmh | wind gusts in 350 hPa in the previous 3h [km/h] |
wind_gusts_350hPa_3h:kn | wind gusts in 350 hPa in the previous 3h [kn] |
wind_gusts_350hPa_3h:ms | wind gusts in 350 hPa in the previous 3h [m/s] |
wind_gusts_350hPa_6h:bft | wind gusts in 350 hPa in the previous 6h [bft] |
wind_gusts_350hPa_6h:kmh | wind gusts in 350 hPa in the previous 6h [km/h] |
wind_gusts_350hPa_6h:kn | wind gusts in 350 hPa in the previous 6h [kn] |
wind_gusts_350hPa_6h:ms | wind gusts in 350 hPa in the previous 6h [m/s] |
wind_gusts_400hPa_12h:bft | wind gusts in 400 hPa in the previous 12h [bft] |
wind_gusts_400hPa_12h:kmh | wind gusts in 400 hPa in the previous 12h [km/h] |
wind_gusts_400hPa_12h:kn | wind gusts in 400 hPa in the previous 12h [kn] |
wind_gusts_400hPa_12h:ms | wind gusts in 400 hPa in the previous 12h [m/s] |
wind_gusts_400hPa_1h:bft | wind gusts in 400 hPa in the previous 1h [bft] |
wind_gusts_400hPa_1h:kmh | wind gusts in 400 hPa in the previous 1h [km/h] |
wind_gusts_400hPa_1h:kn | wind gusts in 400 hPa in the previous 1h [kn] |
wind_gusts_400hPa_1h:ms | wind gusts in 400 hPa in the previous 1h [m/s] |
wind_gusts_400hPa_24h:bft | wind gusts in 400 hPa in the previous 24h [bft] |
wind_gusts_400hPa_24h:kmh | wind gusts in 400 hPa in the previous 24h [km/h] |
wind_gusts_400hPa_24h:kn | wind gusts in 400 hPa in the previous 24h [kn] |
wind_gusts_400hPa_24h:ms | wind gusts in 400 hPa in the previous 24h [m/s] |
wind_gusts_400hPa_2h:bft | wind gusts in 400 hPa in the previous 2h [bft] |
wind_gusts_400hPa_2h:kmh | wind gusts in 400 hPa in the previous 2h [km/h] |
wind_gusts_400hPa_2h:kn | wind gusts in 400 hPa in the previous 2h [kn] |
wind_gusts_400hPa_2h:ms | wind gusts in 400 hPa in the previous 2h [m/s] |
wind_gusts_400hPa_3h:bft | wind gusts in 400 hPa in the previous 3h [bft] |
wind_gusts_400hPa_3h:kmh | wind gusts in 400 hPa in the previous 3h [km/h] |
wind_gusts_400hPa_3h:kn | wind gusts in 400 hPa in the previous 3h [kn] |
wind_gusts_400hPa_3h:ms | wind gusts in 400 hPa in the previous 3h [m/s] |
wind_gusts_400hPa_6h:bft | wind gusts in 400 hPa in the previous 6h [bft] |
wind_gusts_400hPa_6h:kmh | wind gusts in 400 hPa in the previous 6h [km/h] |
wind_gusts_400hPa_6h:kn | wind gusts in 400 hPa in the previous 6h [kn] |
wind_gusts_400hPa_6h:ms | wind gusts in 400 hPa in the previous 6h [m/s] |
wind_gusts_450hPa_12h:bft | wind gusts in 450 hPa in the previous 12h [bft] |
wind_gusts_450hPa_12h:kmh | wind gusts in 450 hPa in the previous 12h [km/h] |
wind_gusts_450hPa_12h:kn | wind gusts in 450 hPa in the previous 12h [kn] |
wind_gusts_450hPa_12h:ms | wind gusts in 450 hPa in the previous 12h [m/s] |
wind_gusts_450hPa_1h:bft | wind gusts in 450 hPa in the previous 1h [bft] |
wind_gusts_450hPa_1h:kmh | wind gusts in 450 hPa in the previous 1h [km/h] |
wind_gusts_450hPa_1h:kn | wind gusts in 450 hPa in the previous 1h [kn] |
wind_gusts_450hPa_1h:ms | wind gusts in 450 hPa in the previous 1h [m/s] |
wind_gusts_450hPa_24h:bft | wind gusts in 450 hPa in the previous 24h [bft] |
wind_gusts_450hPa_24h:kmh | wind gusts in 450 hPa in the previous 24h [km/h] |
wind_gusts_450hPa_24h:kn | wind gusts in 450 hPa in the previous 24h [kn] |
wind_gusts_450hPa_24h:ms | wind gusts in 450 hPa in the previous 24h [m/s] |
wind_gusts_450hPa_2h:bft | wind gusts in 450 hPa in the previous 2h [bft] |
wind_gusts_450hPa_2h:kmh | wind gusts in 450 hPa in the previous 2h [km/h] |
wind_gusts_450hPa_2h:kn | wind gusts in 450 hPa in the previous 2h [kn] |
wind_gusts_450hPa_2h:ms | wind gusts in 450 hPa in the previous 2h [m/s] |
wind_gusts_450hPa_3h:bft | wind gusts in 450 hPa in the previous 3h [bft] |
wind_gusts_450hPa_3h:kmh | wind gusts in 450 hPa in the previous 3h [km/h] |
wind_gusts_450hPa_3h:kn | wind gusts in 450 hPa in the previous 3h [kn] |
wind_gusts_450hPa_3h:ms | wind gusts in 450 hPa in the previous 3h [m/s] |
wind_gusts_450hPa_6h:bft | wind gusts in 450 hPa in the previous 6h [bft] |
wind_gusts_450hPa_6h:kmh | wind gusts in 450 hPa in the previous 6h [km/h] |
wind_gusts_450hPa_6h:kn | wind gusts in 450 hPa in the previous 6h [kn] |
wind_gusts_450hPa_6h:ms | wind gusts in 450 hPa in the previous 6h [m/s] |
wind_gusts_500hPa_12h:bft | wind gusts in 500 hPa in the previous 12h [bft] |
wind_gusts_500hPa_12h:kmh | wind gusts in 500 hPa in the previous 12h [km/h] |
wind_gusts_500hPa_12h:kn | wind gusts in 500 hPa in the previous 12h [kn] |
wind_gusts_500hPa_12h:ms | wind gusts in 500 hPa in the previous 12h [m/s] |
wind_gusts_500hPa_1h:bft | wind gusts in 500 hPa in the previous 1h [bft] |
wind_gusts_500hPa_1h:kmh | wind gusts in 500 hPa in the previous 1h [km/h] |
wind_gusts_500hPa_1h:kn | wind gusts in 500 hPa in the previous 1h [kn] |
wind_gusts_500hPa_1h:ms | wind gusts in 500 hPa in the previous 1h [m/s] |
wind_gusts_500hPa_24h:bft | wind gusts in 500 hPa in the previous 24h [bft] |
wind_gusts_500hPa_24h:kmh | wind gusts in 500 hPa in the previous 24h [km/h] |
wind_gusts_500hPa_24h:kn | wind gusts in 500 hPa in the previous 24h [kn] |
wind_gusts_500hPa_24h:ms | wind gusts in 500 hPa in the previous 24h [m/s] |
wind_gusts_500hPa_2h:bft | wind gusts in 500 hPa in the previous 2h [bft] |
wind_gusts_500hPa_2h:kmh | wind gusts in 500 hPa in the previous 2h [km/h] |
wind_gusts_500hPa_2h:kn | wind gusts in 500 hPa in the previous 2h [kn] |
wind_gusts_500hPa_2h:ms | wind gusts in 500 hPa in the previous 2h [m/s] |
wind_gusts_500hPa_3h:bft | wind gusts in 500 hPa in the previous 3h [bft] |
wind_gusts_500hPa_3h:kmh | wind gusts in 500 hPa in the previous 3h [km/h] |
wind_gusts_500hPa_3h:kn | wind gusts in 500 hPa in the previous 3h [kn] |
wind_gusts_500hPa_3h:ms | wind gusts in 500 hPa in the previous 3h [m/s] |
wind_gusts_500hPa_6h:bft | wind gusts in 500 hPa in the previous 6h [bft] |
wind_gusts_500hPa_6h:kmh | wind gusts in 500 hPa in the previous 6h [km/h] |
wind_gusts_500hPa_6h:kn | wind gusts in 500 hPa in the previous 6h [kn] |
wind_gusts_500hPa_6h:ms | wind gusts in 500 hPa in the previous 6h [m/s] |
wind_gusts_50hPa_12h:bft | wind gusts in 50 hPa in the previous 12h [bft] |
wind_gusts_50hPa_12h:kmh | wind gusts in 50 hPa in the previous 12h [km/h] |
wind_gusts_50hPa_12h:kn | wind gusts in 50 hPa in the previous 12h [kn] |
wind_gusts_50hPa_12h:ms | wind gusts in 50 hPa in the previous 12h [m/s] |
wind_gusts_50hPa_1h:bft | wind gusts in 50 hPa in the previous 1h [bft] |
wind_gusts_50hPa_1h:kmh | wind gusts in 50 hPa in the previous 1h [km/h] |
wind_gusts_50hPa_1h:kn | wind gusts in 50 hPa in the previous 1h [kn] |
wind_gusts_50hPa_1h:ms | wind gusts in 50 hPa in the previous 1h [m/s] |
wind_gusts_50hPa_24h:bft | wind gusts in 50 hPa in the previous 24h [bft] |
wind_gusts_50hPa_24h:kmh | wind gusts in 50 hPa in the previous 24h [km/h] |
wind_gusts_50hPa_24h:kn | wind gusts in 50 hPa in the previous 24h [kn] |
wind_gusts_50hPa_24h:ms | wind gusts in 50 hPa in the previous 24h [m/s] |
wind_gusts_50hPa_2h:bft | wind gusts in 50 hPa in the previous 2h [bft] |
wind_gusts_50hPa_2h:kmh | wind gusts in 50 hPa in the previous 2h [km/h] |
wind_gusts_50hPa_2h:kn | wind gusts in 50 hPa in the previous 2h [kn] |
wind_gusts_50hPa_2h:ms | wind gusts in 50 hPa in the previous 2h [m/s] |
wind_gusts_50hPa_3h:bft | wind gusts in 50 hPa in the previous 3h [bft] |
wind_gusts_50hPa_3h:kmh | wind gusts in 50 hPa in the previous 3h [km/h] |
wind_gusts_50hPa_3h:kn | wind gusts in 50 hPa in the previous 3h [kn] |
wind_gusts_50hPa_3h:ms | wind gusts in 50 hPa in the previous 3h [m/s] |
wind_gusts_50hPa_6h:bft | wind gusts in 50 hPa in the previous 6h [bft] |
wind_gusts_50hPa_6h:kmh | wind gusts in 50 hPa in the previous 6h [km/h] |
wind_gusts_50hPa_6h:kn | wind gusts in 50 hPa in the previous 6h [kn] |
wind_gusts_50hPa_6h:ms | wind gusts in 50 hPa in the previous 6h [m/s] |
wind_gusts_550hPa_12h:bft | wind gusts in 550 hPa in the previous 12h [bft] |
wind_gusts_550hPa_12h:kmh | wind gusts in 550 hPa in the previous 12h [km/h] |
wind_gusts_550hPa_12h:kn | wind gusts in 550 hPa in the previous 12h [kn] |
wind_gusts_550hPa_12h:ms | wind gusts in 550 hPa in the previous 12h [m/s] |
wind_gusts_550hPa_1h:bft | wind gusts in 550 hPa in the previous 1h [bft] |
wind_gusts_550hPa_1h:kmh | wind gusts in 550 hPa in the previous 1h [km/h] |
wind_gusts_550hPa_1h:kn | wind gusts in 550 hPa in the previous 1h [kn] |
wind_gusts_550hPa_1h:ms | wind gusts in 550 hPa in the previous 1h [m/s] |
wind_gusts_550hPa_24h:bft | wind gusts in 550 hPa in the previous 24h [bft] |
wind_gusts_550hPa_24h:kmh | wind gusts in 550 hPa in the previous 24h [km/h] |
wind_gusts_550hPa_24h:kn | wind gusts in 550 hPa in the previous 24h [kn] |
wind_gusts_550hPa_24h:ms | wind gusts in 550 hPa in the previous 24h [m/s] |
wind_gusts_550hPa_2h:bft | wind gusts in 550 hPa in the previous 2h [bft] |
wind_gusts_550hPa_2h:kmh | wind gusts in 550 hPa in the previous 2h [km/h] |
wind_gusts_550hPa_2h:kn | wind gusts in 550 hPa in the previous 2h [kn] |
wind_gusts_550hPa_2h:ms | wind gusts in 550 hPa in the previous 2h [m/s] |
wind_gusts_550hPa_3h:bft | wind gusts in 550 hPa in the previous 3h [bft] |
wind_gusts_550hPa_3h:kmh | wind gusts in 550 hPa in the previous 3h [km/h] |
wind_gusts_550hPa_3h:kn | wind gusts in 550 hPa in the previous 3h [kn] |
wind_gusts_550hPa_3h:ms | wind gusts in 550 hPa in the previous 3h [m/s] |
wind_gusts_550hPa_6h:bft | wind gusts in 550 hPa in the previous 6h [bft] |
wind_gusts_550hPa_6h:kmh | wind gusts in 550 hPa in the previous 6h [km/h] |
wind_gusts_550hPa_6h:kn | wind gusts in 550 hPa in the previous 6h [kn] |
wind_gusts_550hPa_6h:ms | wind gusts in 550 hPa in the previous 6h [m/s] |
wind_gusts_600hPa_12h:bft | wind gusts in 600 hPa in the previous 12h [bft] |
wind_gusts_600hPa_12h:kmh | wind gusts in 600 hPa in the previous 12h [km/h] |
wind_gusts_600hPa_12h:kn | wind gusts in 600 hPa in the previous 12h [kn] |
wind_gusts_600hPa_12h:ms | wind gusts in 600 hPa in the previous 12h [m/s] |
wind_gusts_600hPa_1h:bft | wind gusts in 600 hPa in the previous 1h [bft] |
wind_gusts_600hPa_1h:kmh | wind gusts in 600 hPa in the previous 1h [km/h] |
wind_gusts_600hPa_1h:kn | wind gusts in 600 hPa in the previous 1h [kn] |
wind_gusts_600hPa_1h:ms | wind gusts in 600 hPa in the previous 1h [m/s] |
wind_gusts_600hPa_24h:bft | wind gusts in 600 hPa in the previous 24h [bft] |
wind_gusts_600hPa_24h:kmh | wind gusts in 600 hPa in the previous 24h [km/h] |
wind_gusts_600hPa_24h:kn | wind gusts in 600 hPa in the previous 24h [kn] |
wind_gusts_600hPa_24h:ms | wind gusts in 600 hPa in the previous 24h [m/s] |
wind_gusts_600hPa_2h:bft | wind gusts in 600 hPa in the previous 2h [bft] |
wind_gusts_600hPa_2h:kmh | wind gusts in 600 hPa in the previous 2h [km/h] |
wind_gusts_600hPa_2h:kn | wind gusts in 600 hPa in the previous 2h [kn] |
wind_gusts_600hPa_2h:ms | wind gusts in 600 hPa in the previous 2h [m/s] |
wind_gusts_600hPa_3h:bft | wind gusts in 600 hPa in the previous 3h [bft] |
wind_gusts_600hPa_3h:kmh | wind gusts in 600 hPa in the previous 3h [km/h] |
wind_gusts_600hPa_3h:kn | wind gusts in 600 hPa in the previous 3h [kn] |
wind_gusts_600hPa_3h:ms | wind gusts in 600 hPa in the previous 3h [m/s] |
wind_gusts_600hPa_6h:bft | wind gusts in 600 hPa in the previous 6h [bft] |
wind_gusts_600hPa_6h:kmh | wind gusts in 600 hPa in the previous 6h [km/h] |
wind_gusts_600hPa_6h:kn | wind gusts in 600 hPa in the previous 6h [kn] |
wind_gusts_600hPa_6h:ms | wind gusts in 600 hPa in the previous 6h [m/s] |
wind_gusts_650hPa_12h:bft | wind gusts in 650 hPa in the previous 12h [bft] |
wind_gusts_650hPa_12h:kmh | wind gusts in 650 hPa in the previous 12h [km/h] |
wind_gusts_650hPa_12h:kn | wind gusts in 650 hPa in the previous 12h [kn] |
wind_gusts_650hPa_12h:ms | wind gusts in 650 hPa in the previous 12h [m/s] |
wind_gusts_650hPa_1h:bft | wind gusts in 650 hPa in the previous 1h [bft] |
wind_gusts_650hPa_1h:kmh | wind gusts in 650 hPa in the previous 1h [km/h] |
wind_gusts_650hPa_1h:kn | wind gusts in 650 hPa in the previous 1h [kn] |
wind_gusts_650hPa_1h:ms | wind gusts in 650 hPa in the previous 1h [m/s] |
wind_gusts_650hPa_24h:bft | wind gusts in 650 hPa in the previous 24h [bft] |
wind_gusts_650hPa_24h:kmh | wind gusts in 650 hPa in the previous 24h [km/h] |
wind_gusts_650hPa_24h:kn | wind gusts in 650 hPa in the previous 24h [kn] |
wind_gusts_650hPa_24h:ms | wind gusts in 650 hPa in the previous 24h [m/s] |
wind_gusts_650hPa_2h:bft | wind gusts in 650 hPa in the previous 2h [bft] |
wind_gusts_650hPa_2h:kmh | wind gusts in 650 hPa in the previous 2h [km/h] |
wind_gusts_650hPa_2h:kn | wind gusts in 650 hPa in the previous 2h [kn] |
wind_gusts_650hPa_2h:ms | wind gusts in 650 hPa in the previous 2h [m/s] |
wind_gusts_650hPa_3h:bft | wind gusts in 650 hPa in the previous 3h [bft] |
wind_gusts_650hPa_3h:kmh | wind gusts in 650 hPa in the previous 3h [km/h] |
wind_gusts_650hPa_3h:kn | wind gusts in 650 hPa in the previous 3h [kn] |
wind_gusts_650hPa_3h:ms | wind gusts in 650 hPa in the previous 3h [m/s] |
wind_gusts_650hPa_6h:bft | wind gusts in 650 hPa in the previous 6h [bft] |
wind_gusts_650hPa_6h:kmh | wind gusts in 650 hPa in the previous 6h [km/h] |
wind_gusts_650hPa_6h:kn | wind gusts in 650 hPa in the previous 6h [kn] |
wind_gusts_650hPa_6h:ms | wind gusts in 650 hPa in the previous 6h [m/s] |
wind_gusts_700hPa_12h:bft | wind gusts in 700 hPa in the previous 12h [bft] |
wind_gusts_700hPa_12h:kmh | wind gusts in 700 hPa in the previous 12h [km/h] |
wind_gusts_700hPa_12h:kn | wind gusts in 700 hPa in the previous 12h [kn] |
wind_gusts_700hPa_12h:ms | wind gusts in 700 hPa in the previous 12h [m/s] |
wind_gusts_700hPa_1h:bft | wind gusts in 700 hPa in the previous 1h [bft] |
wind_gusts_700hPa_1h:kmh | wind gusts in 700 hPa in the previous 1h [km/h] |
wind_gusts_700hPa_1h:kn | wind gusts in 700 hPa in the previous 1h [kn] |
wind_gusts_700hPa_1h:ms | wind gusts in 700 hPa in the previous 1h [m/s] |
wind_gusts_700hPa_24h:bft | wind gusts in 700 hPa in the previous 24h [bft] |
wind_gusts_700hPa_24h:kmh | wind gusts in 700 hPa in the previous 24h [km/h] |
wind_gusts_700hPa_24h:kn | wind gusts in 700 hPa in the previous 24h [kn] |
wind_gusts_700hPa_24h:ms | wind gusts in 700 hPa in the previous 24h [m/s] |
wind_gusts_700hPa_2h:bft | wind gusts in 700 hPa in the previous 2h [bft] |
wind_gusts_700hPa_2h:kmh | wind gusts in 700 hPa in the previous 2h [km/h] |
wind_gusts_700hPa_2h:kn | wind gusts in 700 hPa in the previous 2h [kn] |
wind_gusts_700hPa_2h:ms | wind gusts in 700 hPa in the previous 2h [m/s] |
wind_gusts_700hPa_3h:bft | wind gusts in 700 hPa in the previous 3h [bft] |
wind_gusts_700hPa_3h:kmh | wind gusts in 700 hPa in the previous 3h [km/h] |
wind_gusts_700hPa_3h:kn | wind gusts in 700 hPa in the previous 3h [kn] |
wind_gusts_700hPa_3h:ms | wind gusts in 700 hPa in the previous 3h [m/s] |
wind_gusts_700hPa_6h:bft | wind gusts in 700 hPa in the previous 6h [bft] |
wind_gusts_700hPa_6h:kmh | wind gusts in 700 hPa in the previous 6h [km/h] |
wind_gusts_700hPa_6h:kn | wind gusts in 700 hPa in the previous 6h [kn] |
wind_gusts_700hPa_6h:ms | wind gusts in 700 hPa in the previous 6h [m/s] |
wind_gusts_750hPa_12h:bft | wind gusts in 750 hPa in the previous 12h [bft] |
wind_gusts_750hPa_12h:kmh | wind gusts in 750 hPa in the previous 12h [km/h] |
wind_gusts_750hPa_12h:kn | wind gusts in 750 hPa in the previous 12h [kn] |
wind_gusts_750hPa_12h:ms | wind gusts in 750 hPa in the previous 12h [m/s] |
wind_gusts_750hPa_1h:bft | wind gusts in 750 hPa in the previous 1h [bft] |
wind_gusts_750hPa_1h:kmh | wind gusts in 750 hPa in the previous 1h [km/h] |
wind_gusts_750hPa_1h:kn | wind gusts in 750 hPa in the previous 1h [kn] |
wind_gusts_750hPa_1h:ms | wind gusts in 750 hPa in the previous 1h [m/s] |
wind_gusts_750hPa_24h:bft | wind gusts in 750 hPa in the previous 24h [bft] |
wind_gusts_750hPa_24h:kmh | wind gusts in 750 hPa in the previous 24h [km/h] |
wind_gusts_750hPa_24h:kn | wind gusts in 750 hPa in the previous 24h [kn] |
wind_gusts_750hPa_24h:ms | wind gusts in 750 hPa in the previous 24h [m/s] |
wind_gusts_750hPa_2h:bft | wind gusts in 750 hPa in the previous 2h [bft] |
wind_gusts_750hPa_2h:kmh | wind gusts in 750 hPa in the previous 2h [km/h] |
wind_gusts_750hPa_2h:kn | wind gusts in 750 hPa in the previous 2h [kn] |
wind_gusts_750hPa_2h:ms | wind gusts in 750 hPa in the previous 2h [m/s] |
wind_gusts_750hPa_3h:bft | wind gusts in 750 hPa in the previous 3h [bft] |
wind_gusts_750hPa_3h:kmh | wind gusts in 750 hPa in the previous 3h [km/h] |
wind_gusts_750hPa_3h:kn | wind gusts in 750 hPa in the previous 3h [kn] |
wind_gusts_750hPa_3h:ms | wind gusts in 750 hPa in the previous 3h [m/s] |
wind_gusts_750hPa_6h:bft | wind gusts in 750 hPa in the previous 6h [bft] |
wind_gusts_750hPa_6h:kmh | wind gusts in 750 hPa in the previous 6h [km/h] |
wind_gusts_750hPa_6h:kn | wind gusts in 750 hPa in the previous 6h [kn] |
wind_gusts_750hPa_6h:ms | wind gusts in 750 hPa in the previous 6h [m/s] |
wind_gusts_775hPa_12h:bft | wind gusts in 775 hPa in the previous 12h [bft] |
wind_gusts_775hPa_12h:kmh | wind gusts in 775 hPa in the previous 12h [km/h] |
wind_gusts_775hPa_12h:kn | wind gusts in 775 hPa in the previous 12h [kn] |
wind_gusts_775hPa_12h:ms | wind gusts in 775 hPa in the previous 12h [m/s] |
wind_gusts_775hPa_1h:bft | wind gusts in 775 hPa in the previous 1h [bft] |
wind_gusts_775hPa_1h:kmh | wind gusts in 775 hPa in the previous 1h [km/h] |
wind_gusts_775hPa_1h:kn | wind gusts in 775 hPa in the previous 1h [kn] |
wind_gusts_775hPa_1h:ms | wind gusts in 775 hPa in the previous 1h [m/s] |
wind_gusts_775hPa_24h:bft | wind gusts in 775 hPa in the previous 24h [bft] |
wind_gusts_775hPa_24h:kmh | wind gusts in 775 hPa in the previous 24h [km/h] |
wind_gusts_775hPa_24h:kn | wind gusts in 775 hPa in the previous 24h [kn] |
wind_gusts_775hPa_24h:ms | wind gusts in 775 hPa in the previous 24h [m/s] |
wind_gusts_775hPa_2h:bft | wind gusts in 775 hPa in the previous 2h [bft] |
wind_gusts_775hPa_2h:kmh | wind gusts in 775 hPa in the previous 2h [km/h] |
wind_gusts_775hPa_2h:kn | wind gusts in 775 hPa in the previous 2h [kn] |
wind_gusts_775hPa_2h:ms | wind gusts in 775 hPa in the previous 2h [m/s] |
wind_gusts_775hPa_3h:bft | wind gusts in 775 hPa in the previous 3h [bft] |
wind_gusts_775hPa_3h:kmh | wind gusts in 775 hPa in the previous 3h [km/h] |
wind_gusts_775hPa_3h:kn | wind gusts in 775 hPa in the previous 3h [kn] |
wind_gusts_775hPa_3h:ms | wind gusts in 775 hPa in the previous 3h [m/s] |
wind_gusts_775hPa_6h:bft | wind gusts in 775 hPa in the previous 6h [bft] |
wind_gusts_775hPa_6h:kmh | wind gusts in 775 hPa in the previous 6h [km/h] |
wind_gusts_775hPa_6h:kn | wind gusts in 775 hPa in the previous 6h [kn] |
wind_gusts_775hPa_6h:ms | wind gusts in 775 hPa in the previous 6h [m/s] |
wind_gusts_800hPa_12h:bft | wind gusts in 800 hPa in the previous 12h [bft] |
wind_gusts_800hPa_12h:kmh | wind gusts in 800 hPa in the previous 12h [km/h] |
wind_gusts_800hPa_12h:kn | wind gusts in 800 hPa in the previous 12h [kn] |
wind_gusts_800hPa_12h:ms | wind gusts in 800 hPa in the previous 12h [m/s] |
wind_gusts_800hPa_1h:bft | wind gusts in 800 hPa in the previous 1h [bft] |
wind_gusts_800hPa_1h:kmh | wind gusts in 800 hPa in the previous 1h [km/h] |
wind_gusts_800hPa_1h:kn | wind gusts in 800 hPa in the previous 1h [kn] |
wind_gusts_800hPa_1h:ms | wind gusts in 800 hPa in the previous 1h [m/s] |
wind_gusts_800hPa_24h:bft | wind gusts in 800 hPa in the previous 24h [bft] |
wind_gusts_800hPa_24h:kmh | wind gusts in 800 hPa in the previous 24h [km/h] |
wind_gusts_800hPa_24h:kn | wind gusts in 800 hPa in the previous 24h [kn] |
wind_gusts_800hPa_24h:ms | wind gusts in 800 hPa in the previous 24h [m/s] |
wind_gusts_800hPa_2h:bft | wind gusts in 800 hPa in the previous 2h [bft] |
wind_gusts_800hPa_2h:kmh | wind gusts in 800 hPa in the previous 2h [km/h] |
wind_gusts_800hPa_2h:kn | wind gusts in 800 hPa in the previous 2h [kn] |
wind_gusts_800hPa_2h:ms | wind gusts in 800 hPa in the previous 2h [m/s] |
wind_gusts_800hPa_3h:bft | wind gusts in 800 hPa in the previous 3h [bft] |
wind_gusts_800hPa_3h:kmh | wind gusts in 800 hPa in the previous 3h [km/h] |
wind_gusts_800hPa_3h:kn | wind gusts in 800 hPa in the previous 3h [kn] |
wind_gusts_800hPa_3h:ms | wind gusts in 800 hPa in the previous 3h [m/s] |
wind_gusts_800hPa_6h:bft | wind gusts in 800 hPa in the previous 6h [bft] |
wind_gusts_800hPa_6h:kmh | wind gusts in 800 hPa in the previous 6h [km/h] |
wind_gusts_800hPa_6h:kn | wind gusts in 800 hPa in the previous 6h [kn] |
wind_gusts_800hPa_6h:ms | wind gusts in 800 hPa in the previous 6h [m/s] |
wind_gusts_825hPa_12h:bft | wind gusts in 825 hPa in the previous 12h [bft] |
wind_gusts_825hPa_12h:kmh | wind gusts in 825 hPa in the previous 12h [km/h] |
wind_gusts_825hPa_12h:kn | wind gusts in 825 hPa in the previous 12h [kn] |
wind_gusts_825hPa_12h:ms | wind gusts in 825 hPa in the previous 12h [m/s] |
wind_gusts_825hPa_1h:bft | wind gusts in 825 hPa in the previous 1h [bft] |
wind_gusts_825hPa_1h:kmh | wind gusts in 825 hPa in the previous 1h [km/h] |
wind_gusts_825hPa_1h:kn | wind gusts in 825 hPa in the previous 1h [kn] |
wind_gusts_825hPa_1h:ms | wind gusts in 825 hPa in the previous 1h [m/s] |
wind_gusts_825hPa_24h:bft | wind gusts in 825 hPa in the previous 24h [bft] |
wind_gusts_825hPa_24h:kmh | wind gusts in 825 hPa in the previous 24h [km/h] |
wind_gusts_825hPa_24h:kn | wind gusts in 825 hPa in the previous 24h [kn] |
wind_gusts_825hPa_24h:ms | wind gusts in 825 hPa in the previous 24h [m/s] |
wind_gusts_825hPa_2h:bft | wind gusts in 825 hPa in the previous 2h [bft] |
wind_gusts_825hPa_2h:kmh | wind gusts in 825 hPa in the previous 2h [km/h] |
wind_gusts_825hPa_2h:kn | wind gusts in 825 hPa in the previous 2h [kn] |
wind_gusts_825hPa_2h:ms | wind gusts in 825 hPa in the previous 2h [m/s] |
wind_gusts_825hPa_3h:bft | wind gusts in 825 hPa in the previous 3h [bft] |
wind_gusts_825hPa_3h:kmh | wind gusts in 825 hPa in the previous 3h [km/h] |
wind_gusts_825hPa_3h:kn | wind gusts in 825 hPa in the previous 3h [kn] |
wind_gusts_825hPa_3h:ms | wind gusts in 825 hPa in the previous 3h [m/s] |
wind_gusts_825hPa_6h:bft | wind gusts in 825 hPa in the previous 6h [bft] |
wind_gusts_825hPa_6h:kmh | wind gusts in 825 hPa in the previous 6h [km/h] |
wind_gusts_825hPa_6h:kn | wind gusts in 825 hPa in the previous 6h [kn] |
wind_gusts_825hPa_6h:ms | wind gusts in 825 hPa in the previous 6h [m/s] |
wind_gusts_850hPa_12h:bft | wind gusts in 850 hPa in the previous 12h [bft] |
wind_gusts_850hPa_12h:kmh | wind gusts in 850 hPa in the previous 12h [km/h] |
wind_gusts_850hPa_12h:kn | wind gusts in 850 hPa in the previous 12h [kn] |
wind_gusts_850hPa_12h:ms | wind gusts in 850 hPa in the previous 12h [m/s] |
wind_gusts_850hPa_1h:bft | wind gusts in 850 hPa in the previous 1h [bft] |
wind_gusts_850hPa_1h:kmh | wind gusts in 850 hPa in the previous 1h [km/h] |
wind_gusts_850hPa_1h:kn | wind gusts in 850 hPa in the previous 1h [kn] |
wind_gusts_850hPa_1h:ms | wind gusts in 850 hPa in the previous 1h [m/s] |
wind_gusts_850hPa_24h:bft | wind gusts in 850 hPa in the previous 24h [bft] |
wind_gusts_850hPa_24h:kmh | wind gusts in 850 hPa in the previous 24h [km/h] |
wind_gusts_850hPa_24h:kn | wind gusts in 850 hPa in the previous 24h [kn] |
wind_gusts_850hPa_24h:ms | wind gusts in 850 hPa in the previous 24h [m/s] |
wind_gusts_850hPa_2h:bft | wind gusts in 850 hPa in the previous 2h [bft] |
wind_gusts_850hPa_2h:kmh | wind gusts in 850 hPa in the previous 2h [km/h] |
wind_gusts_850hPa_2h:kn | wind gusts in 850 hPa in the previous 2h [kn] |
wind_gusts_850hPa_2h:ms | wind gusts in 850 hPa in the previous 2h [m/s] |
wind_gusts_850hPa_3h:bft | wind gusts in 850 hPa in the previous 3h [bft] |
wind_gusts_850hPa_3h:kmh | wind gusts in 850 hPa in the previous 3h [km/h] |
wind_gusts_850hPa_3h:kn | wind gusts in 850 hPa in the previous 3h [kn] |
wind_gusts_850hPa_3h:ms | wind gusts in 850 hPa in the previous 3h [m/s] |
wind_gusts_850hPa_6h:bft | wind gusts in 850 hPa in the previous 6h [bft] |
wind_gusts_850hPa_6h:kmh | wind gusts in 850 hPa in the previous 6h [km/h] |
wind_gusts_850hPa_6h:kn | wind gusts in 850 hPa in the previous 6h [kn] |
wind_gusts_850hPa_6h:ms | wind gusts in 850 hPa in the previous 6h [m/s] |
wind_gusts_875hPa_12h:bft | wind gusts in 875 hPa in the previous 12h [bft] |
wind_gusts_875hPa_12h:kmh | wind gusts in 875 hPa in the previous 12h [km/h] |
wind_gusts_875hPa_12h:kn | wind gusts in 875 hPa in the previous 12h [kn] |
wind_gusts_875hPa_12h:ms | wind gusts in 875 hPa in the previous 12h [m/s] |
wind_gusts_875hPa_1h:bft | wind gusts in 875 hPa in the previous 1h [bft] |
wind_gusts_875hPa_1h:kmh | wind gusts in 875 hPa in the previous 1h [km/h] |
wind_gusts_875hPa_1h:kn | wind gusts in 875 hPa in the previous 1h [kn] |
wind_gusts_875hPa_1h:ms | wind gusts in 875 hPa in the previous 1h [m/s] |
wind_gusts_875hPa_24h:bft | wind gusts in 875 hPa in the previous 24h [bft] |
wind_gusts_875hPa_24h:kmh | wind gusts in 875 hPa in the previous 24h [km/h] |
wind_gusts_875hPa_24h:kn | wind gusts in 875 hPa in the previous 24h [kn] |
wind_gusts_875hPa_24h:ms | wind gusts in 875 hPa in the previous 24h [m/s] |
wind_gusts_875hPa_2h:bft | wind gusts in 875 hPa in the previous 2h [bft] |
wind_gusts_875hPa_2h:kmh | wind gusts in 875 hPa in the previous 2h [km/h] |
wind_gusts_875hPa_2h:kn | wind gusts in 875 hPa in the previous 2h [kn] |
wind_gusts_875hPa_2h:ms | wind gusts in 875 hPa in the previous 2h [m/s] |
wind_gusts_875hPa_3h:bft | wind gusts in 875 hPa in the previous 3h [bft] |
wind_gusts_875hPa_3h:kmh | wind gusts in 875 hPa in the previous 3h [km/h] |
wind_gusts_875hPa_3h:kn | wind gusts in 875 hPa in the previous 3h [kn] |
wind_gusts_875hPa_3h:ms | wind gusts in 875 hPa in the previous 3h [m/s] |
wind_gusts_875hPa_6h:bft | wind gusts in 875 hPa in the previous 6h [bft] |
wind_gusts_875hPa_6h:kmh | wind gusts in 875 hPa in the previous 6h [km/h] |
wind_gusts_875hPa_6h:kn | wind gusts in 875 hPa in the previous 6h [kn] |
wind_gusts_875hPa_6h:ms | wind gusts in 875 hPa in the previous 6h [m/s] |
wind_gusts_900hPa_12h:bft | wind gusts in 900 hPa in the previous 12h [bft] |
wind_gusts_900hPa_12h:kmh | wind gusts in 900 hPa in the previous 12h [km/h] |
wind_gusts_900hPa_12h:kn | wind gusts in 900 hPa in the previous 12h [kn] |
wind_gusts_900hPa_12h:ms | wind gusts in 900 hPa in the previous 12h [m/s] |
wind_gusts_900hPa_1h:bft | wind gusts in 900 hPa in the previous 1h [bft] |
wind_gusts_900hPa_1h:kmh | wind gusts in 900 hPa in the previous 1h [km/h] |
wind_gusts_900hPa_1h:kn | wind gusts in 900 hPa in the previous 1h [kn] |
wind_gusts_900hPa_1h:ms | wind gusts in 900 hPa in the previous 1h [m/s] |
wind_gusts_900hPa_24h:bft | wind gusts in 900 hPa in the previous 24h [bft] |
wind_gusts_900hPa_24h:kmh | wind gusts in 900 hPa in the previous 24h [km/h] |
wind_gusts_900hPa_24h:kn | wind gusts in 900 hPa in the previous 24h [kn] |
wind_gusts_900hPa_24h:ms | wind gusts in 900 hPa in the previous 24h [m/s] |
wind_gusts_900hPa_2h:bft | wind gusts in 900 hPa in the previous 2h [bft] |
wind_gusts_900hPa_2h:kmh | wind gusts in 900 hPa in the previous 2h [km/h] |
wind_gusts_900hPa_2h:kn | wind gusts in 900 hPa in the previous 2h [kn] |
wind_gusts_900hPa_2h:ms | wind gusts in 900 hPa in the previous 2h [m/s] |
wind_gusts_900hPa_3h:bft | wind gusts in 900 hPa in the previous 3h [bft] |
wind_gusts_900hPa_3h:kmh | wind gusts in 900 hPa in the previous 3h [km/h] |
wind_gusts_900hPa_3h:kn | wind gusts in 900 hPa in the previous 3h [kn] |
wind_gusts_900hPa_3h:ms | wind gusts in 900 hPa in the previous 3h [m/s] |
wind_gusts_900hPa_6h:bft | wind gusts in 900 hPa in the previous 6h [bft] |
wind_gusts_900hPa_6h:kmh | wind gusts in 900 hPa in the previous 6h [km/h] |
wind_gusts_900hPa_6h:kn | wind gusts in 900 hPa in the previous 6h [kn] |
wind_gusts_900hPa_6h:ms | wind gusts in 900 hPa in the previous 6h [m/s] |
wind_gusts_925hPa_12h:bft | wind gusts in 925 hPa in the previous 12h [bft] |
wind_gusts_925hPa_12h:kmh | wind gusts in 925 hPa in the previous 12h [km/h] |
wind_gusts_925hPa_12h:kn | wind gusts in 925 hPa in the previous 12h [kn] |
wind_gusts_925hPa_12h:ms | wind gusts in 925 hPa in the previous 12h [m/s] |
wind_gusts_925hPa_1h:bft | wind gusts in 925 hPa in the previous 1h [bft] |
wind_gusts_925hPa_1h:kmh | wind gusts in 925 hPa in the previous 1h [km/h] |
wind_gusts_925hPa_1h:kn | wind gusts in 925 hPa in the previous 1h [kn] |
wind_gusts_925hPa_1h:ms | wind gusts in 925 hPa in the previous 1h [m/s] |
wind_gusts_925hPa_24h:bft | wind gusts in 925 hPa in the previous 24h [bft] |
wind_gusts_925hPa_24h:kmh | wind gusts in 925 hPa in the previous 24h [km/h] |
wind_gusts_925hPa_24h:kn | wind gusts in 925 hPa in the previous 24h [kn] |
wind_gusts_925hPa_24h:ms | wind gusts in 925 hPa in the previous 24h [m/s] |
wind_gusts_925hPa_2h:bft | wind gusts in 925 hPa in the previous 2h [bft] |
wind_gusts_925hPa_2h:kmh | wind gusts in 925 hPa in the previous 2h [km/h] |
wind_gusts_925hPa_2h:kn | wind gusts in 925 hPa in the previous 2h [kn] |
wind_gusts_925hPa_2h:ms | wind gusts in 925 hPa in the previous 2h [m/s] |
wind_gusts_925hPa_3h:bft | wind gusts in 925 hPa in the previous 3h [bft] |
wind_gusts_925hPa_3h:kmh | wind gusts in 925 hPa in the previous 3h [km/h] |
wind_gusts_925hPa_3h:kn | wind gusts in 925 hPa in the previous 3h [kn] |
wind_gusts_925hPa_3h:ms | wind gusts in 925 hPa in the previous 3h [m/s] |
wind_gusts_925hPa_6h:bft | wind gusts in 925 hPa in the previous 6h [bft] |
wind_gusts_925hPa_6h:kmh | wind gusts in 925 hPa in the previous 6h [km/h] |
wind_gusts_925hPa_6h:kn | wind gusts in 925 hPa in the previous 6h [kn] |
wind_gusts_925hPa_6h:ms | wind gusts in 925 hPa in the previous 6h [m/s] |
wind_gusts_950hPa_12h:bft | wind gusts in 950 hPa in the previous 12h [bft] |
wind_gusts_950hPa_12h:kmh | wind gusts in 950 hPa in the previous 12h [km/h] |
wind_gusts_950hPa_12h:kn | wind gusts in 950 hPa in the previous 12h [kn] |
wind_gusts_950hPa_12h:ms | wind gusts in 950 hPa in the previous 12h [m/s] |
wind_gusts_950hPa_1h:bft | wind gusts in 950 hPa in the previous 1h [bft] |
wind_gusts_950hPa_1h:kmh | wind gusts in 950 hPa in the previous 1h [km/h] |
wind_gusts_950hPa_1h:kn | wind gusts in 950 hPa in the previous 1h [kn] |
wind_gusts_950hPa_1h:ms | wind gusts in 950 hPa in the previous 1h [m/s] |
wind_gusts_950hPa_24h:bft | wind gusts in 950 hPa in the previous 24h [bft] |
wind_gusts_950hPa_24h:kmh | wind gusts in 950 hPa in the previous 24h [km/h] |
wind_gusts_950hPa_24h:kn | wind gusts in 950 hPa in the previous 24h [kn] |
wind_gusts_950hPa_24h:ms | wind gusts in 950 hPa in the previous 24h [m/s] |
wind_gusts_950hPa_2h:bft | wind gusts in 950 hPa in the previous 2h [bft] |
wind_gusts_950hPa_2h:kmh | wind gusts in 950 hPa in the previous 2h [km/h] |
wind_gusts_950hPa_2h:kn | wind gusts in 950 hPa in the previous 2h [kn] |
wind_gusts_950hPa_2h:ms | wind gusts in 950 hPa in the previous 2h [m/s] |
wind_gusts_950hPa_3h:bft | wind gusts in 950 hPa in the previous 3h [bft] |
wind_gusts_950hPa_3h:kmh | wind gusts in 950 hPa in the previous 3h [km/h] |
wind_gusts_950hPa_3h:kn | wind gusts in 950 hPa in the previous 3h [kn] |
wind_gusts_950hPa_3h:ms | wind gusts in 950 hPa in the previous 3h [m/s] |
wind_gusts_950hPa_6h:bft | wind gusts in 950 hPa in the previous 6h [bft] |
wind_gusts_950hPa_6h:kmh | wind gusts in 950 hPa in the previous 6h [km/h] |
wind_gusts_950hPa_6h:kn | wind gusts in 950 hPa in the previous 6h [kn] |
wind_gusts_950hPa_6h:ms | wind gusts in 950 hPa in the previous 6h [m/s] |
wind_gusts_975hPa_12h:bft | wind gusts in 975 hPa in the previous 12h [bft] |
wind_gusts_975hPa_12h:kmh | wind gusts in 975 hPa in the previous 12h [km/h] |
wind_gusts_975hPa_12h:kn | wind gusts in 975 hPa in the previous 12h [kn] |
wind_gusts_975hPa_12h:ms | wind gusts in 975 hPa in the previous 12h [m/s] |
wind_gusts_975hPa_1h:bft | wind gusts in 975 hPa in the previous 1h [bft] |
wind_gusts_975hPa_1h:kmh | wind gusts in 975 hPa in the previous 1h [km/h] |
wind_gusts_975hPa_1h:kn | wind gusts in 975 hPa in the previous 1h [kn] |
wind_gusts_975hPa_1h:ms | wind gusts in 975 hPa in the previous 1h [m/s] |
wind_gusts_975hPa_24h:bft | wind gusts in 975 hPa in the previous 24h [bft] |
wind_gusts_975hPa_24h:kmh | wind gusts in 975 hPa in the previous 24h [km/h] |
wind_gusts_975hPa_24h:kn | wind gusts in 975 hPa in the previous 24h [kn] |
wind_gusts_975hPa_24h:ms | wind gusts in 975 hPa in the previous 24h [m/s] |
wind_gusts_975hPa_2h:bft | wind gusts in 975 hPa in the previous 2h [bft] |
wind_gusts_975hPa_2h:kmh | wind gusts in 975 hPa in the previous 2h [km/h] |
wind_gusts_975hPa_2h:kn | wind gusts in 975 hPa in the previous 2h [kn] |
wind_gusts_975hPa_2h:ms | wind gusts in 975 hPa in the previous 2h [m/s] |
wind_gusts_975hPa_3h:bft | wind gusts in 975 hPa in the previous 3h [bft] |
wind_gusts_975hPa_3h:kmh | wind gusts in 975 hPa in the previous 3h [km/h] |
wind_gusts_975hPa_3h:kn | wind gusts in 975 hPa in the previous 3h [kn] |
wind_gusts_975hPa_3h:ms | wind gusts in 975 hPa in the previous 3h [m/s] |
wind_gusts_975hPa_6h:bft | wind gusts in 975 hPa in the previous 6h [bft] |
wind_gusts_975hPa_6h:kmh | wind gusts in 975 hPa in the previous 6h [km/h] |
wind_gusts_975hPa_6h:kn | wind gusts in 975 hPa in the previous 6h [kn] |
wind_gusts_975hPa_6h:ms | wind gusts in 975 hPa in the previous 6h [m/s] |
Cloud Parameters
Parameter | Description |
---|---|
effective_cloud_cover:octas | effective cloud cover [octas] |
effective_cloud_cover:p | effective cloud cover [%] |
high_cloud_cover:octas | high cloud cover [octas] |
high_cloud_cover:p | high cloud cover [%] |
high_cloud_cover_10y_mean:p | high cloud cover - 10 years average [%] |
low_cloud_cover:octas | low cloud cover [octas] |
low_cloud_cover:p | low cloud cover [%] |
low_cloud_cover_10y_mean:p | low cloud cover - 10-year average [%] |
low_cloud_cover_mean_12h:octas | mean low cloud cover during the previous 12h |
low_cloud_cover_mean_12h:p | mean low cloud cover during the previous 12h |
low_cloud_cover_mean_1h:octas | mean low cloud cover during the previous 1h |
low_cloud_cover_mean_1h:p | mean low cloud cover during the previous 1h |
low_cloud_cover_mean_24h:octas | mean low cloud cover during the previous 24h |
low_cloud_cover_mean_24h:p | mean low cloud cover during the previous 24h |
low_cloud_cover_mean_2h:octas | mean low cloud cover during the previous 2h |
low_cloud_cover_mean_2h:p | mean low cloud cover during the previous 2h |
low_cloud_cover_mean_3h:octas | mean low cloud cover during the previous 3h |
low_cloud_cover_mean_3h:p | mean low cloud cover during the previous 3h |
low_cloud_cover_mean_6h:octas | mean low cloud cover during the previous 6h |
low_cloud_cover_mean_6h:p | mean low cloud cover during the previous 6h |
medium_cloud_cover:octas | amount of medium cloud cover [octas] |
medium_cloud_cover:p | amount of medium cloud cover [%] |
medium_cloud_cover_10y_mean:p | amount of medium cloud cover - 10-year average [%] |
total_cloud_cover:octas | total cloud cover [octas] |
total_cloud_cover:p | total cloud cover [%] |
total_cloud_cover_10y_mean:p | total cloud cover - 10 year average [%] |
ceiling_height_agl:ft | ceiling height above ground level [feet] |
ceiling_height_agl:m | ceiling height above ground level [m] |
cloud_base_agl:ft | cloud base above ground level [ft] |
cloud_base_agl:m | cloud base above ground level [m] |
Snow and Frost Parameters
Parameter | Description |
---|---|
frost_depth:cm | frost depth [cm] |
soil_frost:p | Chance for soil frost occurrence in percent |
snow_melt_10min:cm | snow melt in previous 10 min [cm] |
snow_melt_10min:mm | snow melt (water equivalent) in previous 10 min [mm] |
snow_melt_12h:cm | snow melt in previous 12h [cm] |
snow_melt_12h:mm | snow melt (water equivalent) in previous 12h [mm] |
snow_melt_1h:cm | snow melt in previous 1h [cm] |
snow_melt_1h:mm | snow melt (water equivalent) in previous 1h [mm] |
snow_melt_20min:cm | snow melt in previous 20 min [cm] |
snow_melt_20min:mm | snow melt (water equivalent) in previous 20 min [mm] |
snow_melt_24h:cm | snow melt in previous 24h [cm] |
snow_melt_24h:mm | snow melt (water equivalent) in previous 24h [mm] |
snow_melt_30min:cm | snow melt in previous 30 min [cm] |
snow_melt_30min:mm | snow melt (water equivalent) in previous 30 min [mm] |
snow_melt_3h:cm | snow melt in previous 3h [cm] |
snow_melt_3h:mm | snow melt (water equivalent) in previous 3h [mm] |
snow_melt_6h:cm | snow melt in previous 6h [cm] |
snow_melt_6h:mm | snow melt (water equivalent) in previous 6h [mm] |
fresh_snow_12h:cm | fresh snow of previous 12h [cm] |
fresh_snow_1h:cm | fresh snow of previous 1h [cm] |
fresh_snow_24h:cm | fresh snow of previous 24h [cm] |
fresh_snow_3h:cm | fresh snow of previous 3h [cm] |
fresh_snow_6h:cm | fresh snow of previous 6h [cm] |
snow_depth:cm | snow depth [mm / cm / m] |
snow_water_equivalent:m | Snow water equivalent [mm / m] |
snow_density:kgm3 | snow density [kg/m3] |
prob_snowfall:p | Probability for precipition in form of snow |
snow_drift:idx | Risk of deposit of snow by wind [index from 0-6] |
prob_rime:p | Rime probability in percent |
Soil Parameters
Parameter | Description |
---|---|
soil_frost:p | Chance for soil frost occurrence in percent |
soil_moisture_deficit:mm | Soil moisture deficit - a measure for droughts - deviation from long year average [mm] |
soilmoisture_index-150cm:idx | Soil moisture index at a depth of 150cm |
soilmoisture_index-15cm:idx | Soil moisture index at a depth of 15cm |
soilmoisture_index-50cm:idx | Soil moisture index at a depth of 50cm |
soilmoisture_index-5cm:idx | Soil moisture index at a depth of 5cm |
soil_type:idx | Index for soil type |
volumetricsoil_water-150cm:m3m3 | Soil water content at a depth of 150 cm |
volumetricsoil_water-15cm:m3m3 | Soil water content at a depth of 15 cm |
volumetricsoil_water-50cm:m3m3 | Soil water content at a depth of 50 cm |
volumetricsoil_water-5cm:m3m3 | Soil water content at a depth of 5 cm |
Radiation Parameters
Parameter | Description |
---|---|
clear_sky_rad:W | clear sky radiation [W] |
diffuse_rad:W | diffuse radiation [W] |
diffuse_rad_12h:J | diffuse radiation of previous 12 h [J] |
diffuse_rad_12h:Ws | diffuse radiation of previous 12 h [Ws] |
diffuse_rad_1h:J | diffuse radiation of previous 1h [J] |
diffuse_rad_1h:Ws | diffuse radiation of previous 1h [Ws] |
diffuse_rad_24h:J | diffuse radiation of previous 24h [J] |
diffuse_rad_24h:Ws | diffuse radiation of previous 24h [Ws] |
diffuse_rad_3h:J | diffuse radiation of previous 3h [J] |
diffuse_rad_3h:Ws | diffuse radiation of previous 3h [Ws] |
diffuse_rad_6h:J | diffuse radiation of previous 6h [J] |
diffuse_rad_6h:Ws | diffuse radiation of previous 6h [Ws] |
direct_rad:W | direct radiation [W] |
direct_rad_12h:J | direct radiation of previous 12h [J] |
direct_rad_12h:Ws | direct radiation of previous 12h [Ws] |
direct_rad_1h:J | direct radiation of previous 1h [J] |
direct_rad_1h:Ws | direct radiation of previous 1h [Ws] |
direct_rad_24h:J | direct radiation of previous 24h [J] |
direct_rad_24h:Ws | direct radiation of previous 24h [Ws] |
direct_rad_3h:J | direct radiation of previous 3h [J] |
direct_rad_3h:Ws | direct radiation of previous 3h [Ws] |
direct_rad_6h:J | direct radiation of previous 6h [Ws] |
direct_rad_6h:Ws | direct radiation of previous 6h [Ws] |
global_rad:W | global radiation [W] |
global_rad_10y_mean:W | global radiation of previous 10y mean [W] |
global_rad_12h:J | global radiation of previous 12h [J] |
global_rad_12h:Ws | global radiation of previous 12h [Ws] |
global_rad_1h:J | global radiation of previous 1h [J] |
global_rad_1h:Ws | global radiation of previous 1h [Ws] |
global_rad_24h:J | global radiation of previous 24h [J] |
global_rad_24h:Ws | global radiation of previous 24h [Ws] |
global_rad_3h:J | global radiation of previous 3h [J] |
global_rad_3h:Ws | global radiation of previous 3h [Ws] |
global_rad_6h:J | global radiation of previous 6h [J] |
global_rad_6h:Ws | global radiation of previous 6h [Ws] |
Atmospheric Stability
Parameter | Description |
---|---|
cape:Jkg | convective available potential energy (indication of atmospheric lability) [J/kg] |
lifted_index:K | lifted index (related to stability of the atmosphere) [K] |
prob_tstorm_12h:p | probability of thunderstorms in the previous 12h [%] |
prob_tstorm_1h:p | probability of thunderstorms in the previous 1h [%] |
prob_tstorm_24h:p | probability of thunderstorms in the previous 24h [%] |
prob_tstorm_3h:p | probability of thunderstorms in the previous 3h [%] |
prob_tstorm_6h:p | probability of thunderstorms in the previous 6h [%] |
Yearly Accumulated Day Counts
Parameter | Description |
---|---|
vegetation_days:d | number of vegetation days [d] |
heating_days:d | heating days (24h-mean < 15°C) [d] |
heating_degree_days:hdd | heating degree days (accumulated temperature difference below 15°C) [hdd] |
heating_degree_days_base_10C:hdd | heating degree days with variable base temperature (accumulated temperature difference below 10°C) [HDD] |
cooling_degree_days:cdd | cooling degree days (accumulated temperature difference above 15°C) [cdd] |
cooling_degree_days_base_10C:cdd | cooling degree days with variable base temperature (accumulated temperature difference above 10°C) [cdd] |
desert_days:d | desert days |
hot_days:d | number of hot days (24h max. temp > 30°C) [d] |
summer_days:d | number of summer days (24 max temperature > 25°C)[d] |
tropical_nights:d | number of tropical nights (24h min. temperature > 20°C) [d] |
frost_days:d | frost days [d] |
ice_days:d | number of ice days (24h max. temp < 0°C) [d] |
rain_days:d | number of days with rain [d] |
heavy_rain_days:d | days of heavy rain (precipitation sum > 10mm) [d] |
dry_days:d | number of dry days |
Agricultural Parameters
Parameter | Description |
---|---|
evapotranspiration_12h:mm | evapotranspiration of previous 12h [mm] |
evapotranspiration_1h:mm | evapotranspiration of previous 1h [mm] |
evapotranspiration_24h:mm | evapotranspiration of previous 24h [mm] |
evapotranspiration_3h:mm | evapotranspiration of previous 3h [mm] |
evapotranspiration_6h:mm | evapotranspiration of previous 6h [mm] |
growing_degree_days_accumulated:gdd | accumulated growing degree days [gdd] |
grass_land_temperature_sum:C | sum of grass land temperature [C] |
leaf_wetness:idx | Leaf wetness index |
phytophthora_negative:idx | Phytophthora negative prognosis (index for safety measures against potato blight) |
most_similar_year:y | most similar year [y] |
Weather Warnings
Parameter | Description |
---|---|
heavy_rain_warning_1h:idx | Warning for heavy rain during the previous hour |
heavy_rain_warning_6h:idx | Warning for heavy rain during the previous 6 hours |
incessant_rain_warning_12h:idx | Warning for incessant rain during the previous 12 h |
incessant_rain_warning_24h:idx | Warning for incessant rain during the previous 24 h |
incessant_rain_warning_48h:idx | Warning for incessant rain during the previous 48 h |
incessant_rain_warning_72h:idx | Warning for incessant rain during the previous 72 h |
snow_warning_12h:idx | Warning for heavy snowfall during the previous 12h |
snow_warning_1h:idx | Warning for heavy snowfall during the previous 1h |
snow_warning_24h:idx | Warning for heavy snowfall during the previous 24h |
snow_warning_48h:idx | Warning for heavy snowfall during the previous 48h |
snow_warning_6h:idx | Warning for heavy snowfall during the previous 6h |
tstorm_warning_1h:idx | Warning for thunderstorms during the previous 1h |
wind_warning_12h:idx | Wind warning for the previous 12h |
wind_warning_1h:idx | Wind warning for the previous 1h |
wind_warning_24h:idx | Wind warning for the previous 24h |
wind_warning_2h:idx | Wind warning for the previous 2h |
wind_warning_3h:idx | Wind warning for the previous 3h |
wind_warning_6h:idx | Wind warning for the previous 6h |