Skip to main content

Meteomatics Weather API

Weather API provides access to current weather, forecasts, and historical data.

Meteomatics weather


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>"
}
ParameterDescriptionExample
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 date2017-05-30T13:00:00Z
time_steptime 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. 1DT1HP1D
parametersHere 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
coordinatesGeo-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
formatThe 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>
ParameterAvailable 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 levelsFL10 - FL900 (continuously)
unitsC, 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

Tempreature chart example

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>
ParameterAvailable options
measuresmean, 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 levelsFL10 - FL900 (continuously)
intervals1h - 24h (spacing: 1 h)
unitsC, 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>
ParameterAvailable options
levels (global)2m - 20000m (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa
flight levelsFL10 - FL605 (continuously)
unitsp

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
ParameterAvailable options
measuresmean, min, max
levels (global)2m - 20000m (continuously), 1000hPa, 950hPa, 925hPa, 900hPa, 850hPa, 800hPa, 700hPa, 500hPa, 300hPa, 250hPa, 200hPa, 150hPa, 100hPa, 70hPa
flight levelsFL10 - FL605 (continuously)
intervals1h, 2h, 3h, 6h, 12h, 24h
unitsp

⚫ 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

ParameterAvailable options
accumulation intervals5min, 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 a validdate of 2015-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

ParameterAvailable options
intervals1h, 2h, 3h, 6h, 12h, 24h

Precipitation Type

You can query an integer indicating the precipitation type with the parameter

precip_type:idx

IndexPrecipitation Type
0None
1Rain
2Rain and snow mixed
3Snow
4Sleet
5Freezing rain
6Hail

Precipitation Probability

You can query an integer indicating the precipitation type with the parameter

prob_precip_<interval>:p

ParameterAvailable options
intervals1h, 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 a validdate of 2015-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

ParameterAvailable options
intervals30min, 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

ParameterAvailable options
intervals30min, 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

ParameterAvailable options
intervals30min, 1h

Hail

The API features a hail parameter describing the maximum size of the hailstones.

Occurring hail for a time interval:

hail_<interval>:cm

ParameterAvailable options
intervals10min, 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>

ParameterAvailable options
intervals1h, 3h, 6h, 12h, 24h
unitsmm

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

Relative Humidity example



🌬 Wind Parameters

Instantaneous Wind Speed

Gives the instantaneous wind speed at the indicated level.

wind_speed_<level>:<unit>

ParameterAvailable options
altitude levels2m - 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 unitsms, 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

Relative Humidity example

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

ParameterAvailable options
altitude levels2m - 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>
ParameterAvailable options
altitude levels2m - 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 unitsms, 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.

ParameterAvailable options
altitude levels2m - 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 unitsPas, 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>

ParameterAvailable options
levels2m - 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)
measuresmax, mean, min
Intervals1h, 3h, 6h, 12h, 24h
speed unitsms, kmh, mph, kn, bft

Interval Wind Gusts

Gives the wind gusts over the specified interval at the indicated level:

wind_gusts_<level>_<interval>:<unit>

ParameterAvailable options
levels2m - 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)
Intervals1h, 3h, 6h, 12h, 24h
speed unitsms, 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

ParameterAvailable options
levels2m - 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)
Intervals1h, 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>

ParameterAvailable options
unitsms, 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>

ParameterAvailable options
unitsms, kn

☁️ Cloud Parameters

Amount of Cloud Cover

Gives the amount of cloud cover in percent or octas.

<level>_cloud_cover:<unit>

ParameterAvailable options
levelslow, medium, high, total, effective
unitsoctas, 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

ParameterAvailable options
levelslow, 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>

ParameterAvailable options
unitsm, 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>

ParameterAvailable options
unitsm, 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

ParameterAvailable options
intervals1h, 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

ParameterAvailable options
intervals1h, 3h, 6h, 12h, 24h

Snow Depth

Gives the snow depth.

snow_depth:<unit>

ParameterAvailable options
unitsm, cm, mm

Snow Water Equivalent

Gives the snow height.

snow_water_equivalent:<unit>

ParameterAvailable options
unitsm, 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
ParameterAvailable options
depths-5cm, -15cm, -50cm, -150cm
Depth IdentifierSoil Layer
-5cm0 - 7 cm
-15cm7 - 28 cm
-50cm28 - 100 cm
-150cm100 - 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

SMI example

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
ParameterAvailable 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 TypeDescription
0Ocean/Lake
1Coarse
2Medium
3Medium Fine
4Fine
5Very Fine
6Organic
7Tropical 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>
ParameterAvailable options
depths-5cm, -15cm, -50cm, -150cm
unitsC, 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>

ParameterAvailable options
typeglobal, direct, diffuse, clear_sky
intervals5min, 10min, 15min, 20min, 30min, 1h, 3h, 6h, 12h, 24h
unitsWs, 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

ParameterAvailable options
intervals1h, 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

ParameterAvailable options
intervals1h, 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

ParameterAvailable options
intervals1h, 2h, 3h, 6h, 12h, 24h
WarningDescriptionLimits
0No frostTemperature > 0°C
1FrostTemperature from -9 °C to -1°C
2Severe FrostTemperature < -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

ParameterAvailable options
intervals1h, 2h, 3h, 6h, 12h, 24h
WarningDescriptionLimits for 1hLimits for 6h
0No severe rainfall< 15mm< 20mm
1Heavy Rainfall15mm to 25mm20 mm to 35mm
2Severe Heavy Rainfall25mm to 40mm35 mm to 60mm
3Extreme 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

ParameterAvailable options
intervals12h, 24h, 48h, 72h
WarningDescriptionLimits for 12hLimits for 24hLimits for 48hLimits for 72h
0No incessant rainfall< 25mm< 30mm< 40mm< 60mm
1Incessant Rainfall25mm to 40mm30mm to 50mm40mm to 60mm60mm to 90mm
2Severe Incessant Rainfall40mm to 70mm50mm to 80mm60mm to 90mm90mm to 120mm
3Extreme 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

ParameterAvailable options
intervals1h, 2h, 3h, 6h, 12h, 24h, 48h
WarningDescriptionLimits for 1hLimits for 6hLimits for 12hLimits for 24hLimits for 48h
0No severe snowfall< 1cm
1Snowfall< 1cm< 5cm< 10cm< 15cm< 20cm
2Snowfallbelow 800m: 1cm to 2cmabove 800m: 1cm to 4cmbelow 800m: 5cm to 10cmabove 800m: 5cm to 20cmbelow 800m: 10cm to 15cmabove 800m: 10cm to 30cmbelow 800m: 15cm to 30cmabove 800m: 15cm to 40cm20cm to 50cm
3Heavy Snowfallbelow 800m: 2cm to 4cmabove 800m: 4cm to 6cmbelow 800m: 10cm to 20cmabove 800m: 20cm to 30cmbelow 800m: 15cm to 25cmabove 800m: 30cm to 50cmbelow 800m: 30cm to 40cmabove 800m: 40cm to 60cm50cm to 70cm
4Extreme Heavy Snowfallbelow 800m: > 4cmabove 800m: > 6cmbelow 800m: > 20cmabove 800m: > 30cmbelow 800m: > 25cmabove 800m: > 50cmbelow 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

ParameterAvailable options
intervals1h, 2h, 3h, 6h, 12h, 24h
WarningDescriptionLimits
0No severe wind conditions< 50km/h
1Wind Gusts50km/h to 64km/h
2Squall65km/h to 89km/h
3Severe Squall90km/h to 104km/h
4Violent squall105km/h to 119km/h
5Gale-Force Winds120km/h to 139km/h
6Extreme Gale-Force Winds> 140km/h

Thunderstorm Warning

This parameter indicates if any thunderstorms will occur in a given time interval.

tstorm_warning_<interval>:idx

ParameterAvailable options
intervals1h, 2h, 3h, 6h, 12h, 24h
WarningDescriptionCriteria
0No thunderstorms
1ThunderstormOccurrence of electric discharge
2Heavy thunderstormOccurrence of electric discharge in combination with strong gale, heavy rain or hail
3Severe thunderstormOccurrence of electric discharge in combination with strong gale, heavy rain or hail where at least on accompanying feature has warning level
4Severe thunderstorm with extreme squalls and heavy rainfallOccurrence 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:

  1. 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

  1. 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

  1. 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

  1. 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
  1. 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

  1. 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

  1. 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

  1. 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

  1. Frost Days: This parameter returns the number of frost days (days on which some frost occurred) since 1st of January.

frost_days:d

  1. 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:

  1. 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

  1. 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

  1. 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:

Comparison CM

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

