From c8cad0f2771056294522fbf8cc0b6306b873dd3d Mon Sep 17 00:00:00 2001 From: Bobby Noelte Date: Wed, 22 Jan 2025 23:47:28 +0100 Subject: [PATCH] Fix BrightSky weather prediction - Get weather data with fully specified end_date datetime argument to not miss data. - Make preciptable water records generation robust against missing temperature or humidity values. Signed-off-by: Bobby Noelte --- src/akkudoktoreos/core/dataabc.py | 3 +- .../prediction/weatherbrightsky.py | 52 +- src/akkudoktoreos/server/eos.py | 11 +- tests/test_weatherbrightsky.py | 10 +- .../testdata/weatherforecast_brightsky_1.json | 9508 +---------------- .../testdata/weatherforecast_brightsky_2.json | 1703 ++- 6 files changed, 1665 insertions(+), 9622 deletions(-) diff --git a/src/akkudoktoreos/core/dataabc.py b/src/akkudoktoreos/core/dataabc.py index 4a3d766..1954c58 100644 --- a/src/akkudoktoreos/core/dataabc.py +++ b/src/akkudoktoreos/core/dataabc.py @@ -811,7 +811,8 @@ class DataSequence(DataBase, MutableSequence): dates, values = self.key_to_lists( key=key, start_datetime=start_datetime, end_datetime=end_datetime, dropna=dropna ) - return pd.Series(data=values, index=pd.DatetimeIndex(dates), name=key) + series = pd.Series(data=values, index=pd.DatetimeIndex(dates), name=key) + return series def key_from_series(self, key: str, series: pd.Series) -> None: """Update the DataSequence from a Pandas Series. diff --git a/src/akkudoktoreos/prediction/weatherbrightsky.py b/src/akkudoktoreos/prediction/weatherbrightsky.py index cfe08b7..b638a61 100644 --- a/src/akkudoktoreos/prediction/weatherbrightsky.py +++ b/src/akkudoktoreos/prediction/weatherbrightsky.py @@ -7,7 +7,7 @@ format, enabling consistent access to forecasted and historical weather attribut """ import json -from typing import Dict, List, Optional, Tuple +from typing import Dict, List, Optional, Tuple, Union import pandas as pd import pvlib @@ -16,14 +16,14 @@ import requests from akkudoktoreos.core.cache import cache_in_file from akkudoktoreos.core.logging import get_logger from akkudoktoreos.prediction.weatherabc import WeatherDataRecord, WeatherProvider -from akkudoktoreos.utils.datetimeutil import to_datetime +from akkudoktoreos.utils.datetimeutil import to_datetime, to_duration logger = get_logger(__name__) -WheaterDataBrightSkyMapping: List[Tuple[str, Optional[str], Optional[float]]] = [ +WheaterDataBrightSkyMapping: List[Tuple[str, Optional[str], Optional[Union[str, float]]]] = [ # brightsky_key, description, corr_factor - ("timestamp", "DateTime", None), + ("timestamp", "DateTime", "to datetime in timezone"), ("precipitation", "Precipitation Amount (mm)", 1), ("pressure_msl", "Pressure (mb)", 1), ("sunshine", None, None), @@ -96,8 +96,8 @@ class WeatherBrightSky(WeatherProvider): ValueError: If the API response does not include expected `weather` data. """ source = "https://api.brightsky.dev" - date = to_datetime(self.start_datetime, as_string="YYYY-MM-DD") - last_date = to_datetime(self.end_datetime, as_string="YYYY-MM-DD") + date = to_datetime(self.start_datetime, as_string=True) + last_date = to_datetime(self.end_datetime, as_string=True) response = requests.get( f"{source}/weather?lat={self.config.general.latitude}&lon={self.config.general.longitude}&date={date}&last_date={last_date}&tz={self.config.general.timezone}" ) @@ -133,7 +133,8 @@ class WeatherBrightSky(WeatherProvider): error_msg = f"No WeatherDataRecord key for '{description}'" logger.error(error_msg) raise ValueError(error_msg) - return self.key_to_series(key) + series = self.key_to_series(key) + return series def _description_from_series(self, description: str, data: pd.Series) -> None: """Update a weather data with a pandas Series based on its description. @@ -170,7 +171,7 @@ class WeatherBrightSky(WeatherProvider): brightsky_data = self._request_forecast(force_update=force_update) # type: ignore # Get key mapping from description - brightsky_key_mapping: Dict[str, Tuple[Optional[str], Optional[float]]] = {} + brightsky_key_mapping: Dict[str, Tuple[Optional[str], Optional[Union[str, float]]]] = {} for brightsky_key, description, corr_factor in WheaterDataBrightSkyMapping: if description is None: brightsky_key_mapping[brightsky_key] = (None, None) @@ -192,7 +193,10 @@ class WeatherBrightSky(WeatherProvider): value = brightsky_record[brightsky_key] corr_factor = item[1] if value and corr_factor: - value = value * corr_factor + if corr_factor == "to datetime in timezone": + value = to_datetime(value, in_timezone=self.config.general.timezone) + else: + value = value * corr_factor setattr(weather_record, key, value) self.insert_by_datetime(weather_record) @@ -216,14 +220,30 @@ class WeatherBrightSky(WeatherProvider): self._description_from_series(description, dhi) # Add Preciptable Water (PWAT) with a PVLib method. - description = "Temperature (°C)" - temperature = self._description_to_series(description) - - description = "Relative Humidity (%)" - humidity = self._description_to_series(description) - + key = WeatherDataRecord.key_from_description("Temperature (°C)") + assert key + temperature = self.key_to_array( + key=key, + start_datetime=self.start_datetime, + end_datetime=self.end_datetime, + interval=to_duration("1 hour"), + ) + key = WeatherDataRecord.key_from_description("Relative Humidity (%)") + assert key + humidity = self.key_to_array( + key=key, + start_datetime=self.start_datetime, + end_datetime=self.end_datetime, + interval=to_duration("1 hour"), + ) + data = pvlib.atmosphere.gueymard94_pw(temperature, humidity) pwat = pd.Series( - data=pvlib.atmosphere.gueymard94_pw(temperature, humidity), index=temperature.index + data=data, + index=pd.DatetimeIndex( + pd.date_range( + start=self.start_datetime, end=self.end_datetime, freq="1h", inclusive="left" + ) + ), ) description = "Preciptable Water (cm)" self._description_from_series(description, pwat) diff --git a/src/akkudoktoreos/server/eos.py b/src/akkudoktoreos/server/eos.py index 06214f1..e98d4dd 100755 --- a/src/akkudoktoreos/server/eos.py +++ b/src/akkudoktoreos/server/eos.py @@ -7,6 +7,7 @@ import os import signal import subprocess import sys +import traceback from contextlib import asynccontextmanager from pathlib import Path from typing import Annotated, Any, AsyncGenerator, Dict, List, Optional, Union @@ -844,7 +845,11 @@ def fastapi_prediction_update( try: prediction_eos.update_data(force_update=force_update, force_enable=force_enable) except Exception as e: - raise HTTPException(status_code=400, detail=f"Error on prediction update: {e}") + trace = "".join(traceback.TracebackException.from_exception(e).format()) + raise HTTPException( + status_code=400, + detail=f"Error on prediction update: {e}{trace}", + ) return Response() @@ -868,7 +873,9 @@ def fastapi_prediction_update_provider( try: provider.update_data(force_update=force_update, force_enable=force_enable) except Exception as e: - raise HTTPException(status_code=400, detail=f"Error on update of provider: {e}") + raise HTTPException( + status_code=400, detail=f"Error on update of provider '{provider_id}': {e}" + ) return Response() diff --git a/tests/test_weatherbrightsky.py b/tests/test_weatherbrightsky.py index e8ed747..d0b2bf0 100644 --- a/tests/test_weatherbrightsky.py +++ b/tests/test_weatherbrightsky.py @@ -162,10 +162,7 @@ def test_update_data(mock_get, provider, sample_brightsky_1_json, cache_store): # Assert: Verify the result is as expected mock_get.assert_called_once() - assert len(provider) == 338 - - # with open(FILE_TESTDATA_WEATHERBRIGHTSKY_2_JSON, "w") as f_out: - # f_out.write(provider.to_json()) + assert len(provider) == 50 # ------------------------------------------------ @@ -188,3 +185,8 @@ def test_brightsky_development_forecast_data(provider, config_eos, is_system_tes with FILE_TESTDATA_WEATHERBRIGHTSKY_1_JSON.open("w", encoding="utf-8", newline="\n") as f_out: json.dump(brightsky_data, f_out, indent=4) + + provider.update_data(force_enable=True, force_update=True) + + with FILE_TESTDATA_WEATHERBRIGHTSKY_2_JSON.open("w", encoding="utf-8", newline="\n") as f_out: + f_out.write(provider.model_dump_json(indent=4)) diff --git a/tests/testdata/weatherforecast_brightsky_1.json b/tests/testdata/weatherforecast_brightsky_1.json index 7c36440..a12cf45 100644 --- a/tests/testdata/weatherforecast_brightsky_1.json +++ b/tests/testdata/weatherforecast_brightsky_1.json @@ -20,14 +20,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -51,14 +51,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -82,14 +82,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -113,14 +113,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -144,14 +144,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -175,14 +175,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -206,14 +206,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -237,14 +237,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -268,14 +268,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -299,14 +299,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -330,14 +330,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -361,14 +361,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -392,14 +392,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -423,14 +423,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -454,14 +454,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -485,14 +485,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -516,14 +516,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -547,14 +547,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -578,14 +578,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "partly-cloudy-day" }, @@ -609,14 +609,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -640,14 +640,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -671,14 +671,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -702,14 +702,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -733,14 +733,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -764,14 +764,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -795,14 +795,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -826,14 +826,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -857,14 +857,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -888,14 +888,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -919,14 +919,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -950,14 +950,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -981,14 +981,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1012,14 +1012,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1043,14 +1043,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1074,14 +1074,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1105,14 +1105,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1136,14 +1136,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1167,14 +1167,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1198,14 +1198,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1229,14 +1229,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1260,14 +1260,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1291,14 +1291,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1322,14 +1322,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1353,14 +1353,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1384,14 +1384,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1415,14 +1415,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1446,14 +1446,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1477,14 +1477,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1508,14 +1508,14 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, + "wind_direction": 219419, + "pressure_msl": 219419, + "visibility": 219419, + "wind_gust_direction": 219419, "sunshine": 219419, - "visibility": 219419 + "wind_gust_speed": 219419 }, "icon": "cloudy" }, @@ -1539,8948 +1539,16 @@ "precipitation_probability_6h": null, "solar": null, "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.0, - "sunshine": 0.0, - "temperature": 11.9, - "wind_direction": 180, - "wind_speed": 12.6, - "cloud_cover": 87, - "dew_point": 10.9, - "relative_humidity": 93, - "visibility": 7410, - "wind_gust_direction": 160, - "wind_gust_speed": 19.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.09, - "sunshine": 0.0, - "temperature": 11.9, - "wind_direction": 190, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 11.1, - "relative_humidity": 95, - "visibility": 4020, - "wind_gust_direction": 180, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.0, - "sunshine": 0.0, - "temperature": 11.7, - "wind_direction": 190, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": 10.7, - "relative_humidity": 94, - "visibility": 3500, - "wind_gust_direction": 200, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 11.4, - "wind_direction": 210, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 10.6, - "relative_humidity": 95, - "visibility": 2770, - "wind_gust_direction": 200, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.4, - "sunshine": 0.0, - "temperature": 11.3, - "wind_direction": 230, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 10.3, - "relative_humidity": 93, - "visibility": 2300, - "wind_gust_direction": 160, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.3, - "sunshine": 0.0, - "temperature": 10.9, - "wind_direction": 180, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 10.2, - "relative_humidity": 95, - "visibility": 3330, - "wind_gust_direction": 170, - "wind_gust_speed": 12.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 10.8, - "wind_direction": 180, - "wind_speed": 8.3, - "cloud_cover": 100, - "dew_point": 10.1, - "relative_humidity": 96, - "visibility": 3100, - "wind_gust_direction": 190, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.09, - "sunshine": 0.0, - "temperature": 10.7, - "wind_direction": 210, - "wind_speed": 6.5, - "cloud_cover": 100, - "dew_point": 9.9, - "relative_humidity": 95, - "visibility": 2900, - "wind_gust_direction": 210, - "wind_gust_speed": 14.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.2, - "sunshine": 0.0, - "temperature": 11.0, - "wind_direction": 200, - "wind_speed": 8.3, - "cloud_cover": 100, - "dew_point": 10.3, - "relative_humidity": 95, - "visibility": 1960, - "wind_gust_direction": 180, - "wind_gust_speed": 16.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.3, - "sunshine": 0.0, - "temperature": 11.2, - "wind_direction": 200, - "wind_speed": 9.4, - "cloud_cover": 100, - "dew_point": 10.0, - "relative_humidity": 92, - "visibility": 4930, - "wind_gust_direction": 220, - "wind_gust_speed": 16.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 11.7, - "wind_direction": 200, - "wind_speed": 10.8, - "cloud_cover": 100, - "dew_point": 10.3, - "relative_humidity": 91, - "visibility": 5410, - "wind_gust_direction": 180, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.2, - "sunshine": 0.0, - "temperature": 12.2, - "wind_direction": 200, - "wind_speed": 10.1, - "cloud_cover": 100, - "dew_point": 10.4, - "relative_humidity": 89, - "visibility": 5520, - "wind_gust_direction": 200, - "wind_gust_speed": 14.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 13.1, - "wind_direction": 180, - "wind_speed": 9.4, - "cloud_cover": 100, - "dew_point": 10.8, - "relative_humidity": 86, - "visibility": 6840, - "wind_gust_direction": 170, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.0, - "sunshine": 0.0, - "temperature": 14.2, - "wind_direction": 190, - "wind_speed": 11.9, - "cloud_cover": 100, - "dew_point": 11.2, - "relative_humidity": 82, - "visibility": 11920, - "wind_gust_direction": 200, - "wind_gust_speed": 19.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.8, - "sunshine": 0.0, - "temperature": 14.4, - "wind_direction": 210, - "wind_speed": 7.6, - "cloud_cover": 100, - "dew_point": 11.2, - "relative_humidity": 81, - "visibility": 13760, - "wind_gust_direction": 230, - "wind_gust_speed": 13.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.4, - "sunshine": 2.0, - "temperature": 14.3, - "wind_direction": 200, - "wind_speed": 7.2, - "cloud_cover": 87, - "dew_point": 11.4, - "relative_humidity": 82, - "visibility": 21080, - "wind_gust_direction": 190, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.2, - "sunshine": 13.0, - "temperature": 12.0, - "wind_direction": 190, - "wind_speed": 8.6, - "cloud_cover": 100, - "dew_point": 10.5, - "relative_humidity": 90, - "visibility": 16720, - "wind_gust_direction": 190, - "wind_gust_speed": 14.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.59, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 280, - "wind_speed": 3.6, - "cloud_cover": 75, - "dew_point": 9.5, - "relative_humidity": 93, - "visibility": 8950, - "wind_gust_direction": 230, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-10-28T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.0, - "sunshine": 0.0, - "temperature": 9.2, - "wind_direction": 330, - "wind_speed": 3.2, - "cloud_cover": 87, - "dew_point": 8.5, - "relative_humidity": 95, - "visibility": 7810, - "wind_gust_direction": 320, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.4, - "sunshine": 0.0, - "temperature": 8.8, - "wind_direction": 170, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 8.3, - "relative_humidity": 97, - "visibility": 90, - "wind_gust_direction": 180, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.5, - "sunshine": 0.0, - "temperature": 9.4, - "wind_direction": 190, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 9.1, - "relative_humidity": 98, - "visibility": 100, - "wind_gust_direction": 190, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.8, - "sunshine": 0.0, - "temperature": 8.3, - "wind_direction": 200, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 8.0, - "relative_humidity": 98, - "visibility": 60, - "wind_gust_direction": 180, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-28T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.8, - "sunshine": 0.0, - "temperature": 8.2, - "wind_direction": 170, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 7.8, - "relative_humidity": 97, - "visibility": 90, - "wind_gust_direction": 170, - "wind_gust_speed": 6.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.8, - "sunshine": 0.0, - "temperature": 8.7, - "wind_direction": 200, - "wind_speed": 3.6, - "cloud_cover": 100, - "dew_point": 8.4, - "relative_humidity": 98, - "visibility": 80, - "wind_gust_direction": 190, - "wind_gust_speed": 7.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.8, - "sunshine": 0.0, - "temperature": 8.1, - "wind_direction": 330, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 7.8, - "relative_humidity": 98, - "visibility": 160, - "wind_gust_direction": 310, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.7, - "sunshine": 0.0, - "temperature": 7.9, - "wind_direction": 10, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 7.5, - "relative_humidity": 98, - "visibility": 100, - "wind_gust_direction": 20, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 8.3, - "wind_direction": 0, - "wind_speed": 1.4, - "cloud_cover": 100, - "dew_point": 8.1, - "relative_humidity": 99, - "visibility": 120, - "wind_gust_direction": 140, - "wind_gust_speed": 3.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 8.1, - "wind_direction": 320, - "wind_speed": 1.8, - "cloud_cover": 100, - "dew_point": 8.0, - "relative_humidity": 99, - "visibility": 100, - "wind_gust_direction": 310, - "wind_gust_speed": 4.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.9, - "sunshine": 0.0, - "temperature": 8.0, - "wind_direction": 20, - "wind_speed": 1.4, - "cloud_cover": 100, - "dew_point": 7.9, - "relative_humidity": 99, - "visibility": 110, - "wind_gust_direction": 190, - "wind_gust_speed": 5.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.0, - "sunshine": 0.0, - "temperature": 7.2, - "wind_direction": 240, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 7.1, - "relative_humidity": 99, - "visibility": 110, - "wind_gust_direction": 230, - "wind_gust_speed": 4.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.3, - "sunshine": 0.0, - "temperature": 7.4, - "wind_direction": 10, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 7.3, - "relative_humidity": 99, - "visibility": 110, - "wind_gust_direction": 20, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.5, - "sunshine": 0.0, - "temperature": 7.8, - "wind_direction": 350, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 7.6, - "relative_humidity": 99, - "visibility": 130, - "wind_gust_direction": 350, - "wind_gust_speed": 5.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.59, - "sunshine": 0.0, - "temperature": 8.7, - "wind_direction": 350, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 8.5, - "relative_humidity": 99, - "visibility": 170, - "wind_gust_direction": 350, - "wind_gust_speed": 7.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.59, - "sunshine": 0.0, - "temperature": 9.3, - "wind_direction": 340, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 9.0, - "relative_humidity": 98, - "visibility": 340, - "wind_gust_direction": 10, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.5, - "sunshine": 0.0, - "temperature": 10.3, - "wind_direction": 10, - "wind_speed": 3.6, - "cloud_cover": 100, - "dew_point": 9.9, - "relative_humidity": 97, - "visibility": 270, - "wind_gust_direction": 10, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.2, - "sunshine": 0.0, - "temperature": 12.1, - "wind_direction": 170, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 10.9, - "relative_humidity": 92, - "visibility": 320, - "wind_gust_direction": 160, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 14.4, - "wind_direction": 160, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 12.1, - "relative_humidity": 86, - "visibility": 11100, - "wind_gust_direction": 170, - "wind_gust_speed": 10.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.9, - "sunshine": 31.0, - "temperature": 16.9, - "wind_direction": 170, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 12.4, - "relative_humidity": 75, - "visibility": 16900, - "wind_gust_direction": 200, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.7, - "sunshine": 32.0, - "temperature": 17.0, - "wind_direction": 180, - "wind_speed": 6.5, - "cloud_cover": 87, - "dew_point": 11.6, - "relative_humidity": 70, - "visibility": 34440, - "wind_gust_direction": 200, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.4, - "sunshine": 17.0, - "temperature": 15.9, - "wind_direction": 210, - "wind_speed": 4.3, - "cloud_cover": 37, - "dew_point": 11.9, - "relative_humidity": 77, - "visibility": 58950, - "wind_gust_direction": 250, - "wind_gust_speed": 14.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-10-29T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.59, - "sunshine": 52.0, - "temperature": 12.5, - "wind_direction": 250, - "wind_speed": 10.4, - "cloud_cover": 50, - "dew_point": 10.4, - "relative_humidity": 87, - "visibility": 47830, - "wind_gust_direction": 280, - "wind_gust_speed": 18.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-10-29T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.9, - "sunshine": 0.0, - "temperature": 11.4, - "wind_direction": 260, - "wind_speed": 6.1, - "cloud_cover": 0, - "dew_point": 10.0, - "relative_humidity": 91, - "visibility": 41010, - "wind_gust_direction": 270, - "wind_gust_speed": 13.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-10-29T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.2, - "sunshine": 0.0, - "temperature": 10.6, - "wind_direction": 200, - "wind_speed": 5.4, - "cloud_cover": 0, - "dew_point": 9.5, - "relative_humidity": 93, - "visibility": 18250, - "wind_gust_direction": 230, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-10-29T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 11.2, - "wind_direction": 230, - "wind_speed": 6.5, - "cloud_cover": 12, - "dew_point": 10.2, - "relative_humidity": 93, - "visibility": 7840, - "wind_gust_direction": 240, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-10-29T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.5, - "sunshine": 0.0, - "temperature": 8.7, - "wind_direction": 210, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 7.8, - "relative_humidity": 94, - "visibility": 7370, - "wind_gust_direction": 200, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 9.0, - "wind_direction": 360, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 8.3, - "relative_humidity": 95, - "visibility": 3850, - "wind_gust_direction": 10, - "wind_gust_speed": 7.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-29T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.59, - "sunshine": 0.0, - "temperature": 9.2, - "wind_direction": 350, - "wind_speed": 4.3, - "cloud_cover": 87, - "dew_point": 8.5, - "relative_humidity": 95, - "visibility": 7260, - "wind_gust_direction": 350, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.8, - "sunshine": 0.0, - "temperature": 7.8, - "wind_direction": 30, - "wind_speed": 3.6, - "cloud_cover": 50, - "dew_point": 7.3, - "relative_humidity": 97, - "visibility": 180, - "wind_gust_direction": 50, - "wind_gust_speed": 5.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-10-30T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.0, - "sunshine": 0.0, - "temperature": 6.9, - "wind_direction": 240, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 6.5, - "relative_humidity": 97, - "visibility": 70, - "wind_gust_direction": 110, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.2, - "sunshine": 0.0, - "temperature": 7.6, - "wind_direction": 360, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 7.3, - "relative_humidity": 98, - "visibility": 100, - "wind_gust_direction": 10, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.09, - "sunshine": 0.0, - "temperature": 7.3, - "wind_direction": 20, - "wind_speed": 1.8, - "cloud_cover": 100, - "dew_point": 7.1, - "relative_humidity": 98, - "visibility": 100, - "wind_gust_direction": 100, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 8.2, - "wind_direction": 350, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 8.2, - "relative_humidity": 100, - "visibility": 90, - "wind_gust_direction": 290, - "wind_gust_speed": 5.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.9, - "sunshine": 0.0, - "temperature": 8.4, - "wind_direction": 290, - "wind_speed": 1.4, - "cloud_cover": 100, - "dew_point": 8.3, - "relative_humidity": 100, - "visibility": 150, - "wind_gust_direction": 140, - "wind_gust_speed": 5.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.8, - "sunshine": 0.0, - "temperature": 8.9, - "wind_direction": 150, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 8.8, - "relative_humidity": 99, - "visibility": 7840, - "wind_gust_direction": 130, - "wind_gust_speed": 4.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 0.0, - "temperature": 8.9, - "wind_direction": 290, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 8.7, - "relative_humidity": 99, - "visibility": 2810, - "wind_gust_direction": 310, - "wind_gust_speed": 6.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.3, - "sunshine": 0.0, - "temperature": 9.2, - "wind_direction": 200, - "wind_speed": 2.2, - "cloud_cover": 87, - "dew_point": 9.0, - "relative_humidity": 99, - "visibility": 460, - "wind_gust_direction": 200, - "wind_gust_speed": 5.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.4, - "sunshine": 0.0, - "temperature": 9.7, - "wind_direction": 170, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 99, - "visibility": 1620, - "wind_gust_direction": 130, - "wind_gust_speed": 4.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 10.4, - "wind_direction": 180, - "wind_speed": 1.8, - "cloud_cover": 100, - "dew_point": 10.4, - "relative_humidity": 100, - "visibility": 13580, - "wind_gust_direction": 150, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 2.0, - "temperature": 11.0, - "wind_direction": 180, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 10.2, - "relative_humidity": 94, - "visibility": 22490, - "wind_gust_direction": 170, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 12.1, - "wind_direction": 170, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 10.7, - "relative_humidity": 91, - "visibility": 17130, - "wind_gust_direction": 180, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 20.0, - "temperature": 12.2, - "wind_direction": 180, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 10.4, - "relative_humidity": 89, - "visibility": 27620, - "wind_gust_direction": 190, - "wind_gust_speed": 14.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 20.0, - "temperature": 12.8, - "wind_direction": 170, - "wind_speed": 10.8, - "cloud_cover": 100, - "dew_point": 10.6, - "relative_humidity": 86, - "visibility": 23300, - "wind_gust_direction": 160, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.7, - "sunshine": 0.0, - "temperature": 12.9, - "wind_direction": 160, - "wind_speed": 10.4, - "cloud_cover": 100, - "dew_point": 10.5, - "relative_humidity": 85, - "visibility": 17420, - "wind_gust_direction": 160, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 0.0, - "temperature": 12.9, - "wind_direction": 170, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 10.7, - "relative_humidity": 87, - "visibility": 12780, - "wind_gust_direction": 170, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.9, - "sunshine": 0.0, - "temperature": 12.6, - "wind_direction": 150, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 10.5, - "relative_humidity": 87, - "visibility": 9610, - "wind_gust_direction": 160, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.4, - "sunshine": 0.0, - "temperature": 12.0, - "wind_direction": 160, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 10.4, - "relative_humidity": 90, - "visibility": 10940, - "wind_gust_direction": 160, - "wind_gust_speed": 5.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 11.6, - "wind_direction": 180, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 10.1, - "relative_humidity": 91, - "visibility": 7710, - "wind_gust_direction": 170, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.9, - "sunshine": 0.0, - "temperature": 11.5, - "wind_direction": 180, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 10.1, - "relative_humidity": 91, - "visibility": 3170, - "wind_gust_direction": 170, - "wind_gust_speed": 6.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.8, - "sunshine": 0.0, - "temperature": 11.4, - "wind_direction": 180, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": 10.0, - "relative_humidity": 91, - "visibility": 3950, - "wind_gust_direction": 170, - "wind_gust_speed": 12.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 11.4, - "wind_direction": 190, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 10.2, - "relative_humidity": 92, - "visibility": 2590, - "wind_gust_direction": 190, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-30T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.9, - "sunshine": 0.0, - "temperature": 11.2, - "wind_direction": 190, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 10.2, - "relative_humidity": 93, - "visibility": 2940, - "wind_gust_direction": 190, - "wind_gust_speed": 4.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.9, - "sunshine": 0.0, - "temperature": 10.4, - "wind_direction": 200, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 9.4, - "relative_humidity": 93, - "visibility": 1970, - "wind_gust_direction": 200, - "wind_gust_speed": 5.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.9, - "sunshine": 0.0, - "temperature": 10.2, - "wind_direction": 200, - "wind_speed": 4.7, - "cloud_cover": 100, - "dew_point": 9.3, - "relative_humidity": 94, - "visibility": 2510, - "wind_gust_direction": 220, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.9, - "sunshine": 0.0, - "temperature": 10.6, - "wind_direction": 190, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 9.9, - "relative_humidity": 95, - "visibility": 2060, - "wind_gust_direction": 190, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 10.4, - "wind_direction": 190, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 9.8, - "relative_humidity": 96, - "visibility": 240, - "wind_gust_direction": 180, - "wind_gust_speed": 9.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.5, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 190, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": 9.9, - "relative_humidity": 96, - "visibility": 2970, - "wind_gust_direction": 190, - "wind_gust_speed": 10.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.0, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 210, - "wind_speed": 3.6, - "cloud_cover": 100, - "dew_point": 9.8, - "relative_humidity": 95, - "visibility": 3290, - "wind_gust_direction": 220, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 200, - "wind_speed": 4.3, - "cloud_cover": 87, - "dew_point": 10.0, - "relative_humidity": 96, - "visibility": 5990, - "wind_gust_direction": 220, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.0, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 190, - "wind_speed": 5.4, - "cloud_cover": 87, - "dew_point": 9.7, - "relative_humidity": 94, - "visibility": 170, - "wind_gust_direction": 190, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.2, - "sunshine": 0.0, - "temperature": 10.3, - "wind_direction": 190, - "wind_speed": 7.6, - "cloud_cover": 100, - "dew_point": 9.4, - "relative_humidity": 94, - "visibility": 5700, - "wind_gust_direction": 180, - "wind_gust_speed": 13.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.5, - "sunshine": 0.0, - "temperature": 11.1, - "wind_direction": 200, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 91, - "visibility": 8690, - "wind_gust_direction": 180, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.59, - "sunshine": 0.0, - "temperature": 11.9, - "wind_direction": 200, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 9.7, - "relative_humidity": 86, - "visibility": 15600, - "wind_gust_direction": 190, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.3, - "sunshine": 1.0, - "temperature": 11.9, - "wind_direction": 210, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 86, - "visibility": 25190, - "wind_gust_direction": 210, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.9, - "sunshine": 2.0, - "temperature": 12.9, - "wind_direction": 200, - "wind_speed": 7.6, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 80, - "visibility": 33140, - "wind_gust_direction": 170, - "wind_gust_speed": 15.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.4, - "sunshine": 0.0, - "temperature": 13.6, - "wind_direction": 190, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 8.7, - "relative_humidity": 72, - "visibility": 36550, - "wind_gust_direction": 200, - "wind_gust_speed": 15.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.9, - "sunshine": 0.0, - "temperature": 13.8, - "wind_direction": 210, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 8.8, - "relative_humidity": 72, - "visibility": 57100, - "wind_gust_direction": 230, - "wind_gust_speed": 16.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.7, - "sunshine": 0.0, - "temperature": 14.1, - "wind_direction": 190, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 8.7, - "relative_humidity": 70, - "visibility": 52570, - "wind_gust_direction": 190, - "wind_gust_speed": 14.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 13.9, - "wind_direction": 180, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 8.9, - "relative_humidity": 72, - "visibility": 45660, - "wind_gust_direction": 140, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.3, - "sunshine": 0.0, - "temperature": 12.9, - "wind_direction": 230, - "wind_speed": 3.6, - "cloud_cover": 100, - "dew_point": 8.7, - "relative_humidity": 76, - "visibility": 51810, - "wind_gust_direction": 220, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.3, - "sunshine": 0.0, - "temperature": 11.6, - "wind_direction": 230, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 9.0, - "relative_humidity": 84, - "visibility": 44110, - "wind_gust_direction": 270, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.2, - "sunshine": 0.0, - "temperature": 11.4, - "wind_direction": 110, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 9.2, - "relative_humidity": 87, - "visibility": 48080, - "wind_gust_direction": 230, - "wind_gust_speed": 7.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.59, - "sunshine": 0.0, - "temperature": 11.7, - "wind_direction": 180, - "wind_speed": 3.6, - "cloud_cover": 87, - "dew_point": 9.4, - "relative_humidity": 86, - "visibility": 30700, - "wind_gust_direction": 170, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 11.4, - "wind_direction": 170, - "wind_speed": 2.9, - "cloud_cover": 87, - "dew_point": 9.4, - "relative_humidity": 87, - "visibility": 25400, - "wind_gust_direction": 180, - "wind_gust_speed": 7.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 11.2, - "wind_direction": 180, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 9.3, - "relative_humidity": 88, - "visibility": 25670, - "wind_gust_direction": 200, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-10-31T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.0, - "sunshine": 0.0, - "temperature": 11.0, - "wind_direction": 230, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 9.3, - "relative_humidity": 89, - "visibility": 24450, - "wind_gust_direction": 200, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.8, - "sunshine": 0.0, - "temperature": 10.8, - "wind_direction": 210, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 9.4, - "relative_humidity": 91, - "visibility": 24100, - "wind_gust_direction": 190, - "wind_gust_speed": 6.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.4, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 190, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 9.5, - "relative_humidity": 94, - "visibility": 20630, - "wind_gust_direction": 200, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.2, - "sunshine": 0.0, - "temperature": 10.2, - "wind_direction": 210, - "wind_speed": 6.5, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 96, - "visibility": 24020, - "wind_gust_direction": 240, - "wind_gust_speed": 12.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.09, - "sunshine": 0.0, - "temperature": 10.2, - "wind_direction": 210, - "wind_speed": 9.4, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 96, - "visibility": 8730, - "wind_gust_direction": 200, - "wind_gust_speed": 17.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.9, - "sunshine": 0.0, - "temperature": 10.1, - "wind_direction": 250, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 96, - "visibility": 5560, - "wind_gust_direction": 230, - "wind_gust_speed": 19.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.1, - "pressure_msl": 1026.0, - "sunshine": 0.0, - "temperature": 10.2, - "wind_direction": 250, - "wind_speed": 8.3, - "cloud_cover": 100, - "dew_point": 9.6, - "relative_humidity": 96, - "visibility": 5030, - "wind_gust_direction": 260, - "wind_gust_speed": 13.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 239475, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.1, - "pressure_msl": 1025.8, - "sunshine": 0.0, - "temperature": 9.9, - "wind_direction": 270, - "wind_speed": 7.9, - "cloud_cover": 100, - "dew_point": 9.2, - "relative_humidity": 96, - "visibility": 7340, - "wind_gust_direction": 260, - "wind_gust_speed": 11.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 239475, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.7, - "sunshine": 0.0, - "temperature": 9.4, - "wind_direction": 260, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 8.7, - "relative_humidity": 95, - "visibility": 6340, - "wind_gust_direction": 280, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 334529, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.7, - "sunshine": 0.0, - "temperature": 9.3, - "wind_direction": 220, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 8.5, - "relative_humidity": 94, - "visibility": 12030, - "wind_gust_direction": 230, - "wind_gust_speed": 17.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.0, - "sunshine": 0.0, - "temperature": 9.6, - "wind_direction": 220, - "wind_speed": 11.9, - "cloud_cover": 100, - "dew_point": 8.4, - "relative_humidity": 92, - "visibility": 29210, - "wind_gust_direction": 200, - "wind_gust_speed": 21.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.9, - "sunshine": 0.0, - "temperature": 10.0, - "wind_direction": 210, - "wind_speed": 12.2, - "cloud_cover": 100, - "dew_point": 8.6, - "relative_humidity": 91, - "visibility": 24570, - "wind_gust_direction": 210, - "wind_gust_speed": 22.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.3, - "sunshine": 0.0, - "temperature": 10.3, - "wind_direction": 200, - "wind_speed": 11.9, - "cloud_cover": 100, - "dew_point": 8.6, - "relative_humidity": 89, - "visibility": 19290, - "wind_gust_direction": 200, - "wind_gust_speed": 22.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.8, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 220, - "wind_speed": 12.6, - "cloud_cover": 100, - "dew_point": 8.6, - "relative_humidity": 88, - "visibility": 38750, - "wind_gust_direction": 220, - "wind_gust_speed": 20.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.2, - "sunshine": 0.0, - "temperature": 10.7, - "wind_direction": 220, - "wind_speed": 13.3, - "cloud_cover": 100, - "dew_point": 8.6, - "relative_humidity": 87, - "visibility": 47950, - "wind_gust_direction": 210, - "wind_gust_speed": 24.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1024.7, - "sunshine": 0.0, - "temperature": 10.9, - "wind_direction": 240, - "wind_speed": 10.4, - "cloud_cover": 100, - "dew_point": 8.3, - "relative_humidity": 84, - "visibility": 39370, - "wind_gust_direction": 270, - "wind_gust_speed": 21.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1024.3, - "sunshine": 0.0, - "temperature": 11.2, - "wind_direction": 240, - "wind_speed": 10.1, - "cloud_cover": 100, - "dew_point": 8.5, - "relative_humidity": 83, - "visibility": 45050, - "wind_gust_direction": 240, - "wind_gust_speed": 18.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1024.0, - "sunshine": 0.0, - "temperature": 11.3, - "wind_direction": 220, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 8.5, - "relative_humidity": 83, - "visibility": 50820, - "wind_gust_direction": 250, - "wind_gust_speed": 16.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1024.0, - "sunshine": 0.0, - "temperature": 10.8, - "wind_direction": 200, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 8.2, - "relative_humidity": 84, - "visibility": 44670, - "wind_gust_direction": 190, - "wind_gust_speed": 19.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1024.4, - "sunshine": 0.0, - "temperature": 10.6, - "wind_direction": 240, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 7.9, - "relative_humidity": 83, - "visibility": 49650, - "wind_gust_direction": 260, - "wind_gust_speed": 13.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.0, - "sunshine": 0.0, - "temperature": 10.3, - "wind_direction": 270, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 8.0, - "relative_humidity": 86, - "visibility": 34320, - "wind_gust_direction": 290, - "wind_gust_speed": 18.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.59, - "sunshine": 0.0, - "temperature": 10.1, - "wind_direction": 300, - "wind_speed": 13.3, - "cloud_cover": 100, - "dew_point": 7.3, - "relative_humidity": 83, - "visibility": 28820, - "wind_gust_direction": 310, - "wind_gust_speed": 23.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1025.9, - "sunshine": 0.0, - "temperature": 9.8, - "wind_direction": 290, - "wind_speed": 12.2, - "cloud_cover": 100, - "dew_point": 6.9, - "relative_humidity": 82, - "visibility": 27910, - "wind_gust_direction": 310, - "wind_gust_speed": 20.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.5, - "sunshine": 0.0, - "temperature": 9.3, - "wind_direction": 280, - "wind_speed": 10.4, - "cloud_cover": 100, - "dew_point": 6.6, - "relative_humidity": 83, - "visibility": 27860, - "wind_gust_direction": 270, - "wind_gust_speed": 16.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-01T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1026.8, - "sunshine": 0.0, - "temperature": 9.1, - "wind_direction": 300, - "wind_speed": 7.9, - "cloud_cover": 100, - "dew_point": 6.5, - "relative_humidity": 84, - "visibility": 26550, - "wind_gust_direction": 300, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.09, - "sunshine": 0.0, - "temperature": 9.1, - "wind_direction": 330, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 6.4, - "relative_humidity": 83, - "visibility": 33360, - "wind_gust_direction": 340, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.2, - "sunshine": 0.0, - "temperature": 8.9, - "wind_direction": 230, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 6.7, - "relative_humidity": 86, - "visibility": 30030, - "wind_gust_direction": 250, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 8.7, - "wind_direction": 210, - "wind_speed": 4.7, - "cloud_cover": 100, - "dew_point": 6.8, - "relative_humidity": 88, - "visibility": 34110, - "wind_gust_direction": 190, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.3, - "sunshine": 0.0, - "temperature": 8.7, - "wind_direction": 200, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 6.8, - "relative_humidity": 88, - "visibility": 27390, - "wind_gust_direction": 190, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.8, - "sunshine": 0.0, - "temperature": 8.8, - "wind_direction": 190, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 6.8, - "relative_humidity": 87, - "visibility": 25060, - "wind_gust_direction": 220, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 0.0, - "temperature": 8.8, - "wind_direction": 210, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 7.2, - "relative_humidity": 90, - "visibility": 23760, - "wind_gust_direction": 190, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.09, - "sunshine": 0.0, - "temperature": 8.8, - "wind_direction": 190, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 7.1, - "relative_humidity": 89, - "visibility": 21300, - "wind_gust_direction": 180, - "wind_gust_speed": 7.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.8, - "sunshine": 0.0, - "temperature": 8.8, - "wind_direction": 170, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 7.3, - "relative_humidity": 90, - "visibility": 18210, - "wind_gust_direction": 170, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.4, - "sunshine": 0.0, - "temperature": 9.1, - "wind_direction": 260, - "wind_speed": 1.8, - "cloud_cover": 100, - "dew_point": 7.4, - "relative_humidity": 89, - "visibility": 18570, - "wind_gust_direction": 320, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.0, - "sunshine": 0.0, - "temperature": 9.6, - "wind_direction": 180, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 7.6, - "relative_humidity": 87, - "visibility": 19450, - "wind_gust_direction": 190, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.5, - "sunshine": 0.0, - "temperature": 10.5, - "wind_direction": 170, - "wind_speed": 1.8, - "cloud_cover": 100, - "dew_point": 8.2, - "relative_humidity": 85, - "visibility": 20370, - "wind_gust_direction": 230, - "wind_gust_speed": 4.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.4, - "sunshine": 0.0, - "temperature": 11.4, - "wind_direction": 150, - "wind_speed": 1.8, - "cloud_cover": 87, - "dew_point": 8.3, - "relative_humidity": 81, - "visibility": 32720, - "wind_gust_direction": 150, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.4, - "sunshine": 10.0, - "temperature": 12.3, - "wind_direction": 110, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 7.6, - "relative_humidity": 73, - "visibility": 63890, - "wind_gust_direction": 110, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.09, - "sunshine": 2.0, - "temperature": 13.2, - "wind_direction": 90, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 7.8, - "relative_humidity": 70, - "visibility": 75000, - "wind_gust_direction": 80, - "wind_gust_speed": 10.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.8, - "sunshine": 0.0, - "temperature": 12.6, - "wind_direction": 110, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 8.2, - "relative_humidity": 74, - "visibility": 70510, - "wind_gust_direction": 30, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.7, - "sunshine": 0.0, - "temperature": 12.6, - "wind_direction": 50, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 8.4, - "relative_humidity": 76, - "visibility": 73670, - "wind_gust_direction": 60, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.0, - "sunshine": 1.0, - "temperature": 12.7, - "wind_direction": 60, - "wind_speed": 7.6, - "cloud_cover": 87, - "dew_point": 8.7, - "relative_humidity": 77, - "visibility": 75000, - "wind_gust_direction": 40, - "wind_gust_speed": 15.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.2, - "sunshine": 21.0, - "temperature": 10.9, - "wind_direction": 60, - "wind_speed": 9.7, - "cloud_cover": 100, - "dew_point": 8.3, - "relative_humidity": 84, - "visibility": 75000, - "wind_gust_direction": 80, - "wind_gust_speed": 19.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.8, - "sunshine": 0.0, - "temperature": 10.8, - "wind_direction": 50, - "wind_speed": 10.4, - "cloud_cover": 100, - "dew_point": 9.0, - "relative_humidity": 88, - "visibility": 31130, - "wind_gust_direction": 40, - "wind_gust_speed": 19.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.4, - "sunshine": 0.0, - "temperature": 11.1, - "wind_direction": 50, - "wind_speed": 11.5, - "cloud_cover": 100, - "dew_point": 8.9, - "relative_humidity": 86, - "visibility": 75000, - "wind_gust_direction": 60, - "wind_gust_speed": 20.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.9, - "sunshine": 0.0, - "temperature": 10.2, - "wind_direction": 50, - "wind_speed": 11.5, - "cloud_cover": 37, - "dew_point": 7.3, - "relative_humidity": 82, - "visibility": 75000, - "wind_gust_direction": 40, - "wind_gust_speed": 20.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-02T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.7, - "sunshine": 0.0, - "temperature": 8.3, - "wind_direction": 30, - "wind_speed": 8.6, - "cloud_cover": 100, - "dew_point": 5.6, - "relative_humidity": 83, - "visibility": 73550, - "wind_gust_direction": 30, - "wind_gust_speed": 15.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.8, - "sunshine": 0.0, - "temperature": 7.2, - "wind_direction": 50, - "wind_speed": 9.0, - "cloud_cover": 87, - "dew_point": 5.2, - "relative_humidity": 87, - "visibility": 64570, - "wind_gust_direction": 30, - "wind_gust_speed": 15.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-02T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.09, - "sunshine": 0.0, - "temperature": 5.8, - "wind_direction": 40, - "wind_speed": 5.0, - "cloud_cover": 87, - "dew_point": 4.0, - "relative_humidity": 88, - "visibility": 66050, - "wind_gust_direction": 40, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.2, - "sunshine": 0.0, - "temperature": 6.4, - "wind_direction": 30, - "wind_speed": 5.8, - "cloud_cover": 87, - "dew_point": 4.4, - "relative_humidity": 87, - "visibility": 68320, - "wind_gust_direction": 30, - "wind_gust_speed": 9.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.4, - "sunshine": 0.0, - "temperature": 5.0, - "wind_direction": 40, - "wind_speed": 7.2, - "cloud_cover": 37, - "dew_point": 3.4, - "relative_humidity": 89, - "visibility": 62300, - "wind_gust_direction": 30, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-03T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.3, - "sunshine": 0.0, - "temperature": 4.9, - "wind_direction": 20, - "wind_speed": 6.8, - "cloud_cover": 87, - "dew_point": 3.6, - "relative_humidity": 91, - "visibility": 52300, - "wind_gust_direction": 50, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.3, - "sunshine": 0.0, - "temperature": 3.3, - "wind_direction": 10, - "wind_speed": 9.0, - "cloud_cover": 75, - "dew_point": 2.5, - "relative_humidity": 94, - "visibility": 46680, - "wind_gust_direction": 10, - "wind_gust_speed": 13.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-03T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.0, - "sunshine": 0.0, - "temperature": 2.2, - "wind_direction": 10, - "wind_speed": 7.6, - "cloud_cover": 87, - "dew_point": 1.3, - "relative_humidity": 94, - "visibility": 25080, - "wind_gust_direction": 10, - "wind_gust_speed": 12.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.9, - "sunshine": 0.0, - "temperature": 2.4, - "wind_direction": 10, - "wind_speed": 7.6, - "cloud_cover": 37, - "dew_point": 1.8, - "relative_humidity": 96, - "visibility": 31420, - "wind_gust_direction": 360, - "wind_gust_speed": 13.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-03T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.8, - "sunshine": 0.0, - "temperature": 2.0, - "wind_direction": 10, - "wind_speed": 5.8, - "cloud_cover": 12, - "dew_point": 1.4, - "relative_humidity": 96, - "visibility": 7340, - "wind_gust_direction": 10, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-03T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.9, - "sunshine": 0.0, - "temperature": 1.2, - "wind_direction": 360, - "wind_speed": 6.1, - "cloud_cover": 37, - "dew_point": 0.5, - "relative_humidity": 95, - "visibility": 14380, - "wind_gust_direction": 20, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-03T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.09, - "sunshine": 0.0, - "temperature": 1.1, - "wind_direction": 360, - "wind_speed": 6.1, - "cloud_cover": 25, - "dew_point": 0.5, - "relative_humidity": 96, - "visibility": 190, - "wind_gust_direction": 360, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-11-03T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.5, - "sunshine": 48.0, - "temperature": 3.5, - "wind_direction": 360, - "wind_speed": 6.5, - "cloud_cover": 0, - "dew_point": 1.6, - "relative_humidity": 87, - "visibility": 14830, - "wind_gust_direction": 360, - "wind_gust_speed": 7.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-day" - }, - { - "timestamp": "2024-11-03T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.09, - "sunshine": 60.0, - "temperature": 6.9, - "wind_direction": 10, - "wind_speed": 3.6, - "cloud_cover": 0, - "dew_point": 3.9, - "relative_humidity": 81, - "visibility": 29490, - "wind_gust_direction": 10, - "wind_gust_speed": 7.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-day" - }, - { - "timestamp": "2024-11-03T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.59, - "sunshine": 60.0, - "temperature": 8.5, - "wind_direction": 350, - "wind_speed": 3.2, - "cloud_cover": 37, - "dew_point": 4.5, - "relative_humidity": 76, - "visibility": 35910, - "wind_gust_direction": 320, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-11-03T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.0, - "sunshine": 60.0, - "temperature": 10.4, - "wind_direction": 30, - "wind_speed": 5.0, - "cloud_cover": 62, - "dew_point": 5.0, - "relative_humidity": 69, - "visibility": 40750, - "wind_gust_direction": 50, - "wind_gust_speed": 10.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-11-03T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.3, - "sunshine": 60.0, - "temperature": 11.9, - "wind_direction": 60, - "wind_speed": 4.3, - "cloud_cover": 37, - "dew_point": 5.8, - "relative_humidity": 66, - "visibility": 45690, - "wind_gust_direction": 70, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-11-03T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.7, - "sunshine": 60.0, - "temperature": 12.8, - "wind_direction": 90, - "wind_speed": 4.7, - "cloud_cover": 25, - "dew_point": 5.8, - "relative_humidity": 62, - "visibility": 20640, - "wind_gust_direction": 90, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-11-03T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.3, - "sunshine": 60.0, - "temperature": 12.7, - "wind_direction": 70, - "wind_speed": 2.9, - "cloud_cover": 37, - "dew_point": 5.8, - "relative_humidity": 63, - "visibility": 39980, - "wind_gust_direction": 110, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-11-03T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.8, - "sunshine": 60.0, - "temperature": 11.9, - "wind_direction": 90, - "wind_speed": 3.2, - "cloud_cover": 25, - "dew_point": 5.8, - "relative_humidity": 66, - "visibility": 52750, - "wind_gust_direction": 100, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-day" - }, - { - "timestamp": "2024-11-03T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.8, - "sunshine": 43.0, - "temperature": 8.5, - "wind_direction": 90, - "wind_speed": 4.0, - "cloud_cover": 87, - "dew_point": 5.3, - "relative_humidity": 80, - "visibility": 49460, - "wind_gust_direction": 70, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.2, - "sunshine": 0.0, - "temperature": 5.9, - "wind_direction": 70, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 4.1, - "relative_humidity": 88, - "visibility": 26380, - "wind_gust_direction": 80, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.59, - "sunshine": 0.0, - "temperature": 4.7, - "wind_direction": 50, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 3.5, - "relative_humidity": 92, - "visibility": 32120, - "wind_gust_direction": 30, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.9, - "sunshine": 0.0, - "temperature": 3.4, - "wind_direction": 20, - "wind_speed": 5.8, - "cloud_cover": 87, - "dew_point": 2.4, - "relative_humidity": 93, - "visibility": 24750, - "wind_gust_direction": 40, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-03T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.0, - "sunshine": 0.0, - "temperature": 2.4, - "wind_direction": 40, - "wind_speed": 5.8, - "cloud_cover": 25, - "dew_point": 1.6, - "relative_humidity": 95, - "visibility": 16220, - "wind_gust_direction": 40, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-03T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.4, - "sunshine": 0.0, - "temperature": 1.8, - "wind_direction": 10, - "wind_speed": 6.1, - "cloud_cover": 0, - "dew_point": 1.2, - "relative_humidity": 96, - "visibility": 8920, - "wind_gust_direction": 350, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-03T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.7, - "sunshine": 0.0, - "temperature": 1.1, - "wind_direction": 360, - "wind_speed": 7.2, - "cloud_cover": 0, - "dew_point": 0.4, - "relative_humidity": 95, - "visibility": 6530, - "wind_gust_direction": 20, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.8, - "sunshine": 0.0, - "temperature": 0.9, - "wind_direction": 10, - "wind_speed": 7.2, - "cloud_cover": 0, - "dew_point": 0.4, - "relative_humidity": 96, - "visibility": 690, - "wind_gust_direction": 10, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.59, - "sunshine": 0.0, - "temperature": 0.2, - "wind_direction": 350, - "wind_speed": 7.2, - "cloud_cover": 0, - "dew_point": -0.3, - "relative_humidity": 96, - "visibility": 290, - "wind_gust_direction": 360, - "wind_gust_speed": 9.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.8, - "sunshine": 0.0, - "temperature": -0.1, - "wind_direction": 10, - "wind_speed": 7.2, - "cloud_cover": 37, - "dew_point": -0.5, - "relative_humidity": 97, - "visibility": 480, - "wind_gust_direction": 360, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-04T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.7, - "sunshine": 0.0, - "temperature": 0.0, - "wind_direction": 20, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": -0.3, - "relative_humidity": 98, - "visibility": 110, - "wind_gust_direction": 10, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.7, - "sunshine": 0.0, - "temperature": 0.2, - "wind_direction": 10, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": -0.1, - "relative_humidity": 98, - "visibility": 110, - "wind_gust_direction": 360, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.59, - "sunshine": 0.0, - "temperature": 0.4, - "wind_direction": 360, - "wind_speed": 4.7, - "cloud_cover": 100, - "dew_point": 0.2, - "relative_humidity": 98, - "visibility": 160, - "wind_gust_direction": 20, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.59, - "sunshine": 0.0, - "temperature": 0.7, - "wind_direction": 10, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 0.5, - "relative_humidity": 98, - "visibility": 120, - "wind_gust_direction": 10, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.7, - "sunshine": 0.0, - "temperature": 0.7, - "wind_direction": 360, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 0.6, - "relative_humidity": 99, - "visibility": 120, - "wind_gust_direction": 350, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.0, - "sunshine": 0.0, - "temperature": 1.0, - "wind_direction": 360, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 0.6, - "relative_humidity": 97, - "visibility": 90, - "wind_gust_direction": 360, - "wind_gust_speed": 7.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.2, - "sunshine": 0.0, - "temperature": 1.8, - "wind_direction": 20, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 1.6, - "relative_humidity": 98, - "visibility": 120, - "wind_gust_direction": 360, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.0, - "sunshine": 0.0, - "temperature": 3.1, - "wind_direction": 360, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 2.9, - "relative_humidity": 99, - "visibility": 150, - "wind_gust_direction": 50, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.7, - "sunshine": 0.0, - "temperature": 3.4, - "wind_direction": 350, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 3.2, - "relative_humidity": 99, - "visibility": 120, - "wind_gust_direction": 10, - "wind_gust_speed": 7.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.9, - "sunshine": 22.0, - "temperature": 4.6, - "wind_direction": 350, - "wind_speed": 3.6, - "cloud_cover": 87, - "dew_point": 4.0, - "relative_humidity": 96, - "visibility": 350, - "wind_gust_direction": 50, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-04T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.9, - "sunshine": 60.0, - "temperature": 5.5, - "wind_direction": 30, - "wind_speed": 4.3, - "cloud_cover": 0, - "dew_point": 4.6, - "relative_humidity": 94, - "visibility": 21410, - "wind_gust_direction": 60, - "wind_gust_speed": 12.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-day" - }, - { - "timestamp": "2024-11-04T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.0, - "sunshine": 60.0, - "temperature": 8.1, - "wind_direction": 10, - "wind_speed": 2.9, - "cloud_cover": 0, - "dew_point": 5.5, - "relative_humidity": 84, - "visibility": 39060, - "wind_gust_direction": 50, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-day" - }, - { - "timestamp": "2024-11-04T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.5, - "sunshine": 60.0, - "temperature": 9.5, - "wind_direction": 50, - "wind_speed": 5.4, - "cloud_cover": 0, - "dew_point": 6.0, - "relative_humidity": 79, - "visibility": 36810, - "wind_gust_direction": 60, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-day" - }, - { - "timestamp": "2024-11-04T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.09, - "sunshine": 60.0, - "temperature": 7.6, - "wind_direction": 40, - "wind_speed": 5.4, - "cloud_cover": 0, - "dew_point": 5.6, - "relative_humidity": 87, - "visibility": 61290, - "wind_gust_direction": 60, - "wind_gust_speed": 9.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-day" - }, - { - "timestamp": "2024-11-04T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.2, - "sunshine": 42.0, - "temperature": 4.5, - "wind_direction": 40, - "wind_speed": 4.3, - "cloud_cover": 0, - "dew_point": 3.3, - "relative_humidity": 92, - "visibility": 45940, - "wind_gust_direction": 30, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.2, - "sunshine": 0.0, - "temperature": 2.7, - "wind_direction": 40, - "wind_speed": 4.3, - "cloud_cover": 0, - "dew_point": 1.8, - "relative_humidity": 94, - "visibility": 44410, - "wind_gust_direction": 50, - "wind_gust_speed": 7.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 2.2, - "wind_direction": 10, - "wind_speed": 6.1, - "cloud_cover": 12, - "dew_point": 1.7, - "relative_humidity": 96, - "visibility": 44940, - "wind_gust_direction": 10, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.0, - "sunshine": 0.0, - "temperature": 1.9, - "wind_direction": 360, - "wind_speed": 7.6, - "cloud_cover": 0, - "dew_point": 1.5, - "relative_humidity": 97, - "visibility": 47840, - "wind_gust_direction": 360, - "wind_gust_speed": 9.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.09, - "sunshine": 0.0, - "temperature": 2.1, - "wind_direction": 360, - "wind_speed": 7.2, - "cloud_cover": 0, - "dew_point": 1.9, - "relative_humidity": 98, - "visibility": 37930, - "wind_gust_direction": 10, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.2, - "sunshine": 0.0, - "temperature": 2.2, - "wind_direction": 10, - "wind_speed": 4.0, - "cloud_cover": 0, - "dew_point": 1.9, - "relative_humidity": 98, - "visibility": 18950, - "wind_gust_direction": 10, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-04T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.0, - "sunshine": 0.0, - "temperature": 2.1, - "wind_direction": 10, - "wind_speed": 7.6, - "cloud_cover": 0, - "dew_point": 1.9, - "relative_humidity": 99, - "visibility": 12300, - "wind_gust_direction": 360, - "wind_gust_speed": 10.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-05T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.8, - "sunshine": 0.0, - "temperature": 2.1, - "wind_direction": 10, - "wind_speed": 7.6, - "cloud_cover": 12, - "dew_point": 1.8, - "relative_humidity": 98, - "visibility": 6660, - "wind_gust_direction": 10, - "wind_gust_speed": 11.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-05T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 1.1, - "wind_direction": 360, - "wind_speed": 8.6, - "cloud_cover": 12, - "dew_point": 0.9, - "relative_humidity": 99, - "visibility": 1020, - "wind_gust_direction": 360, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-05T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 0.0, - "wind_direction": 10, - "wind_speed": 7.9, - "cloud_cover": 75, - "dew_point": -0.4, - "relative_humidity": 97, - "visibility": 4820, - "wind_gust_direction": 360, - "wind_gust_speed": 12.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-05T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.5, - "sunshine": 0.0, - "temperature": -0.7, - "wind_direction": 360, - "wind_speed": 7.9, - "cloud_cover": 87, - "dew_point": -1.1, - "relative_humidity": 97, - "visibility": 230, - "wind_gust_direction": 360, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.3, - "sunshine": 0.0, - "temperature": -1.0, - "wind_direction": 10, - "wind_speed": 6.8, - "cloud_cover": 87, - "dew_point": -1.3, - "relative_humidity": 98, - "visibility": 1170, - "wind_gust_direction": 10, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.5, - "sunshine": 0.0, - "temperature": -1.4, - "wind_direction": 10, - "wind_speed": 7.2, - "cloud_cover": 0, - "dew_point": -1.9, - "relative_humidity": 96, - "visibility": 430, - "wind_gust_direction": 360, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "clear-night" - }, - { - "timestamp": "2024-11-05T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": -1.5, - "wind_direction": 10, - "wind_speed": 7.9, - "cloud_cover": 25, - "dew_point": -2.0, - "relative_humidity": 96, - "visibility": 200, - "wind_gust_direction": 10, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-05T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.8, - "sunshine": 0.0, - "temperature": -1.8, - "wind_direction": 360, - "wind_speed": 7.2, - "cloud_cover": 37, - "dew_point": -2.2, - "relative_humidity": 97, - "visibility": 180, - "wind_gust_direction": 360, - "wind_gust_speed": 9.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "partly-cloudy-night" - }, - { - "timestamp": "2024-11-05T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.2, - "sunshine": 0.0, - "temperature": -1.0, - "wind_direction": 360, - "wind_speed": 7.2, - "cloud_cover": 87, - "dew_point": -1.5, - "relative_humidity": 96, - "visibility": 250, - "wind_gust_direction": 360, - "wind_gust_speed": 9.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.09, - "sunshine": 1.0, - "temperature": 1.6, - "wind_direction": 10, - "wind_speed": 4.7, - "cloud_cover": 100, - "dew_point": 1.1, - "relative_humidity": 97, - "visibility": 150, - "wind_gust_direction": 10, - "wind_gust_speed": 6.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 47.0, - "temperature": 2.7, - "wind_direction": 10, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 2.2, - "relative_humidity": 96, - "visibility": 2630, - "wind_gust_direction": 40, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.2, - "sunshine": 41.0, - "temperature": 3.6, - "wind_direction": 60, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 2.6, - "relative_humidity": 93, - "visibility": 11070, - "wind_gust_direction": 90, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 0.0, - "temperature": 4.3, - "wind_direction": 100, - "wind_speed": 7.9, - "cloud_cover": 100, - "dew_point": 3.2, - "relative_humidity": 92, - "visibility": 12260, - "wind_gust_direction": 110, - "wind_gust_speed": 18.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.7, - "sunshine": 0.0, - "temperature": 4.7, - "wind_direction": 160, - "wind_speed": 12.6, - "cloud_cover": 100, - "dew_point": 3.4, - "relative_humidity": 91, - "visibility": 13640, - "wind_gust_direction": 170, - "wind_gust_speed": 19.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.5, - "sunshine": 0.0, - "temperature": 5.3, - "wind_direction": 170, - "wind_speed": 10.8, - "cloud_cover": 100, - "dew_point": 3.8, - "relative_humidity": 90, - "visibility": 14990, - "wind_gust_direction": 160, - "wind_gust_speed": 19.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.3, - "sunshine": 0.0, - "temperature": 5.6, - "wind_direction": 160, - "wind_speed": 8.6, - "cloud_cover": 100, - "dew_point": 3.8, - "relative_humidity": 88, - "visibility": 14400, - "wind_gust_direction": 170, - "wind_gust_speed": 16.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.3, - "sunshine": 0.0, - "temperature": 5.5, - "wind_direction": 150, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 3.8, - "relative_humidity": 89, - "visibility": 15490, - "wind_gust_direction": 150, - "wind_gust_speed": 15.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.2, - "sunshine": 0.0, - "temperature": 5.3, - "wind_direction": 140, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 4.2, - "relative_humidity": 93, - "visibility": 12550, - "wind_gust_direction": 150, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.5, - "sunshine": 0.0, - "temperature": 5.2, - "wind_direction": 100, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 4.4, - "relative_humidity": 95, - "visibility": 3050, - "wind_gust_direction": 110, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 360, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 4.3, - "relative_humidity": 93, - "visibility": 470, - "wind_gust_direction": 340, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.5, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 350, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 4.4, - "relative_humidity": 93, - "visibility": 320, - "wind_gust_direction": 350, - "wind_gust_speed": 7.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.59, - "sunshine": 0.0, - "temperature": 5.5, - "wind_direction": 350, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 4.7, - "relative_humidity": 94, - "visibility": 350, - "wind_gust_direction": 360, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.5, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 10, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 4.8, - "relative_humidity": 96, - "visibility": 200, - "wind_gust_direction": 360, - "wind_gust_speed": 6.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-05T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.7, - "sunshine": 0.0, - "temperature": 5.3, - "wind_direction": 10, - "wind_speed": 3.6, - "cloud_cover": 100, - "dew_point": 4.9, - "relative_humidity": 97, - "visibility": 170, - "wind_gust_direction": 360, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1027.9, - "sunshine": 0.0, - "temperature": 5.2, - "wind_direction": 10, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 4.8, - "relative_humidity": 97, - "visibility": 210, - "wind_gust_direction": 40, - "wind_gust_speed": 4.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 10, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 4.7, - "relative_humidity": 97, - "visibility": 170, - "wind_gust_direction": 10, - "wind_gust_speed": 3.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.0, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 200, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 4.7, - "relative_humidity": 97, - "visibility": 690, - "wind_gust_direction": 180, - "wind_gust_speed": 6.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.09, - "sunshine": 0.0, - "temperature": 4.9, - "wind_direction": 200, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 4.5, - "relative_humidity": 97, - "visibility": 900, - "wind_gust_direction": 220, - "wind_gust_speed": 9.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.1, - "pressure_msl": 1028.09, - "sunshine": 0.0, - "temperature": 5.0, - "wind_direction": 190, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 4.4, - "relative_humidity": 96, - "visibility": 2150, - "wind_gust_direction": 200, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.5, - "sunshine": 0.0, - "temperature": 5.0, - "wind_direction": 210, - "wind_speed": 2.5, - "cloud_cover": 100, - "dew_point": 4.5, - "relative_humidity": 97, - "visibility": 2410, - "wind_gust_direction": 240, - "wind_gust_speed": 5.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 180, - "wind_speed": 1.8, - "cloud_cover": 100, - "dew_point": 4.8, - "relative_humidity": 98, - "visibility": 3520, - "wind_gust_direction": 230, - "wind_gust_speed": 4.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "condition": 311981, - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.2, - "sunshine": 0.0, - "temperature": 5.2, - "wind_direction": 160, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 4.6, - "relative_humidity": 96, - "visibility": 900, - "wind_gust_direction": 110, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1029.7, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 120, - "wind_speed": 1.8, - "cloud_cover": 100, - "dew_point": 4.9, - "relative_humidity": 96, - "visibility": 12750, - "wind_gust_direction": 260, - "wind_gust_speed": 4.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.5, - "sunshine": 0.0, - "temperature": 5.6, - "wind_direction": 340, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 4.8, - "relative_humidity": 95, - "visibility": 6980, - "wind_gust_direction": 310, - "wind_gust_speed": 5.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1030.9, - "sunshine": 0.0, - "temperature": 6.0, - "wind_direction": 360, - "wind_speed": 3.2, - "cloud_cover": 100, - "dew_point": 4.3, - "relative_humidity": 89, - "visibility": 15760, - "wind_gust_direction": 300, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.5, - "sunshine": 0.0, - "temperature": 6.4, - "wind_direction": 30, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 4.4, - "relative_humidity": 87, - "visibility": 29630, - "wind_gust_direction": 30, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.59, - "sunshine": 0.0, - "temperature": 6.6, - "wind_direction": 20, - "wind_speed": 3.6, - "cloud_cover": 100, - "dew_point": 4.2, - "relative_humidity": 85, - "visibility": 19110, - "wind_gust_direction": 50, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.7, - "sunshine": 0.0, - "temperature": 6.7, - "wind_direction": 360, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 4.0, - "relative_humidity": 83, - "visibility": 25120, - "wind_gust_direction": 40, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.5, - "sunshine": 0.0, - "temperature": 6.7, - "wind_direction": 340, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 4.2, - "relative_humidity": 84, - "visibility": 28400, - "wind_gust_direction": 330, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.59, - "sunshine": 0.0, - "temperature": 6.5, - "wind_direction": 90, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 4.1, - "relative_humidity": 84, - "visibility": 25950, - "wind_gust_direction": 90, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1031.8, - "sunshine": 0.0, - "temperature": 6.3, - "wind_direction": 90, - "wind_speed": 4.7, - "cloud_cover": 100, - "dew_point": 3.8, - "relative_humidity": 84, - "visibility": 22070, - "wind_gust_direction": 90, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.09, - "sunshine": 0.0, - "temperature": 6.1, - "wind_direction": 100, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 3.8, - "relative_humidity": 85, - "visibility": 22360, - "wind_gust_direction": 120, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.3, - "sunshine": 0.0, - "temperature": 5.9, - "wind_direction": 110, - "wind_speed": 7.6, - "cloud_cover": 100, - "dew_point": 3.9, - "relative_humidity": 87, - "visibility": 17470, - "wind_gust_direction": 100, - "wind_gust_speed": 11.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.59, - "sunshine": 0.0, - "temperature": 5.6, - "wind_direction": 50, - "wind_speed": 2.2, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 84, - "visibility": 18050, - "wind_gust_direction": 90, - "wind_gust_speed": 7.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.8, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 50, - "wind_speed": 4.7, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 85, - "visibility": 16940, - "wind_gust_direction": 50, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.2, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 60, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 3.3, - "relative_humidity": 86, - "visibility": 16260, - "wind_gust_direction": 70, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.59, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 60, - "wind_speed": 4.3, - "cloud_cover": 100, - "dew_point": 3.0, - "relative_humidity": 85, - "visibility": 14540, - "wind_gust_direction": 70, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-06T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.7, - "sunshine": 0.0, - "temperature": 5.2, - "wind_direction": 50, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 2.8, - "relative_humidity": 84, - "visibility": 14150, - "wind_gust_direction": 50, - "wind_gust_speed": 8.6, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.8, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 70, - "wind_speed": 6.5, - "cloud_cover": 100, - "dew_point": 2.8, - "relative_humidity": 85, - "visibility": 17300, - "wind_gust_direction": 80, - "wind_gust_speed": 15.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T01:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.7, - "sunshine": 0.0, - "temperature": 5.0, - "wind_direction": 50, - "wind_speed": 6.5, - "cloud_cover": 100, - "dew_point": 2.9, - "relative_humidity": 86, - "visibility": 20750, - "wind_gust_direction": 40, - "wind_gust_speed": 12.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T02:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.7, - "sunshine": 0.0, - "temperature": 4.9, - "wind_direction": 40, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 2.7, - "relative_humidity": 85, - "visibility": 19330, - "wind_gust_direction": 30, - "wind_gust_speed": 10.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T03:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.59, - "sunshine": 0.0, - "temperature": 5.0, - "wind_direction": 30, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 2.4, - "relative_humidity": 83, - "visibility": 17310, - "wind_gust_direction": 50, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T04:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.5, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 80, - "wind_speed": 7.2, - "cloud_cover": 100, - "dew_point": 2.8, - "relative_humidity": 85, - "visibility": 28980, - "wind_gust_direction": 90, - "wind_gust_speed": 15.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T05:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.4, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 90, - "wind_speed": 7.6, - "cloud_cover": 100, - "dew_point": 2.7, - "relative_humidity": 84, - "visibility": 22600, - "wind_gust_direction": 110, - "wind_gust_speed": 19.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T06:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.2, - "sunshine": 0.0, - "temperature": 5.0, - "wind_direction": 40, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 2.8, - "relative_humidity": 86, - "visibility": 21600, - "wind_gust_direction": 30, - "wind_gust_speed": 10.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T07:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.3, - "sunshine": 0.0, - "temperature": 5.2, - "wind_direction": 40, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 2.7, - "relative_humidity": 84, - "visibility": 19120, - "wind_gust_direction": 60, - "wind_gust_speed": 11.5, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T08:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.8, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 30, - "wind_speed": 5.4, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 85, - "visibility": 16970, - "wind_gust_direction": 20, - "wind_gust_speed": 11.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T09:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1034.2, - "sunshine": 0.0, - "temperature": 5.7, - "wind_direction": 60, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 83, - "visibility": 20190, - "wind_gust_direction": 80, - "wind_gust_speed": 14.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T10:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1034.4, - "sunshine": 0.0, - "temperature": 6.0, - "wind_direction": 70, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 82, - "visibility": 20410, - "wind_gust_direction": 40, - "wind_gust_speed": 16.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T11:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1034.5, - "sunshine": 0.0, - "temperature": 6.1, - "wind_direction": 60, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 81, - "visibility": 23940, - "wind_gust_direction": 50, - "wind_gust_speed": 18.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T12:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1034.0, - "sunshine": 0.0, - "temperature": 6.4, - "wind_direction": 90, - "wind_speed": 7.9, - "cloud_cover": 100, - "dew_point": 3.3, - "relative_humidity": 80, - "visibility": 22710, - "wind_gust_direction": 60, - "wind_gust_speed": 18.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T13:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.7, - "sunshine": 0.0, - "temperature": 6.3, - "wind_direction": 80, - "wind_speed": 9.4, - "cloud_cover": 100, - "dew_point": 2.7, - "relative_humidity": 78, - "visibility": 22430, - "wind_gust_direction": 70, - "wind_gust_speed": 18.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T14:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.3, - "sunshine": 0.0, - "temperature": 6.5, - "wind_direction": 50, - "wind_speed": 7.9, - "cloud_cover": 100, - "dew_point": 3.2, - "relative_humidity": 79, - "visibility": 23210, - "wind_gust_direction": 50, - "wind_gust_speed": 19.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T15:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.9, - "sunshine": 0.0, - "temperature": 6.7, - "wind_direction": 50, - "wind_speed": 7.2, - "cloud_cover": 100, - "dew_point": 3.0, - "relative_humidity": 77, - "visibility": 23220, - "wind_gust_direction": 30, - "wind_gust_speed": 14.4, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T16:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.8, - "sunshine": 0.0, - "temperature": 6.6, - "wind_direction": 50, - "wind_speed": 8.3, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 78, - "visibility": 24990, - "wind_gust_direction": 50, - "wind_gust_speed": 16.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T17:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.7, - "sunshine": 0.0, - "temperature": 6.5, - "wind_direction": 60, - "wind_speed": 5.8, - "cloud_cover": 100, - "dew_point": 2.9, - "relative_humidity": 78, - "visibility": 23620, - "wind_gust_direction": 30, - "wind_gust_speed": 9.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T18:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.8, - "sunshine": 0.0, - "temperature": 6.2, - "wind_direction": 60, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 80, - "visibility": 20330, - "wind_gust_direction": 90, - "wind_gust_speed": 13.7, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T19:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1032.9, - "sunshine": 0.0, - "temperature": 6.2, - "wind_direction": 70, - "wind_speed": 4.0, - "cloud_cover": 100, - "dew_point": 2.7, - "relative_humidity": 78, - "visibility": 23590, - "wind_gust_direction": 40, - "wind_gust_speed": 8.3, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T20:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.0, - "sunshine": 0.0, - "temperature": 6.1, - "wind_direction": 70, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 81, - "visibility": 18610, - "wind_gust_direction": 100, - "wind_gust_speed": 19.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T21:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.2, - "sunshine": 0.0, - "temperature": 6.0, - "wind_direction": 80, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 82, - "visibility": 15020, - "wind_gust_direction": 100, - "wind_gust_speed": 20.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T22:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.4, - "sunshine": 0.0, - "temperature": 6.0, - "wind_direction": 80, - "wind_speed": 9.4, - "cloud_cover": 100, - "dew_point": 3.1, - "relative_humidity": 82, - "visibility": 14560, - "wind_gust_direction": 70, - "wind_gust_speed": 20.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-07T23:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.09, - "sunshine": 0.0, - "temperature": 5.8, - "wind_direction": 60, - "wind_speed": 9.4, - "cloud_cover": 100, - "dew_point": 2.9, - "relative_humidity": 82, - "visibility": 14290, - "wind_gust_direction": 50, - "wind_gust_speed": 20.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, - "pressure_msl": 219419, - "cloud_cover": 219419, - "wind_gust_direction": 219419, "wind_direction": 219419, - "wind_speed": 219419, - "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T00:00:00+01:00", - "source_id": 46567, - "precipitation": 0.0, - "pressure_msl": 1033.09, - "sunshine": 0.0, - "temperature": 5.7, - "wind_direction": 60, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 2.8, - "relative_humidity": 82, - "visibility": 13230, - "wind_gust_direction": 60, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 219419, "pressure_msl": 219419, - "cloud_cover": 219419, + "visibility": 219419, "wind_gust_direction": 219419, - "wind_direction": 219419, - "wind_speed": 219419, "sunshine": 219419, - "visibility": 219419 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T01:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1033.0, - "sunshine": 0.0, - "temperature": 5.6, - "wind_direction": 80, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": 2.9, - "relative_humidity": 83, - "visibility": 10600, - "wind_gust_direction": null, - "wind_gust_speed": 19.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T02:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1032.59, - "sunshine": 0.0, - "temperature": 5.3, - "wind_direction": 50, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 2.7, - "relative_humidity": 83, - "visibility": 10300, - "wind_gust_direction": null, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T03:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1032.0, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 40, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 2.7, - "relative_humidity": 84, - "visibility": 10800, - "wind_gust_direction": null, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T04:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1031.5, - "sunshine": 0.0, - "temperature": 4.8, - "wind_direction": 50, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 2.3, - "relative_humidity": 84, - "visibility": 10600, - "wind_gust_direction": null, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T05:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1031.4, - "sunshine": 0.0, - "temperature": 4.9, - "wind_direction": 40, - "wind_speed": 11.9, - "cloud_cover": 100, - "dew_point": 2.4, - "relative_humidity": 84, - "visibility": 11200, - "wind_gust_direction": null, - "wind_gust_speed": 20.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T06:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1031.09, - "sunshine": 0.0, - "temperature": 4.6, - "wind_direction": 30, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 2.2, - "relative_humidity": 84, - "visibility": 11200, - "wind_gust_direction": null, - "wind_gust_speed": 20.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T07:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1030.7, - "sunshine": 0.0, - "temperature": 4.5, - "wind_direction": 30, - "wind_speed": 10.1, - "cloud_cover": 100, - "dew_point": 2.1, - "relative_humidity": 84, - "visibility": 13800, - "wind_gust_direction": null, - "wind_gust_speed": 20.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T08:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1030.59, - "sunshine": 0.0, - "temperature": 4.6, - "wind_direction": 20, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 2.1, - "relative_humidity": 84, - "visibility": 14300, - "wind_gust_direction": null, - "wind_gust_speed": 18.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T09:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1030.5, - "sunshine": 0.0, - "temperature": 4.9, - "wind_direction": 350, - "wind_speed": 2.9, - "cloud_cover": 100, - "dew_point": 2.5, - "relative_humidity": 84, - "visibility": 13200, - "wind_gust_direction": null, - "wind_gust_speed": 16.9, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T10:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1030.3, - "sunshine": 0.0, - "temperature": 5.0, - "wind_direction": 40, - "wind_speed": 5.0, - "cloud_cover": 100, - "dew_point": 2.8, - "relative_humidity": 86, - "visibility": 12300, - "wind_gust_direction": null, - "wind_gust_speed": 10.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T11:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1030.2, - "sunshine": 0.0, - "temperature": 5.1, - "wind_direction": 60, - "wind_speed": 6.8, - "cloud_cover": 100, - "dew_point": 3.6, - "relative_humidity": 90, - "visibility": 11900, - "wind_gust_direction": null, - "wind_gust_speed": 14.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T12:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1029.5, - "sunshine": 0.0, - "temperature": 5.8, - "wind_direction": 70, - "wind_speed": 7.9, - "cloud_cover": 100, - "dew_point": 4.7, - "relative_humidity": 93, - "visibility": 9500, - "wind_gust_direction": null, - "wind_gust_speed": 13.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T13:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.8, - "sunshine": 0.0, - "temperature": 6.3, - "wind_direction": 70, - "wind_speed": 6.1, - "cloud_cover": 100, - "dew_point": 5.1, - "relative_humidity": 92, - "visibility": 14500, - "wind_gust_direction": null, - "wind_gust_speed": 15.8, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T14:00:00+01:00", - "source_id": 6705, - "precipitation": 0.1, - "pressure_msl": 1028.4, - "sunshine": 0.0, - "temperature": 6.6, - "wind_direction": 90, - "wind_speed": 11.2, - "cloud_cover": 100, - "dew_point": 5.1, - "relative_humidity": 90, - "visibility": 17100, - "wind_gust_direction": null, - "wind_gust_speed": 19.1, - "condition": "rain", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T15:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.4, - "sunshine": 0.0, - "temperature": 6.1, - "wind_direction": 130, - "wind_speed": 14.0, - "cloud_cover": 88, - "dew_point": 4.9, - "relative_humidity": 92, - "visibility": 10200, - "wind_gust_direction": null, - "wind_gust_speed": 22.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T16:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.3, - "sunshine": 0.0, - "temperature": 6.2, - "wind_direction": 120, - "wind_speed": 13.0, - "cloud_cover": 100, - "dew_point": 4.7, - "relative_humidity": 90, - "visibility": 12000, - "wind_gust_direction": null, - "wind_gust_speed": 20.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T17:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.2, - "sunshine": 0.0, - "temperature": 6.2, - "wind_direction": 110, - "wind_speed": 11.2, - "cloud_cover": 100, - "dew_point": 4.4, - "relative_humidity": 88, - "visibility": 7900, - "wind_gust_direction": null, - "wind_gust_speed": 19.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T18:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 6.0, - "wind_direction": 130, - "wind_speed": 15.1, - "cloud_cover": 100, - "dew_point": 4.0, - "relative_humidity": 87, - "visibility": 9200, - "wind_gust_direction": null, - "wind_gust_speed": 23.0, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T19:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 5.9, - "wind_direction": 140, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 3.9, - "relative_humidity": 87, - "visibility": 9500, - "wind_gust_direction": null, - "wind_gust_speed": 24.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T20:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 5.8, - "wind_direction": 140, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 3.7, - "relative_humidity": 86, - "visibility": 10100, - "wind_gust_direction": null, - "wind_gust_speed": 24.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T21:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.59, - "sunshine": 0.0, - "temperature": 5.8, - "wind_direction": 140, - "wind_speed": 9.0, - "cloud_cover": 100, - "dew_point": 3.5, - "relative_humidity": 85, - "visibility": 9900, - "wind_gust_direction": null, - "wind_gust_speed": 24.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T22:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 5.6, - "wind_direction": 150, - "wind_speed": 10.1, - "cloud_cover": 100, - "dew_point": 3.0, - "relative_humidity": 83, - "visibility": 17700, - "wind_gust_direction": null, - "wind_gust_speed": 24.1, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 - }, - "icon": "cloudy" - }, - { - "timestamp": "2024-11-08T23:00:00+01:00", - "source_id": 6705, - "precipitation": 0.0, - "pressure_msl": 1028.7, - "sunshine": 0.0, - "temperature": 5.4, - "wind_direction": 130, - "wind_speed": 10.1, - "cloud_cover": 100, - "dew_point": 2.9, - "relative_humidity": 84, - "visibility": 15500, - "wind_gust_direction": null, - "wind_gust_speed": 20.2, - "condition": "dry", - "precipitation_probability": null, - "precipitation_probability_6h": null, - "solar": null, - "fallback_source_ids": { - "wind_gust_speed": 6225, - "pressure_msl": 6225, - "cloud_cover": 6225, - "wind_direction": 6225, - "wind_speed": 6225, - "sunshine": 6225, - "visibility": 6225, - "condition": 6225 + "wind_gust_speed": 219419 }, "icon": "cloudy" - }, - { - "timestamp": "2024-11-09T00:00:00+01:00", - "source_id": 1602, - "precipitation": 0.0, - "pressure_msl": 1027.4, - "sunshine": 0.0, - "temperature": 5.3, - "wind_direction": 87, - "wind_speed": 5.5, - "cloud_cover": 86, - "dew_point": 2.8, - "relative_humidity": null, - "visibility": 8700, - "wind_gust_direction": null, - "wind_gust_speed": 13.0, - "condition": "dry", - "precipitation_probability": 1, - "precipitation_probability_6h": null, - "solar": null, - "icon": "cloudy" } ], "sources": [ @@ -10494,48 +1562,9 @@ "station_name": "Arnstein-M\u00fcdesheim", "wmo_station_id": "P125", "first_record": "2010-01-01T00:00:00+00:00", - "last_record": "2024-11-07T23:00:00+00:00", + "last_record": "2025-02-13T23:00:00+00:00", "distance": 7199.0 }, - { - "id": 311981, - "dwd_station_id": "01997", - "observation_type": "historical", - "lat": 50.1219, - "lon": 9.9079, - "height": 220.0, - "station_name": "Hammelburg", - "wmo_station_id": "P122", - "first_record": "2022-07-09T00:00:00+00:00", - "last_record": "2024-11-07T23:00:00+00:00", - "distance": 15082.0 - }, - { - "id": 239475, - "dwd_station_id": "04016", - "observation_type": "historical", - "lat": 49.8526, - "lon": 10.1006, - "height": 282.5, - "station_name": "Prosselsheim-Seligenstadt", - "wmo_station_id": "P138", - "first_record": "2010-01-01T00:00:00+00:00", - "last_record": "2024-11-07T23:00:00+00:00", - "distance": 17923.0 - }, - { - "id": 334529, - "dwd_station_id": "06287", - "observation_type": "historical", - "lat": 50.1141, - "lon": 9.735, - "height": 160.0, - "station_name": "Gr\u00e4fendorf,Kr.Main-Spessart", - "wmo_station_id": "P120", - "first_record": "2023-05-08T00:00:00+00:00", - "last_record": "2024-11-07T23:00:00+00:00", - "distance": 22804.0 - }, { "id": 219419, "dwd_station_id": "02597", @@ -10546,47 +1575,8 @@ "station_name": "Kissingen, Bad", "wmo_station_id": "10658", "first_record": "2010-01-01T00:00:00+00:00", - "last_record": "2024-11-07T23:00:00+00:00", + "last_record": "2025-02-14T23:00:00+00:00", "distance": 25569.0 - }, - { - "id": 6705, - "dwd_station_id": "00191", - "observation_type": "current", - "lat": 49.97, - "lon": 9.92, - "height": 220.0, - "station_name": "ARNSTEIN-MUEDESHEIM", - "wmo_station_id": "P125", - "first_record": "2024-11-07T00:00:00+00:00", - "last_record": "2024-11-08T22:00:00+00:00", - "distance": 6629.0 - }, - { - "id": 6225, - "dwd_station_id": "02597", - "observation_type": "current", - "lat": 50.2, - "lon": 10.08, - "height": 262.0, - "station_name": "KISSINGEN", - "wmo_station_id": "10658", - "first_record": "2024-11-07T00:00:00+00:00", - "last_record": "2024-11-08T22:00:00+00:00", - "distance": 22985.0 - }, - { - "id": 1602, - "dwd_station_id": "00191", - "observation_type": "forecast", - "lat": 49.97, - "lon": 9.92, - "height": 220.0, - "station_name": "ARNSTEIN-MUEDESHEIM", - "wmo_station_id": "P125", - "first_record": "2024-11-08T21:00:00+00:00", - "last_record": "2024-11-19T04:00:00+00:00", - "distance": 6629.0 } ] } \ No newline at end of file diff --git a/tests/testdata/weatherforecast_brightsky_2.json b/tests/testdata/weatherforecast_brightsky_2.json index 64c7718..bf00e74 100644 --- a/tests/testdata/weatherforecast_brightsky_2.json +++ b/tests/testdata/weatherforecast_brightsky_2.json @@ -1,340 +1,1363 @@ -[ - "{\"date_time\":\"2024-10-25T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":140.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.5700713856497344,\"wind_speed\":4.7,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":6.2,\"feels_like\":null,\"dew_point\":5.8,\"relative_humidity\":97.0,\"pressure\":1022.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":90.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6249985327562004,\"wind_speed\":6.1,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":6.6,\"feels_like\":null,\"dew_point\":6.3,\"relative_humidity\":98.0,\"pressure\":1023.1,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":740.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7334253361156824,\"wind_speed\":3.6,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":7.5,\"feels_like\":null,\"dew_point\":7.3,\"relative_humidity\":99.0,\"pressure\":1023.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":580.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8455721653466037,\"wind_speed\":2.9,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":8.7,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":98.0,\"pressure\":1022.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":140.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9376328848315296,\"wind_speed\":4.7,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":9.5,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":98.0,\"pressure\":1022.6,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T04:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":250.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9532243896939583,\"wind_speed\":4.7,\"wind_direction\":80.0,\"frost_chance\":null,\"temp_air\":9.8,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":97.0,\"pressure\":1022.6,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2280.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9807797336643354,\"wind_speed\":6.1,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.5,\"relative_humidity\":96.0,\"pressure\":1022.6,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2650.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9601466114386656,\"wind_speed\":7.6,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":95.0,\"pressure\":1022.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2290.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9395134892129953,\"wind_speed\":8.3,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":94.0,\"pressure\":1022.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2530.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9721291734030872,\"wind_speed\":7.6,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":10.3,\"feels_like\":null,\"dew_point\":9.5,\"relative_humidity\":95.0,\"pressure\":1022.4,\"ozone\":null,\"ghi\":22.22705922303379,\"dni\":0.0,\"dhi\":22.22705922303379}", - "{\"date_time\":\"2024-10-26T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":1660.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9601466114386656,\"wind_speed\":6.8,\"wind_direction\":80.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":95.0,\"pressure\":1022.4,\"ozone\":null,\"ghi\":68.16265202099999,\"dni\":0.0,\"dhi\":68.16265202099999}", - "{\"date_time\":\"2024-10-26T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4420.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9395134892129953,\"wind_speed\":7.2,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":94.0,\"pressure\":1022.1,\"ozone\":null,\"ghi\":108.0100746278567,\"dni\":0.0,\"dhi\":108.0100746278567}", - "{\"date_time\":\"2024-10-26T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2010.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9513699189462126,\"wind_speed\":7.6,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":10.3,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":94.0,\"pressure\":1021.8,\"ozone\":null,\"ghi\":134.2816493853918,\"dni\":0.0,\"dhi\":134.2816493853918}", - "{\"date_time\":\"2024-10-26T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4340.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8683329011187144,\"wind_speed\":7.9,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":10.3,\"feels_like\":null,\"dew_point\":8.8,\"relative_humidity\":90.0,\"pressure\":1021.2,\"ozone\":null,\"ghi\":144.04237088707308,\"dni\":0.0,\"dhi\":144.04237088707308}", - "{\"date_time\":\"2024-10-26T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9060.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9164012929980223,\"wind_speed\":7.6,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":10.9,\"feels_like\":null,\"dew_point\":9.2,\"relative_humidity\":89.0,\"pressure\":1020.8,\"ozone\":null,\"ghi\":136.35519419190516,\"dni\":0.0,\"dhi\":136.35519419190516}", - "{\"date_time\":\"2024-10-26T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13650.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.979008294319185,\"wind_speed\":6.8,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":11.8,\"feels_like\":null,\"dew_point\":9.7,\"relative_humidity\":87.0,\"pressure\":1020.0,\"ozone\":null,\"ghi\":111.94730962791996,\"dni\":0.0,\"dhi\":111.94730962791996}", - "{\"date_time\":\"2024-10-26T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17560.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9946143405085994,\"wind_speed\":7.2,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":12.9,\"feels_like\":null,\"dew_point\":9.8,\"relative_humidity\":82.0,\"pressure\":1019.8,\"ozone\":null,\"ghi\":73.45834328182735,\"dni\":0.0,\"dhi\":73.45834328182735}", - "{\"date_time\":\"2024-10-26T16:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17960.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9099689648264042,\"wind_speed\":8.3,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":12.8,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":79.0,\"pressure\":1019.2,\"ozone\":null,\"ghi\":34.07062080450064,\"dni\":0.0,\"dhi\":34.07062080450064}", - "{\"date_time\":\"2024-10-26T17:00:00+01:00\",\"total_clouds\":62.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14910.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.843603353612786,\"wind_speed\":6.8,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":9.9,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":91.0,\"pressure\":1018.8,\"ozone\":null,\"ghi\":0.11256372587508819,\"dni\":0.0,\"dhi\":0.11256372587508819}", - "{\"date_time\":\"2024-10-26T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":6400.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7277309224807302,\"wind_speed\":5.4,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":8.3,\"feels_like\":null,\"dew_point\":7.5,\"relative_humidity\":94.0,\"pressure\":1018.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":720.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6911147392871873,\"wind_speed\":5.4,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":7.6,\"feels_like\":null,\"dew_point\":6.9,\"relative_humidity\":96.0,\"pressure\":1018.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T20:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5730.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6378354583834347,\"wind_speed\":4.7,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":6.9,\"feels_like\":null,\"dew_point\":6.4,\"relative_humidity\":97.0,\"pressure\":1018.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T21:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":90.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.618159751885058,\"wind_speed\":4.7,\"wind_direction\":340.0,\"frost_chance\":null,\"temp_air\":6.7,\"feels_like\":null,\"dew_point\":6.3,\"relative_humidity\":97.0,\"pressure\":1018.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T22:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":90.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7087305178214287,\"wind_speed\":7.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":7.6,\"feels_like\":null,\"dew_point\":7.1,\"relative_humidity\":97.0,\"pressure\":1019.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-26T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.764491154873937,\"wind_speed\":10.4,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":8.3,\"feels_like\":null,\"dew_point\":7.6,\"relative_humidity\":96.0,\"pressure\":1019.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3610.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.830030033835469,\"wind_speed\":8.3,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":8.9,\"feels_like\":null,\"dew_point\":8.3,\"relative_humidity\":96.0,\"pressure\":1019.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5770.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8928153879508465,\"wind_speed\":9.0,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":9.8,\"feels_like\":null,\"dew_point\":8.9,\"relative_humidity\":94.0,\"pressure\":1018.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5980.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.945096824920762,\"wind_speed\":7.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":10.6,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":92.0,\"pressure\":1018.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7950.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.947556370182495,\"wind_speed\":6.5,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":10.8,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":91.0,\"pressure\":1018.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":6120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9903598068898019,\"wind_speed\":4.7,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":10.8,\"feels_like\":null,\"dew_point\":9.7,\"relative_humidity\":93.0,\"pressure\":1018.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4830.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.987381538505997,\"wind_speed\":4.3,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":10.6,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":94.0,\"pressure\":1018.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5360.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9963174492677347,\"wind_speed\":3.6,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":9.8,\"relative_humidity\":95.0,\"pressure\":1018.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4660.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0085238952986137,\"wind_speed\":2.2,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":10.6,\"feels_like\":null,\"dew_point\":9.8,\"relative_humidity\":95.0,\"pressure\":1019.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5570.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.024064286986675,\"wind_speed\":3.2,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":10.9,\"feels_like\":null,\"dew_point\":10.0,\"relative_humidity\":94.0,\"pressure\":1020.5,\"ozone\":null,\"ghi\":20.901591088639343,\"dni\":0.0,\"dhi\":20.901591088639343}", - "{\"date_time\":\"2024-10-27T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7670.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.020123074823889,\"wind_speed\":7.2,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":10.1,\"relative_humidity\":91.0,\"pressure\":1021.1,\"ozone\":null,\"ghi\":66.41841804602629,\"dni\":0.0,\"dhi\":66.41841804602629}", - "{\"date_time\":\"2024-10-27T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8790.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0744781114397735,\"wind_speed\":11.2,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":12.2,\"feels_like\":null,\"dew_point\":10.4,\"relative_humidity\":89.0,\"pressure\":1021.4,\"ozone\":null,\"ghi\":106.12345605852113,\"dni\":0.0,\"dhi\":106.12345605852113}", - "{\"date_time\":\"2024-10-27T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8040.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.067588035893061,\"wind_speed\":10.8,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":12.9,\"feels_like\":null,\"dew_point\":10.4,\"relative_humidity\":85.0,\"pressure\":1022.0,\"ozone\":null,\"ghi\":132.31929512932624,\"dni\":0.0,\"dhi\":132.31929512932624}", - "{\"date_time\":\"2024-10-27T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0813625709358203,\"wind_speed\":11.5,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":13.4,\"feels_like\":null,\"dew_point\":10.6,\"relative_humidity\":83.0,\"pressure\":1022.6,\"ozone\":null,\"ghi\":142.03807516868267,\"dni\":0.0,\"dhi\":142.03807516868267}", - "{\"date_time\":\"2024-10-27T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9560.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.119817892495729,\"wind_speed\":10.8,\"wind_direction\":230.0,\"frost_chance\":null,\"temp_air\":13.9,\"feels_like\":null,\"dew_point\":10.9,\"relative_humidity\":82.0,\"pressure\":1022.7,\"ozone\":null,\"ghi\":134.33853283469773,\"dni\":0.0,\"dhi\":134.33853283469773}", - "{\"date_time\":\"2024-10-27T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12400.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.119593668836106,\"wind_speed\":10.4,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":14.1,\"feels_like\":null,\"dew_point\":11.0,\"relative_humidity\":81.0,\"pressure\":1022.9,\"ozone\":null,\"ghi\":109.95561941571053,\"dni\":0.0,\"dhi\":109.95561941571053}", - "{\"date_time\":\"2024-10-27T15:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1843956516771077,\"wind_speed\":11.9,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":14.8,\"feels_like\":null,\"dew_point\":11.4,\"relative_humidity\":80.0,\"pressure\":1023.0,\"ozone\":null,\"ghi\":88.84019629738314,\"dni\":0.0,\"dhi\":88.84019629738314}", - "{\"date_time\":\"2024-10-27T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13590.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.183440809341084,\"wind_speed\":13.3,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":15.0,\"feels_like\":null,\"dew_point\":11.4,\"relative_humidity\":79.0,\"pressure\":1023.8,\"ozone\":null,\"ghi\":25.90303659201319,\"dni\":0.0,\"dhi\":25.90303659201319}", - "{\"date_time\":\"2024-10-27T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14720.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1291678932402403,\"wind_speed\":8.6,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":13.0,\"feels_like\":null,\"dew_point\":11.0,\"relative_humidity\":87.0,\"pressure\":1024.4,\"ozone\":null,\"ghi\":0.027781191847857583,\"dni\":0.0,\"dhi\":0.027781191847857583}", - "{\"date_time\":\"2024-10-27T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0574147959693145,\"wind_speed\":9.0,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":11.7,\"feels_like\":null,\"dew_point\":10.3,\"relative_humidity\":91.0,\"pressure\":1025.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12740.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0324781084809054,\"wind_speed\":7.2,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.5,\"feels_like\":null,\"dew_point\":10.0,\"relative_humidity\":91.0,\"pressure\":1025.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12320.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9995340646535906,\"wind_speed\":7.6,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":10.7,\"feels_like\":null,\"dew_point\":9.8,\"relative_humidity\":94.0,\"pressure\":1026.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10820.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1311188481658605,\"wind_speed\":9.0,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":10.8,\"relative_humidity\":96.0,\"pressure\":1026.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8040.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1609860685094553,\"wind_speed\":9.4,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.8,\"feels_like\":null,\"dew_point\":11.0,\"relative_humidity\":95.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-27T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4860.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.174201406952952,\"wind_speed\":8.6,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":11.2,\"relative_humidity\":95.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3910.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.174201406952952,\"wind_speed\":11.9,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":11.1,\"relative_humidity\":95.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T01:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7410.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1284287457539426,\"wind_speed\":12.6,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":10.9,\"relative_humidity\":93.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4020.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.174201406952952,\"wind_speed\":5.8,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":11.1,\"relative_humidity\":95.0,\"pressure\":1027.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3500.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.125241657374896,\"wind_speed\":6.8,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":11.7,\"feels_like\":null,\"dew_point\":10.7,\"relative_humidity\":94.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2770.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1089196934974663,\"wind_speed\":5.0,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":10.6,\"relative_humidity\":95.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0519715153105804,\"wind_speed\":2.9,\"wind_direction\":230.0,\"frost_chance\":null,\"temp_air\":11.3,\"feels_like\":null,\"dew_point\":10.3,\"relative_humidity\":93.0,\"pressure\":1026.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3330.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.045596885784406,\"wind_speed\":5.8,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":10.9,\"feels_like\":null,\"dew_point\":10.2,\"relative_humidity\":95.0,\"pressure\":1026.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0545649619507635,\"wind_speed\":8.3,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":10.8,\"feels_like\":null,\"dew_point\":10.1,\"relative_humidity\":96.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2900.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.020805703639267,\"wind_speed\":6.5,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":10.7,\"feels_like\":null,\"dew_point\":9.9,\"relative_humidity\":95.0,\"pressure\":1027.09,\"ozone\":null,\"ghi\":19.602868340686165,\"dni\":0.0,\"dhi\":19.602868340686165}", - "{\"date_time\":\"2024-10-28T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":1960.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0581070021227617,\"wind_speed\":8.3,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":11.0,\"feels_like\":null,\"dew_point\":10.3,\"relative_humidity\":95.0,\"pressure\":1027.2,\"ozone\":null,\"ghi\":64.68374862563667,\"dni\":0.0,\"dhi\":64.68374862563667}", - "{\"date_time\":\"2024-10-28T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4930.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.017567894096528,\"wind_speed\":9.4,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":11.2,\"feels_like\":null,\"dew_point\":10.0,\"relative_humidity\":92.0,\"pressure\":1027.3,\"ozone\":null,\"ghi\":104.24512318045389,\"dni\":0.0,\"dhi\":104.24512318045389}", - "{\"date_time\":\"2024-10-28T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5410.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0574147959693145,\"wind_speed\":10.8,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":11.7,\"feels_like\":null,\"dew_point\":10.3,\"relative_humidity\":91.0,\"pressure\":1027.4,\"ozone\":null,\"ghi\":130.36720205010565,\"dni\":0.0,\"dhi\":130.36720205010565}", - "{\"date_time\":\"2024-10-28T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5520.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0744781114397735,\"wind_speed\":10.1,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":12.2,\"feels_like\":null,\"dew_point\":10.4,\"relative_humidity\":89.0,\"pressure\":1027.2,\"ozone\":null,\"ghi\":140.04739059314485,\"dni\":0.0,\"dhi\":140.04739059314485}", - "{\"date_time\":\"2024-10-28T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":6840.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1175533778696294,\"wind_speed\":9.4,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":13.1,\"feels_like\":null,\"dew_point\":10.8,\"relative_humidity\":86.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":132.3396471104131,\"dni\":0.0,\"dhi\":132.3396471104131}", - "{\"date_time\":\"2024-10-28T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":11920.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.158848465791691,\"wind_speed\":11.9,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":14.2,\"feels_like\":null,\"dew_point\":11.2,\"relative_humidity\":82.0,\"pressure\":1026.0,\"ozone\":null,\"ghi\":107.98652507155819,\"dni\":0.0,\"dhi\":107.98652507155819}", - "{\"date_time\":\"2024-10-28T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13760.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1586051188053688,\"wind_speed\":7.6,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":14.4,\"feels_like\":null,\"dew_point\":11.2,\"relative_humidity\":81.0,\"pressure\":1025.8,\"ozone\":null,\"ghi\":69.69629401139778,\"dni\":0.0,\"dhi\":69.69629401139778}", - "{\"date_time\":\"2024-10-28T16:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":21080.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.172012702785343,\"wind_speed\":7.2,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":14.3,\"feels_like\":null,\"dew_point\":11.4,\"relative_humidity\":82.0,\"pressure\":1025.4,\"ozone\":null,\"ghi\":30.299076442472742,\"dni\":0.0,\"dhi\":30.299076442472742}", - "{\"date_time\":\"2024-10-28T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":16720.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0723655900991496,\"wind_speed\":8.6,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":12.0,\"feels_like\":null,\"dew_point\":10.5,\"relative_humidity\":90.0,\"pressure\":1025.2,\"ozone\":null,\"ghi\":0.007313988512718714,\"dni\":0.0,\"dhi\":0.007313988512718714}", - "{\"date_time\":\"2024-10-28T18:00:00+01:00\",\"total_clouds\":75.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8950.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9542897134936768,\"wind_speed\":3.6,\"wind_direction\":280.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":9.5,\"relative_humidity\":93.0,\"pressure\":1025.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T19:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7810.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8443259335596536,\"wind_speed\":3.2,\"wind_direction\":330.0,\"frost_chance\":null,\"temp_air\":9.2,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":95.0,\"pressure\":1026.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":90.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8378811294487585,\"wind_speed\":2.5,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":8.8,\"feels_like\":null,\"dew_point\":8.3,\"relative_humidity\":97.0,\"pressure\":1026.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.925871372365559,\"wind_speed\":2.5,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":9.4,\"feels_like\":null,\"dew_point\":9.1,\"relative_humidity\":98.0,\"pressure\":1026.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":60.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.801251387267144,\"wind_speed\":2.9,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":8.3,\"feels_like\":null,\"dew_point\":8.0,\"relative_humidity\":98.0,\"pressure\":1026.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-28T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":90.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7720765939942027,\"wind_speed\":3.2,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":8.2,\"feels_like\":null,\"dew_point\":7.8,\"relative_humidity\":97.0,\"pressure\":1026.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":80.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8455721653466037,\"wind_speed\":3.6,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":8.7,\"feels_like\":null,\"dew_point\":8.4,\"relative_humidity\":98.0,\"pressure\":1026.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":160.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.779508453411574,\"wind_speed\":2.2,\"wind_direction\":330.0,\"frost_chance\":null,\"temp_air\":8.1,\"feels_like\":null,\"dew_point\":7.8,\"relative_humidity\":98.0,\"pressure\":1026.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7580400895133157,\"wind_speed\":2.5,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":7.9,\"feels_like\":null,\"dew_point\":7.5,\"relative_humidity\":98.0,\"pressure\":1026.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8196315034637476,\"wind_speed\":1.4,\"wind_direction\":0.0,\"frost_chance\":null,\"temp_air\":8.3,\"feels_like\":null,\"dew_point\":8.1,\"relative_humidity\":99.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7976667029361821,\"wind_speed\":1.8,\"wind_direction\":320.0,\"frost_chance\":null,\"temp_air\":8.1,\"feels_like\":null,\"dew_point\":8.0,\"relative_humidity\":99.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.786788492758286,\"wind_speed\":1.4,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":8.0,\"feels_like\":null,\"dew_point\":7.9,\"relative_humidity\":99.0,\"pressure\":1026.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7022172735352934,\"wind_speed\":2.2,\"wind_direction\":240.0,\"frost_chance\":null,\"temp_air\":7.2,\"feels_like\":null,\"dew_point\":7.1,\"relative_humidity\":99.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.722955851908333,\"wind_speed\":2.9,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":7.4,\"feels_like\":null,\"dew_point\":7.3,\"relative_humidity\":99.0,\"pressure\":1027.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":130.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7652386971092027,\"wind_speed\":3.2,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":7.8,\"feels_like\":null,\"dew_point\":7.6,\"relative_humidity\":99.0,\"pressure\":1027.5,\"ozone\":null,\"ghi\":18.332702353547074,\"dni\":0.0,\"dhi\":18.332702353547074}", - "{\"date_time\":\"2024-10-29T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":170.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8644045343807525,\"wind_speed\":4.3,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":8.7,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":99.0,\"pressure\":1027.59,\"ozone\":null,\"ghi\":62.95962823548937,\"dni\":0.0,\"dhi\":62.95962823548937}", - "{\"date_time\":\"2024-10-29T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":340.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9141831337652606,\"wind_speed\":2.5,\"wind_direction\":340.0,\"frost_chance\":null,\"temp_air\":9.3,\"feels_like\":null,\"dew_point\":9.0,\"relative_humidity\":98.0,\"pressure\":1027.59,\"ozone\":null,\"ghi\":102.37603626073972,\"dni\":0.0,\"dhi\":102.37603626073972}", - "{\"date_time\":\"2024-10-29T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":270.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.013647682316836,\"wind_speed\":3.6,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":10.3,\"feels_like\":null,\"dew_point\":9.9,\"relative_humidity\":97.0,\"pressure\":1027.5,\"ozone\":null,\"ghi\":128.42638331065623,\"dni\":0.0,\"dhi\":128.42638331065623}", - "{\"date_time\":\"2024-10-29T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":320.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1313720084431926,\"wind_speed\":5.0,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":12.1,\"feels_like\":null,\"dew_point\":10.9,\"relative_humidity\":92.0,\"pressure\":1027.2,\"ozone\":null,\"ghi\":138.07137517499854,\"dni\":0.0,\"dhi\":138.07137517499854}", - "{\"date_time\":\"2024-10-29T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":11100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.291852348361256,\"wind_speed\":6.1,\"wind_direction\":160.0,\"frost_chance\":null,\"temp_air\":14.4,\"feels_like\":null,\"dew_point\":12.1,\"relative_humidity\":86.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":130.35961341605747,\"dni\":0.0,\"dhi\":130.35961341605747}", - "{\"date_time\":\"2024-10-29T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":16900.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.3255616039808618,\"wind_speed\":5.0,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":16.9,\"feels_like\":null,\"dew_point\":12.4,\"relative_humidity\":75.0,\"pressure\":1025.9,\"ozone\":null,\"ghi\":106.04108723155429,\"dni\":0.0,\"dhi\":106.04108723155429}", - "{\"date_time\":\"2024-10-29T15:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":34440.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.1836631339806405,\"wind_speed\":6.5,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":17.0,\"feels_like\":null,\"dew_point\":11.6,\"relative_humidity\":70.0,\"pressure\":1025.7,\"ozone\":null,\"ghi\":84.24287206656912,\"dni\":0.0,\"dhi\":84.24287206656912}", - "{\"date_time\":\"2024-10-29T16:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":58950.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.2475055388051737,\"wind_speed\":4.3,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":15.9,\"feels_like\":null,\"dew_point\":11.9,\"relative_humidity\":77.0,\"pressure\":1025.4,\"ozone\":null,\"ghi\":49.81579897492729,\"dni\":14.538665837772964,\"dhi\":47.79892049551232}", - "{\"date_time\":\"2024-10-29T17:00:00+01:00\",\"total_clouds\":50.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":47830.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0652816544204247,\"wind_speed\":10.4,\"wind_direction\":250.0,\"frost_chance\":null,\"temp_air\":12.5,\"feels_like\":null,\"dew_point\":10.4,\"relative_humidity\":87.0,\"pressure\":1025.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T18:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":41010.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.020123074823889,\"wind_speed\":6.1,\"wind_direction\":260.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":10.0,\"relative_humidity\":91.0,\"pressure\":1025.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T19:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":18250.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9662391817133793,\"wind_speed\":5.4,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":10.6,\"feels_like\":null,\"dew_point\":9.5,\"relative_humidity\":93.0,\"pressure\":1026.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T20:00:00+01:00\",\"total_clouds\":12.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7840.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0394979799019253,\"wind_speed\":6.5,\"wind_direction\":230.0,\"frost_chance\":null,\"temp_air\":11.2,\"feels_like\":null,\"dew_point\":10.2,\"relative_humidity\":93.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7370.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7702426892100076,\"wind_speed\":5.0,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":8.7,\"feels_like\":null,\"dew_point\":7.8,\"relative_humidity\":94.0,\"pressure\":1026.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3850.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8220170482487101,\"wind_speed\":4.3,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":9.0,\"feels_like\":null,\"dew_point\":8.3,\"relative_humidity\":95.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-29T23:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7260.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8443259335596536,\"wind_speed\":4.3,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":9.2,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":95.0,\"pressure\":1026.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T00:00:00+01:00\",\"total_clouds\":50.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":180.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.729577309288815,\"wind_speed\":3.6,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":7.8,\"feels_like\":null,\"dew_point\":7.3,\"relative_humidity\":97.0,\"pressure\":1026.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":70.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6378354583834347,\"wind_speed\":2.2,\"wind_direction\":240.0,\"frost_chance\":null,\"temp_air\":6.9,\"feels_like\":null,\"dew_point\":6.5,\"relative_humidity\":97.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7263462963556704,\"wind_speed\":2.9,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":7.6,\"feels_like\":null,\"dew_point\":7.3,\"relative_humidity\":98.0,\"pressure\":1027.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6952547605843942,\"wind_speed\":1.8,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":7.3,\"feels_like\":null,\"dew_point\":7.1,\"relative_humidity\":98.0,\"pressure\":1027.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":90.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8268830865919616,\"wind_speed\":2.2,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":8.2,\"feels_like\":null,\"dew_point\":8.2,\"relative_humidity\":100.0,\"pressure\":1027.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":150.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8492109088214057,\"wind_speed\":1.4,\"wind_direction\":290.0,\"frost_chance\":null,\"temp_air\":8.4,\"feels_like\":null,\"dew_point\":8.3,\"relative_humidity\":100.0,\"pressure\":1027.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7840.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8872184723928271,\"wind_speed\":2.5,\"wind_direction\":150.0,\"frost_chance\":null,\"temp_air\":8.9,\"feels_like\":null,\"dew_point\":8.8,\"relative_humidity\":99.0,\"pressure\":1027.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2810.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8872184723928271,\"wind_speed\":2.5,\"wind_direction\":290.0,\"frost_chance\":null,\"temp_air\":8.9,\"feels_like\":null,\"dew_point\":8.7,\"relative_humidity\":99.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T08:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":460.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.921981762341113,\"wind_speed\":2.2,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":9.2,\"feels_like\":null,\"dew_point\":9.0,\"relative_humidity\":99.0,\"pressure\":1028.3,\"ozone\":null,\"ghi\":21.219671542362477,\"dni\":0.0,\"dhi\":21.219671542362477}", - "{\"date_time\":\"2024-10-30T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":1620.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9813912463341716,\"wind_speed\":2.5,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":9.7,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":99.0,\"pressure\":1028.4,\"ozone\":null,\"ghi\":61.24705643100921,\"dni\":0.0,\"dhi\":61.24705643100921}", - "{\"date_time\":\"2024-10-30T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13580.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0886168395153506,\"wind_speed\":1.8,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":10.4,\"feels_like\":null,\"dew_point\":10.4,\"relative_humidity\":100.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":100.51716584295312,\"dni\":0.0,\"dhi\":100.51716584295312}", - "{\"date_time\":\"2024-10-30T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":22490.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0364427178898907,\"wind_speed\":5.4,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.0,\"feels_like\":null,\"dew_point\":10.2,\"relative_humidity\":94.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":126.49785855652105,\"dni\":0.0,\"dhi\":126.49785855652105}", - "{\"date_time\":\"2024-10-30T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17130.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.108204921394897,\"wind_speed\":5.4,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":12.1,\"feels_like\":null,\"dew_point\":10.7,\"relative_humidity\":91.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":136.11108832250144,\"dni\":0.0,\"dhi\":136.11108832250144}", - "{\"date_time\":\"2024-10-30T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":27620.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0744781114397735,\"wind_speed\":5.8,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":12.2,\"feels_like\":null,\"dew_point\":10.4,\"relative_humidity\":89.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":128.39950312276366,\"dni\":0.0,\"dhi\":128.39950312276366}", - "{\"date_time\":\"2024-10-30T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":23300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0792067212034273,\"wind_speed\":10.8,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":12.8,\"feels_like\":null,\"dew_point\":10.6,\"relative_humidity\":86.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":104.12035323578755,\"dni\":0.0,\"dhi\":104.12035323578755}", - "{\"date_time\":\"2024-10-30T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17420.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.067588035893061,\"wind_speed\":10.4,\"wind_direction\":160.0,\"frost_chance\":null,\"temp_air\":12.9,\"feels_like\":null,\"dew_point\":10.5,\"relative_humidity\":85.0,\"pressure\":1027.7,\"ozone\":null,\"ghi\":66.05384442265539,\"dni\":0.0,\"dhi\":66.05384442265539}", - "{\"date_time\":\"2024-10-30T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12780.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.116237166149368,\"wind_speed\":9.0,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":12.9,\"feels_like\":null,\"dew_point\":10.7,\"relative_humidity\":87.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":21.554012703673507,\"dni\":0.0,\"dhi\":21.554012703673507}", - "{\"date_time\":\"2024-10-30T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9610.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.077906151217825,\"wind_speed\":5.0,\"wind_direction\":150.0,\"frost_chance\":null,\"temp_air\":12.6,\"feels_like\":null,\"dew_point\":10.5,\"relative_humidity\":87.0,\"pressure\":1027.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10940.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0723655900991496,\"wind_speed\":3.2,\"wind_direction\":160.0,\"frost_chance\":null,\"temp_air\":12.0,\"feels_like\":null,\"dew_point\":10.4,\"relative_humidity\":90.0,\"pressure\":1028.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7710.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.04490856047528,\"wind_speed\":4.0,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.6,\"feels_like\":null,\"dew_point\":10.1,\"relative_humidity\":91.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3170.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0324781084809054,\"wind_speed\":3.2,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.5,\"feels_like\":null,\"dew_point\":10.1,\"relative_humidity\":91.0,\"pressure\":1028.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3950.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.020123074823889,\"wind_speed\":6.8,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":10.0,\"relative_humidity\":91.0,\"pressure\":1028.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2590.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0423222294922834,\"wind_speed\":4.3,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":10.2,\"relative_humidity\":92.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-30T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2940.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0394979799019253,\"wind_speed\":2.5,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":11.2,\"feels_like\":null,\"dew_point\":10.2,\"relative_humidity\":93.0,\"pressure\":1028.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":1970.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9424136607492761,\"wind_speed\":3.2,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":10.4,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":93.0,\"pressure\":1028.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2510.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9395134892129953,\"wind_speed\":4.7,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":94.0,\"pressure\":1028.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2060.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0085238952986137,\"wind_speed\":6.1,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":10.6,\"feels_like\":null,\"dew_point\":9.9,\"relative_humidity\":95.0,\"pressure\":1028.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":240.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0050721659347364,\"wind_speed\":5.8,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":10.4,\"feels_like\":null,\"dew_point\":9.8,\"relative_humidity\":96.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2970.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0173313171547624,\"wind_speed\":6.8,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":9.9,\"relative_humidity\":96.0,\"pressure\":1028.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3290.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9963174492677347,\"wind_speed\":3.6,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":9.8,\"relative_humidity\":95.0,\"pressure\":1029.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T06:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5990.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":2.0173313171547624,\"wind_speed\":4.3,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":10.0,\"relative_humidity\":96.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T07:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":170.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9753035813807054,\"wind_speed\":5.4,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":9.7,\"relative_humidity\":94.0,\"pressure\":1029.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5700.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9513699189462126,\"wind_speed\":7.6,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":10.3,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":94.0,\"pressure\":1029.2,\"ozone\":null,\"ghi\":15.885486574503958,\"dni\":0.0,\"dhi\":15.885486574503958}", - "{\"date_time\":\"2024-10-31T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8690.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9835068514961423,\"wind_speed\":5.0,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":11.1,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":91.0,\"pressure\":1029.5,\"ozone\":null,\"ghi\":59.547045720693454,\"dni\":0.0,\"dhi\":59.547045720693454}", - "{\"date_time\":\"2024-10-31T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":15600.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9682244315574093,\"wind_speed\":2.2,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":9.7,\"relative_humidity\":86.0,\"pressure\":1029.59,\"ozone\":null,\"ghi\":98.66949090664382,\"dni\":0.0,\"dhi\":98.66949090664382}", - "{\"date_time\":\"2024-10-31T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":25190.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9682244315574093,\"wind_speed\":2.2,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":86.0,\"pressure\":1029.3,\"ozone\":null,\"ghi\":124.5826522461644,\"dni\":0.0,\"dhi\":124.5826522461644}", - "{\"date_time\":\"2024-10-31T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":33140.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9459652102522924,\"wind_speed\":7.6,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":12.9,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":80.0,\"pressure\":1028.9,\"ozone\":null,\"ghi\":134.16758927009357,\"dni\":0.0,\"dhi\":134.16758927009357}", - "{\"date_time\":\"2024-10-31T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":36550.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.827634823721784,\"wind_speed\":9.0,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":13.6,\"feels_like\":null,\"dew_point\":8.7,\"relative_humidity\":72.0,\"pressure\":1028.4,\"ozone\":null,\"ghi\":126.46038107187944,\"dni\":0.0,\"dhi\":126.46038107187944}", - "{\"date_time\":\"2024-10-31T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":57100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8500141411416122,\"wind_speed\":9.0,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":13.8,\"feels_like\":null,\"dew_point\":8.8,\"relative_humidity\":72.0,\"pressure\":1027.9,\"ozone\":null,\"ghi\":102.22535560233246,\"dni\":0.0,\"dhi\":102.22535560233246}", - "{\"date_time\":\"2024-10-31T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":52570.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8317476150435485,\"wind_speed\":5.4,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":14.1,\"feels_like\":null,\"dew_point\":8.7,\"relative_humidity\":70.0,\"pressure\":1027.7,\"ozone\":null,\"ghi\":64.2799263126679,\"dni\":0.0,\"dhi\":64.2799263126679}", - "{\"date_time\":\"2024-10-31T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":45660.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.861303515362104,\"wind_speed\":5.8,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":13.9,\"feels_like\":null,\"dew_point\":8.9,\"relative_humidity\":72.0,\"pressure\":1027.4,\"ozone\":null,\"ghi\":20.199874599546952,\"dni\":0.0,\"dhi\":20.199874599546952}", - "{\"date_time\":\"2024-10-31T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":51810.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.848666949739678,\"wind_speed\":3.6,\"wind_direction\":230.0,\"frost_chance\":null,\"temp_air\":12.9,\"feels_like\":null,\"dew_point\":8.7,\"relative_humidity\":76.0,\"pressure\":1027.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":44110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8876079019771812,\"wind_speed\":2.9,\"wind_direction\":230.0,\"frost_chance\":null,\"temp_air\":11.6,\"feels_like\":null,\"dew_point\":9.0,\"relative_humidity\":84.0,\"pressure\":1027.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":48080.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9313264561503112,\"wind_speed\":2.2,\"wind_direction\":110.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":9.2,\"relative_humidity\":87.0,\"pressure\":1027.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T20:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":30700.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9443700269600115,\"wind_speed\":3.6,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.7,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":86.0,\"pressure\":1027.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T21:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":25400.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9313264561503112,\"wind_speed\":2.9,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":87.0,\"pressure\":1027.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":25670.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9298475508749398,\"wind_speed\":4.3,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":11.2,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":88.0,\"pressure\":1027.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-10-31T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":24450.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9281212967255343,\"wind_speed\":2.9,\"wind_direction\":230.0,\"frost_chance\":null,\"temp_air\":11.0,\"feels_like\":null,\"dew_point\":9.3,\"relative_humidity\":89.0,\"pressure\":1027.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":24100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.947556370182495,\"wind_speed\":2.9,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":10.8,\"feels_like\":null,\"dew_point\":9.4,\"relative_humidity\":91.0,\"pressure\":1026.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":20630.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9753035813807054,\"wind_speed\":5.0,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":9.5,\"relative_humidity\":94.0,\"pressure\":1026.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":24020.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9807797336643354,\"wind_speed\":6.5,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":96.0,\"pressure\":1026.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8730.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9807797336643354,\"wind_speed\":9.4,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":96.0,\"pressure\":1026.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5560.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.9687457153823724,\"wind_speed\":9.0,\"wind_direction\":250.0,\"frost_chance\":null,\"temp_air\":10.1,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":96.0,\"pressure\":1025.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":5030.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.1,\"preciptable_water\":1.9807797336643354,\"wind_speed\":8.3,\"wind_direction\":250.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":9.6,\"relative_humidity\":96.0,\"pressure\":1026.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7340.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.1,\"preciptable_water\":1.9449002411739278,\"wind_speed\":7.9,\"wind_direction\":270.0,\"frost_chance\":null,\"temp_air\":9.9,\"feels_like\":null,\"dew_point\":9.2,\"relative_humidity\":96.0,\"pressure\":1025.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":6340.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8669161262727356,\"wind_speed\":3.2,\"wind_direction\":260.0,\"frost_chance\":null,\"temp_air\":9.4,\"feels_like\":null,\"dew_point\":8.7,\"relative_humidity\":95.0,\"pressure\":1025.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12030.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8360532099381073,\"wind_speed\":5.8,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":9.3,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":94.0,\"pressure\":1025.7,\"ozone\":null,\"ghi\":14.712237798164347,\"dni\":0.0,\"dhi\":14.712237798164347}", - "{\"date_time\":\"2024-11-01T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":29210.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8301128504372512,\"wind_speed\":11.9,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":9.6,\"feels_like\":null,\"dew_point\":8.4,\"relative_humidity\":92.0,\"pressure\":1026.0,\"ozone\":null,\"ghi\":57.8606202914984,\"dni\":0.0,\"dhi\":57.8606202914984}", - "{\"date_time\":\"2024-11-01T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":24570.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8548700685143087,\"wind_speed\":12.2,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":10.0,\"feels_like\":null,\"dew_point\":8.6,\"relative_humidity\":91.0,\"pressure\":1025.9,\"ozone\":null,\"ghi\":96.83399790992624,\"dni\":0.0,\"dhi\":96.83399790992624}", - "{\"date_time\":\"2024-11-01T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":19290.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8475736466618398,\"wind_speed\":11.9,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":10.3,\"feels_like\":null,\"dew_point\":8.6,\"relative_humidity\":89.0,\"pressure\":1026.3,\"ozone\":null,\"ghi\":122.68179272930055,\"dni\":0.0,\"dhi\":122.68179272930055}", - "{\"date_time\":\"2024-11-01T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":38750.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8492203740585325,\"wind_speed\":12.6,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":8.6,\"relative_humidity\":88.0,\"pressure\":1025.8,\"ozone\":null,\"ghi\":132.24193611040087,\"dni\":0.0,\"dhi\":132.24193611040087}", - "{\"date_time\":\"2024-11-01T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":47950.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.850632591753855,\"wind_speed\":13.3,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":10.7,\"feels_like\":null,\"dew_point\":8.6,\"relative_humidity\":87.0,\"pressure\":1025.2,\"ozone\":null,\"ghi\":124.54330452319319,\"dni\":0.0,\"dhi\":124.54330452319319}", - "{\"date_time\":\"2024-11-01T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":39370.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8087382990093692,\"wind_speed\":10.4,\"wind_direction\":240.0,\"frost_chance\":null,\"temp_air\":10.9,\"feels_like\":null,\"dew_point\":8.3,\"relative_humidity\":84.0,\"pressure\":1024.7,\"ozone\":null,\"ghi\":100.35711080592202,\"dni\":0.0,\"dhi\":100.35711080592202}", - "{\"date_time\":\"2024-11-01T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":45050.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8201971218479545,\"wind_speed\":10.1,\"wind_direction\":240.0,\"frost_chance\":null,\"temp_air\":11.2,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":83.0,\"pressure\":1024.3,\"ozone\":null,\"ghi\":62.53879690593976,\"dni\":0.0,\"dhi\":62.53879690593976}", - "{\"date_time\":\"2024-11-01T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":50820.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8313294168900875,\"wind_speed\":9.0,\"wind_direction\":220.0,\"frost_chance\":null,\"temp_air\":11.3,\"feels_like\":null,\"dew_point\":8.5,\"relative_humidity\":83.0,\"pressure\":1024.0,\"ozone\":null,\"ghi\":18.895062599949565,\"dni\":0.0,\"dhi\":18.895062599949565}", - "{\"date_time\":\"2024-11-01T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":44670.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7977443417069183,\"wind_speed\":9.0,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":10.8,\"feels_like\":null,\"dew_point\":8.2,\"relative_humidity\":84.0,\"pressure\":1024.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":49650.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7548156137872095,\"wind_speed\":5.4,\"wind_direction\":240.0,\"frost_chance\":null,\"temp_air\":10.6,\"feels_like\":null,\"dew_point\":7.9,\"relative_humidity\":83.0,\"pressure\":1024.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":34320.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.785295883291216,\"wind_speed\":9.0,\"wind_direction\":270.0,\"frost_chance\":null,\"temp_air\":10.3,\"feels_like\":null,\"dew_point\":8.0,\"relative_humidity\":86.0,\"pressure\":1025.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":28820.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7021447330910096,\"wind_speed\":13.3,\"wind_direction\":300.0,\"frost_chance\":null,\"temp_air\":10.1,\"feels_like\":null,\"dew_point\":7.3,\"relative_humidity\":83.0,\"pressure\":1025.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":27910.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6511793809783977,\"wind_speed\":12.2,\"wind_direction\":290.0,\"frost_chance\":null,\"temp_air\":9.8,\"feels_like\":null,\"dew_point\":6.9,\"relative_humidity\":82.0,\"pressure\":1025.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":27860.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.621195919413435,\"wind_speed\":10.4,\"wind_direction\":280.0,\"frost_chance\":null,\"temp_air\":9.3,\"feels_like\":null,\"dew_point\":6.6,\"relative_humidity\":83.0,\"pressure\":1026.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-01T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":26550.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.620878591918624,\"wind_speed\":7.9,\"wind_direction\":300.0,\"frost_chance\":null,\"temp_air\":9.1,\"feels_like\":null,\"dew_point\":6.5,\"relative_humidity\":84.0,\"pressure\":1026.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":33360.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.601582418205307,\"wind_speed\":6.1,\"wind_direction\":330.0,\"frost_chance\":null,\"temp_air\":9.1,\"feels_like\":null,\"dew_point\":6.4,\"relative_humidity\":83.0,\"pressure\":1027.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":30030.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.639401905310941,\"wind_speed\":4.0,\"wind_direction\":230.0,\"frost_chance\":null,\"temp_air\":8.9,\"feels_like\":null,\"dew_point\":6.7,\"relative_humidity\":86.0,\"pressure\":1027.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":34110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6572484750051133,\"wind_speed\":4.7,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":8.7,\"feels_like\":null,\"dew_point\":6.8,\"relative_humidity\":88.0,\"pressure\":1027.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":27390.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6572484750051133,\"wind_speed\":5.8,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":8.7,\"feels_like\":null,\"dew_point\":6.8,\"relative_humidity\":88.0,\"pressure\":1027.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":25060.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6484088480622887,\"wind_speed\":2.9,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":8.8,\"feels_like\":null,\"dew_point\":6.8,\"relative_humidity\":87.0,\"pressure\":1027.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":23760.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.70525053247823,\"wind_speed\":4.3,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":8.8,\"feels_like\":null,\"dew_point\":7.2,\"relative_humidity\":90.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":21300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6863033043395828,\"wind_speed\":5.8,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":8.8,\"feels_like\":null,\"dew_point\":7.1,\"relative_humidity\":89.0,\"pressure\":1028.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":18210.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.70525053247823,\"wind_speed\":4.0,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":8.8,\"feels_like\":null,\"dew_point\":7.3,\"relative_humidity\":90.0,\"pressure\":1028.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":18570.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7173594604852087,\"wind_speed\":1.8,\"wind_direction\":260.0,\"frost_chance\":null,\"temp_air\":9.1,\"feels_like\":null,\"dew_point\":7.4,\"relative_humidity\":89.0,\"pressure\":1029.4,\"ozone\":null,\"ghi\":13.575130473514132,\"dni\":0.0,\"dhi\":13.575130473514132}", - "{\"date_time\":\"2024-11-02T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":19450.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7306501955221831,\"wind_speed\":2.5,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":9.6,\"feels_like\":null,\"dew_point\":7.6,\"relative_humidity\":87.0,\"pressure\":1030.0,\"ozone\":null,\"ghi\":56.188815268002756,\"dni\":0.0,\"dhi\":56.188815268002756}", - "{\"date_time\":\"2024-11-02T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":20370.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7861787703974465,\"wind_speed\":1.8,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":10.5,\"feels_like\":null,\"dew_point\":8.2,\"relative_humidity\":85.0,\"pressure\":1030.5,\"ozone\":null,\"ghi\":95.01168041969699,\"dni\":0.0,\"dhi\":95.01168041969699}", - "{\"date_time\":\"2024-11-02T11:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":32720.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7981315281399455,\"wind_speed\":1.8,\"wind_direction\":150.0,\"frost_chance\":null,\"temp_air\":11.4,\"feels_like\":null,\"dew_point\":8.3,\"relative_humidity\":81.0,\"pressure\":1030.4,\"ozone\":null,\"ghi\":149.95999291205823,\"dni\":12.813701117903975,\"dhi\":144.84157493139483}", - "{\"date_time\":\"2024-11-02T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":63890.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7119416707379567,\"wind_speed\":4.0,\"wind_direction\":110.0,\"frost_chance\":null,\"temp_air\":12.3,\"feels_like\":null,\"dew_point\":7.6,\"relative_humidity\":73.0,\"pressure\":1030.4,\"ozone\":null,\"ghi\":130.33518534986166,\"dni\":0.0,\"dhi\":130.33518534986166}", - "{\"date_time\":\"2024-11-02T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":75000.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7341189545032323,\"wind_speed\":5.0,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":13.2,\"feels_like\":null,\"dew_point\":7.8,\"relative_humidity\":70.0,\"pressure\":1030.09,\"ozone\":null,\"ghi\":122.64932256772778,\"dni\":0.0,\"dhi\":122.64932256772778}", - "{\"date_time\":\"2024-11-02T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":70510.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.7674144274726324,\"wind_speed\":4.0,\"wind_direction\":110.0,\"frost_chance\":null,\"temp_air\":12.6,\"feels_like\":null,\"dew_point\":8.2,\"relative_humidity\":74.0,\"pressure\":1029.8,\"ozone\":null,\"ghi\":98.5166184540087,\"dni\":0.0,\"dhi\":98.5166184540087}", - "{\"date_time\":\"2024-11-02T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":73670.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.815182384971893,\"wind_speed\":5.0,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":12.6,\"feels_like\":null,\"dew_point\":8.4,\"relative_humidity\":76.0,\"pressure\":1029.7,\"ozone\":null,\"ghi\":60.83135423410029,\"dni\":0.0,\"dhi\":60.83135423410029}", - "{\"date_time\":\"2024-11-02T16:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":75000.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.850307043871555,\"wind_speed\":7.6,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":12.7,\"feels_like\":null,\"dew_point\":8.7,\"relative_humidity\":77.0,\"pressure\":1030.0,\"ozone\":null,\"ghi\":21.89924464521845,\"dni\":0.0,\"dhi\":21.89924464521845}", - "{\"date_time\":\"2024-11-02T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":75000.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8087382990093692,\"wind_speed\":9.7,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":10.9,\"feels_like\":null,\"dew_point\":8.3,\"relative_humidity\":84.0,\"pressure\":1030.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":31130.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8833512151215333,\"wind_speed\":10.4,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":10.8,\"feels_like\":null,\"dew_point\":9.0,\"relative_humidity\":88.0,\"pressure\":1030.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":75000.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.8745229585567942,\"wind_speed\":11.5,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":11.1,\"feels_like\":null,\"dew_point\":8.9,\"relative_humidity\":86.0,\"pressure\":1031.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T20:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":75000.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.6919160225049534,\"wind_speed\":11.5,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":10.2,\"feels_like\":null,\"dew_point\":7.3,\"relative_humidity\":82.0,\"pressure\":1031.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":73550.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.5255496443180916,\"wind_speed\":8.6,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":8.3,\"feels_like\":null,\"dew_point\":5.6,\"relative_humidity\":83.0,\"pressure\":1032.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T22:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":64570.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4958879070461668,\"wind_speed\":9.0,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":7.2,\"feels_like\":null,\"dew_point\":5.2,\"relative_humidity\":87.0,\"pressure\":1032.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-02T23:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":66050.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.390501273322162,\"wind_speed\":5.0,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":5.8,\"feels_like\":null,\"dew_point\":4.0,\"relative_humidity\":88.0,\"pressure\":1033.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T00:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":68320.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4252928707378512,\"wind_speed\":5.8,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":6.4,\"feels_like\":null,\"dew_point\":4.4,\"relative_humidity\":87.0,\"pressure\":1033.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T01:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":62300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3403838896380875,\"wind_speed\":7.2,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":5.0,\"feels_like\":null,\"dew_point\":3.4,\"relative_humidity\":89.0,\"pressure\":1033.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T02:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":52300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3623270721453318,\"wind_speed\":6.8,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":4.9,\"feels_like\":null,\"dew_point\":3.6,\"relative_humidity\":91.0,\"pressure\":1033.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T03:00:00+01:00\",\"total_clouds\":75.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":46680.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2794609296319466,\"wind_speed\":9.0,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":3.3,\"feels_like\":null,\"dew_point\":2.5,\"relative_humidity\":94.0,\"pressure\":1033.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T04:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":25080.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.199274182505457,\"wind_speed\":7.6,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.2,\"feels_like\":null,\"dew_point\":1.3,\"relative_humidity\":94.0,\"pressure\":1033.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T05:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":31420.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2392275984186982,\"wind_speed\":7.6,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.4,\"feels_like\":null,\"dew_point\":1.8,\"relative_humidity\":96.0,\"pressure\":1032.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T06:00:00+01:00\",\"total_clouds\":12.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7340.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2105500551096946,\"wind_speed\":5.8,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.0,\"feels_like\":null,\"dew_point\":1.4,\"relative_humidity\":96.0,\"pressure\":1032.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T07:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14380.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1434707306695828,\"wind_speed\":6.1,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":1.2,\"feels_like\":null,\"dew_point\":0.5,\"relative_humidity\":95.0,\"pressure\":1032.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T08:00:00+01:00\",\"total_clouds\":25.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":190.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1488384034632042,\"wind_speed\":6.1,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":1.1,\"feels_like\":null,\"dew_point\":0.5,\"relative_humidity\":96.0,\"pressure\":1033.09,\"ozone\":null,\"ghi\":29.853526900099773,\"dni\":0.0,\"dhi\":29.853526900099773}", - "{\"date_time\":\"2024-11-03T09:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14830.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1982804081056098,\"wind_speed\":6.5,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":3.5,\"feels_like\":null,\"dew_point\":1.6,\"relative_humidity\":87.0,\"pressure\":1033.5,\"ozone\":null,\"ghi\":155.80764565813612,\"dni\":359.7647285960036,\"dhi\":73.0052545725479}", - "{\"date_time\":\"2024-11-03T10:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":29490.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3676770322583323,\"wind_speed\":3.6,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":6.9,\"feels_like\":null,\"dew_point\":3.9,\"relative_humidity\":81.0,\"pressure\":1033.09,\"ozone\":null,\"ghi\":266.29582531703034,\"dni\":542.6987046512027,\"dhi\":86.93886764577462}", - "{\"date_time\":\"2024-11-03T11:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":35910.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.413965797496583,\"wind_speed\":3.2,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":8.5,\"feels_like\":null,\"dew_point\":4.5,\"relative_humidity\":76.0,\"pressure\":1032.59,\"ozone\":null,\"ghi\":258.0721216984891,\"dni\":250.78797925254707,\"dhi\":159.12427101947398}", - "{\"date_time\":\"2024-11-03T12:00:00+01:00\",\"total_clouds\":62.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":40750.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.441145619265592,\"wind_speed\":5.0,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":10.4,\"feels_like\":null,\"dew_point\":5.0,\"relative_humidity\":69.0,\"pressure\":1032.0,\"ozone\":null,\"ghi\":219.09625671981206,\"dni\":99.04311158893928,\"dhi\":177.70064914620303}", - "{\"date_time\":\"2024-11-03T13:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":45690.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.510497819567314,\"wind_speed\":4.3,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":5.8,\"relative_humidity\":66.0,\"pressure\":1031.3,\"ozone\":null,\"ghi\":262.09146259237264,\"dni\":252.71731147093138,\"dhi\":161.2289221818615}", - "{\"date_time\":\"2024-11-03T14:00:00+01:00\",\"total_clouds\":25.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":20640.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4989629850536337,\"wind_speed\":4.7,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":12.8,\"feels_like\":null,\"dew_point\":5.8,\"relative_humidity\":62.0,\"pressure\":1030.7,\"ozone\":null,\"ghi\":231.40091702563853,\"dni\":315.5806670947059,\"dhi\":124.32565938039977}", - "{\"date_time\":\"2024-11-03T15:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":39980.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.5138875813494541,\"wind_speed\":2.9,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":12.7,\"feels_like\":null,\"dew_point\":5.8,\"relative_humidity\":63.0,\"pressure\":1030.3,\"ozone\":null,\"ghi\":128.3738640423681,\"dni\":143.98607922934983,\"dhi\":93.44607846301753}", - "{\"date_time\":\"2024-11-03T16:00:00+01:00\",\"total_clouds\":25.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":52750.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.510497819567314,\"wind_speed\":3.2,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":11.9,\"feels_like\":null,\"dew_point\":5.8,\"relative_humidity\":66.0,\"pressure\":1029.8,\"ozone\":null,\"ghi\":39.33002179401603,\"dni\":3.9206199292686486,\"dhi\":38.87702761430884}", - "{\"date_time\":\"2024-11-03T17:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":49460.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4883850499964026,\"wind_speed\":4.0,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":8.5,\"feels_like\":null,\"dew_point\":5.3,\"relative_humidity\":80.0,\"pressure\":1029.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":26380.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.398891798445423,\"wind_speed\":3.2,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":5.9,\"feels_like\":null,\"dew_point\":4.1,\"relative_humidity\":88.0,\"pressure\":1030.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":32120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3609257229104745,\"wind_speed\":5.0,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":4.7,\"feels_like\":null,\"dew_point\":3.5,\"relative_humidity\":92.0,\"pressure\":1030.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T20:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":24750.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2733596216558292,\"wind_speed\":5.8,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":3.4,\"feels_like\":null,\"dew_point\":2.4,\"relative_humidity\":93.0,\"pressure\":1030.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T21:00:00+01:00\",\"total_clouds\":25.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":16220.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.226318977601837,\"wind_speed\":5.8,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":2.4,\"feels_like\":null,\"dew_point\":1.6,\"relative_humidity\":95.0,\"pressure\":1031.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T22:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8920.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1965035965509712,\"wind_speed\":6.1,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":1.8,\"feels_like\":null,\"dew_point\":1.2,\"relative_humidity\":96.0,\"pressure\":1031.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-03T23:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":6530.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1368713367604626,\"wind_speed\":7.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":1.1,\"feels_like\":null,\"dew_point\":0.4,\"relative_humidity\":95.0,\"pressure\":1031.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T00:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":690.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1356387287723233,\"wind_speed\":7.2,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":0.9,\"feels_like\":null,\"dew_point\":0.4,\"relative_humidity\":96.0,\"pressure\":1031.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T01:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":290.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.090861721609437,\"wind_speed\":7.2,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":0.2,\"feels_like\":null,\"dew_point\":-0.3,\"relative_humidity\":96.0,\"pressure\":1031.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T02:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":480.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.0835031721133945,\"wind_speed\":7.2,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":-0.1,\"feels_like\":null,\"dew_point\":-0.5,\"relative_humidity\":97.0,\"pressure\":1031.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1009339806416942,\"wind_speed\":6.8,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":0.0,\"feels_like\":null,\"dew_point\":-0.3,\"relative_humidity\":98.0,\"pressure\":1031.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1135880074763005,\"wind_speed\":6.8,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":0.2,\"feels_like\":null,\"dew_point\":-0.1,\"relative_humidity\":98.0,\"pressure\":1031.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":160.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1264206880151613,\"wind_speed\":4.7,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":0.4,\"feels_like\":null,\"dew_point\":0.2,\"relative_humidity\":98.0,\"pressure\":1031.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1460092992885946,\"wind_speed\":4.3,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":0.7,\"feels_like\":null,\"dew_point\":0.5,\"relative_humidity\":98.0,\"pressure\":1031.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.157703271730315,\"wind_speed\":5.4,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":0.7,\"feels_like\":null,\"dew_point\":0.6,\"relative_humidity\":99.0,\"pressure\":1031.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":90.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1541137262196406,\"wind_speed\":5.0,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":1.0,\"feels_like\":null,\"dew_point\":0.6,\"relative_humidity\":97.0,\"pressure\":1032.0,\"ozone\":null,\"ghi\":11.417075555130713,\"dni\":0.0,\"dhi\":11.417075555130713}", - "{\"date_time\":\"2024-11-04T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.22143075481245,\"wind_speed\":5.0,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":1.8,\"feels_like\":null,\"dew_point\":1.6,\"relative_humidity\":98.0,\"pressure\":1032.2,\"ozone\":null,\"ghi\":52.89325642044978,\"dni\":0.0,\"dhi\":52.89325642044978}", - "{\"date_time\":\"2024-11-04T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":150.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3316895356787095,\"wind_speed\":5.0,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":3.1,\"feels_like\":null,\"dew_point\":2.9,\"relative_humidity\":99.0,\"pressure\":1032.0,\"ozone\":null,\"ghi\":91.41057965841121,\"dni\":0.0,\"dhi\":91.41057965841121}", - "{\"date_time\":\"2024-11-04T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3555118553110441,\"wind_speed\":4.0,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":3.4,\"feels_like\":null,\"dew_point\":3.2,\"relative_humidity\":99.0,\"pressure\":1031.7,\"ozone\":null,\"ghi\":117.07563013335894,\"dni\":0.0,\"dhi\":117.07563013335894}", - "{\"date_time\":\"2024-11-04T12:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":350.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.411639131909973,\"wind_speed\":3.6,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":4.6,\"feels_like\":null,\"dew_point\":4.0,\"relative_humidity\":96.0,\"pressure\":1030.9,\"ozone\":null,\"ghi\":157.14326578481194,\"dni\":14.639827403702798,\"dhi\":151.09589042551917}", - "{\"date_time\":\"2024-11-04T13:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":21410.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4587699149332078,\"wind_speed\":4.3,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":5.5,\"feels_like\":null,\"dew_point\":4.6,\"relative_humidity\":94.0,\"pressure\":1029.9,\"ozone\":null,\"ghi\":339.81370340762766,\"dni\":626.3444200231016,\"dhi\":92.86155820300033}", - "{\"date_time\":\"2024-11-04T14:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":39060.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.5252929600670635,\"wind_speed\":2.9,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":8.1,\"feels_like\":null,\"dew_point\":5.5,\"relative_humidity\":84.0,\"pressure\":1029.0,\"ozone\":null,\"ghi\":271.20800751093515,\"dni\":549.6301264862547,\"dhi\":87.32285840607426}", - "{\"date_time\":\"2024-11-04T15:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":36810.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.5619693663437841,\"wind_speed\":5.4,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":9.5,\"feels_like\":null,\"dew_point\":6.0,\"relative_humidity\":79.0,\"pressure\":1028.5,\"ozone\":null,\"ghi\":164.34557743320204,\"dni\":378.3659028909279,\"dhi\":74.29470308711969}", - "{\"date_time\":\"2024-11-04T16:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":61290.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.5325727324790135,\"wind_speed\":5.4,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":7.6,\"feels_like\":null,\"dew_point\":5.6,\"relative_humidity\":87.0,\"pressure\":1028.09,\"ozone\":null,\"ghi\":43.66802704534112,\"dni\":44.64467562847794,\"dhi\":38.705191642431814}", - "{\"date_time\":\"2024-11-04T17:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":45940.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3447696273196648,\"wind_speed\":4.3,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":4.5,\"feels_like\":null,\"dew_point\":3.3,\"relative_humidity\":92.0,\"pressure\":1028.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T18:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":44410.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2349798532829575,\"wind_speed\":4.3,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":2.7,\"feels_like\":null,\"dew_point\":1.8,\"relative_humidity\":94.0,\"pressure\":1028.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T19:00:00+01:00\",\"total_clouds\":12.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":44940.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2247906544736582,\"wind_speed\":6.1,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.2,\"feels_like\":null,\"dew_point\":1.7,\"relative_humidity\":96.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T20:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":47840.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2160391817564757,\"wind_speed\":7.6,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":1.9,\"feels_like\":null,\"dew_point\":1.5,\"relative_humidity\":97.0,\"pressure\":1029.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T21:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":37930.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2430135737816375,\"wind_speed\":7.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":2.1,\"feels_like\":null,\"dew_point\":1.9,\"relative_humidity\":98.0,\"pressure\":1029.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T22:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":18950.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2503071264418593,\"wind_speed\":4.0,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.2,\"feels_like\":null,\"dew_point\":1.9,\"relative_humidity\":98.0,\"pressure\":1029.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-04T23:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.255697385759001,\"wind_speed\":7.6,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.1,\"feels_like\":null,\"dew_point\":1.9,\"relative_humidity\":99.0,\"pressure\":1029.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T00:00:00+01:00\",\"total_clouds\":12.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":6660.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2430135737816375,\"wind_speed\":7.6,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.1,\"feels_like\":null,\"dew_point\":1.8,\"relative_humidity\":98.0,\"pressure\":1028.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T01:00:00+01:00\",\"total_clouds\":12.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":1020.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1847396035714295,\"wind_speed\":8.6,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":1.1,\"feels_like\":null,\"dew_point\":0.9,\"relative_humidity\":99.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T02:00:00+01:00\",\"total_clouds\":75.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":4820.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.0896999604310647,\"wind_speed\":7.9,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":0.0,\"feels_like\":null,\"dew_point\":-0.4,\"relative_humidity\":97.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T03:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":230.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.0472255738551546,\"wind_speed\":7.9,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":-0.7,\"feels_like\":null,\"dew_point\":-1.1,\"relative_humidity\":97.0,\"pressure\":1028.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T04:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":1170.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.0402709520121391,\"wind_speed\":6.8,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":-1.0,\"feels_like\":null,\"dew_point\":-1.3,\"relative_humidity\":98.0,\"pressure\":1028.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T05:00:00+01:00\",\"total_clouds\":0.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":430.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":0.9964253886852408,\"wind_speed\":7.2,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":-1.4,\"feels_like\":null,\"dew_point\":-1.9,\"relative_humidity\":96.0,\"pressure\":1028.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T06:00:00+01:00\",\"total_clouds\":25.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":0.9908715007922109,\"wind_speed\":7.9,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":-1.5,\"feels_like\":null,\"dew_point\":-2.0,\"relative_humidity\":96.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T07:00:00+01:00\",\"total_clouds\":37.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":180.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":0.9845964358395034,\"wind_speed\":7.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":-1.8,\"feels_like\":null,\"dew_point\":-2.2,\"relative_humidity\":97.0,\"pressure\":1028.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T08:00:00+01:00\",\"total_clouds\":87.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":250.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.01904093258332,\"wind_speed\":7.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":-1.0,\"feels_like\":null,\"dew_point\":-1.5,\"relative_humidity\":96.0,\"pressure\":1029.2,\"ozone\":null,\"ghi\":12.910799386398546,\"dni\":0.0,\"dhi\":12.910799386398546}", - "{\"date_time\":\"2024-11-05T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":150.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.1949683522039627,\"wind_speed\":4.7,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":1.6,\"feels_like\":null,\"dew_point\":1.1,\"relative_humidity\":97.0,\"pressure\":1029.09,\"ozone\":null,\"ghi\":51.27161617785122,\"dni\":0.0,\"dhi\":51.27161617785122}", - "{\"date_time\":\"2024-11-05T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2630.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2612560203740841,\"wind_speed\":3.2,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":2.7,\"feels_like\":null,\"dew_point\":2.2,\"relative_humidity\":96.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":89.63381300017787,\"dni\":0.0,\"dhi\":89.63381300017787}", - "{\"date_time\":\"2024-11-05T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":11070.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2885323670339885,\"wind_speed\":5.8,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":3.6,\"feels_like\":null,\"dew_point\":2.6,\"relative_humidity\":93.0,\"pressure\":1028.2,\"ozone\":null,\"ghi\":115.24250625572647,\"dni\":0.0,\"dhi\":115.24250625572647}", - "{\"date_time\":\"2024-11-05T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12260.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3288271029735363,\"wind_speed\":7.9,\"wind_direction\":100.0,\"frost_chance\":null,\"temp_air\":4.3,\"feels_like\":null,\"dew_point\":3.2,\"relative_humidity\":92.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":124.73888203411694,\"dni\":0.0,\"dhi\":124.73888203411694}", - "{\"date_time\":\"2024-11-05T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13640.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3461330520092738,\"wind_speed\":12.6,\"wind_direction\":160.0,\"frost_chance\":null,\"temp_air\":4.7,\"feels_like\":null,\"dew_point\":3.4,\"relative_humidity\":91.0,\"pressure\":1027.7,\"ozone\":null,\"ghi\":117.11630570621142,\"dni\":0.0,\"dhi\":117.11630570621142}", - "{\"date_time\":\"2024-11-05T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14990.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.380031254206577,\"wind_speed\":10.8,\"wind_direction\":170.0,\"frost_chance\":null,\"temp_air\":5.3,\"feels_like\":null,\"dew_point\":3.8,\"relative_humidity\":90.0,\"pressure\":1027.5,\"ozone\":null,\"ghi\":93.17139021360312,\"dni\":0.0,\"dhi\":93.17139021360312}", - "{\"date_time\":\"2024-11-05T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14400.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3738841320739368,\"wind_speed\":8.6,\"wind_direction\":160.0,\"frost_chance\":null,\"temp_air\":5.6,\"feels_like\":null,\"dew_point\":3.8,\"relative_humidity\":88.0,\"pressure\":1027.3,\"ozone\":null,\"ghi\":55.91961682093465,\"dni\":0.0,\"dhi\":55.91961682093465}", - "{\"date_time\":\"2024-11-05T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":15490.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.381175770521867,\"wind_speed\":6.1,\"wind_direction\":150.0,\"frost_chance\":null,\"temp_air\":5.5,\"feels_like\":null,\"dew_point\":3.8,\"relative_humidity\":89.0,\"pressure\":1027.3,\"ozone\":null,\"ghi\":14.182910983589771,\"dni\":0.0,\"dhi\":14.182910983589771}", - "{\"date_time\":\"2024-11-05T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12550.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4260322960134626,\"wind_speed\":5.4,\"wind_direction\":140.0,\"frost_chance\":null,\"temp_air\":5.3,\"feels_like\":null,\"dew_point\":4.2,\"relative_humidity\":93.0,\"pressure\":1027.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3050.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4479915832345371,\"wind_speed\":4.0,\"wind_direction\":100.0,\"frost_chance\":null,\"temp_air\":5.2,\"feels_like\":null,\"dew_point\":4.4,\"relative_humidity\":95.0,\"pressure\":1027.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":470.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4346133748222865,\"wind_speed\":3.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":4.3,\"relative_humidity\":93.0,\"pressure\":1027.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":320.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4346133748222865,\"wind_speed\":5.0,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":4.4,\"relative_humidity\":93.0,\"pressure\":1027.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":350.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4587699149332078,\"wind_speed\":4.0,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":5.5,\"feels_like\":null,\"dew_point\":4.7,\"relative_humidity\":94.0,\"pressure\":1027.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4808912256230051,\"wind_speed\":4.0,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":4.8,\"relative_humidity\":96.0,\"pressure\":1027.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-05T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":170.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4873670184226437,\"wind_speed\":3.6,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":5.3,\"feels_like\":null,\"dew_point\":4.9,\"relative_humidity\":97.0,\"pressure\":1027.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":210.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4784756165657906,\"wind_speed\":2.5,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":5.2,\"feels_like\":null,\"dew_point\":4.8,\"relative_humidity\":97.0,\"pressure\":1027.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":170.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4696426588157527,\"wind_speed\":2.5,\"wind_direction\":10.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":4.7,\"relative_humidity\":97.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":690.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4696426588157527,\"wind_speed\":3.2,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":4.7,\"relative_humidity\":97.0,\"pressure\":1028.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":900.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.452150835143925,\"wind_speed\":5.8,\"wind_direction\":200.0,\"frost_chance\":null,\"temp_air\":4.9,\"feels_like\":null,\"dew_point\":4.5,\"relative_humidity\":97.0,\"pressure\":1028.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2150.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.1,\"preciptable_water\":1.4458073416320942,\"wind_speed\":5.0,\"wind_direction\":190.0,\"frost_chance\":null,\"temp_air\":5.0,\"feels_like\":null,\"dew_point\":4.4,\"relative_humidity\":96.0,\"pressure\":1028.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":2410.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4608678347740953,\"wind_speed\":2.5,\"wind_direction\":210.0,\"frost_chance\":null,\"temp_air\":5.0,\"feels_like\":null,\"dew_point\":4.5,\"relative_humidity\":97.0,\"pressure\":1028.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":3520.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.484793614061276,\"wind_speed\":1.8,\"wind_direction\":180.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":4.8,\"relative_humidity\":98.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":900.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4632335999001638,\"wind_speed\":2.2,\"wind_direction\":160.0,\"frost_chance\":null,\"temp_air\":5.2,\"feels_like\":null,\"dew_point\":4.6,\"relative_humidity\":96.0,\"pressure\":1029.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12750.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4808912256230051,\"wind_speed\":1.8,\"wind_direction\":120.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":4.9,\"relative_humidity\":96.0,\"pressure\":1029.7,\"ozone\":null,\"ghi\":9.426582342676907,\"dni\":0.0,\"dhi\":9.426582342676907}", - "{\"date_time\":\"2024-11-06T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":6980.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4831703698525456,\"wind_speed\":2.2,\"wind_direction\":340.0,\"frost_chance\":null,\"temp_air\":5.6,\"feels_like\":null,\"dew_point\":4.8,\"relative_humidity\":95.0,\"pressure\":1030.5,\"ozone\":null,\"ghi\":49.66881557471828,\"dni\":0.0,\"dhi\":49.66881557471828}", - "{\"date_time\":\"2024-11-06T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":15760.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4233298143003077,\"wind_speed\":3.2,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":6.0,\"feels_like\":null,\"dew_point\":4.3,\"relative_humidity\":89.0,\"pressure\":1030.9,\"ozone\":null,\"ghi\":87.87424898748947,\"dni\":0.0,\"dhi\":87.87424898748947}", - "{\"date_time\":\"2024-11-06T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":29630.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4252928707378512,\"wind_speed\":5.0,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":6.4,\"feels_like\":null,\"dew_point\":4.4,\"relative_humidity\":87.0,\"pressure\":1031.5,\"ozone\":null,\"ghi\":113.42891032649719,\"dni\":0.0,\"dhi\":113.42891032649719}", - "{\"date_time\":\"2024-11-06T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":19110.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.409437502900786,\"wind_speed\":3.6,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":6.6,\"feels_like\":null,\"dew_point\":4.2,\"relative_humidity\":85.0,\"pressure\":1031.59,\"ozone\":null,\"ghi\":122.91825781571202,\"dni\":0.0,\"dhi\":122.91825781571202}", - "{\"date_time\":\"2024-11-06T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":25120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3846109217160805,\"wind_speed\":5.0,\"wind_direction\":360.0,\"frost_chance\":null,\"temp_air\":6.7,\"feels_like\":null,\"dew_point\":4.0,\"relative_humidity\":83.0,\"pressure\":1031.7,\"ozone\":null,\"ghi\":115.32501526045236,\"dni\":0.0,\"dhi\":115.32501526045236}", - "{\"date_time\":\"2024-11-06T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":28400.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4012929810138648,\"wind_speed\":4.0,\"wind_direction\":340.0,\"frost_chance\":null,\"temp_air\":6.7,\"feels_like\":null,\"dew_point\":4.2,\"relative_humidity\":84.0,\"pressure\":1031.5,\"ozone\":null,\"ghi\":91.45155097121383,\"dni\":0.0,\"dhi\":91.45155097121383}", - "{\"date_time\":\"2024-11-06T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":25950.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3844732659494836,\"wind_speed\":4.3,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":6.5,\"feels_like\":null,\"dew_point\":4.1,\"relative_humidity\":84.0,\"pressure\":1031.59,\"ozone\":null,\"ghi\":54.35521490956087,\"dni\":0.0,\"dhi\":54.35521490956087}", - "{\"date_time\":\"2024-11-06T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":22070.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3678703280167073,\"wind_speed\":4.7,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":6.3,\"feels_like\":null,\"dew_point\":3.8,\"relative_humidity\":84.0,\"pressure\":1031.8,\"ozone\":null,\"ghi\":13.133993037937158,\"dni\":0.0,\"dhi\":13.133993037937158}", - "{\"date_time\":\"2024-11-06T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":22360.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.36757098972718,\"wind_speed\":6.1,\"wind_direction\":100.0,\"frost_chance\":null,\"temp_air\":6.1,\"feels_like\":null,\"dew_point\":3.8,\"relative_humidity\":85.0,\"pressure\":1032.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17470.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3829953007358158,\"wind_speed\":7.6,\"wind_direction\":110.0,\"frost_chance\":null,\"temp_air\":5.9,\"feels_like\":null,\"dew_point\":3.9,\"relative_humidity\":87.0,\"pressure\":1032.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":18050.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3114348533433033,\"wind_speed\":2.2,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":5.6,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":84.0,\"pressure\":1032.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":16940.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3112057726870359,\"wind_speed\":4.7,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":85.0,\"pressure\":1032.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":16260.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3266317229539424,\"wind_speed\":5.8,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":3.3,\"relative_humidity\":86.0,\"pressure\":1033.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14540.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3112057726870359,\"wind_speed\":4.3,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":3.0,\"relative_humidity\":85.0,\"pressure\":1033.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-06T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14150.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2803293999126435,\"wind_speed\":2.9,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":5.2,\"feels_like\":null,\"dew_point\":2.8,\"relative_humidity\":84.0,\"pressure\":1033.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2878311958694741,\"wind_speed\":6.5,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":2.8,\"relative_humidity\":85.0,\"pressure\":1033.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":20750.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2952024102120847,\"wind_speed\":6.5,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":5.0,\"feels_like\":null,\"dew_point\":2.9,\"relative_humidity\":86.0,\"pressure\":1033.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":19330.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2725033091467384,\"wind_speed\":5.4,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":4.9,\"feels_like\":null,\"dew_point\":2.7,\"relative_humidity\":85.0,\"pressure\":1033.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17310.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2500209307860815,\"wind_speed\":5.0,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":5.0,\"feels_like\":null,\"dew_point\":2.4,\"relative_humidity\":83.0,\"pressure\":1033.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":28980.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2878311958694741,\"wind_speed\":7.2,\"wind_direction\":80.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":2.8,\"relative_humidity\":85.0,\"pressure\":1033.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":22600.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2726802406239508,\"wind_speed\":7.6,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":2.7,\"relative_humidity\":84.0,\"pressure\":1033.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":21600.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2952024102120847,\"wind_speed\":5.4,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":5.0,\"feels_like\":null,\"dew_point\":2.8,\"relative_humidity\":86.0,\"pressure\":1033.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":19120.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2803293999126435,\"wind_speed\":5.8,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":5.2,\"feels_like\":null,\"dew_point\":2.7,\"relative_humidity\":84.0,\"pressure\":1033.3,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":16970.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3112057726870359,\"wind_speed\":5.4,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":85.0,\"pressure\":1033.8,\"ozone\":null,\"ghi\":8.498732233274223,\"dni\":0.0,\"dhi\":8.498732233274223}", - "{\"date_time\":\"2024-11-07T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":20190.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3036333508504807,\"wind_speed\":6.8,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":5.7,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":83.0,\"pressure\":1034.2,\"ozone\":null,\"ghi\":48.08590935974426,\"dni\":0.0,\"dhi\":48.08590935974426}", - "{\"date_time\":\"2024-11-07T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":20410.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.311382525535115,\"wind_speed\":6.1,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":6.0,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":82.0,\"pressure\":1034.4,\"ozone\":null,\"ghi\":86.13289253240517,\"dni\":0.0,\"dhi\":86.13289253240517}", - "{\"date_time\":\"2024-11-07T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":23940.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3032147078576655,\"wind_speed\":6.8,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":6.1,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":81.0,\"pressure\":1034.5,\"ozone\":null,\"ghi\":111.63587311647375,\"dni\":0.0,\"dhi\":111.63587311647375}", - "{\"date_time\":\"2024-11-07T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":22710.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3106141340118171,\"wind_speed\":7.9,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":6.4,\"feels_like\":null,\"dew_point\":3.3,\"relative_humidity\":80.0,\"pressure\":1034.0,\"ozone\":null,\"ghi\":121.12176907062565,\"dni\":0.0,\"dhi\":121.12176907062565}", - "{\"date_time\":\"2024-11-07T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":22430.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2701653045869423,\"wind_speed\":9.4,\"wind_direction\":80.0,\"frost_chance\":null,\"temp_air\":6.3,\"feels_like\":null,\"dew_point\":2.7,\"relative_humidity\":78.0,\"pressure\":1033.7,\"ozone\":null,\"ghi\":113.56192265137761,\"dni\":0.0,\"dhi\":113.56192265137761}", - "{\"date_time\":\"2024-11-07T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":23210.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3020641429763,\"wind_speed\":7.9,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":6.5,\"feels_like\":null,\"dew_point\":3.2,\"relative_humidity\":79.0,\"pressure\":1033.3,\"ozone\":null,\"ghi\":89.7641924158202,\"dni\":0.0,\"dhi\":89.7641924158202}", - "{\"date_time\":\"2024-11-07T15:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":23220.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2845185659293759,\"wind_speed\":7.2,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":6.7,\"feels_like\":null,\"dew_point\":3.0,\"relative_humidity\":77.0,\"pressure\":1032.9,\"ozone\":null,\"ghi\":52.82846758743223,\"dni\":0.0,\"dhi\":52.82846758743223}", - "{\"date_time\":\"2024-11-07T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":24990.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.293366179132486,\"wind_speed\":8.3,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":6.6,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":78.0,\"pressure\":1032.8,\"ozone\":null,\"ghi\":12.137164591797857,\"dni\":0.0,\"dhi\":12.137164591797857}", - "{\"date_time\":\"2024-11-07T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":23620.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2855823183816633,\"wind_speed\":5.8,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":6.5,\"feels_like\":null,\"dew_point\":2.9,\"relative_humidity\":78.0,\"pressure\":1032.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":20330.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2949042355874099,\"wind_speed\":5.0,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":6.2,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":80.0,\"pressure\":1032.8,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":23590.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2625316296977247,\"wind_speed\":4.0,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":6.2,\"feels_like\":null,\"dew_point\":2.7,\"relative_humidity\":78.0,\"pressure\":1032.9,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":18610.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3032147078576655,\"wind_speed\":6.1,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":6.1,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":81.0,\"pressure\":1033.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":15020.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.311382525535115,\"wind_speed\":9.0,\"wind_direction\":80.0,\"frost_chance\":null,\"temp_air\":6.0,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":82.0,\"pressure\":1033.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14560.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.311382525535115,\"wind_speed\":9.4,\"wind_direction\":80.0,\"frost_chance\":null,\"temp_air\":6.0,\"feels_like\":null,\"dew_point\":3.1,\"relative_humidity\":82.0,\"pressure\":1033.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-07T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14290.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2956943683229234,\"wind_speed\":9.4,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":5.8,\"feels_like\":null,\"dew_point\":2.9,\"relative_humidity\":82.0,\"pressure\":1033.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T00:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13230.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2879269249366194,\"wind_speed\":9.0,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":5.7,\"feels_like\":null,\"dew_point\":2.8,\"relative_humidity\":82.0,\"pressure\":1033.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T01:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10600.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.295822533660645,\"wind_speed\":6.8,\"wind_direction\":80.0,\"frost_chance\":null,\"temp_air\":5.6,\"feels_like\":null,\"dew_point\":2.9,\"relative_humidity\":83.0,\"pressure\":1033.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T02:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2726954899905094,\"wind_speed\":9.0,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":5.3,\"feels_like\":null,\"dew_point\":2.7,\"relative_humidity\":83.0,\"pressure\":1032.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T03:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10800.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2726802406239508,\"wind_speed\":9.0,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":2.7,\"relative_humidity\":84.0,\"pressure\":1032.0,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T04:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10600.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.25003374788666,\"wind_speed\":9.0,\"wind_direction\":50.0,\"frost_chance\":null,\"temp_air\":4.8,\"feels_like\":null,\"dew_point\":2.3,\"relative_humidity\":84.0,\"pressure\":1031.5,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T05:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":11200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.257532681980306,\"wind_speed\":11.9,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":4.9,\"feels_like\":null,\"dew_point\":2.4,\"relative_humidity\":84.0,\"pressure\":1031.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T06:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":11200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2351842404212265,\"wind_speed\":9.0,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":4.6,\"feels_like\":null,\"dew_point\":2.2,\"relative_humidity\":84.0,\"pressure\":1031.09,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T07:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13800.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.22783313798752,\"wind_speed\":10.1,\"wind_direction\":30.0,\"frost_chance\":null,\"temp_air\":4.5,\"feels_like\":null,\"dew_point\":2.1,\"relative_humidity\":84.0,\"pressure\":1030.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T08:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2351842404212265,\"wind_speed\":9.0,\"wind_direction\":20.0,\"frost_chance\":null,\"temp_air\":4.6,\"feels_like\":null,\"dew_point\":2.1,\"relative_humidity\":84.0,\"pressure\":1030.59,\"ozone\":null,\"ghi\":7.618065280685061,\"dni\":0.0,\"dhi\":7.618065280685061}", - "{\"date_time\":\"2024-11-08T09:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":13200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.257532681980306,\"wind_speed\":2.9,\"wind_direction\":350.0,\"frost_chance\":null,\"temp_air\":4.9,\"feels_like\":null,\"dew_point\":2.5,\"relative_humidity\":84.0,\"pressure\":1030.5,\"ozone\":null,\"ghi\":46.52393962571433,\"dni\":0.0,\"dhi\":46.52393962571433}", - "{\"date_time\":\"2024-11-08T10:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12300.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2952024102120847,\"wind_speed\":5.0,\"wind_direction\":40.0,\"frost_chance\":null,\"temp_air\":5.0,\"feels_like\":null,\"dew_point\":2.8,\"relative_humidity\":86.0,\"pressure\":1030.3,\"ozone\":null,\"ghi\":84.41073757319909,\"dni\":0.0,\"dhi\":84.41073757319909}", - "{\"date_time\":\"2024-11-08T11:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":11900.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3635859720970902,\"wind_speed\":6.8,\"wind_direction\":60.0,\"frost_chance\":null,\"temp_air\":5.1,\"feels_like\":null,\"dew_point\":3.6,\"relative_humidity\":90.0,\"pressure\":1030.2,\"ozone\":null,\"ghi\":109.86441465473348,\"dni\":0.0,\"dhi\":109.86441465473348}", - "{\"date_time\":\"2024-11-08T12:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9500.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4695070274881938,\"wind_speed\":7.9,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":5.8,\"feels_like\":null,\"dew_point\":4.7,\"relative_humidity\":93.0,\"pressure\":1029.5,\"ozone\":null,\"ghi\":119.35043772145661,\"dni\":0.0,\"dhi\":119.35043772145661}", - "{\"date_time\":\"2024-11-08T13:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":14500.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.498143692589727,\"wind_speed\":6.1,\"wind_direction\":70.0,\"frost_chance\":null,\"temp_air\":6.3,\"feels_like\":null,\"dew_point\":5.1,\"relative_humidity\":92.0,\"pressure\":1028.8,\"ozone\":null,\"ghi\":111.82801067882036,\"dni\":0.0,\"dhi\":111.82801067882036}", - "{\"date_time\":\"2024-11-08T14:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.1,\"preciptable_water\":1.4923455913067147,\"wind_speed\":11.2,\"wind_direction\":90.0,\"frost_chance\":null,\"temp_air\":6.6,\"feels_like\":null,\"dew_point\":5.1,\"relative_humidity\":90.0,\"pressure\":1028.4,\"ozone\":null,\"ghi\":88.1102014938565,\"dni\":0.0,\"dhi\":88.1102014938565}", - "{\"date_time\":\"2024-11-08T15:00:00+01:00\",\"total_clouds\":88.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4801944829988296,\"wind_speed\":14.0,\"wind_direction\":130.0,\"frost_chance\":null,\"temp_air\":6.1,\"feels_like\":null,\"dew_point\":4.9,\"relative_humidity\":92.0,\"pressure\":1028.4,\"ozone\":null,\"ghi\":62.78155778969431,\"dni\":0.0,\"dhi\":62.78155778969431}", - "{\"date_time\":\"2024-11-08T16:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":12000.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.456767265035836,\"wind_speed\":13.0,\"wind_direction\":120.0,\"frost_chance\":null,\"temp_air\":6.2,\"feels_like\":null,\"dew_point\":4.7,\"relative_humidity\":90.0,\"pressure\":1028.3,\"ozone\":null,\"ghi\":11.192374342113588,\"dni\":0.0,\"dhi\":11.192374342113588}", - "{\"date_time\":\"2024-11-08T17:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":7900.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.4243946591461507,\"wind_speed\":11.2,\"wind_direction\":110.0,\"frost_chance\":null,\"temp_air\":6.2,\"feels_like\":null,\"dew_point\":4.4,\"relative_humidity\":88.0,\"pressure\":1028.2,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T18:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9200.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3913448746531096,\"wind_speed\":15.1,\"wind_direction\":130.0,\"frost_chance\":null,\"temp_air\":6.0,\"feels_like\":null,\"dew_point\":4.0,\"relative_humidity\":87.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T19:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9500.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3829953007358158,\"wind_speed\":9.0,\"wind_direction\":140.0,\"frost_chance\":null,\"temp_air\":5.9,\"feels_like\":null,\"dew_point\":3.9,\"relative_humidity\":87.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T20:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":10100.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3588989716557491,\"wind_speed\":9.0,\"wind_direction\":140.0,\"frost_chance\":null,\"temp_air\":5.8,\"feels_like\":null,\"dew_point\":3.7,\"relative_humidity\":86.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T21:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":9900.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.3430978208225428,\"wind_speed\":9.0,\"wind_direction\":140.0,\"frost_chance\":null,\"temp_air\":5.8,\"feels_like\":null,\"dew_point\":3.5,\"relative_humidity\":85.0,\"pressure\":1028.59,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T22:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":17700.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.295822533660645,\"wind_speed\":10.1,\"wind_direction\":150.0,\"frost_chance\":null,\"temp_air\":5.6,\"feels_like\":null,\"dew_point\":3.0,\"relative_humidity\":83.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-08T23:00:00+01:00\",\"total_clouds\":100.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":15500.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":null,\"precip_amt\":0.0,\"preciptable_water\":1.2957798224201298,\"wind_speed\":10.1,\"wind_direction\":130.0,\"frost_chance\":null,\"temp_air\":5.4,\"feels_like\":null,\"dew_point\":2.9,\"relative_humidity\":84.0,\"pressure\":1028.7,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}", - "{\"date_time\":\"2024-11-09T00:00:00+01:00\",\"total_clouds\":86.0,\"low_clouds\":null,\"medium_clouds\":null,\"high_clouds\":null,\"visibility\":8700.0,\"fog\":null,\"precip_type\":null,\"precip_prob\":1.0,\"precip_amt\":0.0,\"preciptable_water\":null,\"wind_speed\":5.5,\"wind_direction\":87.0,\"frost_chance\":null,\"temp_air\":5.3,\"feels_like\":null,\"dew_point\":2.8,\"relative_humidity\":null,\"pressure\":1027.4,\"ozone\":null,\"ghi\":0.0,\"dni\":0.0,\"dhi\":0.0}" -] \ No newline at end of file +{ + "records": [ + { + "date_time": "2024-10-26 00:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 140.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.5700713856497344, + "weather_wind_speed": 4.7, + "weather_wind_direction": 40.0, + "weather_frost_chance": null, + "weather_temp_air": 6.2, + "weather_feels_like": null, + "weather_dew_point": 5.8, + "weather_relative_humidity": 97.0, + "weather_pressure": 1022.9, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 01:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 90.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.6249985327562004, + "weather_wind_speed": 6.1, + "weather_wind_direction": 10.0, + "weather_frost_chance": null, + "weather_temp_air": 6.6, + "weather_feels_like": null, + "weather_dew_point": 6.3, + "weather_relative_humidity": 98.0, + "weather_pressure": 1023.1, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 02:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 740.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.7334253361156824, + "weather_wind_speed": 3.6, + "weather_wind_direction": 20.0, + "weather_frost_chance": null, + "weather_temp_air": 7.5, + "weather_feels_like": null, + "weather_dew_point": 7.3, + "weather_relative_humidity": 99.0, + "weather_pressure": 1023.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 03:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 580.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.8455721653466037, + "weather_wind_speed": 2.9, + "weather_wind_direction": 50.0, + "weather_frost_chance": null, + "weather_temp_air": 8.7, + "weather_feels_like": null, + "weather_dew_point": 8.5, + "weather_relative_humidity": 98.0, + "weather_pressure": 1022.9, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 04:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 140.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9376328848315296, + "weather_wind_speed": 4.7, + "weather_wind_direction": 10.0, + "weather_frost_chance": null, + "weather_temp_air": 9.5, + "weather_feels_like": null, + "weather_dew_point": 9.3, + "weather_relative_humidity": 98.0, + "weather_pressure": 1022.6, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 05:00:00+02:00", + "weather_total_clouds": 87.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 250.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9532243896939583, + "weather_wind_speed": 4.7, + "weather_wind_direction": 80.0, + "weather_frost_chance": null, + "weather_temp_air": 9.8, + "weather_feels_like": null, + "weather_dew_point": 9.4, + "weather_relative_humidity": 97.0, + "weather_pressure": 1022.6, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 06:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 2280.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9807797336643354, + "weather_wind_speed": 6.1, + "weather_wind_direction": 70.0, + "weather_frost_chance": null, + "weather_temp_air": 10.2, + "weather_feels_like": null, + "weather_dew_point": 9.5, + "weather_relative_humidity": 96.0, + "weather_pressure": 1022.6, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 07:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 2650.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9601466114386656, + "weather_wind_speed": 7.6, + "weather_wind_direction": 40.0, + "weather_frost_chance": null, + "weather_temp_air": 10.2, + "weather_feels_like": null, + "weather_dew_point": 9.4, + "weather_relative_humidity": 95.0, + "weather_pressure": 1022.3, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 08:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 2290.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9395134892129953, + "weather_wind_speed": 8.3, + "weather_wind_direction": 40.0, + "weather_frost_chance": null, + "weather_temp_air": 10.2, + "weather_feels_like": null, + "weather_dew_point": 9.3, + "weather_relative_humidity": 94.0, + "weather_pressure": 1022.3, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 09:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 2530.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9721291734030872, + "weather_wind_speed": 7.6, + "weather_wind_direction": 60.0, + "weather_frost_chance": null, + "weather_temp_air": 10.3, + "weather_feels_like": null, + "weather_dew_point": 9.5, + "weather_relative_humidity": 95.0, + "weather_pressure": 1022.4, + "weather_ozone": null, + "weather_ghi": 22.22705922303379, + "weather_dni": 0.0, + "weather_dhi": 22.22705922303379, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 10:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 1660.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9601466114386656, + "weather_wind_speed": 6.8, + "weather_wind_direction": 80.0, + "weather_frost_chance": null, + "weather_temp_air": 10.2, + "weather_feels_like": null, + "weather_dew_point": 9.4, + "weather_relative_humidity": 95.0, + "weather_pressure": 1022.4, + "weather_ozone": null, + "weather_ghi": 68.16265202099999, + "weather_dni": 0.0, + "weather_dhi": 68.16265202099999, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 11:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 4420.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9395134892129953, + "weather_wind_speed": 7.2, + "weather_wind_direction": 70.0, + "weather_frost_chance": null, + "weather_temp_air": 10.2, + "weather_feels_like": null, + "weather_dew_point": 9.3, + "weather_relative_humidity": 94.0, + "weather_pressure": 1022.1, + "weather_ozone": null, + "weather_ghi": 108.0100746278567, + "weather_dni": 0.0, + "weather_dhi": 108.0100746278567, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 12:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 2010.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9513699189462126, + "weather_wind_speed": 7.6, + "weather_wind_direction": 50.0, + "weather_frost_chance": null, + "weather_temp_air": 10.3, + "weather_feels_like": null, + "weather_dew_point": 9.3, + "weather_relative_humidity": 94.0, + "weather_pressure": 1021.8, + "weather_ozone": null, + "weather_ghi": 134.2816493853918, + "weather_dni": 0.0, + "weather_dhi": 134.2816493853918, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 13:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 4340.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.8683329011187144, + "weather_wind_speed": 7.9, + "weather_wind_direction": 40.0, + "weather_frost_chance": null, + "weather_temp_air": 10.3, + "weather_feels_like": null, + "weather_dew_point": 8.8, + "weather_relative_humidity": 90.0, + "weather_pressure": 1021.2, + "weather_ozone": null, + "weather_ghi": 144.04237088707308, + "weather_dni": 0.0, + "weather_dhi": 144.04237088707308, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 14:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 9060.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9164012929980223, + "weather_wind_speed": 7.6, + "weather_wind_direction": 40.0, + "weather_frost_chance": null, + "weather_temp_air": 10.9, + "weather_feels_like": null, + "weather_dew_point": 9.2, + "weather_relative_humidity": 89.0, + "weather_pressure": 1020.8, + "weather_ozone": null, + "weather_ghi": 136.35519419190516, + "weather_dni": 0.0, + "weather_dhi": 136.35519419190516, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 15:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 13650.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.979008294319185, + "weather_wind_speed": 6.8, + "weather_wind_direction": 40.0, + "weather_frost_chance": null, + "weather_temp_air": 11.8, + "weather_feels_like": null, + "weather_dew_point": 9.7, + "weather_relative_humidity": 87.0, + "weather_pressure": 1020.0, + "weather_ozone": null, + "weather_ghi": 111.94730962791996, + "weather_dni": 0.0, + "weather_dhi": 111.94730962791996, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 16:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 17560.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9946143405085994, + "weather_wind_speed": 7.2, + "weather_wind_direction": 20.0, + "weather_frost_chance": null, + "weather_temp_air": 12.9, + "weather_feels_like": null, + "weather_dew_point": 9.8, + "weather_relative_humidity": 82.0, + "weather_pressure": 1019.8, + "weather_ozone": null, + "weather_ghi": 73.45834328182735, + "weather_dni": 0.0, + "weather_dhi": 73.45834328182735, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 17:00:00+02:00", + "weather_total_clouds": 87.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 17960.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9099689648264042, + "weather_wind_speed": 8.3, + "weather_wind_direction": 30.0, + "weather_frost_chance": null, + "weather_temp_air": 12.8, + "weather_feels_like": null, + "weather_dew_point": 9.3, + "weather_relative_humidity": 79.0, + "weather_pressure": 1019.2, + "weather_ozone": null, + "weather_ghi": 34.07062080450064, + "weather_dni": 0.0, + "weather_dhi": 34.07062080450064, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 18:00:00+02:00", + "weather_total_clouds": 62.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 14910.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.843603353612786, + "weather_wind_speed": 6.8, + "weather_wind_direction": 70.0, + "weather_frost_chance": null, + "weather_temp_air": 9.9, + "weather_feels_like": null, + "weather_dew_point": 8.5, + "weather_relative_humidity": 91.0, + "weather_pressure": 1018.8, + "weather_ozone": null, + "weather_ghi": 0.11256372587508819, + "weather_dni": 0.0, + "weather_dhi": 0.11256372587508819, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 19:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 6400.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.7277309224807302, + "weather_wind_speed": 5.4, + "weather_wind_direction": 40.0, + "weather_frost_chance": null, + "weather_temp_air": 8.3, + "weather_feels_like": null, + "weather_dew_point": 7.5, + "weather_relative_humidity": 94.0, + "weather_pressure": 1018.7, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 20:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 720.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.6911147392871873, + "weather_wind_speed": 5.4, + "weather_wind_direction": 20.0, + "weather_frost_chance": null, + "weather_temp_air": 7.6, + "weather_feels_like": null, + "weather_dew_point": 6.9, + "weather_relative_humidity": 96.0, + "weather_pressure": 1018.7, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 21:00:00+02:00", + "weather_total_clouds": 87.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 5730.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.6378354583834347, + "weather_wind_speed": 4.7, + "weather_wind_direction": 20.0, + "weather_frost_chance": null, + "weather_temp_air": 6.9, + "weather_feels_like": null, + "weather_dew_point": 6.4, + "weather_relative_humidity": 97.0, + "weather_pressure": 1018.7, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 22:00:00+02:00", + "weather_total_clouds": 87.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 90.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.618159751885058, + "weather_wind_speed": 4.7, + "weather_wind_direction": 340.0, + "weather_frost_chance": null, + "weather_temp_air": 6.7, + "weather_feels_like": null, + "weather_dew_point": 6.3, + "weather_relative_humidity": 97.0, + "weather_pressure": 1018.9, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-26 23:00:00+02:00", + "weather_total_clouds": 87.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 90.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.7087305178214287, + "weather_wind_speed": 7.2, + "weather_wind_direction": 360.0, + "weather_frost_chance": null, + "weather_temp_air": 7.6, + "weather_feels_like": null, + "weather_dew_point": 7.1, + "weather_relative_humidity": 97.0, + "weather_pressure": 1019.3, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 00:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 200.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.764491154873937, + "weather_wind_speed": 10.4, + "weather_wind_direction": 360.0, + "weather_frost_chance": null, + "weather_temp_air": 8.3, + "weather_feels_like": null, + "weather_dew_point": 7.6, + "weather_relative_humidity": 96.0, + "weather_pressure": 1019.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 01:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 3610.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.830030033835469, + "weather_wind_speed": 8.3, + "weather_wind_direction": 10.0, + "weather_frost_chance": null, + "weather_temp_air": 8.9, + "weather_feels_like": null, + "weather_dew_point": 8.3, + "weather_relative_humidity": 96.0, + "weather_pressure": 1019.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 02:00:00+02:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 5770.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.945096824920762, + "weather_wind_speed": 9.0, + "weather_wind_direction": 10.0, + "weather_frost_chance": null, + "weather_temp_air": 9.8, + "weather_feels_like": null, + "weather_dew_point": 8.9, + "weather_relative_humidity": 94.0, + "weather_pressure": 1018.7, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 02:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 5980.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": null, + "weather_wind_speed": 7.2, + "weather_wind_direction": 360.0, + "weather_frost_chance": null, + "weather_temp_air": 10.6, + "weather_feels_like": null, + "weather_dew_point": 9.3, + "weather_relative_humidity": 92.0, + "weather_pressure": 1018.8, + "weather_ozone": null, + "weather_ghi": null, + "weather_dni": null, + "weather_dhi": null, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 03:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 7950.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.947556370182495, + "weather_wind_speed": 6.5, + "weather_wind_direction": 360.0, + "weather_frost_chance": null, + "weather_temp_air": 10.8, + "weather_feels_like": null, + "weather_dew_point": 9.4, + "weather_relative_humidity": 91.0, + "weather_pressure": 1018.2, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 04:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 6120.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9903598068898019, + "weather_wind_speed": 4.7, + "weather_wind_direction": 360.0, + "weather_frost_chance": null, + "weather_temp_air": 10.8, + "weather_feels_like": null, + "weather_dew_point": 9.7, + "weather_relative_humidity": 93.0, + "weather_pressure": 1018.2, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 05:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 4830.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.987381538505997, + "weather_wind_speed": 4.3, + "weather_wind_direction": 10.0, + "weather_frost_chance": null, + "weather_temp_air": 10.6, + "weather_feels_like": null, + "weather_dew_point": 9.6, + "weather_relative_humidity": 94.0, + "weather_pressure": 1018.4, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 06:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 5360.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9963174492677347, + "weather_wind_speed": 3.6, + "weather_wind_direction": 350.0, + "weather_frost_chance": null, + "weather_temp_air": 10.5, + "weather_feels_like": null, + "weather_dew_point": 9.8, + "weather_relative_humidity": 95.0, + "weather_pressure": 1018.9, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 07:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 4660.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.0085238952986137, + "weather_wind_speed": 2.2, + "weather_wind_direction": 190.0, + "weather_frost_chance": null, + "weather_temp_air": 10.6, + "weather_feels_like": null, + "weather_dew_point": 9.8, + "weather_relative_humidity": 95.0, + "weather_pressure": 1019.8, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 08:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 5570.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.024064286986675, + "weather_wind_speed": 3.2, + "weather_wind_direction": 180.0, + "weather_frost_chance": null, + "weather_temp_air": 10.9, + "weather_feels_like": null, + "weather_dew_point": 10.0, + "weather_relative_humidity": 94.0, + "weather_pressure": 1020.5, + "weather_ozone": null, + "weather_ghi": 20.901591088639343, + "weather_dni": 0.0, + "weather_dhi": 20.901591088639343, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 09:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 7670.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.020123074823889, + "weather_wind_speed": 7.2, + "weather_wind_direction": 190.0, + "weather_frost_chance": null, + "weather_temp_air": 11.4, + "weather_feels_like": null, + "weather_dew_point": 10.1, + "weather_relative_humidity": 91.0, + "weather_pressure": 1021.1, + "weather_ozone": null, + "weather_ghi": 66.41841804602629, + "weather_dni": 0.0, + "weather_dhi": 66.41841804602629, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 10:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 8790.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.0744781114397735, + "weather_wind_speed": 11.2, + "weather_wind_direction": 190.0, + "weather_frost_chance": null, + "weather_temp_air": 12.2, + "weather_feels_like": null, + "weather_dew_point": 10.4, + "weather_relative_humidity": 89.0, + "weather_pressure": 1021.4, + "weather_ozone": null, + "weather_ghi": 106.12345605852113, + "weather_dni": 0.0, + "weather_dhi": 106.12345605852113, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 11:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 8040.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.067588035893061, + "weather_wind_speed": 10.8, + "weather_wind_direction": 200.0, + "weather_frost_chance": null, + "weather_temp_air": 12.9, + "weather_feels_like": null, + "weather_dew_point": 10.4, + "weather_relative_humidity": 85.0, + "weather_pressure": 1022.0, + "weather_ozone": null, + "weather_ghi": 132.31929512932624, + "weather_dni": 0.0, + "weather_dhi": 132.31929512932624, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 12:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 9300.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.0813625709358203, + "weather_wind_speed": 11.5, + "weather_wind_direction": 220.0, + "weather_frost_chance": null, + "weather_temp_air": 13.4, + "weather_feels_like": null, + "weather_dew_point": 10.6, + "weather_relative_humidity": 83.0, + "weather_pressure": 1022.6, + "weather_ozone": null, + "weather_ghi": 142.03807516868267, + "weather_dni": 0.0, + "weather_dhi": 142.03807516868267, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 13:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 9560.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.119817892495729, + "weather_wind_speed": 10.8, + "weather_wind_direction": 230.0, + "weather_frost_chance": null, + "weather_temp_air": 13.9, + "weather_feels_like": null, + "weather_dew_point": 10.9, + "weather_relative_humidity": 82.0, + "weather_pressure": 1022.7, + "weather_ozone": null, + "weather_ghi": 134.33853283469773, + "weather_dni": 0.0, + "weather_dhi": 134.33853283469773, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 14:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 12400.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.119593668836106, + "weather_wind_speed": 10.4, + "weather_wind_direction": 220.0, + "weather_frost_chance": null, + "weather_temp_air": 14.1, + "weather_feels_like": null, + "weather_dew_point": 11.0, + "weather_relative_humidity": 81.0, + "weather_pressure": 1022.9, + "weather_ozone": null, + "weather_ghi": 109.95561941571053, + "weather_dni": 0.0, + "weather_dhi": 109.95561941571053, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 15:00:00+01:00", + "weather_total_clouds": 87.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 12100.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.1843956516771077, + "weather_wind_speed": 11.9, + "weather_wind_direction": 200.0, + "weather_frost_chance": null, + "weather_temp_air": 14.8, + "weather_feels_like": null, + "weather_dew_point": 11.4, + "weather_relative_humidity": 80.0, + "weather_pressure": 1023.0, + "weather_ozone": null, + "weather_ghi": 88.84019629738314, + "weather_dni": 0.0, + "weather_dhi": 88.84019629738314, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 16:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 13590.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.183440809341084, + "weather_wind_speed": 13.3, + "weather_wind_direction": 200.0, + "weather_frost_chance": null, + "weather_temp_air": 15.0, + "weather_feels_like": null, + "weather_dew_point": 11.4, + "weather_relative_humidity": 79.0, + "weather_pressure": 1023.8, + "weather_ozone": null, + "weather_ghi": 25.90303659201319, + "weather_dni": 0.0, + "weather_dhi": 25.90303659201319, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 17:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 14720.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.1291678932402403, + "weather_wind_speed": 8.6, + "weather_wind_direction": 220.0, + "weather_frost_chance": null, + "weather_temp_air": 13.0, + "weather_feels_like": null, + "weather_dew_point": 11.0, + "weather_relative_humidity": 87.0, + "weather_pressure": 1024.4, + "weather_ozone": null, + "weather_ghi": 0.027781191847857583, + "weather_dni": 0.0, + "weather_dhi": 0.027781191847857583, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 18:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 14300.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.0574147959693145, + "weather_wind_speed": 9.0, + "weather_wind_direction": 190.0, + "weather_frost_chance": null, + "weather_temp_air": 11.7, + "weather_feels_like": null, + "weather_dew_point": 10.3, + "weather_relative_humidity": 91.0, + "weather_pressure": 1025.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 19:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 12740.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.0324781084809054, + "weather_wind_speed": 7.2, + "weather_wind_direction": 180.0, + "weather_frost_chance": null, + "weather_temp_air": 11.5, + "weather_feels_like": null, + "weather_dew_point": 10.0, + "weather_relative_humidity": 91.0, + "weather_pressure": 1025.59, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 20:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 12320.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 1.9995340646535906, + "weather_wind_speed": 7.6, + "weather_wind_direction": 180.0, + "weather_frost_chance": null, + "weather_temp_air": 10.7, + "weather_feels_like": null, + "weather_dew_point": 9.8, + "weather_relative_humidity": 94.0, + "weather_pressure": 1026.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 21:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 10820.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.1311188481658605, + "weather_wind_speed": 9.0, + "weather_wind_direction": 180.0, + "weather_frost_chance": null, + "weather_temp_air": 11.4, + "weather_feels_like": null, + "weather_dew_point": 10.8, + "weather_relative_humidity": 96.0, + "weather_pressure": 1026.5, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 22:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 8040.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.1609860685094553, + "weather_wind_speed": 9.4, + "weather_wind_direction": 180.0, + "weather_frost_chance": null, + "weather_temp_air": 11.8, + "weather_feels_like": null, + "weather_dew_point": 11.0, + "weather_relative_humidity": 95.0, + "weather_pressure": 1027.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-27 23:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 4860.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.174201406952952, + "weather_wind_speed": 8.6, + "weather_wind_direction": 170.0, + "weather_frost_chance": null, + "weather_temp_air": 11.9, + "weather_feels_like": null, + "weather_dew_point": 11.2, + "weather_relative_humidity": 95.0, + "weather_pressure": 1027.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + }, + { + "date_time": "2024-10-28 00:00:00+01:00", + "weather_total_clouds": 100.0, + "weather_low_clouds": null, + "weather_medium_clouds": null, + "weather_high_clouds": null, + "weather_visibility": 3910.0, + "weather_fog": null, + "weather_precip_type": null, + "weather_precip_prob": null, + "weather_precip_amt": 0.0, + "weather_preciptable_water": 2.174201406952952, + "weather_wind_speed": 11.9, + "weather_wind_direction": 180.0, + "weather_frost_chance": null, + "weather_temp_air": 11.9, + "weather_feels_like": null, + "weather_dew_point": 11.1, + "weather_relative_humidity": 95.0, + "weather_pressure": 1027.0, + "weather_ozone": null, + "weather_ghi": 0.0, + "weather_dni": 0.0, + "weather_dhi": 0.0, + "start_datetime": "2024-10-26 00:00:00+02:00" + } + ], + "update_datetime": "2025-02-15T08:48:36.218971+01:00", + "start_datetime": "2024-10-26T00:00:00+02:00", + "min_datetime": "2024-10-26T00:00:00+02:00", + "max_datetime": "2024-10-28T00:00:00+01:00", + "record_keys": [ + "date_time", + "weather_total_clouds", + "weather_low_clouds", + "weather_medium_clouds", + "weather_high_clouds", + "weather_visibility", + "weather_fog", + "weather_precip_type", + "weather_precip_prob", + "weather_precip_amt", + "weather_preciptable_water", + "weather_wind_speed", + "weather_wind_direction", + "weather_frost_chance", + "weather_temp_air", + "weather_feels_like", + "weather_dew_point", + "weather_relative_humidity", + "weather_pressure", + "weather_ozone", + "weather_ghi", + "weather_dni", + "weather_dhi", + "start_datetime" + ], + "record_keys_writable": [ + "date_time", + "weather_total_clouds", + "weather_low_clouds", + "weather_medium_clouds", + "weather_high_clouds", + "weather_visibility", + "weather_fog", + "weather_precip_type", + "weather_precip_prob", + "weather_precip_amt", + "weather_preciptable_water", + "weather_wind_speed", + "weather_wind_direction", + "weather_frost_chance", + "weather_temp_air", + "weather_feels_like", + "weather_dew_point", + "weather_relative_humidity", + "weather_pressure", + "weather_ozone", + "weather_ghi", + "weather_dni", + "weather_dhi" + ], + "end_datetime": "2024-10-28T00:00:00+01:00", + "keep_datetime": "2024-10-24T00:00:00+02:00", + "total_hours": 49, + "keep_hours": 48 +} \ No newline at end of file