Forecast
The Yandex Weather API can provide weather forecast data both with hourly details and aggregated by parts of the day. A detailed hourly forecast is well suited for drawing a graph of changes in a weather parameter, for detecting important changes, and for analyzing weather data. At the same time, an aggregated forecast for parts of the day is perfect for displaying in the interface or a quick assessment of the overall picture of the day.
To get the weather forecast for the selected geographical point, the forecast object must be specified in the request:
{
weatherByPoint(request: {lat: 52.37125, lon: 4.89388}) {
forecast {
...
}
}
}
Hourly forecast
To get an hourly forecast in a request to the Meteum API inside the forecast object, operate with the hours object nested in days object. You can choose for how many days ahead you would like to have the data with limit argument for days objects.
Example:
{
weatherByPoint(request: { lat: 52.37175, lon: 4.89358 }) {
forecast {
days(limit: 1) {
hours {
time
temperature
humidity
pressure
windSpeed
windDirection
}
}
}
}
}
Response
{
"data": {
"weatherByPoint": {
"forecast": {
"days": [
{
"hours": [
{
"time": "2022-12-02T00:00:00+01:00",
"temperature": 4,
"humidity": 93,
"pressure": 771,
"windSpeed": 1.8,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T01:00:00+01:00",
"temperature": 4,
"humidity": 93,
"pressure": 771,
"windSpeed": 2,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T02:00:00+01:00",
"temperature": 4,
"humidity": 92,
"pressure": 770,
"windSpeed": 2.7,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T03:00:00+01:00",
"temperature": 3,
"humidity": 93,
"pressure": 770,
"windSpeed": 2.9,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T04:00:00+01:00",
"temperature": 3,
"humidity": 92,
"pressure": 770,
"windSpeed": 2.9,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T05:00:00+01:00",
"temperature": 3,
"humidity": 91,
"pressure": 770,
"windSpeed": 2.5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T06:00:00+01:00",
"temperature": 3,
"humidity": 92,
"pressure": 769,
"windSpeed": 2.9,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T07:00:00+01:00",
"temperature": 3,
"humidity": 90,
"pressure": 769,
"windSpeed": 3.5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T08:00:00+01:00",
"temperature": 2,
"humidity": 89,
"pressure": 769,
"windSpeed": 4.5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T09:00:00+01:00",
"temperature": 2,
"humidity": 87,
"pressure": 769,
"windSpeed": 4,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T10:00:00+01:00",
"temperature": 3,
"humidity": 84,
"pressure": 769,
"windSpeed": 4.1,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T11:00:00+01:00",
"temperature": 3,
"humidity": 85,
"pressure": 769,
"windSpeed": 5.6,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T12:00:00+01:00",
"temperature": 3,
"humidity": 84,
"pressure": 769,
"windSpeed": 5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T13:00:00+01:00",
"temperature": 3,
"humidity": 83,
"pressure": 768,
"windSpeed": 5.4,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T14:00:00+01:00",
"temperature": 2,
"humidity": 82,
"pressure": 768,
"windSpeed": 5.4,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T15:00:00+01:00",
"temperature": 2,
"humidity": 84,
"pressure": 768,
"windSpeed": 5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T16:00:00+01:00",
"temperature": 2,
"humidity": 83,
"pressure": 768,
"windSpeed": 5.5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T17:00:00+01:00",
"temperature": 3,
"humidity": 82,
"pressure": 769,
"windSpeed": 4.5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T18:00:00+01:00",
"temperature": 3,
"humidity": 84,
"pressure": 769,
"windSpeed": 5,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T19:00:00+01:00",
"temperature": 3,
"humidity": 82,
"pressure": 769,
"windSpeed": 6,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T20:00:00+01:00",
"temperature": 3,
"humidity": 84,
"pressure": 769,
"windSpeed": 6,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T21:00:00+01:00",
"temperature": 3,
"humidity": 84,
"pressure": 769,
"windSpeed": 6,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T22:00:00+01:00",
"temperature": 3,
"humidity": 82,
"pressure": 769,
"windSpeed": 5.6,
"windDirection": "NORTH_EAST"
},
{
"time": "2022-12-02T23:00:00+01:00",
"temperature": 3,
"humidity": 80,
"pressure": 769,
"windSpeed": 5.5,
"windDirection": "NORTH_EAST"
}
]
}
]
}
}
}
}
Forecast by parts of the day
To get a forecast aggregated by days, specify the days object in the forecast object (in the optional limit parameter, you can specify how many days ahead the forecast is needed).
Inside the days object, you can request data related to the entire day. For example, the time of sunrise and sunset, as well as separate data for parts of the day:
morning– aggregated forecast for the morning,day– aggregated forecast for the day,evening– aggregated forecast for the evening,night– aggregated forecast for the night.
Just as before, inside the objects defining the requested part of the day, you need to specify which weather parameters are needed.
Example:
{
weatherByPoint(request: { lat: 52.37125, lon: 4.89388 }) {
forecast {
days(limit: 2) {
time
sunriseTime
sunsetTime
parts {
morning {
avgTemperature
}
day {
avgTemperature
}
evening {
avgTemperature
}
night {
avgTemperature
}
}
}
}
}
}
Response
{
"data": {
"weatherByPoint": {
"forecast": {
"days": [
{
"time": "2022-09-06T00:00:00+02:00",
"sunrise": "06:59",
"sunset": "20:18",
"parts": {
"morning": {
"avgTemperature": 19
},
"day": {
"avgTemperature": 25
},
"evening": {
"avgTemperature": 22
},
"night": {
"avgTemperature": 19
}
}
},
{
"time": "2022-09-07T00:00:00+02:00",
"sunrise": "07:00",
"sunset": "20:16",
"parts": {
"morning": {
"avgTemperature": 17
},
"day": {
"avgTemperature": 23
},
"evening": {
"avgTemperature": 20
},
"night": {
"avgTemperature": 18
}
}
}
]
}
}
}
}
Forecast by altitude
To get a forecast for a certain height (for example, at 100 meters), use the onHeight fields of the ForecastHour objects. The most approximate available height will be selected.
Currently available:
- cloudiness at low, middle, high level and total cloud coverage in %;
- temperature at 2, 100, 500 meters;
- wind at 10, 100, 200 meters.
Example:
{
weatherByPoint(request: { lat: 52.37125, lon: 4.89388 }) {
forecast {
days(limit: 1) {
hours {
temperature
time
humidity
pressure
windSpeed
windDirection
cloudinessOnHeight(height: 100) {
cloudiness
height
}
temperatureOnHeight(height: 100) {
temperature
height
}
windAngleOnHeight(height: 100) {
windAngle
height
}
windDirectionOnHeight(height: 100) {
windDirection
height
}
windSpeedOnHeight(height: 100) {
windSpeed
height
}
}
}
}
}
}
Response
{
"data": {
"weatherByPoint": {
"forecast": {
"days": [
{
"hours": [
{
"temperature": 4,
"time": "2023-04-27T00:00:00+02:00",
"humidity": 86,
"pressure": 766,
"windSpeed": 1.7,
"windDirection": "NORTH",
"cloudinessOnHeight": {
"cloudiness": 17,
"height": 100
},
"temperatureOnHeight": {
"temperature": 6,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 33,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "NORTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3.9,
"height": 100
}
},
{
"temperature": 4,
"time": "2023-04-27T01:00:00+02:00",
"humidity": 86,
"pressure": 766,
"windSpeed": 1.7,
"windDirection": "NORTH",
"cloudinessOnHeight": {
"cloudiness": 7,
"height": 100
},
"temperatureOnHeight": {
"temperature": 6,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 46,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "NORTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3,
"height": 100
}
},
{
"temperature": 3,
"time": "2023-04-27T02:00:00+02:00",
"humidity": 89,
"pressure": 766,
"windSpeed": 1.5,
"windDirection": "NORTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 0,
"height": 100
},
"temperatureOnHeight": {
"temperature": 6,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 65,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "NORTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 2.5,
"height": 100
}
},
{
"temperature": 3,
"time": "2023-04-27T03:00:00+02:00",
"humidity": 91,
"pressure": 767,
"windSpeed": 1.6,
"windDirection": "NORTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 0,
"height": 100
},
"temperatureOnHeight": {
"temperature": 6,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 90,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 2.7,
"height": 100
}
},
{
"temperature": 2,
"time": "2023-04-27T04:00:00+02:00",
"humidity": 94,
"pressure": 767,
"windSpeed": 1.6,
"windDirection": "NORTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 0,
"height": 100
},
"temperatureOnHeight": {
"temperature": 6,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 110,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3.2,
"height": 100
}
},
{
"temperature": 3,
"time": "2023-04-27T05:00:00+02:00",
"humidity": 93,
"pressure": 766,
"windSpeed": 1.7,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 0,
"height": 100
},
"temperatureOnHeight": {
"temperature": 5,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 123,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4,
"height": 100
}
},
{
"temperature": 1,
"time": "2023-04-27T06:00:00+02:00",
"humidity": 93,
"pressure": 766,
"windSpeed": 1.7,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 33,
"height": 100
},
"temperatureOnHeight": {
"temperature": 5,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 132,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.4,
"height": 100
}
},
{
"temperature": 2,
"time": "2023-04-27T07:00:00+02:00",
"humidity": 92,
"pressure": 766,
"windSpeed": 1.7,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 67,
"height": 100
},
"temperatureOnHeight": {
"temperature": 5,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 140,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.8,
"height": 100
}
},
{
"temperature": 5,
"time": "2023-04-27T08:00:00+02:00",
"humidity": 87,
"pressure": 766,
"windSpeed": 2.2,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 4,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 147,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 5.3,
"height": 100
}
},
{
"temperature": 7,
"time": "2023-04-27T09:00:00+02:00",
"humidity": 77,
"pressure": 766,
"windSpeed": 2.7,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 5,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 149,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.8,
"height": 100
}
},
{
"temperature": 9,
"time": "2023-04-27T10:00:00+02:00",
"humidity": 67,
"pressure": 766,
"windSpeed": 2.9,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 7,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 152,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.4,
"height": 100
}
},
{
"temperature": 10,
"time": "2023-04-27T11:00:00+02:00",
"humidity": 58,
"pressure": 766,
"windSpeed": 3.4,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 8,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 155,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3.9,
"height": 100
}
},
{
"temperature": 11,
"time": "2023-04-27T12:00:00+02:00",
"humidity": 52,
"pressure": 766,
"windSpeed": 3.7,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 8,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 149,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3.7,
"height": 100
}
},
{
"temperature": 12,
"time": "2023-04-27T13:00:00+02:00",
"humidity": 50,
"pressure": 766,
"windSpeed": 4,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 9,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 142,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3.5,
"height": 100
}
},
{
"temperature": 12,
"time": "2023-04-27T14:00:00+02:00",
"humidity": 49,
"pressure": 766,
"windSpeed": 3.2,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 10,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 134,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3.5,
"height": 100
}
},
{
"temperature": 12,
"time": "2023-04-27T15:00:00+02:00",
"humidity": 48,
"pressure": 766,
"windSpeed": 3.5,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 11,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 127,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 3.9,
"height": 100
}
},
{
"temperature": 13,
"time": "2023-04-27T16:00:00+02:00",
"humidity": 45,
"pressure": 766,
"windSpeed": 3.5,
"windDirection": "SOUTH_EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 11,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 120,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.4,
"height": 100
}
},
{
"temperature": 13,
"time": "2023-04-27T17:00:00+02:00",
"humidity": 46,
"pressure": 765,
"windSpeed": 3.4,
"windDirection": "EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 12,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 115,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "SOUTH_EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.9,
"height": 100
}
},
{
"temperature": 12,
"time": "2023-04-27T18:00:00+02:00",
"humidity": 50,
"pressure": 765,
"windSpeed": 3.7,
"windDirection": "EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 12,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 112,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.9,
"height": 100
}
},
{
"temperature": 12,
"time": "2023-04-27T19:00:00+02:00",
"humidity": 58,
"pressure": 765,
"windSpeed": 3.5,
"windDirection": "EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 11,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 109,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.9,
"height": 100
}
},
{
"temperature": 11,
"time": "2023-04-27T20:00:00+02:00",
"humidity": 61,
"pressure": 763,
"windSpeed": 3.2,
"windDirection": "EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 11,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 105,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 4.9,
"height": 100
}
},
{
"temperature": 11,
"time": "2023-04-27T21:00:00+02:00",
"humidity": 67,
"pressure": 763,
"windSpeed": 3.2,
"windDirection": "EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 10,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 101,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 5.8,
"height": 100
}
},
{
"temperature": 10,
"time": "2023-04-27T22:00:00+02:00",
"humidity": 70,
"pressure": 763,
"windSpeed": 3.2,
"windDirection": "EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 9,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 98,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 6.6,
"height": 100
}
},
{
"temperature": 10,
"time": "2023-04-27T23:00:00+02:00",
"humidity": 68,
"pressure": 762,
"windSpeed": 3.2,
"windDirection": "EAST",
"cloudinessOnHeight": {
"cloudiness": 100,
"height": 100
},
"temperatureOnHeight": {
"temperature": 9,
"height": 100
},
"windAngleOnHeight": {
"windAngle": 96,
"height": 100
},
"windDirectionOnHeight": {
"windDirection": "EAST",
"height": 100
},
"windSpeedOnHeight": {
"windSpeed": 7.5,
"height": 100
}
}
]
}
]
}
}
}
}
Forecast for multiple points
In the Graphql API, it is possible to get a forecast for several points at once. To do this, you need to create a fragment with the forecast object in which the necessary data is requested. The created fragment is specified in the weatherByPoint method call for each point.
For example, for London, Warsaw and Berlin points, you can get an aggregated daily (day) and night (night) forecast for 3 days ahead for the following parameters:
cloudiness— cloud collection observed in a certain place,humidity— water content in the air,avgTemperature— average temperature,prec— amount of precipitation (in millimeters),precType— precipitation type,precStrength— precipitation intensity,windSpeed— wind speed,windDirection— wind direction.
Example:
{
London: weatherByPoint(request: { lat: 51.50730, lon: -0.12769 }) {
...WeatherData
}
Warsaw: weatherByPoint(request: { lat: 52.23209, lon: 21.00714 }) {
...WeatherData
}
Berlin: weatherByPoint(request: { lat: 52.51865, lon: 13.37471 }) {
...WeatherData
}
}
fragment WeatherData on Weather {
forecast {
days(limit: 3) {
summary {
day {
cloudiness
humidity
avgTemperature
prec
precType
precStrength
windSpeed
windDirection
}
night {
cloudiness
humidity
avgTemperature
prec
precType
precStrength
windSpeed
windDirection
}
}
}
}
}
Response
{
"data": {
"London": {
"forecast": {
"days": [
{
"summary": {
"day": {
"cloudiness": "OVERCAST",
"humidity": 87,
"avgTemperature": 16,
"prec": 40.4,
"precType": "RAIN",
"precStrength": "VERY_STRONG",
"windSpeed": 3.4,
"windDirection": "WEST"
},
"night": {
"cloudiness": "OVERCAST",
"humidity": 95,
"avgTemperature": 14,
"prec": 0.5,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 1.7,
"windDirection": "SOUTH_WEST"
}
}
},
{
"summary": {
"day": {
"cloudiness": "SIGNIFICANT",
"humidity": 80,
"avgTemperature": 17,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 2.5,
"windDirection": "NORTH_WEST"
},
"night": {
"cloudiness": "SIGNIFICANT",
"humidity": 96,
"avgTemperature": 14,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 1.7,
"windDirection": "WEST"
}
}
},
{
"summary": {
"day": {
"cloudiness": "OVERCAST",
"humidity": 80,
"avgTemperature": 18,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 2,
"windDirection": "SOUTH"
},
"night": {
"cloudiness": "CLEAR",
"humidity": 93,
"avgTemperature": 13,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 1.2,
"windDirection": "NORTH_WEST"
}
}
}
]
}
},
"Warsaw": {
"forecast": {
"days": [
{
"summary": {
"day": {
"cloudiness": "OVERCAST",
"humidity": 87,
"avgTemperature": 14,
"prec": 0.2,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 3.3,
"windDirection": "EAST"
},
"night": {
"cloudiness": "OVERCAST",
"humidity": 81,
"avgTemperature": 14,
"prec": 0.4,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 4.5,
"windDirection": "SOUTH_EAST"
}
}
},
{
"summary": {
"day": {
"cloudiness": "OVERCAST",
"humidity": 81,
"avgTemperature": 15,
"prec": 0.8,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 2.4,
"windDirection": "NORTH_EAST"
},
"night": {
"cloudiness": "CLOUDY",
"humidity": 95,
"avgTemperature": 12,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 1.8,
"windDirection": "EAST"
}
}
},
{
"summary": {
"day": {
"cloudiness": "OVERCAST",
"humidity": 87,
"avgTemperature": 13,
"prec": 1.6,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 3,
"windDirection": "NORTH_WEST"
},
"night": {
"cloudiness": "OVERCAST",
"humidity": 92,
"avgTemperature": 13,
"prec": 0.7,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 1.6,
"windDirection": "NORTH_WEST"
}
}
}
]
}
},
"Berlin": {
"forecast": {
"days": [
{
"summary": {
"day": {
"cloudiness": "SIGNIFICANT",
"humidity": 77,
"avgTemperature": 18,
"prec": 0.4,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 2.6,
"windDirection": "EAST"
},
"night": {
"cloudiness": "CLEAR",
"humidity": 95,
"avgTemperature": 14,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 2.1,
"windDirection": "SOUTH"
}
}
},
{
"summary": {
"day": {
"cloudiness": "SIGNIFICANT",
"humidity": 79,
"avgTemperature": 17,
"prec": 0.2,
"precType": "RAIN",
"precStrength": "WEAK",
"windSpeed": 2,
"windDirection": "SOUTH_WEST"
},
"night": {
"cloudiness": "CLEAR",
"humidity": 93,
"avgTemperature": 14,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 1.7,
"windDirection": "SOUTH_EAST"
}
}
},
{
"summary": {
"day": {
"cloudiness": "CLOUDY",
"humidity": 85,
"avgTemperature": 17,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 3.3,
"windDirection": "NORTH_WEST"
},
"night": {
"cloudiness": "CLOUDY",
"humidity": 93,
"avgTemperature": 14,
"prec": 0,
"precType": "NO_TYPE",
"precStrength": "ZERO",
"windSpeed": 1.3,
"windDirection": "NORTH_WEST"
}
}
}
]
}
}
}
}