ParameterDescription
t_-150cm:Ctemperature at -150cm [C]
t_-150cm:Ftemperature at -150cm [F]
t_-150cm:Ktemperature at -150cm [K]
t_-15cm:Ctemperature at -15cm [C]
t_-15cm:Ftemperature at -15cm [F]
t_-15cm:Ktemperature at -15cm [K]
t_-50cm:Ctemperature at -50cm [C]
t_-50cm:Ftemperature at -50cm [F]
t_-50cm:Ktemperature at -50cm [K]
t_-5cm:Ctemperature at -5cm [C]
t_-5cm:Ftemperature at -5cm [F]
t_-5cm:Ktemperature at -5cm [K]
t_000m:CTemperature at 0 up to 20000 m height [C]
t_000m:FTemperature at 0 up to 20000 m height [F]
t_000m:KTemperature at 0 up to 20000 m height [K]
t_0m:Ctemperature at 0m [C]
t_0m:Ftemperature at 0m [F]
t_0m:Ktemperature at 0m [K]
t_1000hPa:Ctemperature at 1000 hPa [C]
t_1000hPa:Ftemperature at 1000 hPa [F]
t_1000hPa:Ktemperature at 1000 hPa [K]
t_10hPa:Ctemperature at 10hPa [C]
t_10hPa:Ftemperature at 10hPa [F]
t_10hPa:Ktemperature at 10hPa [K]
t_200hPa:Ctemperature at 200hPa [C]
t_200hPa:Ftemperature at 200hPa [F]
t_200hPa:Ktemperature at 200hPa [K]
t_2m:Ctemperature at 2m [C]
t_2m:Ftemperature at 2m [F]
t_2m:Ktemperature at 2m [K]
t_2m_10d_efi:idx2 metre temperature index, anomaly likelihood (EFI) over 10 days range
t_2m_10d_sot:idx2 metre temperature index, potential extremity (SOT) over 10 days range
t_2m_10d_sot_q10:idx2 metre temperature index, potential extremity (SOT, lower tail) over 10 days range
t_2m_10y_mean:Ctemperature at 2m - 10 year average [C]
t_2m_10y_mean:Ftemperature at 2m - 10 year average [F]
t_2m_10y_mean:Ktemperature at 2m - 10 year average [K]
t_2m_1d_efi:idx2 metre temperature index, anomaly likelihood (EFI) over 1 day range
t_2m_1d_sot:idx2 metre temperature index, potential extremity (SOT) over 1 day range
t_2m_1d_sot_q10:idx2 metre temperature index, potential extremity (SOT, lower tail) over 1 day range
t_2m_3d_efi:idx2 metre temperature index, anomaly likelihood (EFI) over 3 days range
t_2m_3d_sot:idx2 metre temperature index, potential extremity (SOT) over 3 days range
t_2m_3d_sot_q10:idx2 metre temperature index, potential extremity (SOT, lower tail) over 3 days range
t_2m_5d_efi:idx2 metre temperature index, anomaly likelihood (EFI) over 5 days range
t_2m_5d_sot:idx2 metre temperature index, potential extremity (SOT) over 5 days range
t_2m_5d_sot_q10:idx2 metre temperature index, potential extremity (SOT, lower tail) over 5 days range
t_2m_6w_efi:idx2 metre temperature index, weekly mean, anomaly likelihood (EFI) anomaly likelihood (EFI) for 6 weeks horizon
t_2m_6w_sot:idx2 metre temperature index, weekly mean, potential extremity (SOT) for 6 weeks horizon
t_2m_6w_sot_q10:idx2 metre temperature index, weekly mean, potential extremity (SOT, lower tail) for 6 weeks horizon
t_2m_max_1d_efi:idxMaximum temperature at 2 metres index, anomaly likelihood (EFI) over 1 day range
t_2m_max_1d_sot:idxMaximum temperature at 2 metres index, potential extremity (SOT) over 1 day range
t_2m_max_1d_sot_q10:idxMaximum temperature at 2 metres index
t_2m_min_1d_efi:idxMinimum temperature at 2 metres index, anomaly likelihood (EFI) over 1 day range
t_2m_min_1d_sot:idxMinimum temperature at 2 metres index, potential extremity (SOT) over 1 day range
t_2m_min_1d_sot_q10:idxMinimum temperature at 2 metres index
t_300hPa:Ctemperature at 300 hPa [C]
t_300hPa:Ftemperature at 300 hPa [F]
t_300hPa:Ktemperature at 300 hPa [K]
t_350hPa:Ctemperature at 350 hPa [C]
t_350hPa:Ftemperature at 350 hPa [F]
t_350hPa:Ktemperature at 350 hPa [K]
t_400hPa:Ctemperature at 400 hPa [C]
t_400hPa:Ftemperature at 400 hPa [F]
t_400hPa:Ktemperature at 400 hPa [K]
t_450hPa:Ctemperature at 450 hPa [C]
t_450hPa:Ftemperature at 450 hPa [F]
t_450hPa:Ktemperature at 450 hPa [K]
t_500hPa:Ctemperature at 500 hPa [C]
t_500hPa:Ftemperature at 500 hPa [F]
t_500hPa:Ktemperature at 500 hPa [K]
t_50hPa:Ctemperature at 50 hPa [C]
t_50hPa:Ftemperature at 50 hPa [F]
t_50hPa:Ktemperature at 50 hPa [K]
t_550hPa:Ctemperature at 550 hPa [C]
t_550hPa:Ftemperature at 550 hPa [F]
t_550hPa:Ktemperature at 550 hPa [K]
t_600hPa:Ctemperature at 600 hPa [C]
t_600hPa:Ftemperature at 600 hPa [F]
t_600hPa:Ktemperature at 600 hPa [K]
t_650hPa:Ctemperature at 650 hPa [C]
t_650hPa:Ftemperature at 650 hPa [F]
t_650hPa:Ktemperature at 650 hPa [K]
t_700hPa:Ctemperature at 700 hPa [C]
t_700hPa:Ftemperature at 700 hPa [F]
t_700hPa:Ktemperature at 700 hPa [K]
t_750hPa:Ctemperature at 750 hPa [C]
t_750hPa:Ftemperature at 750 hPa [F]
t_750hPa:Ktemperature at 750 hPa [K]
t_775hPa:Ctemperature at 775 hPa [C]
t_775hPa:Ftemperature at 775 hPa [F]
t_775hPa:Ktemperature at 775 hPa [K]
t_800hPa:Ctemperature at 800 hPa [C]
t_800hPa:Ftemperature at 800 hPa [F]
t_800hPa:Ktemperature at 800 hPa [K]
t_825hPa:Ctemperature at 800 hPa [C]
t_825hPa:Ftemperature at 825 hPa [F]
t_825hPa:Ftemperature at 800 hPa [F]
t_825hPa:Ktemperature at 825 hPa [K]
t_825hPa:Ktemperature at 800 hPa [K]
t_850hPa:Ctemperature at 850 hPa [C]
t_850hPa:Ftemperature at 850 hPa [F]
t_850hPa:Ktemperature at 850 hPa [K]
t_875hPa:Ctemperature at 875 hPa [C]
t_875hPa:Ftemperature at 875 hPa [F]
t_875hPa:Ktemperature at 875 hPa [K]
t_900hPa:Ctemperature at 900 hPa [C]
t_900hPa:Ftemperature at 900 hPa [F]
t_900hPa:Ktemperature at 900 hPa [K]
t_925hPa:Ctemperature at 925 hPa [C]
t_925hPa:Ftemperature at 925 hPa [F]
t_925hPa:Ktemperature at 925 hPa [K]
t_950hPa:Ctemperature at 950 hPa [C]
t_950hPa:Ftemperature at 950 hPa [F]
t_950hPa:Ktemperature at 950 hPa [K]
t_975hPa:Ctemperature at 975 hPa [C]
t_975hPa:Ftemperature at 975 hPa [F]
t_975hPa:Ktemperature at 975 hPa [K]
t_apparent:Ctemperature perceived by humans [C]
t_apparent:Ftemperature perceived by humans [F]
t_apparent:Ktemperature perceived by humans [K]
t_cloud_top:Ctemperature at cloud top [C]
t_cloud_top:Ktemperature at cloud top [K]
t_lake:CLake temperature [C] (for lakes in Switzerland, Austria and Germany)
t_lake:KLake temperature [K] (for lakes in Switzerland, Austria and Germany)
tmax-150cm_12h:Cmaximum temperature at -150cm in the previous 12h [C]
tmax-150cm_12h:Fmaximum temperature at -150cm in the previous 12h [F]
tmax-150cm_12h:Kmaximum temperature at -150cm in the previous 12h [K]
t_max_000m_12h:Cmaximum temperature at any of the available heights in m in the previous 12h [C]
t_max_000m_12h:Fmaximum temperature at any of the available heights in m in the previous 12h [F]
t_max_000m_12h:Kmaximum temperature at any of the available heights in m in the previous 12h [K]
t_max_000m_1h:Cmaximum temperature at any of the available heights in m in the previous 1h [C]
t_max_000m_1h:Fmaximum temperature at any of the available heights in m in the previous 1h [F]
t_max_000m_1h:Kmaximum temperature at any of the available heights in m in the previous 1h [K]
t_max_000m_24h:Cmaximum temperature at any of the available heights in m in the previous 24h [C]
t_max_000m_24h:Fmaximum temperature at any of the available heights in m in the previous 24h [F]
t_max_000m_24h:Kmaximum temperature at any of the available heights in m in the previous 24h [K]
t_max_000m_3h:Cmaximum temperature at any of the available heights in m in the previous 3h [C]
t_max_000m_3h:Fmaximum temperature at any of the available heights in m in the previous 3h [F]
t_max_000m_3h:Kmaximum temperature at any of the available heights in m in the previous 3h [K]
t_max_000m_6h:Cmaximum temperature at any of the available heights in m in the previous 6h [C]
t_max_000m_6h:Fmaximum temperature at any of the available heights in m in the previous 6h [F]
t_max_000m_6h:Kmaximum temperature at any of the available heights in m in the previous 6h [K]
t_mean_000m_12h:Cmean temperature at any of the available heights in m for the previous 12h [C]
t_mean_000m_12h:Fmean temperature at any of the available heights in m for the previous 12h [F]
t_mean_000m_12h:Kmean temperature at any of the available heights in m for the previous 12h [K]
t_mean_000m_1h:Cmean temperature at any of the available heights in m for the previous 1h [C]
t_mean_000m_1h:Fmean temperature at any of the available heights in m for the previous 1h [F]
t_mean_000m_1h:Kmean temperature at any of the available heights in m for the previous 1h [K]
t_mean_000m_24h:Cmean temperature at any of the available heights in m for the previous 24h [C]
t_mean_000m_24h:Fmean temperature at any of the available heights in m for the previous 24h [F]
t_mean_000m_24h:Kmean temperature at any of the available heights in m for the previous 24h [K]
t_mean_000m_3h:Cmean temperature at any of the available heights in m for the previous 3h [C]
t_mean_000m_3h:Fmean temperature at any of the available heights in m for the previous 3h [F]
t_mean_000m_3h:Kmean temperature at any of the available heights in m for the previous 3h [K]
t_mean_000m_6h:Cmean temperature at any of the available heights in m for the previous 6h [C]
t_mean_000m_6h:Fmean temperature at any of the available heights in m for the previous 6h [F]
t_mean_000m_6h:Kmean temperature at any of the available heights in m for the previous 6h [K]
t_min_0m_12h:Cminimum temperature at any of the available heights in m in the previous 12h [C]
t_min_0m_12h:Fminimum temperature at any of the available heights in m in the previous 12h [F]
t_min_0m_12h:Kminimum temperature at any of the available heights in m in the previous 12h [K]
t_min_0m_1h:Cminimum temperature at any of the available heights in m in the previous 1h [C]
t_min_0m_1h:Fminimum temperature at any of the available heights in m in the previous 1h [F]
t_min_0m_1h:Kminimum temperature at any of the available heights in m in the previous 1h [K]
t_min_0m_24h:Cminimum temperature at any of the available heights in m in the previous 24h [C]
t_min_0m_24h:Fminimum temperature at any of the available heights in m in the previous 24h [F]
t_min_0m_24h:Kminimum temperature at any of the available heights in m in the previous 24h [K]
t_min_0m_3h:Cminimum temperature at any of the available heights in m in the previous 3h [C]
t_min_0m_3h:Fminimum temperature at any of the available heights in m in the previous 3h [F]
t_min_0m_3h:Kminimum temperature at any of the available heights in m in the previous 3h [K]
t_min_0m_6h:Cminimum temperature at any of the available heights in m in the previous 6h [C]
t_min_0m_6h:Fminimum temperature at any of the available heights in m in the previous 6h [F]
t_min_0m_6h:Kminimum temperature at any of the available heights in m in the previous 6h [K]

Humidity parameters

ParameterDescription
absolute_humidity_2m:gm3abs. humidity at level 2m [g/m3]
relative_humidity_1000hPa:prelative humidity at 1000 hPa [%]
relative_humidity_100m:prelative humidity at 100m [%]
relative_humidity_20m:prelative humidity at 20m [%]
relative_humidity_2m:prelative humidity at 2m [%]
relative_humidity_2m_10y_mean:prelative humidity at 2m - 10 year average [%]
relative_humidity_300hPa:prelative humidity at 300 hPa [%]
relative_humidity_350hPa:prelative humidity at 350 hPa [%]
relative_humidity_400hPa:prelative humidity at 400 hPa [%]
relative_humidity_450hPa:prelative humidity at 450 hPa [%]
relative_humidity_500hPa:prelative humidity at 500 hPa [%]
relative_humidity_550hPa:prelative humidity at 550 hPa [%]
relative_humidity_600hPa:prelative humidity at 600 hPa [%]
relative_humidity_650hPa:prelative humidity at 650 hPa [%]
relative_humidity_700hPa:prelative humidity at 700 hPa [%]
relative_humidity_750hPa:prelative humidity at 750 hPa [%]
relative_humidity_775hPa:prelative humidity at 775 hPa [%]
relative_humidity_800hPa:prelative humidity at 800 hPa [%]
relative_humidity_825hPa:prelative humidity at 825 hPa [%]
relative_humidity_850hPa:prelative humidity at 850 hPa [%]
relative_humidity_875hPa:prelative humidity at 875 hPa [%]
relative_humidity_900hPa:prelative humidity at 900 hPa [%]
relative_humidity_925hPa:prelative humidity at 925 hPa [%]
relative_humidity_950hPa:prelative humidity at 950 hPa [%]
relative_humidity_975hPa:prelative humidity at 975 hPa [%]

Evaporation parameters

ParameterDescription
evaporation_12h:mmevaporation of previous 12h [mm]
evaporation_1h:mmevaporation of previous 1h [mm]
evaporation_24h:mmevaporation of previous 24h [mm]
evaporation_3h:mmevaporation of previous 3h [mm]
evaporation_6h:mmevaporation of previous 6h [mm]

Precipitation Parameters

ParameterDescription
precip_10min:mmamount of precipitation in the previous 10min [mm]
precip_12h:mmamount of precipitation in the previous 12h [mm]
precip_12h_10y_mean:mmamount of precipitation in the previous 12h - 10 year average [mm]
precip_15min:mmamount of precipitation in the previous 15min [mm]
precip_1h:mmamount of precipitation in the previous 1h [mm]
precip_1h_10y_mean:mmamount of precipitation in the previous 1h - 10 year average [mm]
precip_24h:mmamount of precipitation in the previous 24h [mm]
precip_24h_10y_mean:mmamount of precipitation in the previous 24h - 10 year average [mm]
precip_2h_10y_mean:mmamount of precipitation in the previous 2h - 10 year average [mm]
precip_30min:mmamount of precipitation in the previous 30min [mm]
precip_3h:mmamount of precipitation in the previous 3h [mm]
precip_3h_10y_mean:mmamount of precipitation in the previous 3h - 10 year average [mm]
precip_5min:mmamount of precipitation in the previous 5min [mm]
precip_6h:mmamount of precipitation in the previous 6h [mm]
precip_6h_10y_mean:mmamount of precipitation in the previous 6h - 10 year average [mm]
precip_layer_5min:idxprecipitation type with intensities (only for RGB images)
precip_type:idxprecipitation type
precip_type_10min:idxprecipitation type during the previous 10min
precip_type_12h:idxprecipitation type during the previous 12h
precip_type_15min:idxprecipitation type during the previous 15min
precip_type_1h:idxprecipitation type during the previous 1h
precip_type_20min:idxprecipitation type during the previous 20min
precip_type_24h:idxprecipitation type during the previous 24h
precip_type_2h:idxprecipitation type during the previous 2h
precip_type_30min:idxprecipitation type during the previous 30min
precip_type_3h:idxprecipitation type during the previous 3h
precip_type_5min:idxprecipitation type during the previous 5min
precip_type_6h:idxprecipitation type during the previous 6h
prob_precip_12h:pprobability of precipitation in the previous 12h [%]
prob_precip_1h:pprobability of precipitation in the previous 1h [%]
prob_precip_24h:pprobability of precipitation in the previous 24h [%]
prob_precip_3h:pprobability of precipitation in the previous 3h [%]
prob_precip_6h:pprobability of precipitation in the previous 6h [%]
hail_10min:cmmax. diameter of hail in the previous 10min [cm]
hail_12h:cmmax. diameter of hail in the previous 12h [cm]
hail_1h:cmmax. diameter of hail in the previous 1h [cm]
hail_20min:cmmax. diameter of hail in the previous 20min [cm]
hail_24h:cmmax. diameter of hail in the previous 24h [cm]
hail_2h:cmmax. diameter of hail in the previous 2h [cm]
hail_30min:cmmax. diameter of hail in the previous 30min [cm]
hail_3h:cmmax. diameter of hail in the previous 3h [cm]
hail_6h:cmmax. diameter of hail in the previous 6h [cm]
freezing_rain_1h:idxIndex for freezing rain
super_cooled_liquid_water:kgm2super cooled liquid water (total column) [kg/m2]
super_cooled_liquid_water_layer_bottom:msuper cooled liquid water layer bottom [m]
super_cooled_liquid_water_layer_top:msuper cooled liquid water layer top [m]
is_rain_1h:idxwas there rain within the last hour (0/1)
is_rain_30min:idxwas there rain within the last 30 minutes (0/1)
is_snow_1h:idxwas there snow fall within the last hour (0/1)
is_snow_30min:idxwas there snow fall within the last 30 minutes (0/1)

Wind Parameters

ParameterDescription
wind_speed_000m:bftwind speed in any arbitrary height up to 20000 m [bft]
:----:----
wind_speed_000m:kmhwind speed in any arbitrary height up to 20000 m [km/h]
wind_speed_000m:knwind speed in any arbitrary height up to 20000 m [kn]
wind_speed_000m:mswind speed in any arbitrary height up to 20000 m [m/s]
wind_speed_1000hPa:bftwind speed in 1000 hPa [bft]
wind_speed_1000hPa:kmhwind speed in 1000 hPa [km/h]
wind_speed_1000hPa:knwind speed in 1000 hPa [kn]
wind_speed_1000hPa:mswind speed in 1000 hPa [m/s]
wind_speed_100m:bftwind speed in 100 m [bft]
wind_speed_100m:kmhwind speed in 100 m [km/h]
wind_speed_100m:knwind speed in 100 m [kn]
wind_speed_100m:mswind speed in 100 m [m/s]
wind_speed_10hPa:bftwind speed in 10 hPa [bft]
wind_speed_10hPa:kmhwind speed in 10 hPa [km/h]
wind_speed_10hPa:knwind speed in 10 hPa [kn]
wind_speed_10hPa:mswind speed in 10 hPa [m/s]
wind_speed_10m:bftwind speed in 10 m [bft]
wind_speed_10m:kmhwind speed in 10 m [km/h]
wind_speed_10m:knwind speed in 10 m [kn]
wind_speed_10m:mswind speed in 10 m [m/s]
wind_speed_10m_10d_efi:idx10 metre wind speed index, anomaly likelihood (EFI) over 10 days range
wind_speed_10m_10d_sot:idx10 metre wind speed index, potential extremity (SOT) over 10 days range
wind_speed_10m_10y_mean:kmhwind speed in 10 m - 10 year average [km/h]
wind_speed_10m_10y_mean:mswind speed in 10 m - 10 year average [m/hs]
wind_speed_10m_1d_efi:idx10 metre wind speed index, anomaly likelihood (EFI) over 1 day range
wind_speed_10m_1d_sot:idx10 metre wind speed index, potential extremity (SOT) over 1 day range
wind_speed_10m_3d_efi:idx10 metre wind speed index, anomaly likelihood (EFI) over 3 days range
wind_speed_10m_3d_sot:idx10 metre wind speed index, potential extremity (SOT) over 3 days range
wind_speed_10m_5d_efi:idx10 metre wind speed index, anomaly likelihood (EFI) over 5 days range
wind_speed_10m_5d_sot:idx10 metre wind speed index, potential extremity (SOT) over 5 days range
wind_speed_200hPa:bftwind speed in 200 hPa [bft]
wind_speed_200hPa:kmhwind speed in 200 hPa [km/h]
wind_speed_200hPa:knwind speed in 200 hPa [kn]
wind_speed_200hPa:mswind speed in 200 hPa [m/s]
wind_speed_300hPa:bftwind speed in 300 hPa [bft]
wind_speed_300hPa:kmhwind speed in 300 hPa [km/h]
wind_speed_300hPa:knwind speed in 300 hPa [kn]
wind_speed_300hPa:mswind speed in 300 hPa [m/s]
wind_speed_350hPa:bftwind speed in 350 hPa [bft]
wind_speed_350hPa:kmhwind speed in 350 hPa [km/h]
wind_speed_350hPa:knwind speed in 350 hPa [kn]
wind_speed_350hPa:mswind speed in 350 hPa [m/s]
wind_speed_400hPa:bftwind speed in 400 hPa [bft]
wind_speed_400hPa:kmhwind speed in 400 hPa [km/h]
wind_speed_400hPa:knwind speed in 400 hPa [kn]
wind_speed_400hPa:mswind speed in 400 hPa [m/s]
wind_speed_450hPa:bftwind speed in 450 hPa [bft]
wind_speed_450hPa:kmhwind speed in 450 hPa [km/h]
wind_speed_450hPa:knwind speed in 450 hPa [kn]
wind_speed_450hPa:mswind speed in 450 hPa [m/s]
wind_speed_500hPa:bftwind speed in 500 hPa [bft]
wind_speed_500hPa:kmhwind speed in 500 hPa [km/h]
wind_speed_500hPa:knwind speed in 500 hPa [kn]
wind_speed_500hPa:mswind speed in 500 hPa [m/s]
wind_speed_50hPa:bftwind speed in 50 hPa [bft]
wind_speed_50hPa:kmhwind speed in 50 hPa [km/h]
wind_speed_50hPa:knwind speed in 50 hPa [kn]
wind_speed_50hPa:mswind speed in 50 hPa [m/s]
wind_speed_550hPa:bftwind speed in 550 hPa [bft]
wind_speed_550hPa:kmhwind speed in 550 hPa [km/h]
wind_speed_550hPa:knwind speed in 550 hPa [kn]
wind_speed_550hPa:mswind speed in 550 hPa [m/s]
wind_speed_600hPa:bftwind speed in 600 hPa [bft]
wind_speed_600hPa:kmhwind speed in 600 hPa [km/h]
wind_speed_600hPa:knwind speed in 600 hPa [kn]
wind_speed_600hPa:mswind speed in 600 hPa [m/s]
wind_speed_650hPa:bftwind speed in 650 hPa [bft]
wind_speed_650hPa:kmhwind speed in 650 hPa [km/h]
wind_speed_650hPa:knwind speed in 650 hPa [kn]
wind_speed_650hPa:mswind speed in 650 hPa [m/s]
wind_speed_700hPa:bftwind speed in 700 hPa [bft]
wind_speed_700hPa:kmhwind speed in 700 hPa [km/h]
wind_speed_700hPa:knwind speed in 700 hPa [kn]
wind_speed_700hPa:mswind speed in 700 hPa [m/s]
wind_speed_750hPa:bftwind speed in 750 hPa [bft]
wind_speed_750hPa:kmhwind speed in 750 hPa [km/h]
wind_speed_750hPa:knwind speed in 750 hPa [kn]
wind_speed_750hPa:mswind speed in 750 hPa [m/s]
wind_speed_775hPa:bftwind speed in 775 hPa [bft]
wind_speed_775hPa:kmhwind speed in 775 hPa [km/h]
wind_speed_775hPa:knwind speed in 775 hPa [kn]
wind_speed_775hPa:mswind speed in 775 hPa [m/s]
wind_speed_800hPa:bftwind speed in 800 hPa [bft]
wind_speed_800hPa:kmhwind speed in 800 hPa [km/h]
wind_speed_800hPa:knwind speed in 800 hPa [kn]
wind_speed_800hPa:mswind speed in 800 hPa [m/s]
wind_speed_825hPa:bftwind speed in 825 hPa [bft]
wind_speed_825hPa:kmhwind speed in 825 hPa [km/h]
wind_speed_825hPa:knwind speed in 825 hPa [kn]
wind_speed_825hPa:mswind speed in 825 hPa [m/s]
wind_speed_850hPa:bftwind speed in 850 hPa [bft]
wind_speed_850hPa:kmhwind speed in 850 hPa [km/h]
wind_speed_850hPa:knwind speed in 850 hPa [kn]
wind_speed_850hPa:mswind speed in 850 hPa [m/s]
wind_speed_875hPa:bftwind speed in 875 hPa [bft]
wind_speed_875hPa:kmhwind speed in 875 hPa [km/h]
wind_speed_875hPa:knwind speed in 875 hPa [kn]
wind_speed_875hPa:mswind speed in 875 hPa [m/s]
wind_speed_900hPa:bftwind speed in 900 hPa [bft]
wind_speed_900hPa:kmhwind speed in 900 hPa [km/h]
wind_speed_900hPa:knwind speed in 900 hPa [kn]
wind_speed_900hPa:mswind speed in 900 hPa [m/s]
wind_speed_925hPa:bftwind speed in 925 hPa [bft]
wind_speed_925hPa:kmhwind speed in 925 hPa [km/h]
wind_speed_925hPa:knwind speed in 925 hPa [kn]
wind_speed_925hPa:mswind speed in 925 hPa [m/s]
wind_speed_950hPa:bftwind speed in 950 hPa [bft]
wind_speed_950hPa:kmhwind speed in 950 hPa [km/h]
wind_speed_950hPa:knwind speed in 950 hPa [kn]
wind_speed_950hPa:mswind speed in 950 hPa [m/s]
wind_speed_975hPa:bftwind speed in 975 hPa [bft]
wind_speed_975hPa:kmhwind speed in 975 hPa [km/h]
wind_speed_975hPa:knwind speed in 975 hPa [kn]
wind_speed_975hPa:mswind speed in 975 hPa [m/s]
wind_speed_mean_000m_12h:kmhmean wind speed at any altitude from 0 to 10000 m height for the previous 12h [km/h]
wind_speed_mean_000m_12h:msmean wind speed at any altitude from 0 to 10000 m height for the previous 12h [m/s]
wind_speed_mean_000m_1h:kmhmean wind speed at any altitude from 0 to 10000 m height for the previous 1h [km/h]
wind_speed_mean_000m_1h:msmean wind speed at any altitude from 0 to 10000 m height for the previous 1h [m/s]
wind_speed_mean_000m_24h:kmhmean wind speed at any altitude from 0 to 10000 m height for the previous 24h [km/h]
wind_speed_mean_000m_24h:msmean wind speed at any altitude from 0 to 10000 m height for the previous 24h [m/s]
wind_speed_mean_000m_2h:kmhmean wind speed at any altitude from 0 to 10000 m height for the previous 2h [km/h]
wind_speed_mean_000m_2h:msmean wind speed at any altitude from 0 to 10000 m height for the previous 2h [m/s]
wind_speed_mean_000m_3h:kmhmean wind speed at any altitude from 0 to 10000 m height for the previous 3h [km/h]
wind_speed_mean_000m_3h:msmean wind speed at any altitude from 0 to 10000 m height for the previous 3h [m/s]
wind_speed_mean_000m_6h:kmhmean wind speed at any altitude from 0 to 10000 m height for the previous 6h [km/h]
wind_speed_mean_000m_6h:msmean wind speed at any altitude from 0 to 10000 m height for the previous 6h [m/s]
wind_speed_u_000m:kmhwind speed vector u at an arbitrary height up to 20000 m [km/h]
wind_speed_u_000m:mswind speed vector u at an arbitrary height up to 20000 m [m/s]
wind_speed_v_000m:kmhwind speed vector v at an arbitrary height up to 20000 m [km/h]
wind_speed_v_000m:mswind speed vector v at an arbitrary height up to 20000 m [m/s]
wind_speed_w_70hPa:Pasvertical wind speed on model level 300hPa [Pa/s]
wind_speed_w_100hPa:Pasvertical wind speed on model level 300hPa [Pa/s]
wind_speed_w_150hPa:Pasvertical wind speed on model level 300hPa [Pa/s]
wind_speed_w_200hPa:Pasvertical wind speed on model level 300hPa [Pa/s]
wind_speed_w_250hPa:Pasvertical wind speed on model level 300hPa [Pa/s]
wind_speed_w_300hPa:Pasvertical wind speed on model level 300hPa [Pa/s]
wind_speed_w_500hPa:Pasvertical wind speed on model level 500hPa [Pa/s]
wind_speed_w_700hPa:Pasvertical wind speed on model level 700hPa [Pa/s]
wind_speed_w_800hPa:Pasvertical wind speed on model level 800hPa [Pa/s]
wind_speed_w_850hPa:Pasvertical wind speed on model level 850hPa [Pa/s]
wind_speed_w_900hPa:Pasvertical wind speed on model level 950hPa [Pa/s]
wind_speed_w_925hPa:Pasvertical wind speed on model level 925hPa [Pa/s]
wind_speed_w_950hPa:Pasvertical wind speed on model level 950hPa [Pa/s]
wind_speed_w_1000hPa:Pasvertical wind speed on model level 1000hPa [Pa/s]
wind_speed_w_70hPa:msvertical wind speed on model level 300hPa [m/s]
wind_speed_w_100hPa:msvertical wind speed on model level 300hPa [m/s]
wind_speed_w_150hPa:msvertical wind speed on model level 300hPa [m/s]
wind_speed_w_200hPa:msvertical wind speed on model level 300hPa [m/s]
wind_speed_w_250hPa:msvertical wind speed on model level 300hPa [m/s]
wind_speed_w_300hPa:msvertical wind speed on model level 300hPa [m/s]
wind_speed_w_500hPa:msvertical wind speed on model level 500hPa [m/s]
wind_speed_w_700hPa:msvertical wind speed on model level 700hPa [m/s]
wind_speed_w_800hPa:msvertical wind speed on model level 800hPa [m/s]
wind_speed_w_850hPa:msvertical wind speed on model level 850hPa [m/s]
wind_speed_w_900hPa:Pasvertical wind speed on model level 950hPa [m/s]
wind_speed_w_925hPa:msvertical wind speed on model level 925hPa [m/s]
wind_speed_w_950hPa:msvertical wind speed on model level 950hPa [m/s]
wind_speed_w_1000hPa:msvertical wind speed on model level 1000hPa [m/s]
wind_dir_000m:dwind direction of any arbitrary height up to 20000 m [d]
wind_dir_1000hPa:dwind direction in 1000 hPa [d]
wind_dir_100m:dwind direction in 100 m [d]
wind_dir_10hPa:dwind direction in 10 hPa [d]
wind_dir_10m:dwind direction in 10 m [d]
wind_dir_120m:dwind direction in 120 m [d]
wind_dir_200hPa:dwind direction in 200 hPa [d]
wind_dir_20m:dwind direction in 20 m [d]
wind_dir_300hPa:dwind direction in 300 hPa [d]
wind_dir_350hPa:dwind direction in 350 hPa [d]
wind_dir_400hPa:dwind direction in 400 hPa [d]
wind_dir_40m:dwind direction in 40 m [d]
wind_dir_450hPa:dwind direction in 450 hPa [d]
wind_dir_500hPa:dwind direction in 500 hPa [d]
wind_dir_50hPa:dwind direction in 50 hPa [d]
wind_dir_50m:dwind direction in 50 m [d]
wind_dir_550hPa:dwind direction in 550 hPa [d]
wind_dir_600hPa:dwind direction in 600 hPa [d]
wind_dir_650hPa:dwind direction in 650 hPa [d]
wind_dir_700hPa:dwind direction in 700 hPa [d]
wind_dir_750hPa:dwind direction in 750 hPa [d]
wind_dir_775hPa:dwind direction in 775 hPa [d]
wind_dir_800hPa:dwind direction in 800 hPa [d]
wind_dir_80m:dwind direction in 80 m [d]
wind_dir_825hPa:dwind direction in 825 hPa [d]
wind_dir_850hPa:dwind direction in 850 hPa [d]
wind_dir_875hPa:dwind direction in 875 hPa [d]
wind_dir_900hPa:dwind direction in 900 hPa [d]
wind_dir_925hPa:dwind direction in 925 hPa [d]
wind_dir_950hPa:dwind direction in 950 hPa [d]
wind_dir_975hPa:dwind direction in 975 hPa [d]
wind_dir_mean_100m_12h:dmean wind direction at 100 m for the previous 12h [d]
wind_dir_mean_100m_1h:dmean wind direction at 100 m for the previous 1h [d]
wind_dir_mean_100m_24h:dmean wind direction at 100 m for the previous 24h [d]
wind_dir_mean_100m_2h:dmean wind direction at 100 m for the previous 2h [d]
wind_dir_mean_100m_3h:dmean wind direction at 100 m for the previous 3h [d]
wind_dir_mean_100m_6h:dmean wind direction at 100 m for the previous 6h [d]
wind_dir_mean_10m_12h:dmean wind direction at 10 m for the previous 12h [d]
wind_dir_mean_10m_1h:dmean wind direction at 10 m for the previous 1h [d]
wind_dir_mean_10m_24h:dmean wind direction at 10 m for the previous 24h [d]
wind_dir_mean_10m_2h:dmean wind direction at 10 m for the previous 2h [d]
wind_dir_mean_10m_3h:dmean wind direction at 10 m for the previous 3h [d]
wind_dir_mean_10m_6h:dmean wind direction at 10 m for the previous 6h [d]
wind_gusts_1000hPa_12h:bftwind gusts in 1000 hPa in the previous 12h [bft]
wind_gusts_1000hPa_12h:kmhwind gusts in 1000 hPa in the previous 12h [km/h]
wind_gusts_1000hPa_12h:knwind gusts in 1000 hPa in the previous 12h [kn]
wind_gusts_1000hPa_12h:mswind gusts in 1000 hPa in the previous 12h [m/s]
wind_gusts_1000hPa_1h:bftwind gusts in 1000 hPa in the previous 1h [bft]
wind_gusts_1000hPa_1h:kmhwind gusts in 1000 hPa in the previous 1h [km/h]
wind_gusts_1000hPa_1h:knwind gusts in 1000 hPa in the previous 1h [kn]
wind_gusts_1000hPa_1h:mswind gusts in 1000 hPa in the previous 1h [m/s]
wind_gusts_1000hPa_24h:bftwind gusts in 1000 hPa in the previous 24h [bft]
wind_gusts_1000hPa_24h:kmhwind gusts in 1000 hPa in the previous 24h [km/h]
wind_gusts_1000hPa_24h:knwind gusts in 1000 hPa in the previous 24h [kn]
wind_gusts_1000hPa_24h:mswind gusts in 1000 hPa in the previous 24h [m/s]
wind_gusts_1000hPa_2h:bftwind gusts in 1000 hPa in the previous 2h [bft]
wind_gusts_1000hPa_2h:kmhwind gusts in 1000 hPa in the previous 2h [km/h]
wind_gusts_1000hPa_2h:knwind gusts in 1000 hPa in the previous 2h [kn]
wind_gusts_1000hPa_2h:mswind gusts in 1000 hPa in the previous 2h [m/s]
wind_gusts_1000hPa_3h:bftwind gusts in 1000 hPa in the previous 3h [bft]
wind_gusts_1000hPa_3h:kmhwind gusts in 1000 hPa in the previous 3h [km/h]
wind_gusts_1000hPa_3h:knwind gusts in 1000 hPa in the previous 3h [kn]
wind_gusts_1000hPa_3h:mswind gusts in 1000 hPa in the previous 3h [m/s]
wind_gusts_1000hPa_6h:bftwind gusts in 1000 hPa in the previous 6h [bft]
wind_gusts_1000hPa_6h:kmhwind gusts in 1000 hPa in the previous 6h [km/h]
wind_gusts_1000hPa_6h:knwind gusts in 1000 hPa in the previous 6h [kn]
wind_gusts_1000hPa_6h:mswind gusts in 1000 hPa in the previous 6h [m/s]
wind_gusts_100m_12h:bftwind gusts in 100 m in the previous 12h [bft]
wind_gusts_100m_12h:kmhwind gusts in 100 m in the previous 12h [km/h]
wind_gusts_100m_12h:knwind gusts in 100 m in the previous 12h [kn]
wind_gusts_100m_12h:mswind gusts in 100 m in the previous 12h [m/s]
wind_gusts_100m_1h:bftwind gusts in 100 m in the previous 1h [bft]
wind_gusts_100m_1h:kmhwind gusts in 100 m in the previous 1h [km/h]
wind_gusts_100m_1h:knwind gusts in 100 m in the previous 1h [kn]
wind_gusts_100m_1h:mswind gusts in 100 m in the previous 1h [m/s]
wind_gusts_100m_24h:bftwind gusts in 100 m in the previous 24h [bft]
wind_gusts_100m_24h:kmhwind gusts in 100 m in the previous 24h [km/h]
wind_gusts_100m_24h:knwind gusts in 100 m in the previous 24h [kn]
wind_gusts_100m_24h:mswind gusts in 100 m in the previous 24h [m/s]
wind_gusts_100m_2h:bftwind gusts in 100 m in the previous 2h [bft]
wind_gusts_100m_2h:kmhwind gusts in 100 m in the previous 2h [km/h]
wind_gusts_100m_2h:knwind gusts in 100 m in the previous 2h [kn]
wind_gusts_100m_2h:mswind gusts in 100 m in the previous 2h [m/s]
wind_gusts_100m_3h:bftwind gusts in 100 m in the previous 3h [bft]
wind_gusts_100m_3h:kmhwind gusts in 100 m in the previous 3h [km/h]
wind_gusts_100m_3h:knwind gusts in 100 m in the previous 3h [kn]
wind_gusts_100m_3h:mswind gusts in 100 m in the previous 3h [m/s]
wind_gusts_100m_6h:bftwind gusts in 100 m in the previous 6h [bft]
wind_gusts_100m_6h:kmhwind gusts in 100 m in the previous 6h [km/h]
wind_gusts_100m_6h:knwind gusts in 100 m in the previous 6h [kn]
wind_gusts_100m_6h:mswind gusts in 100 m in the previous 6h [m/s]
wind_gusts_10hPa_12h:bftwind gusts in 10 hPa in the previous 12h [bft]
wind_gusts_10hPa_12h:kmhwind gusts in 10 hPa in the previous 12h [km/h]
wind_gusts_10hPa_12h:knwind gusts in 10 hPa in the previous 12h [kn]
wind_gusts_10hPa_12h:mswind gusts in 10 hPa in the previous 12h [m/s]
wind_gusts_10hPa_1h:bftwind gusts in 10 hPa in the previous 1h [bft]
wind_gusts_10hPa_1h:kmhwind gusts in 10 hPa in the previous 1h [km/h]
wind_gusts_10hPa_1h:knwind gusts in 10 hPa in the previous 1h [kn]
wind_gusts_10hPa_1h:mswind gusts in 10 hPa in the previous 1h [m/s]
wind_gusts_10hPa_24h:bftwind gusts in 10 hPa in the previous 24h [bft]
wind_gusts_10hPa_24h:kmhwind gusts in 10 hPa in the previous 24h [km/h]
wind_gusts_10hPa_24h:knwind gusts in 10 hPa in the previous 24h [kn]
wind_gusts_10hPa_24h:mswind gusts in 10 hPa in the previous 24h [m/s]
wind_gusts_10hPa_2h:bftwind gusts in 10 hPa in the previous 2h [bft]
wind_gusts_10hPa_2h:kmhwind gusts in 10 hPa in the previous 2h [km/h]
wind_gusts_10hPa_2h:knwind gusts in 10 hPa in the previous 2h [kn]
wind_gusts_10hPa_2h:mswind gusts in 10 hPa in the previous 2h [m/s]
wind_gusts_10hPa_3h:bftwind gusts in 10 hPa in the previous 3h [bft]
wind_gusts_10hPa_3h:kmhwind gusts in 10 hPa in the previous 3h [km/h]
wind_gusts_10hPa_3h:knwind gusts in 10 hPa in the previous 3h [kn]
wind_gusts_10hPa_3h:mswind gusts in 10 hPa in the previous 3h [m/s]
wind_gusts_10hPa_6h:bftwind gusts in 10 hPa in the previous 6h [bft]
wind_gusts_10hPa_6h:kmhwind gusts in 10 hPa in the previous 6h [km/h]
wind_gusts_10hPa_6h:knwind gusts in 10 hPa in the previous 6h [kn]
wind_gusts_10hPa_6h:mswind gusts in 10 hPa in the previous 6h [m/s]
wind_gusts_10m_12h:bftwind gusts in 10 m in the previous 12h [bft]
wind_gusts_10m_12h:kmhwind gusts in 10 m in the previous 12h [km/h]
wind_gusts_10m_12h:knwind gusts in 10 m in the previous 12h [kn]
wind_gusts_10m_12h:mswind gusts in 10 m in the previous 12h [m/s]
wind_gusts_10m_1h:bftwind gusts in 10 m in the previous 1h [bft]
wind_gusts_10m_1h:kmhwind gusts in 10 m in the previous 1h [km/h]
wind_gusts_10m_1h:knwind gusts in 10 m in the previous 1h [kn]
wind_gusts_10m_1h:mswind gusts in 10 m in the previous 1h [m/s]
wind_gusts_10m_24h:bftwind gusts in 10 m in the previous 24h [bft]
wind_gusts_10m_24h:kmhwind gusts in 10 m in the previous 24h [km/h]
wind_gusts_10m_24h:knwind gusts in 10 m in the previous 24h [kn]
wind_gusts_10m_24h:mswind gusts in 10 m in the previous 24h [m/s]
wind_gusts_10m_2h:bftwind gusts in 10 m in the previous 2h [bft]
wind_gusts_10m_2h:kmhwind gusts in 10 m in the previous 2h [km/h]
wind_gusts_10m_2h:knwind gusts in 10 m in the previous 2h [kn]
wind_gusts_10m_2h:mswind gusts in 10 m in the previous 2h [m/s]
wind_gusts_10m_3h:bftwind gusts in 10 m in the previous 3h [bft]
wind_gusts_10m_3h:kmhwind gusts in 10 m in the previous 3h [km/h]
wind_gusts_10m_3h:knwind gusts in 10 m in the previous 3h [kn]
wind_gusts_10m_3h:mswind gusts in 10 m in the previous 3h [m/s]
wind_gusts_10m_6h:bftwind gusts in 10 m in the previous 6h [bft]
wind_gusts_10m_6h:kmhwind gusts in 10 m in the previous 6h [km/h]
wind_gusts_10m_6h:knwind gusts in 10 m in the previous 6h [kn]
wind_gusts_10m_6h:mswind gusts in 10 m in the previous 6h [m/s]
wind_gusts_200hPa_12h:bftwind gusts in 200 hPa in the previous 12h [bft]
wind_gusts_200hPa_12h:kmhwind gusts in 200 hPa in the previous 12h [km/h]
wind_gusts_200hPa_12h:knwind gusts in 200 hPa in the previous 12h [kn]
wind_gusts_200hPa_12h:mswind gusts in 200 hPa in the previous 12h [m/s]
wind_gusts_200hPa_1h:bftwind gusts in 200 hPa in the previous 1h [bft]
wind_gusts_200hPa_1h:kmhwind gusts in 200 hPa in the previous 1h [km/h]
wind_gusts_200hPa_1h:knwind gusts in 200 hPa in the previous 1h [kn]
wind_gusts_200hPa_1h:mswind gusts in 200 hPa in the previous 1h [m/s]
wind_gusts_200hPa_24h:bftwind gusts in 200 hPa in the previous 24h [bft]
wind_gusts_200hPa_24h:kmhwind gusts in 200 hPa in the previous 24h [km/h]
wind_gusts_200hPa_24h:knwind gusts in 200 hPa in the previous 24h [kn]
wind_gusts_200hPa_24h:mswind gusts in 200 hPa in the previous 24h [m/s]
wind_gusts_200hPa_2h:bftwind gusts in 200 hPa in the previous 2h [bft]
wind_gusts_200hPa_2h:kmhwind gusts in 200 hPa in the previous 2h [km/h]
wind_gusts_200hPa_2h:knwind gusts in 200 hPa in the previous 2h [kn]
wind_gusts_200hPa_2h:mswind gusts in 200 hPa in the previous 2h [m/s]
wind_gusts_200hPa_3h:bftwind gusts in 200 hPa in the previous 3h [bft]
wind_gusts_200hPa_3h:kmhwind gusts in 200 hPa in the previous 3h [km/h]
wind_gusts_200hPa_3h:knwind gusts in 200 hPa in the previous 3h [kn]
wind_gusts_200hPa_3h:mswind gusts in 200 hPa in the previous 3h [m/s]
wind_gusts_200hPa_6h:bftwind gusts in 200 hPa in the previous 6h [bft]
wind_gusts_200hPa_6h:kmhwind gusts in 200 hPa in the previous 6h [km/h]
wind_gusts_200hPa_6h:knwind gusts in 200 hPa in the previous 6h [kn]
wind_gusts_200hPa_6h:mswind gusts in 200 hPa in the previous 6h [m/s]
wind_gusts_300hPa_12h:bftwind gusts in 1000 hPa in the previous 12h [bft]
wind_gusts_300hPa_12h:kmhwind gusts in 1000 hPa in the previous 12h [km/h]
wind_gusts_300hPa_12h:knwind gusts in 1000 hPa in the previous 12h [kn]
wind_gusts_300hPa_12h:mswind gusts in 1000 hPa in the previous 12h [m/s]
wind_gusts_300hPa_1h:bftwind gusts in 300 hPa in the previous 1h [bft]
wind_gusts_300hPa_1h:kmhwind gusts in 300 hPa in the previous 1h [km/h]
wind_gusts_300hPa_1h:knwind gusts in 300 hPa in the previous 1h [kn]
wind_gusts_300hPa_1h:mswind gusts in 300 hPa in the previous 1h [m/s]
wind_gusts_300hPa_24h:bftwind gusts in 300 hPa in the previous 24h [bft]
wind_gusts_300hPa_24h:kmhwind gusts in 300 hPa in the previous 24h [km/h]
wind_gusts_300hPa_24h:knwind gusts in 300 hPa in the previous 24h [kn]
wind_gusts_300hPa_24h:mswind gusts in 300 hPa in the previous 24h [m/s]
wind_gusts_300hPa_2h:bftwind gusts in 300 hPa in the previous 2h [bft]
wind_gusts_300hPa_2h:kmhwind gusts in 300 hPa in the previous 2h [km/h]
wind_gusts_300hPa_2h:knwind gusts in 300 hPa in the previous 2h [kn]
wind_gusts_300hPa_2h:mswind gusts in 300 hPa in the previous 2h [m/s]
wind_gusts_300hPa_3h:bftwind gusts in 300 hPa in the previous 3h [bft]
wind_gusts_300hPa_3h:kmhwind gusts in 300 hPa in the previous 3h [km/h]
wind_gusts_300hPa_3h:knwind gusts in 300 hPa in the previous 3h [kn]
wind_gusts_300hPa_3h:mswind gusts in 300 hPa in the previous 3h [m/s]
wind_gusts_300hPa_6h:bftwind gusts in 300 hPa in the previous 6h [bft]
wind_gusts_300hPa_6h:kmhwind gusts in 300 hPa in the previous 6h [km/h]
wind_gusts_300hPa_6h:knwind gusts in 300 hPa in the previous 6h [kn]
wind_gusts_300hPa_6h:mswind gusts in 300 hPa in the previous 6h [m/s]
wind_gusts_350hPa_12h:bftwind gusts in 350 hPa in the previous 12h [bft]
wind_gusts_350hPa_12h:kmhwind gusts in 350 hPa in the previous 12h [km/h]
wind_gusts_350hPa_12h:knwind gusts in 350 hPa in the previous 12h [kn]
wind_gusts_350hPa_12h:mswind gusts in 350 hPa in the previous 12h [m/s]
wind_gusts_350hPa_1h:bftwind gusts in 350 hPa in the previous 1h [bft]
wind_gusts_350hPa_1h:kmhwind gusts in 350 hPa in the previous 1h [km/h]
wind_gusts_350hPa_1h:knwind gusts in 350 hPa in the previous 1h [kn]
wind_gusts_350hPa_1h:mswind gusts in 350 hPa in the previous 1h [m/s]
wind_gusts_350hPa_24h:bftwind gusts in 350 hPa in the previous 24h [bft]
wind_gusts_350hPa_24h:kmhwind gusts in 350 hPa in the previous 24h [km/h]
wind_gusts_350hPa_24h:knwind gusts in 350 hPa in the previous 24h [kn]
wind_gusts_350hPa_24h:mswind gusts in 350 hPa in the previous 24h [m/s]
wind_gusts_350hPa_2h:bftwind gusts in 350 hPa in the previous 2h [bft]
wind_gusts_350hPa_2h:kmhwind gusts in 350 hPa in the previous 2h [km/h]
wind_gusts_350hPa_2h:knwind gusts in 350 hPa in the previous 2h [kn]
wind_gusts_350hPa_2h:mswind gusts in 350 hPa in the previous 2h [m/s]
wind_gusts_350hPa_3h:bftwind gusts in 350 hPa in the previous 3h [bft]
wind_gusts_350hPa_3h:kmhwind gusts in 350 hPa in the previous 3h [km/h]
wind_gusts_350hPa_3h:knwind gusts in 350 hPa in the previous 3h [kn]
wind_gusts_350hPa_3h:mswind gusts in 350 hPa in the previous 3h [m/s]
wind_gusts_350hPa_6h:bftwind gusts in 350 hPa in the previous 6h [bft]
wind_gusts_350hPa_6h:kmhwind gusts in 350 hPa in the previous 6h [km/h]
wind_gusts_350hPa_6h:knwind gusts in 350 hPa in the previous 6h [kn]
wind_gusts_350hPa_6h:mswind gusts in 350 hPa in the previous 6h [m/s]
wind_gusts_400hPa_12h:bftwind gusts in 400 hPa in the previous 12h [bft]
wind_gusts_400hPa_12h:kmhwind gusts in 400 hPa in the previous 12h [km/h]
wind_gusts_400hPa_12h:knwind gusts in 400 hPa in the previous 12h [kn]
wind_gusts_400hPa_12h:mswind gusts in 400 hPa in the previous 12h [m/s]
wind_gusts_400hPa_1h:bftwind gusts in 400 hPa in the previous 1h [bft]
wind_gusts_400hPa_1h:kmhwind gusts in 400 hPa in the previous 1h [km/h]
wind_gusts_400hPa_1h:knwind gusts in 400 hPa in the previous 1h [kn]
wind_gusts_400hPa_1h:mswind gusts in 400 hPa in the previous 1h [m/s]
wind_gusts_400hPa_24h:bftwind gusts in 400 hPa in the previous 24h [bft]
wind_gusts_400hPa_24h:kmhwind gusts in 400 hPa in the previous 24h [km/h]
wind_gusts_400hPa_24h:knwind gusts in 400 hPa in the previous 24h [kn]
wind_gusts_400hPa_24h:mswind gusts in 400 hPa in the previous 24h [m/s]
wind_gusts_400hPa_2h:bftwind gusts in 400 hPa in the previous 2h [bft]
wind_gusts_400hPa_2h:kmhwind gusts in 400 hPa in the previous 2h [km/h]
wind_gusts_400hPa_2h:knwind gusts in 400 hPa in the previous 2h [kn]
wind_gusts_400hPa_2h:mswind gusts in 400 hPa in the previous 2h [m/s]
wind_gusts_400hPa_3h:bftwind gusts in 400 hPa in the previous 3h [bft]
wind_gusts_400hPa_3h:kmhwind gusts in 400 hPa in the previous 3h [km/h]
wind_gusts_400hPa_3h:knwind gusts in 400 hPa in the previous 3h [kn]
wind_gusts_400hPa_3h:mswind gusts in 400 hPa in the previous 3h [m/s]
wind_gusts_400hPa_6h:bftwind gusts in 400 hPa in the previous 6h [bft]
wind_gusts_400hPa_6h:kmhwind gusts in 400 hPa in the previous 6h [km/h]
wind_gusts_400hPa_6h:knwind gusts in 400 hPa in the previous 6h [kn]
wind_gusts_400hPa_6h:mswind gusts in 400 hPa in the previous 6h [m/s]
wind_gusts_450hPa_12h:bftwind gusts in 450 hPa in the previous 12h [bft]
wind_gusts_450hPa_12h:kmhwind gusts in 450 hPa in the previous 12h [km/h]
wind_gusts_450hPa_12h:knwind gusts in 450 hPa in the previous 12h [kn]
wind_gusts_450hPa_12h:mswind gusts in 450 hPa in the previous 12h [m/s]
wind_gusts_450hPa_1h:bftwind gusts in 450 hPa in the previous 1h [bft]
wind_gusts_450hPa_1h:kmhwind gusts in 450 hPa in the previous 1h [km/h]
wind_gusts_450hPa_1h:knwind gusts in 450 hPa in the previous 1h [kn]
wind_gusts_450hPa_1h:mswind gusts in 450 hPa in the previous 1h [m/s]
wind_gusts_450hPa_24h:bftwind gusts in 450 hPa in the previous 24h [bft]
wind_gusts_450hPa_24h:kmhwind gusts in 450 hPa in the previous 24h [km/h]
wind_gusts_450hPa_24h:knwind gusts in 450 hPa in the previous 24h [kn]
wind_gusts_450hPa_24h:mswind gusts in 450 hPa in the previous 24h [m/s]
wind_gusts_450hPa_2h:bftwind gusts in 450 hPa in the previous 2h [bft]
wind_gusts_450hPa_2h:kmhwind gusts in 450 hPa in the previous 2h [km/h]
wind_gusts_450hPa_2h:knwind gusts in 450 hPa in the previous 2h [kn]
wind_gusts_450hPa_2h:mswind gusts in 450 hPa in the previous 2h [m/s]
wind_gusts_450hPa_3h:bftwind gusts in 450 hPa in the previous 3h [bft]
wind_gusts_450hPa_3h:kmhwind gusts in 450 hPa in the previous 3h [km/h]
wind_gusts_450hPa_3h:knwind gusts in 450 hPa in the previous 3h [kn]
wind_gusts_450hPa_3h:mswind gusts in 450 hPa in the previous 3h [m/s]
wind_gusts_450hPa_6h:bftwind gusts in 450 hPa in the previous 6h [bft]
wind_gusts_450hPa_6h:kmhwind gusts in 450 hPa in the previous 6h [km/h]
wind_gusts_450hPa_6h:knwind gusts in 450 hPa in the previous 6h [kn]
wind_gusts_450hPa_6h:mswind gusts in 450 hPa in the previous 6h [m/s]
wind_gusts_500hPa_12h:bftwind gusts in 500 hPa in the previous 12h [bft]
wind_gusts_500hPa_12h:kmhwind gusts in 500 hPa in the previous 12h [km/h]
wind_gusts_500hPa_12h:knwind gusts in 500 hPa in the previous 12h [kn]
wind_gusts_500hPa_12h:mswind gusts in 500 hPa in the previous 12h [m/s]
wind_gusts_500hPa_1h:bftwind gusts in 500 hPa in the previous 1h [bft]
wind_gusts_500hPa_1h:kmhwind gusts in 500 hPa in the previous 1h [km/h]
wind_gusts_500hPa_1h:knwind gusts in 500 hPa in the previous 1h [kn]
wind_gusts_500hPa_1h:mswind gusts in 500 hPa in the previous 1h [m/s]
wind_gusts_500hPa_24h:bftwind gusts in 500 hPa in the previous 24h [bft]
wind_gusts_500hPa_24h:kmhwind gusts in 500 hPa in the previous 24h [km/h]
wind_gusts_500hPa_24h:knwind gusts in 500 hPa in the previous 24h [kn]
wind_gusts_500hPa_24h:mswind gusts in 500 hPa in the previous 24h [m/s]
wind_gusts_500hPa_2h:bftwind gusts in 500 hPa in the previous 2h [bft]
wind_gusts_500hPa_2h:kmhwind gusts in 500 hPa in the previous 2h [km/h]
wind_gusts_500hPa_2h:knwind gusts in 500 hPa in the previous 2h [kn]
wind_gusts_500hPa_2h:mswind gusts in 500 hPa in the previous 2h [m/s]
wind_gusts_500hPa_3h:bftwind gusts in 500 hPa in the previous 3h [bft]
wind_gusts_500hPa_3h:kmhwind gusts in 500 hPa in the previous 3h [km/h]
wind_gusts_500hPa_3h:knwind gusts in 500 hPa in the previous 3h [kn]
wind_gusts_500hPa_3h:mswind gusts in 500 hPa in the previous 3h [m/s]
wind_gusts_500hPa_6h:bftwind gusts in 500 hPa in the previous 6h [bft]
wind_gusts_500hPa_6h:kmhwind gusts in 500 hPa in the previous 6h [km/h]
wind_gusts_500hPa_6h:knwind gusts in 500 hPa in the previous 6h [kn]
wind_gusts_500hPa_6h:mswind gusts in 500 hPa in the previous 6h [m/s]
wind_gusts_50hPa_12h:bftwind gusts in 50 hPa in the previous 12h [bft]
wind_gusts_50hPa_12h:kmhwind gusts in 50 hPa in the previous 12h [km/h]
wind_gusts_50hPa_12h:knwind gusts in 50 hPa in the previous 12h [kn]
wind_gusts_50hPa_12h:mswind gusts in 50 hPa in the previous 12h [m/s]
wind_gusts_50hPa_1h:bftwind gusts in 50 hPa in the previous 1h [bft]
wind_gusts_50hPa_1h:kmhwind gusts in 50 hPa in the previous 1h [km/h]
wind_gusts_50hPa_1h:knwind gusts in 50 hPa in the previous 1h [kn]
wind_gusts_50hPa_1h:mswind gusts in 50 hPa in the previous 1h [m/s]
wind_gusts_50hPa_24h:bftwind gusts in 50 hPa in the previous 24h [bft]
wind_gusts_50hPa_24h:kmhwind gusts in 50 hPa in the previous 24h [km/h]
wind_gusts_50hPa_24h:knwind gusts in 50 hPa in the previous 24h [kn]
wind_gusts_50hPa_24h:mswind gusts in 50 hPa in the previous 24h [m/s]
wind_gusts_50hPa_2h:bftwind gusts in 50 hPa in the previous 2h [bft]
wind_gusts_50hPa_2h:kmhwind gusts in 50 hPa in the previous 2h [km/h]
wind_gusts_50hPa_2h:knwind gusts in 50 hPa in the previous 2h [kn]
wind_gusts_50hPa_2h:mswind gusts in 50 hPa in the previous 2h [m/s]
wind_gusts_50hPa_3h:bftwind gusts in 50 hPa in the previous 3h [bft]
wind_gusts_50hPa_3h:kmhwind gusts in 50 hPa in the previous 3h [km/h]
wind_gusts_50hPa_3h:knwind gusts in 50 hPa in the previous 3h [kn]
wind_gusts_50hPa_3h:mswind gusts in 50 hPa in the previous 3h [m/s]
wind_gusts_50hPa_6h:bftwind gusts in 50 hPa in the previous 6h [bft]
wind_gusts_50hPa_6h:kmhwind gusts in 50 hPa in the previous 6h [km/h]
wind_gusts_50hPa_6h:knwind gusts in 50 hPa in the previous 6h [kn]
wind_gusts_50hPa_6h:mswind gusts in 50 hPa in the previous 6h [m/s]
wind_gusts_550hPa_12h:bftwind gusts in 550 hPa in the previous 12h [bft]
wind_gusts_550hPa_12h:kmhwind gusts in 550 hPa in the previous 12h [km/h]
wind_gusts_550hPa_12h:knwind gusts in 550 hPa in the previous 12h [kn]
wind_gusts_550hPa_12h:mswind gusts in 550 hPa in the previous 12h [m/s]
wind_gusts_550hPa_1h:bftwind gusts in 550 hPa in the previous 1h [bft]
wind_gusts_550hPa_1h:kmhwind gusts in 550 hPa in the previous 1h [km/h]
wind_gusts_550hPa_1h:knwind gusts in 550 hPa in the previous 1h [kn]
wind_gusts_550hPa_1h:mswind gusts in 550 hPa in the previous 1h [m/s]
wind_gusts_550hPa_24h:bftwind gusts in 550 hPa in the previous 24h [bft]
wind_gusts_550hPa_24h:kmhwind gusts in 550 hPa in the previous 24h [km/h]
wind_gusts_550hPa_24h:knwind gusts in 550 hPa in the previous 24h [kn]
wind_gusts_550hPa_24h:mswind gusts in 550 hPa in the previous 24h [m/s]
wind_gusts_550hPa_2h:bftwind gusts in 550 hPa in the previous 2h [bft]
wind_gusts_550hPa_2h:kmhwind gusts in 550 hPa in the previous 2h [km/h]
wind_gusts_550hPa_2h:knwind gusts in 550 hPa in the previous 2h [kn]
wind_gusts_550hPa_2h:mswind gusts in 550 hPa in the previous 2h [m/s]
wind_gusts_550hPa_3h:bftwind gusts in 550 hPa in the previous 3h [bft]
wind_gusts_550hPa_3h:kmhwind gusts in 550 hPa in the previous 3h [km/h]
wind_gusts_550hPa_3h:knwind gusts in 550 hPa in the previous 3h [kn]
wind_gusts_550hPa_3h:mswind gusts in 550 hPa in the previous 3h [m/s]
wind_gusts_550hPa_6h:bftwind gusts in 550 hPa in the previous 6h [bft]
wind_gusts_550hPa_6h:kmhwind gusts in 550 hPa in the previous 6h [km/h]
wind_gusts_550hPa_6h:knwind gusts in 550 hPa in the previous 6h [kn]
wind_gusts_550hPa_6h:mswind gusts in 550 hPa in the previous 6h [m/s]
wind_gusts_600hPa_12h:bftwind gusts in 600 hPa in the previous 12h [bft]
wind_gusts_600hPa_12h:kmhwind gusts in 600 hPa in the previous 12h [km/h]
wind_gusts_600hPa_12h:knwind gusts in 600 hPa in the previous 12h [kn]
wind_gusts_600hPa_12h:mswind gusts in 600 hPa in the previous 12h [m/s]
wind_gusts_600hPa_1h:bftwind gusts in 600 hPa in the previous 1h [bft]
wind_gusts_600hPa_1h:kmhwind gusts in 600 hPa in the previous 1h [km/h]
wind_gusts_600hPa_1h:knwind gusts in 600 hPa in the previous 1h [kn]
wind_gusts_600hPa_1h:mswind gusts in 600 hPa in the previous 1h [m/s]
wind_gusts_600hPa_24h:bftwind gusts in 600 hPa in the previous 24h [bft]
wind_gusts_600hPa_24h:kmhwind gusts in 600 hPa in the previous 24h [km/h]
wind_gusts_600hPa_24h:knwind gusts in 600 hPa in the previous 24h [kn]
wind_gusts_600hPa_24h:mswind gusts in 600 hPa in the previous 24h [m/s]
wind_gusts_600hPa_2h:bftwind gusts in 600 hPa in the previous 2h [bft]
wind_gusts_600hPa_2h:kmhwind gusts in 600 hPa in the previous 2h [km/h]
wind_gusts_600hPa_2h:knwind gusts in 600 hPa in the previous 2h [kn]
wind_gusts_600hPa_2h:mswind gusts in 600 hPa in the previous 2h [m/s]
wind_gusts_600hPa_3h:bftwind gusts in 600 hPa in the previous 3h [bft]
wind_gusts_600hPa_3h:kmhwind gusts in 600 hPa in the previous 3h [km/h]
wind_gusts_600hPa_3h:knwind gusts in 600 hPa in the previous 3h [kn]
wind_gusts_600hPa_3h:mswind gusts in 600 hPa in the previous 3h [m/s]
wind_gusts_600hPa_6h:bftwind gusts in 600 hPa in the previous 6h [bft]
wind_gusts_600hPa_6h:kmhwind gusts in 600 hPa in the previous 6h [km/h]
wind_gusts_600hPa_6h:knwind gusts in 600 hPa in the previous 6h [kn]
wind_gusts_600hPa_6h:mswind gusts in 600 hPa in the previous 6h [m/s]
wind_gusts_650hPa_12h:bftwind gusts in 650 hPa in the previous 12h [bft]
wind_gusts_650hPa_12h:kmhwind gusts in 650 hPa in the previous 12h [km/h]
wind_gusts_650hPa_12h:knwind gusts in 650 hPa in the previous 12h [kn]
wind_gusts_650hPa_12h:mswind gusts in 650 hPa in the previous 12h [m/s]
wind_gusts_650hPa_1h:bftwind gusts in 650 hPa in the previous 1h [bft]
wind_gusts_650hPa_1h:kmhwind gusts in 650 hPa in the previous 1h [km/h]
wind_gusts_650hPa_1h:knwind gusts in 650 hPa in the previous 1h [kn]
wind_gusts_650hPa_1h:mswind gusts in 650 hPa in the previous 1h [m/s]
wind_gusts_650hPa_24h:bftwind gusts in 650 hPa in the previous 24h [bft]
wind_gusts_650hPa_24h:kmhwind gusts in 650 hPa in the previous 24h [km/h]
wind_gusts_650hPa_24h:knwind gusts in 650 hPa in the previous 24h [kn]
wind_gusts_650hPa_24h:mswind gusts in 650 hPa in the previous 24h [m/s]
wind_gusts_650hPa_2h:bftwind gusts in 650 hPa in the previous 2h [bft]
wind_gusts_650hPa_2h:kmhwind gusts in 650 hPa in the previous 2h [km/h]
wind_gusts_650hPa_2h:knwind gusts in 650 hPa in the previous 2h [kn]
wind_gusts_650hPa_2h:mswind gusts in 650 hPa in the previous 2h [m/s]
wind_gusts_650hPa_3h:bftwind gusts in 650 hPa in the previous 3h [bft]
wind_gusts_650hPa_3h:kmhwind gusts in 650 hPa in the previous 3h [km/h]
wind_gusts_650hPa_3h:knwind gusts in 650 hPa in the previous 3h [kn]
wind_gusts_650hPa_3h:mswind gusts in 650 hPa in the previous 3h [m/s]
wind_gusts_650hPa_6h:bftwind gusts in 650 hPa in the previous 6h [bft]
wind_gusts_650hPa_6h:kmhwind gusts in 650 hPa in the previous 6h [km/h]
wind_gusts_650hPa_6h:knwind gusts in 650 hPa in the previous 6h [kn]
wind_gusts_650hPa_6h:mswind gusts in 650 hPa in the previous 6h [m/s]
wind_gusts_700hPa_12h:bftwind gusts in 700 hPa in the previous 12h [bft]
wind_gusts_700hPa_12h:kmhwind gusts in 700 hPa in the previous 12h [km/h]
wind_gusts_700hPa_12h:knwind gusts in 700 hPa in the previous 12h [kn]
wind_gusts_700hPa_12h:mswind gusts in 700 hPa in the previous 12h [m/s]
wind_gusts_700hPa_1h:bftwind gusts in 700 hPa in the previous 1h [bft]
wind_gusts_700hPa_1h:kmhwind gusts in 700 hPa in the previous 1h [km/h]
wind_gusts_700hPa_1h:knwind gusts in 700 hPa in the previous 1h [kn]
wind_gusts_700hPa_1h:mswind gusts in 700 hPa in the previous 1h [m/s]
wind_gusts_700hPa_24h:bftwind gusts in 700 hPa in the previous 24h [bft]
wind_gusts_700hPa_24h:kmhwind gusts in 700 hPa in the previous 24h [km/h]
wind_gusts_700hPa_24h:knwind gusts in 700 hPa in the previous 24h [kn]
wind_gusts_700hPa_24h:mswind gusts in 700 hPa in the previous 24h [m/s]
wind_gusts_700hPa_2h:bftwind gusts in 700 hPa in the previous 2h [bft]
wind_gusts_700hPa_2h:kmhwind gusts in 700 hPa in the previous 2h [km/h]
wind_gusts_700hPa_2h:knwind gusts in 700 hPa in the previous 2h [kn]
wind_gusts_700hPa_2h:mswind gusts in 700 hPa in the previous 2h [m/s]
wind_gusts_700hPa_3h:bftwind gusts in 700 hPa in the previous 3h [bft]
wind_gusts_700hPa_3h:kmhwind gusts in 700 hPa in the previous 3h [km/h]
wind_gusts_700hPa_3h:knwind gusts in 700 hPa in the previous 3h [kn]
wind_gusts_700hPa_3h:mswind gusts in 700 hPa in the previous 3h [m/s]
wind_gusts_700hPa_6h:bftwind gusts in 700 hPa in the previous 6h [bft]
wind_gusts_700hPa_6h:kmhwind gusts in 700 hPa in the previous 6h [km/h]
wind_gusts_700hPa_6h:knwind gusts in 700 hPa in the previous 6h [kn]
wind_gusts_700hPa_6h:mswind gusts in 700 hPa in the previous 6h [m/s]
wind_gusts_750hPa_12h:bftwind gusts in 750 hPa in the previous 12h [bft]
wind_gusts_750hPa_12h:kmhwind gusts in 750 hPa in the previous 12h [km/h]
wind_gusts_750hPa_12h:knwind gusts in 750 hPa in the previous 12h [kn]
wind_gusts_750hPa_12h:mswind gusts in 750 hPa in the previous 12h [m/s]
wind_gusts_750hPa_1h:bftwind gusts in 750 hPa in the previous 1h [bft]
wind_gusts_750hPa_1h:kmhwind gusts in 750 hPa in the previous 1h [km/h]
wind_gusts_750hPa_1h:knwind gusts in 750 hPa in the previous 1h [kn]
wind_gusts_750hPa_1h:mswind gusts in 750 hPa in the previous 1h [m/s]
wind_gusts_750hPa_24h:bftwind gusts in 750 hPa in the previous 24h [bft]
wind_gusts_750hPa_24h:kmhwind gusts in 750 hPa in the previous 24h [km/h]
wind_gusts_750hPa_24h:knwind gusts in 750 hPa in the previous 24h [kn]
wind_gusts_750hPa_24h:mswind gusts in 750 hPa in the previous 24h [m/s]
wind_gusts_750hPa_2h:bftwind gusts in 750 hPa in the previous 2h [bft]
wind_gusts_750hPa_2h:kmhwind gusts in 750 hPa in the previous 2h [km/h]
wind_gusts_750hPa_2h:knwind gusts in 750 hPa in the previous 2h [kn]
wind_gusts_750hPa_2h:mswind gusts in 750 hPa in the previous 2h [m/s]
wind_gusts_750hPa_3h:bftwind gusts in 750 hPa in the previous 3h [bft]
wind_gusts_750hPa_3h:kmhwind gusts in 750 hPa in the previous 3h [km/h]
wind_gusts_750hPa_3h:knwind gusts in 750 hPa in the previous 3h [kn]
wind_gusts_750hPa_3h:mswind gusts in 750 hPa in the previous 3h [m/s]
wind_gusts_750hPa_6h:bftwind gusts in 750 hPa in the previous 6h [bft]
wind_gusts_750hPa_6h:kmhwind gusts in 750 hPa in the previous 6h [km/h]
wind_gusts_750hPa_6h:knwind gusts in 750 hPa in the previous 6h [kn]
wind_gusts_750hPa_6h:mswind gusts in 750 hPa in the previous 6h [m/s]
wind_gusts_775hPa_12h:bftwind gusts in 775 hPa in the previous 12h [bft]
wind_gusts_775hPa_12h:kmhwind gusts in 775 hPa in the previous 12h [km/h]
wind_gusts_775hPa_12h:knwind gusts in 775 hPa in the previous 12h [kn]
wind_gusts_775hPa_12h:mswind gusts in 775 hPa in the previous 12h [m/s]
wind_gusts_775hPa_1h:bftwind gusts in 775 hPa in the previous 1h [bft]
wind_gusts_775hPa_1h:kmhwind gusts in 775 hPa in the previous 1h [km/h]
wind_gusts_775hPa_1h:knwind gusts in 775 hPa in the previous 1h [kn]
wind_gusts_775hPa_1h:mswind gusts in 775 hPa in the previous 1h [m/s]
wind_gusts_775hPa_24h:bftwind gusts in 775 hPa in the previous 24h [bft]
wind_gusts_775hPa_24h:kmhwind gusts in 775 hPa in the previous 24h [km/h]
wind_gusts_775hPa_24h:knwind gusts in 775 hPa in the previous 24h [kn]
wind_gusts_775hPa_24h:mswind gusts in 775 hPa in the previous 24h [m/s]
wind_gusts_775hPa_2h:bftwind gusts in 775 hPa in the previous 2h [bft]
wind_gusts_775hPa_2h:kmhwind gusts in 775 hPa in the previous 2h [km/h]
wind_gusts_775hPa_2h:knwind gusts in 775 hPa in the previous 2h [kn]
wind_gusts_775hPa_2h:mswind gusts in 775 hPa in the previous 2h [m/s]
wind_gusts_775hPa_3h:bftwind gusts in 775 hPa in the previous 3h [bft]
wind_gusts_775hPa_3h:kmhwind gusts in 775 hPa in the previous 3h [km/h]
wind_gusts_775hPa_3h:knwind gusts in 775 hPa in the previous 3h [kn]
wind_gusts_775hPa_3h:mswind gusts in 775 hPa in the previous 3h [m/s]
wind_gusts_775hPa_6h:bftwind gusts in 775 hPa in the previous 6h [bft]
wind_gusts_775hPa_6h:kmhwind gusts in 775 hPa in the previous 6h [km/h]
wind_gusts_775hPa_6h:knwind gusts in 775 hPa in the previous 6h [kn]
wind_gusts_775hPa_6h:mswind gusts in 775 hPa in the previous 6h [m/s]
wind_gusts_800hPa_12h:bftwind gusts in 800 hPa in the previous 12h [bft]
wind_gusts_800hPa_12h:kmhwind gusts in 800 hPa in the previous 12h [km/h]
wind_gusts_800hPa_12h:knwind gusts in 800 hPa in the previous 12h [kn]
wind_gusts_800hPa_12h:mswind gusts in 800 hPa in the previous 12h [m/s]
wind_gusts_800hPa_1h:bftwind gusts in 800 hPa in the previous 1h [bft]
wind_gusts_800hPa_1h:kmhwind gusts in 800 hPa in the previous 1h [km/h]
wind_gusts_800hPa_1h:knwind gusts in 800 hPa in the previous 1h [kn]
wind_gusts_800hPa_1h:mswind gusts in 800 hPa in the previous 1h [m/s]
wind_gusts_800hPa_24h:bftwind gusts in 800 hPa in the previous 24h [bft]
wind_gusts_800hPa_24h:kmhwind gusts in 800 hPa in the previous 24h [km/h]
wind_gusts_800hPa_24h:knwind gusts in 800 hPa in the previous 24h [kn]
wind_gusts_800hPa_24h:mswind gusts in 800 hPa in the previous 24h [m/s]
wind_gusts_800hPa_2h:bftwind gusts in 800 hPa in the previous 2h [bft]
wind_gusts_800hPa_2h:kmhwind gusts in 800 hPa in the previous 2h [km/h]
wind_gusts_800hPa_2h:knwind gusts in 800 hPa in the previous 2h [kn]
wind_gusts_800hPa_2h:mswind gusts in 800 hPa in the previous 2h [m/s]
wind_gusts_800hPa_3h:bftwind gusts in 800 hPa in the previous 3h [bft]
wind_gusts_800hPa_3h:kmhwind gusts in 800 hPa in the previous 3h [km/h]
wind_gusts_800hPa_3h:knwind gusts in 800 hPa in the previous 3h [kn]
wind_gusts_800hPa_3h:mswind gusts in 800 hPa in the previous 3h [m/s]
wind_gusts_800hPa_6h:bftwind gusts in 800 hPa in the previous 6h [bft]
wind_gusts_800hPa_6h:kmhwind gusts in 800 hPa in the previous 6h [km/h]
wind_gusts_800hPa_6h:knwind gusts in 800 hPa in the previous 6h [kn]
wind_gusts_800hPa_6h:mswind gusts in 800 hPa in the previous 6h [m/s]
wind_gusts_825hPa_12h:bftwind gusts in 825 hPa in the previous 12h [bft]
wind_gusts_825hPa_12h:kmhwind gusts in 825 hPa in the previous 12h [km/h]
wind_gusts_825hPa_12h:knwind gusts in 825 hPa in the previous 12h [kn]
wind_gusts_825hPa_12h:mswind gusts in 825 hPa in the previous 12h [m/s]
wind_gusts_825hPa_1h:bftwind gusts in 825 hPa in the previous 1h [bft]
wind_gusts_825hPa_1h:kmhwind gusts in 825 hPa in the previous 1h [km/h]
wind_gusts_825hPa_1h:knwind gusts in 825 hPa in the previous 1h [kn]
wind_gusts_825hPa_1h:mswind gusts in 825 hPa in the previous 1h [m/s]
wind_gusts_825hPa_24h:bftwind gusts in 825 hPa in the previous 24h [bft]
wind_gusts_825hPa_24h:kmhwind gusts in 825 hPa in the previous 24h [km/h]
wind_gusts_825hPa_24h:knwind gusts in 825 hPa in the previous 24h [kn]
wind_gusts_825hPa_24h:mswind gusts in 825 hPa in the previous 24h [m/s]
wind_gusts_825hPa_2h:bftwind gusts in 825 hPa in the previous 2h [bft]
wind_gusts_825hPa_2h:kmhwind gusts in 825 hPa in the previous 2h [km/h]
wind_gusts_825hPa_2h:knwind gusts in 825 hPa in the previous 2h [kn]
wind_gusts_825hPa_2h:mswind gusts in 825 hPa in the previous 2h [m/s]
wind_gusts_825hPa_3h:bftwind gusts in 825 hPa in the previous 3h [bft]
wind_gusts_825hPa_3h:kmhwind gusts in 825 hPa in the previous 3h [km/h]
wind_gusts_825hPa_3h:knwind gusts in 825 hPa in the previous 3h [kn]
wind_gusts_825hPa_3h:mswind gusts in 825 hPa in the previous 3h [m/s]
wind_gusts_825hPa_6h:bftwind gusts in 825 hPa in the previous 6h [bft]
wind_gusts_825hPa_6h:kmhwind gusts in 825 hPa in the previous 6h [km/h]
wind_gusts_825hPa_6h:knwind gusts in 825 hPa in the previous 6h [kn]
wind_gusts_825hPa_6h:mswind gusts in 825 hPa in the previous 6h [m/s]
wind_gusts_850hPa_12h:bftwind gusts in 850 hPa in the previous 12h [bft]
wind_gusts_850hPa_12h:kmhwind gusts in 850 hPa in the previous 12h [km/h]
wind_gusts_850hPa_12h:knwind gusts in 850 hPa in the previous 12h [kn]
wind_gusts_850hPa_12h:mswind gusts in 850 hPa in the previous 12h [m/s]
wind_gusts_850hPa_1h:bftwind gusts in 850 hPa in the previous 1h [bft]
wind_gusts_850hPa_1h:kmhwind gusts in 850 hPa in the previous 1h [km/h]
wind_gusts_850hPa_1h:knwind gusts in 850 hPa in the previous 1h [kn]
wind_gusts_850hPa_1h:mswind gusts in 850 hPa in the previous 1h [m/s]
wind_gusts_850hPa_24h:bftwind gusts in 850 hPa in the previous 24h [bft]
wind_gusts_850hPa_24h:kmhwind gusts in 850 hPa in the previous 24h [km/h]
wind_gusts_850hPa_24h:knwind gusts in 850 hPa in the previous 24h [kn]
wind_gusts_850hPa_24h:mswind gusts in 850 hPa in the previous 24h [m/s]
wind_gusts_850hPa_2h:bftwind gusts in 850 hPa in the previous 2h [bft]
wind_gusts_850hPa_2h:kmhwind gusts in 850 hPa in the previous 2h [km/h]
wind_gusts_850hPa_2h:knwind gusts in 850 hPa in the previous 2h [kn]
wind_gusts_850hPa_2h:mswind gusts in 850 hPa in the previous 2h [m/s]
wind_gusts_850hPa_3h:bftwind gusts in 850 hPa in the previous 3h [bft]
wind_gusts_850hPa_3h:kmhwind gusts in 850 hPa in the previous 3h [km/h]
wind_gusts_850hPa_3h:knwind gusts in 850 hPa in the previous 3h [kn]
wind_gusts_850hPa_3h:mswind gusts in 850 hPa in the previous 3h [m/s]
wind_gusts_850hPa_6h:bftwind gusts in 850 hPa in the previous 6h [bft]
wind_gusts_850hPa_6h:kmhwind gusts in 850 hPa in the previous 6h [km/h]
wind_gusts_850hPa_6h:knwind gusts in 850 hPa in the previous 6h [kn]
wind_gusts_850hPa_6h:mswind gusts in 850 hPa in the previous 6h [m/s]
wind_gusts_875hPa_12h:bftwind gusts in 875 hPa in the previous 12h [bft]
wind_gusts_875hPa_12h:kmhwind gusts in 875 hPa in the previous 12h [km/h]
wind_gusts_875hPa_12h:knwind gusts in 875 hPa in the previous 12h [kn]
wind_gusts_875hPa_12h:mswind gusts in 875 hPa in the previous 12h [m/s]
wind_gusts_875hPa_1h:bftwind gusts in 875 hPa in the previous 1h [bft]
wind_gusts_875hPa_1h:kmhwind gusts in 875 hPa in the previous 1h [km/h]
wind_gusts_875hPa_1h:knwind gusts in 875 hPa in the previous 1h [kn]
wind_gusts_875hPa_1h:mswind gusts in 875 hPa in the previous 1h [m/s]
wind_gusts_875hPa_24h:bftwind gusts in 875 hPa in the previous 24h [bft]
wind_gusts_875hPa_24h:kmhwind gusts in 875 hPa in the previous 24h [km/h]
wind_gusts_875hPa_24h:knwind gusts in 875 hPa in the previous 24h [kn]
wind_gusts_875hPa_24h:mswind gusts in 875 hPa in the previous 24h [m/s]
wind_gusts_875hPa_2h:bftwind gusts in 875 hPa in the previous 2h [bft]
wind_gusts_875hPa_2h:kmhwind gusts in 875 hPa in the previous 2h [km/h]
wind_gusts_875hPa_2h:knwind gusts in 875 hPa in the previous 2h [kn]
wind_gusts_875hPa_2h:mswind gusts in 875 hPa in the previous 2h [m/s]
wind_gusts_875hPa_3h:bftwind gusts in 875 hPa in the previous 3h [bft]
wind_gusts_875hPa_3h:kmhwind gusts in 875 hPa in the previous 3h [km/h]
wind_gusts_875hPa_3h:knwind gusts in 875 hPa in the previous 3h [kn]
wind_gusts_875hPa_3h:mswind gusts in 875 hPa in the previous 3h [m/s]
wind_gusts_875hPa_6h:bftwind gusts in 875 hPa in the previous 6h [bft]
wind_gusts_875hPa_6h:kmhwind gusts in 875 hPa in the previous 6h [km/h]
wind_gusts_875hPa_6h:knwind gusts in 875 hPa in the previous 6h [kn]
wind_gusts_875hPa_6h:mswind gusts in 875 hPa in the previous 6h [m/s]
wind_gusts_900hPa_12h:bftwind gusts in 900 hPa in the previous 12h [bft]
wind_gusts_900hPa_12h:kmhwind gusts in 900 hPa in the previous 12h [km/h]
wind_gusts_900hPa_12h:knwind gusts in 900 hPa in the previous 12h [kn]
wind_gusts_900hPa_12h:mswind gusts in 900 hPa in the previous 12h [m/s]
wind_gusts_900hPa_1h:bftwind gusts in 900 hPa in the previous 1h [bft]
wind_gusts_900hPa_1h:kmhwind gusts in 900 hPa in the previous 1h [km/h]
wind_gusts_900hPa_1h:knwind gusts in 900 hPa in the previous 1h [kn]
wind_gusts_900hPa_1h:mswind gusts in 900 hPa in the previous 1h [m/s]
wind_gusts_900hPa_24h:bftwind gusts in 900 hPa in the previous 24h [bft]
wind_gusts_900hPa_24h:kmhwind gusts in 900 hPa in the previous 24h [km/h]
wind_gusts_900hPa_24h:knwind gusts in 900 hPa in the previous 24h [kn]
wind_gusts_900hPa_24h:mswind gusts in 900 hPa in the previous 24h [m/s]
wind_gusts_900hPa_2h:bftwind gusts in 900 hPa in the previous 2h [bft]
wind_gusts_900hPa_2h:kmhwind gusts in 900 hPa in the previous 2h [km/h]
wind_gusts_900hPa_2h:knwind gusts in 900 hPa in the previous 2h [kn]
wind_gusts_900hPa_2h:mswind gusts in 900 hPa in the previous 2h [m/s]
wind_gusts_900hPa_3h:bftwind gusts in 900 hPa in the previous 3h [bft]
wind_gusts_900hPa_3h:kmhwind gusts in 900 hPa in the previous 3h [km/h]
wind_gusts_900hPa_3h:knwind gusts in 900 hPa in the previous 3h [kn]
wind_gusts_900hPa_3h:mswind gusts in 900 hPa in the previous 3h [m/s]
wind_gusts_900hPa_6h:bftwind gusts in 900 hPa in the previous 6h [bft]
wind_gusts_900hPa_6h:kmhwind gusts in 900 hPa in the previous 6h [km/h]
wind_gusts_900hPa_6h:knwind gusts in 900 hPa in the previous 6h [kn]
wind_gusts_900hPa_6h:mswind gusts in 900 hPa in the previous 6h [m/s]
wind_gusts_925hPa_12h:bftwind gusts in 925 hPa in the previous 12h [bft]
wind_gusts_925hPa_12h:kmhwind gusts in 925 hPa in the previous 12h [km/h]
wind_gusts_925hPa_12h:knwind gusts in 925 hPa in the previous 12h [kn]
wind_gusts_925hPa_12h:mswind gusts in 925 hPa in the previous 12h [m/s]
wind_gusts_925hPa_1h:bftwind gusts in 925 hPa in the previous 1h [bft]
wind_gusts_925hPa_1h:kmhwind gusts in 925 hPa in the previous 1h [km/h]
wind_gusts_925hPa_1h:knwind gusts in 925 hPa in the previous 1h [kn]
wind_gusts_925hPa_1h:mswind gusts in 925 hPa in the previous 1h [m/s]
wind_gusts_925hPa_24h:bftwind gusts in 925 hPa in the previous 24h [bft]
wind_gusts_925hPa_24h:kmhwind gusts in 925 hPa in the previous 24h [km/h]
wind_gusts_925hPa_24h:knwind gusts in 925 hPa in the previous 24h [kn]
wind_gusts_925hPa_24h:mswind gusts in 925 hPa in the previous 24h [m/s]
wind_gusts_925hPa_2h:bftwind gusts in 925 hPa in the previous 2h [bft]
wind_gusts_925hPa_2h:kmhwind gusts in 925 hPa in the previous 2h [km/h]
wind_gusts_925hPa_2h:knwind gusts in 925 hPa in the previous 2h [kn]
wind_gusts_925hPa_2h:mswind gusts in 925 hPa in the previous 2h [m/s]
wind_gusts_925hPa_3h:bftwind gusts in 925 hPa in the previous 3h [bft]
wind_gusts_925hPa_3h:kmhwind gusts in 925 hPa in the previous 3h [km/h]
wind_gusts_925hPa_3h:knwind gusts in 925 hPa in the previous 3h [kn]
wind_gusts_925hPa_3h:mswind gusts in 925 hPa in the previous 3h [m/s]
wind_gusts_925hPa_6h:bftwind gusts in 925 hPa in the previous 6h [bft]
wind_gusts_925hPa_6h:kmhwind gusts in 925 hPa in the previous 6h [km/h]
wind_gusts_925hPa_6h:knwind gusts in 925 hPa in the previous 6h [kn]
wind_gusts_925hPa_6h:mswind gusts in 925 hPa in the previous 6h [m/s]
wind_gusts_950hPa_12h:bftwind gusts in 950 hPa in the previous 12h [bft]
wind_gusts_950hPa_12h:kmhwind gusts in 950 hPa in the previous 12h [km/h]
wind_gusts_950hPa_12h:knwind gusts in 950 hPa in the previous 12h [kn]
wind_gusts_950hPa_12h:mswind gusts in 950 hPa in the previous 12h [m/s]
wind_gusts_950hPa_1h:bftwind gusts in 950 hPa in the previous 1h [bft]
wind_gusts_950hPa_1h:kmhwind gusts in 950 hPa in the previous 1h [km/h]
wind_gusts_950hPa_1h:knwind gusts in 950 hPa in the previous 1h [kn]
wind_gusts_950hPa_1h:mswind gusts in 950 hPa in the previous 1h [m/s]
wind_gusts_950hPa_24h:bftwind gusts in 950 hPa in the previous 24h [bft]
wind_gusts_950hPa_24h:kmhwind gusts in 950 hPa in the previous 24h [km/h]
wind_gusts_950hPa_24h:knwind gusts in 950 hPa in the previous 24h [kn]
wind_gusts_950hPa_24h:mswind gusts in 950 hPa in the previous 24h [m/s]
wind_gusts_950hPa_2h:bftwind gusts in 950 hPa in the previous 2h [bft]
wind_gusts_950hPa_2h:kmhwind gusts in 950 hPa in the previous 2h [km/h]
wind_gusts_950hPa_2h:knwind gusts in 950 hPa in the previous 2h [kn]
wind_gusts_950hPa_2h:mswind gusts in 950 hPa in the previous 2h [m/s]
wind_gusts_950hPa_3h:bftwind gusts in 950 hPa in the previous 3h [bft]
wind_gusts_950hPa_3h:kmhwind gusts in 950 hPa in the previous 3h [km/h]
wind_gusts_950hPa_3h:knwind gusts in 950 hPa in the previous 3h [kn]
wind_gusts_950hPa_3h:mswind gusts in 950 hPa in the previous 3h [m/s]
wind_gusts_950hPa_6h:bftwind gusts in 950 hPa in the previous 6h [bft]
wind_gusts_950hPa_6h:kmhwind gusts in 950 hPa in the previous 6h [km/h]
wind_gusts_950hPa_6h:knwind gusts in 950 hPa in the previous 6h [kn]
wind_gusts_950hPa_6h:mswind gusts in 950 hPa in the previous 6h [m/s]
wind_gusts_975hPa_12h:bftwind gusts in 975 hPa in the previous 12h [bft]
wind_gusts_975hPa_12h:kmhwind gusts in 975 hPa in the previous 12h [km/h]
wind_gusts_975hPa_12h:knwind gusts in 975 hPa in the previous 12h [kn]
wind_gusts_975hPa_12h:mswind gusts in 975 hPa in the previous 12h [m/s]
wind_gusts_975hPa_1h:bftwind gusts in 975 hPa in the previous 1h [bft]
wind_gusts_975hPa_1h:kmhwind gusts in 975 hPa in the previous 1h [km/h]
wind_gusts_975hPa_1h:knwind gusts in 975 hPa in the previous 1h [kn]
wind_gusts_975hPa_1h:mswind gusts in 975 hPa in the previous 1h [m/s]
wind_gusts_975hPa_24h:bftwind gusts in 975 hPa in the previous 24h [bft]
wind_gusts_975hPa_24h:kmhwind gusts in 975 hPa in the previous 24h [km/h]
wind_gusts_975hPa_24h:knwind gusts in 975 hPa in the previous 24h [kn]
wind_gusts_975hPa_24h:mswind gusts in 975 hPa in the previous 24h [m/s]
wind_gusts_975hPa_2h:bftwind gusts in 975 hPa in the previous 2h [bft]
wind_gusts_975hPa_2h:kmhwind gusts in 975 hPa in the previous 2h [km/h]
wind_gusts_975hPa_2h:knwind gusts in 975 hPa in the previous 2h [kn]
wind_gusts_975hPa_2h:mswind gusts in 975 hPa in the previous 2h [m/s]
wind_gusts_975hPa_3h:bftwind gusts in 975 hPa in the previous 3h [bft]
wind_gusts_975hPa_3h:kmhwind gusts in 975 hPa in the previous 3h [km/h]
wind_gusts_975hPa_3h:knwind gusts in 975 hPa in the previous 3h [kn]
wind_gusts_975hPa_3h:mswind gusts in 975 hPa in the previous 3h [m/s]
wind_gusts_975hPa_6h:bftwind gusts in 975 hPa in the previous 6h [bft]
wind_gusts_975hPa_6h:kmhwind gusts in 975 hPa in the previous 6h [km/h]
wind_gusts_975hPa_6h:knwind gusts in 975 hPa in the previous 6h [kn]
wind_gusts_975hPa_6h:mswind gusts in 975 hPa in the previous 6h [m/s]

Cloud Parameters

ParameterDescription
effective_cloud_cover:octaseffective cloud cover [octas]
effective_cloud_cover:peffective cloud cover [%]
high_cloud_cover:octashigh cloud cover [octas]
high_cloud_cover:phigh cloud cover [%]
high_cloud_cover_10y_mean:phigh cloud cover - 10 years average [%]
low_cloud_cover:octaslow cloud cover [octas]
low_cloud_cover:plow cloud cover [%]
low_cloud_cover_10y_mean:plow cloud cover - 10-year average [%]
low_cloud_cover_mean_12h:octasmean low cloud cover during the previous 12h
low_cloud_cover_mean_12h:pmean low cloud cover during the previous 12h
low_cloud_cover_mean_1h:octasmean low cloud cover during the previous 1h
low_cloud_cover_mean_1h:pmean low cloud cover during the previous 1h
low_cloud_cover_mean_24h:octasmean low cloud cover during the previous 24h
low_cloud_cover_mean_24h:pmean low cloud cover during the previous 24h
low_cloud_cover_mean_2h:octasmean low cloud cover during the previous 2h
low_cloud_cover_mean_2h:pmean low cloud cover during the previous 2h
low_cloud_cover_mean_3h:octasmean low cloud cover during the previous 3h
low_cloud_cover_mean_3h:pmean low cloud cover during the previous 3h
low_cloud_cover_mean_6h:octasmean low cloud cover during the previous 6h
low_cloud_cover_mean_6h:pmean low cloud cover during the previous 6h
medium_cloud_cover:octasamount of medium cloud cover [octas]
medium_cloud_cover:pamount of medium cloud cover [%]
medium_cloud_cover_10y_mean:pamount of medium cloud cover - 10-year average [%]
total_cloud_cover:octastotal cloud cover [octas]
total_cloud_cover:ptotal cloud cover [%]
total_cloud_cover_10y_mean:ptotal cloud cover - 10 year average [%]
ceiling_height_agl:ftceiling height above ground level [feet]
ceiling_height_agl:mceiling height above ground level [m]
cloud_base_agl:ftcloud base above ground level [ft]
cloud_base_agl:mcloud base above ground level [m]

Snow and Frost Parameters

ParameterDescription
frost_depth:cmfrost depth [cm]
soil_frost:pChance for soil frost occurrence in percent
snow_melt_10min:cmsnow melt in previous 10 min [cm]
snow_melt_10min:mmsnow melt (water equivalent) in previous 10 min [mm]
snow_melt_12h:cmsnow melt in previous 12h [cm]
snow_melt_12h:mmsnow melt (water equivalent) in previous 12h [mm]
snow_melt_1h:cmsnow melt in previous 1h [cm]
snow_melt_1h:mmsnow melt (water equivalent) in previous 1h [mm]
snow_melt_20min:cmsnow melt in previous 20 min [cm]
snow_melt_20min:mmsnow melt (water equivalent) in previous 20 min [mm]
snow_melt_24h:cmsnow melt in previous 24h [cm]
snow_melt_24h:mmsnow melt (water equivalent) in previous 24h [mm]
snow_melt_30min:cmsnow melt in previous 30 min [cm]
snow_melt_30min:mmsnow melt (water equivalent) in previous 30 min [mm]
snow_melt_3h:cmsnow melt in previous 3h [cm]
snow_melt_3h:mmsnow melt (water equivalent) in previous 3h [mm]
snow_melt_6h:cmsnow melt in previous 6h [cm]
snow_melt_6h:mmsnow melt (water equivalent) in previous 6h [mm]
fresh_snow_12h:cmfresh snow of previous 12h [cm]
fresh_snow_1h:cmfresh snow of previous 1h [cm]
fresh_snow_24h:cmfresh snow of previous 24h [cm]
fresh_snow_3h:cmfresh snow of previous 3h [cm]
fresh_snow_6h:cmfresh snow of previous 6h [cm]
snow_depth:cmsnow depth [mm / cm / m]
snow_water_equivalent:mSnow water equivalent [mm / m]
snow_density:kgm3snow density [kg/m3]
prob_snowfall:pProbability for precipition in form of snow
snow_drift:idxRisk of deposit of snow by wind [index from 0-6]
prob_rime:pRime probability in percent

Soil Parameters

ParameterDescription
soil_frost:pChance for soil frost occurrence in percent
soil_moisture_deficit:mmSoil moisture deficit - a measure for droughts - deviation from long year average [mm]
soilmoisture_index-150cm:idxSoil moisture index at a depth of 150cm
soilmoisture_index-15cm:idxSoil moisture index at a depth of 15cm
soilmoisture_index-50cm:idxSoil moisture index at a depth of 50cm
soilmoisture_index-5cm:idxSoil moisture index at a depth of 5cm
soil_type:idxIndex for soil type
volumetricsoil_water-150cm:m3m3Soil water content at a depth of 150 cm
volumetricsoil_water-15cm:m3m3Soil water content at a depth of 15 cm
volumetricsoil_water-50cm:m3m3Soil water content at a depth of 50 cm
volumetricsoil_water-5cm:m3m3Soil water content at a depth of 5 cm

Radiation Parameters

ParameterDescription
clear_sky_rad:Wclear sky radiation [W]
diffuse_rad:Wdiffuse radiation [W]
diffuse_rad_12h:Jdiffuse radiation of previous 12 h [J]
diffuse_rad_12h:Wsdiffuse radiation of previous 12 h [Ws]
diffuse_rad_1h:Jdiffuse radiation of previous 1h [J]
diffuse_rad_1h:Wsdiffuse radiation of previous 1h [Ws]
diffuse_rad_24h:Jdiffuse radiation of previous 24h [J]
diffuse_rad_24h:Wsdiffuse radiation of previous 24h [Ws]
diffuse_rad_3h:Jdiffuse radiation of previous 3h [J]
diffuse_rad_3h:Wsdiffuse radiation of previous 3h [Ws]
diffuse_rad_6h:Jdiffuse radiation of previous 6h [J]
diffuse_rad_6h:Wsdiffuse radiation of previous 6h [Ws]
direct_rad:Wdirect radiation [W]
direct_rad_12h:Jdirect radiation of previous 12h [J]
direct_rad_12h:Wsdirect radiation of previous 12h [Ws]
direct_rad_1h:Jdirect radiation of previous 1h [J]
direct_rad_1h:Wsdirect radiation of previous 1h [Ws]
direct_rad_24h:Jdirect radiation of previous 24h [J]
direct_rad_24h:Wsdirect radiation of previous 24h [Ws]
direct_rad_3h:Jdirect radiation of previous 3h [J]
direct_rad_3h:Wsdirect radiation of previous 3h [Ws]
direct_rad_6h:Jdirect radiation of previous 6h [Ws]
direct_rad_6h:Wsdirect radiation of previous 6h [Ws]
global_rad:Wglobal radiation [W]
global_rad_10y_mean:Wglobal radiation of previous 10y mean [W]
global_rad_12h:Jglobal radiation of previous 12h [J]
global_rad_12h:Wsglobal radiation of previous 12h [Ws]
global_rad_1h:Jglobal radiation of previous 1h [J]
global_rad_1h:Wsglobal radiation of previous 1h [Ws]
global_rad_24h:Jglobal radiation of previous 24h [J]
global_rad_24h:Wsglobal radiation of previous 24h [Ws]
global_rad_3h:Jglobal radiation of previous 3h [J]
global_rad_3h:Wsglobal radiation of previous 3h [Ws]
global_rad_6h:Jglobal radiation of previous 6h [J]
global_rad_6h:Wsglobal radiation of previous 6h [Ws]

Atmospheric Stability

ParameterDescription
cape:Jkgconvective available potential energy (indication of atmospheric lability) [J/kg]
lifted_index:Klifted index (related to stability of the atmosphere) [K]
prob_tstorm_12h:pprobability of thunderstorms in the previous 12h [%]
prob_tstorm_1h:pprobability of thunderstorms in the previous 1h [%]
prob_tstorm_24h:pprobability of thunderstorms in the previous 24h [%]
prob_tstorm_3h:pprobability of thunderstorms in the previous 3h [%]
prob_tstorm_6h:pprobability of thunderstorms in the previous 6h [%]

Yearly Accumulated Day Counts

ParameterDescription
vegetation_days:dnumber of vegetation days [d]
heating_days:dheating days (24h-mean < 15°C) [d]
heating_degree_days:hddheating degree days (accumulated temperature difference below 15°C) [hdd]
heating_degree_days_base_10C:hddheating degree days with variable base temperature (accumulated temperature difference below 10°C) [HDD]
cooling_degree_days:cddcooling degree days (accumulated temperature difference above 15°C) [cdd]
cooling_degree_days_base_10C:cddcooling degree days with variable base temperature (accumulated temperature difference above 10°C) [cdd]
desert_days:ddesert days
hot_days:dnumber of hot days (24h max. temp > 30°C) [d]
summer_days:dnumber of summer days (24 max temperature > 25°C)[d]
tropical_nights:dnumber of tropical nights (24h min. temperature > 20°C) [d]
frost_days:dfrost days [d]
ice_days:dnumber of ice days (24h max. temp < 0°C) [d]
rain_days:dnumber of days with rain [d]
heavy_rain_days:ddays of heavy rain (precipitation sum > 10mm) [d]
dry_days:dnumber of dry days

Agricultural Parameters

ParameterDescription
evapotranspiration_12h:mmevapotranspiration of previous 12h [mm]
evapotranspiration_1h:mmevapotranspiration of previous 1h [mm]
evapotranspiration_24h:mmevapotranspiration of previous 24h [mm]
evapotranspiration_3h:mmevapotranspiration of previous 3h [mm]
evapotranspiration_6h:mmevapotranspiration of previous 6h [mm]
growing_degree_days_accumulated:gddaccumulated growing degree days [gdd]
grass_land_temperature_sum:Csum of grass land temperature [C]
leaf_wetness:idxLeaf wetness index
phytophthora_negative:idxPhytophthora negative prognosis (index for safety measures against potato blight)
most_similar_year:ymost similar year [y]

Weather Warnings

ParameterDescription
heavy_rain_warning_1h:idxWarning for heavy rain during the previous hour
heavy_rain_warning_6h:idxWarning for heavy rain during the previous 6 hours
incessant_rain_warning_12h:idxWarning for incessant rain during the previous 12 h
incessant_rain_warning_24h:idxWarning for incessant rain during the previous 24 h
incessant_rain_warning_48h:idxWarning for incessant rain during the previous 48 h
incessant_rain_warning_72h:idxWarning for incessant rain during the previous 72 h
snow_warning_12h:idxWarning for heavy snowfall during the previous 12h
snow_warning_1h:idxWarning for heavy snowfall during the previous 1h
snow_warning_24h:idxWarning for heavy snowfall during the previous 24h
snow_warning_48h:idxWarning for heavy snowfall during the previous 48h
snow_warning_6h:idxWarning for heavy snowfall during the previous 6h
tstorm_warning_1h:idxWarning for thunderstorms during the previous 1h
wind_warning_12h:idxWind warning for the previous 12h
wind_warning_1h:idxWind warning for the previous 1h
wind_warning_24h:idxWind warning for the previous 24h
wind_warning_2h:idxWind warning for the previous 2h
wind_warning_3h:idxWind warning for the previous 3h
wind_warning_6h:idxWind warning for the previous 6h