GET Wetter 2021 für Berlin, Reichstag
{{baseUrl}}/public/history
Examples
REQUEST

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/public/history");

CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])

(client/get "{{baseUrl}}/public/history")
require "http/client"

url = "{{baseUrl}}/public/history"

response = HTTP::Client.get url
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
    Method = HttpMethod.Get,
    RequestUri = new Uri("{{baseUrl}}/public/history"),
};
using (var response = await client.SendAsync(request))
{
    response.EnsureSuccessStatusCode();
    var body = await response.Content.ReadAsStringAsync();
    Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/public/history");
var request = new RestRequest("", Method.Get);
var response = client.Execute(request);
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "{{baseUrl}}/public/history"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
GET /baseUrl/public/history HTTP/1.1
Host: example.com

AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("GET", "{{baseUrl}}/public/history")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
HttpRequest request = HttpRequest.newBuilder()
    .uri(URI.create("{{baseUrl}}/public/history"))
    .method("GET", HttpRequest.BodyPublishers.noBody())
    .build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
  .url("{{baseUrl}}/public/history")
  .get()
  .build();

Response response = client.newCall(request).execute();
HttpResponse response = Unirest.get("{{baseUrl}}/public/history")
  .asString();
const data = null;

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener('readystatechange', function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open('GET', '{{baseUrl}}/public/history');

xhr.send(data);
import axios from 'axios';

const options = {method: 'GET', url: '{{baseUrl}}/public/history'};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const url = '{{baseUrl}}/public/history';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
const settings = {
  async: true,
  crossDomain: true,
  url: '{{baseUrl}}/public/history',
  method: 'GET',
  headers: {}
};

$.ajax(settings).done(function (response) {
  console.log(response);
});
val client = OkHttpClient()

val request = Request.Builder()
  .url("{{baseUrl}}/public/history")
  .get()
  .build()

val response = client.newCall(request).execute()
const http = require('https');

const options = {
  method: 'GET',
  hostname: 'example.com',
  port: null,
  path: '/baseUrl/public/history',
  headers: {}
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on('data', function (chunk) {
    chunks.push(chunk);
  });

  res.on('end', function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.end();
const request = require('request');

const options = {method: 'GET', url: '{{baseUrl}}/public/history'};

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
const unirest = require('unirest');

const req = unirest('GET', '{{baseUrl}}/public/history');

req.end(function (res) {
  if (res.error) throw new Error(res.error);

  console.log(res.body);
});
const axios = require('axios').default;

const options = {method: 'GET', url: '{{baseUrl}}/public/history'};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}
const fetch = require('node-fetch');

const url = '{{baseUrl}}/public/history';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
#import 

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/public/history"]
                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                   timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];

NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
                                                if (error) {
                                                    NSLog(@"%@", error);
                                                } else {
                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
                                                    NSLog(@"%@", httpResponse);
                                                }
                                            }];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt

let uri = Uri.of_string "{{baseUrl}}/public/history" in

Client.call `GET uri
>>= fun (res, body_stream) ->
  (* Do stuff with the result *)
 "{{baseUrl}}/public/history",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
request('GET', '{{baseUrl}}/public/history');

echo $response->getBody();
setUrl('{{baseUrl}}/public/history');
$request->setMethod(HTTP_METH_GET);

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}
setRequestUrl('{{baseUrl}}/public/history');
$request->setRequestMethod('GET');
$client->enqueue($request)->send();
$response = $client->getResponse();

echo $response->getBody();
$response = Invoke-WebRequest -Uri '{{baseUrl}}/public/history' -Method GET 
$response = Invoke-RestMethod -Uri '{{baseUrl}}/public/history' -Method GET 
import http.client

conn = http.client.HTTPSConnection("example.com")

conn.request("GET", "/baseUrl/public/history")

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
import requests

url = "{{baseUrl}}/public/history"

response = requests.get(url)

print(response.json())
library(httr)

url <- "{{baseUrl}}/public/history"

response <- VERB("GET", url, content_type("application/octet-stream"))

content(response, "text")
require 'uri'
require 'net/http'

url = URI("{{baseUrl}}/public/history")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
require 'faraday'

conn = Faraday.new(
  url: 'https://example.com',
)

response = conn.get('/baseUrl/public/history') do |req|
end

puts response.status
puts response.body
use reqwest;

#[tokio::main]
pub async fn main() {
    let url = "{{baseUrl}}/public/history";

    let client = reqwest::Client::new();
    let response = client.get(url)
        .send()
        .await;

    let results = response.unwrap()
        .json::()
        .await
        .unwrap();

    dbg!(results);
}
curl --request GET \
  --url {{baseUrl}}/public/history
http GET {{baseUrl}}/public/history
wget --quiet \
  --method GET \
  --output-document \
  - {{baseUrl}}/public/history
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/public/history")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
RESPONSE HEADERS

Content-Type
application/json
RESPONSE BODY json

{
  "address": "52.4676201,13.5280284",
  "days": [
    {
      "cloudcover": 100,
      "conditions": "Overcast",
      "date": "2022-10-31",
      "datetime": "2022-10-31",
      "datetimeEpoch": 1667170800,
      "description": "Cloudy skies throughout the day.",
      "dew": 11.3,
      "feelslike": 12.3,
      "feelslikemax": 18,
      "feelslikemin": 6.9,
      "hours": [
        {
          "conditions": "Clear",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667170800,
          "dew": 10,
          "feelslike": 10,
          "humidity": 100,
          "icon": "clear-night",
          "precipprob": 0,
          "pressure": 1018,
          "source": "obs",
          "stations": [
            "EDDB"
          ],
          "temp": 10,
          "tempC": 10,
          "time": "00:00:00",
          "timestamp": 1667170800000,
          "visibility": 1,
          "winddir": 150,
          "windspeed": 3.6
        },
        {
          "conditions": "Clear",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667174400,
          "dew": 9,
          "feelslike": 9,
          "humidity": 100,
          "icon": "clear-night",
          "precipprob": 0,
          "pressure": 1018,
          "source": "obs",
          "stations": [
            "EDDB"
          ],
          "temp": 9,
          "tempC": 9,
          "time": "01:00:00",
          "timestamp": 1667170800000,
          "visibility": 1,
          "winddir": 190,
          "windspeed": 1.8
        },
        {
          "conditions": "Clear",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667178000,
          "dew": 9,
          "feelslike": 8.5,
          "humidity": 100,
          "icon": "clear-night",
          "precipprob": 0,
          "pressure": 1019,
          "source": "obs",
          "stations": [
            "EDDB"
          ],
          "temp": 9,
          "tempC": 9,
          "time": "02:00:00",
          "timestamp": 1667170800000,
          "visibility": 1,
          "winddir": 230,
          "windspeed": 5.4
        },
        {
          "conditions": "Clear",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667181600,
          "dew": 9,
          "feelslike": 9,
          "humidity": 100,
          "icon": "clear-night",
          "precipprob": 0,
          "pressure": 1019,
          "source": "obs",
          "stations": [
            "EDDB"
          ],
          "temp": 9,
          "tempC": 9,
          "time": "03:00:00",
          "timestamp": 1667170800000,
          "visibility": 0,
          "winddir": 270,
          "windspeed": 3.6
        },
        {
          "conditions": "Clear",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667185200,
          "dew": 10,
          "feelslike": 10,
          "humidity": 100,
          "icon": "clear-night",
          "precipprob": 0,
          "pressure": 1019,
          "source": "obs",
          "stations": [
            "EDDB"
          ],
          "temp": 10,
          "tempC": 10,
          "time": "04:00:00",
          "timestamp": 1667170800000,
          "visibility": 10,
          "winddir": 240,
          "windspeed": 3.6
        },
        {
          "conditions": "Clear",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667188800,
          "dew": 9,
          "feelslike": 6.9,
          "humidity": 100,
          "icon": "clear-night",
          "precipprob": 0,
          "pressure": 1019,
          "source": "obs",
          "stations": [
            "EDDB"
          ],
          "temp": 9,
          "tempC": 9,
          "time": "05:00:00",
          "timestamp": 1667170800000,
          "visibility": 10,
          "winddir": 250,
          "windspeed": 13
        },
        {
          "conditions": "Clear",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667192400,
          "dew": 9,
          "feelslike": 7.9,
          "humidity": 100,
          "icon": "clear-night",
          "precipprob": 0,
          "pressure": 1020,
          "source": "obs",
          "stations": [
            "EDDB"
          ],
          "temp": 9,
          "tempC": 9,
          "time": "06:00:00",
          "timestamp": 1667170800000,
          "visibility": 10,
          "winddir": 250,
          "windspeed": 7.6
        },
        {
          "conditions": "Clear",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667196000,
          "dew": 9,
          "feelslike": 9,
          "humidity": 100,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1020,
          "solarenergy": 0,
          "solarradiation": 5,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 9,
          "tempC": 9,
          "time": "07:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 10
        },
        {
          "conditions": "Clear",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667199600,
          "dew": 10,
          "feelslike": 8.7,
          "humidity": 100,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1020,
          "solarenergy": 0.2,
          "solarradiation": 56,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 10,
          "tempC": 10,
          "time": "08:00:00",
          "timestamp": 1667170800000,
          "uvindex": 1,
          "visibility": 10,
          "winddir": 240,
          "windspeed": 9.4
        },
        {
          "conditions": "Clear",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667203200,
          "dew": 11,
          "feelslike": 12,
          "humidity": 93.6,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1021,
          "solarenergy": 0.8,
          "solarradiation": 209,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 12,
          "tempC": 12,
          "time": "09:00:00",
          "timestamp": 1667170800000,
          "uvindex": 2,
          "visibility": 10,
          "winddir": 240,
          "windspeed": 5.4
        },
        {
          "conditions": "Clear",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667206800,
          "dew": 12,
          "feelslike": 14,
          "humidity": 87.74,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1021,
          "solarenergy": 1,
          "solarradiation": 265,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 14,
          "tempC": 14,
          "time": "10:00:00",
          "timestamp": 1667170800000,
          "uvindex": 3,
          "visibility": 10,
          "windspeed": 7.6
        },
        {
          "conditions": "Clear",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667210400,
          "dew": 13,
          "feelslike": 14,
          "humidity": 93.7,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1021,
          "solarenergy": 0.6,
          "solarradiation": 179,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 14,
          "tempC": 14,
          "time": "11:00:00",
          "timestamp": 1667170800000,
          "uvindex": 2,
          "visibility": 10,
          "winddir": 260,
          "windspeed": 7.6
        },
        {
          "conditions": "Clear",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667214000,
          "dew": 13,
          "feelslike": 17,
          "humidity": 77.3,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1021,
          "solarenergy": 0.7,
          "solarradiation": 195,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 17,
          "tempC": 17,
          "time": "12:00:00",
          "timestamp": 1667170800000,
          "uvindex": 2,
          "visibility": 10,
          "winddir": 280,
          "windspeed": 5.4
        },
        {
          "conditions": "Clear",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667217600,
          "dew": 14,
          "feelslike": 17,
          "humidity": 82.5,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1021,
          "solarenergy": 1.1,
          "solarradiation": 297,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 17,
          "tempC": 17,
          "time": "13:00:00",
          "timestamp": 1667170800000,
          "uvindex": 3,
          "visibility": 10,
          "winddir": 270,
          "windspeed": 5.4
        },
        {
          "conditions": "Clear",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667221200,
          "dew": 14,
          "feelslike": 18,
          "humidity": 77.46,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1020,
          "solarenergy": 1,
          "solarradiation": 270,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 18,
          "tempC": 18,
          "time": "14:00:00",
          "timestamp": 1667170800000,
          "uvindex": 3,
          "visibility": 10,
          "winddir": 260,
          "windspeed": 5.4
        },
        {
          "conditions": "Clear",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667224800,
          "dew": 13,
          "feelslike": 18,
          "humidity": 72.57,
          "icon": "clear-day",
          "precipprob": 0,
          "pressure": 1020,
          "solarenergy": 0.5,
          "solarradiation": 147,
          "source": "obs",
          "stations": [
            "EDDB",
            "E2835"
          ],
          "temp": 18,
          "tempC": 18,
          "time": "15:00:00",
          "timestamp": 1667170800000,
          "uvindex": 1,
          "visibility": 10,
          "winddir": 0,
          "windspeed": 0
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667228400,
          "dew": 13.8,
          "feelslike": 16.5,
          "humidity": 84.07,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 3,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 76,
          "source": "fcst",
          "temp": 16.5,
          "tempC": 16.5,
          "time": "16:00:00",
          "timestamp": 1667170800000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 1.2,
          "windgust": 4,
          "windspeed": 0.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667232000,
          "dew": 12.8,
          "feelslike": 15,
          "humidity": 86.69,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 3,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 7,
          "source": "fcst",
          "temp": 15,
          "tempC": 15,
          "time": "17:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 99.5,
          "windgust": 3.6,
          "windspeed": 2.9
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667235600,
          "dew": 12.4,
          "feelslike": 13.3,
          "humidity": 94.28,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 5,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 13.3,
          "tempC": 13.3,
          "time": "18:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 100.9,
          "windgust": 7.9,
          "windspeed": 4.7
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667239200,
          "dew": 12.1,
          "feelslike": 12.8,
          "humidity": 95.51,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12.8,
          "tempC": 12.8,
          "time": "19:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 88.2,
          "windgust": 9.4,
          "windspeed": 5.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667242800,
          "dew": 11.9,
          "feelslike": 12.5,
          "humidity": 96.13,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12.5,
          "tempC": 12.5,
          "time": "20:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 83.6,
          "windgust": 10.8,
          "windspeed": 6.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667246400,
          "dew": 11.6,
          "feelslike": 12.2,
          "humidity": 96.12,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12.2,
          "tempC": 12.2,
          "time": "21:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 82.3,
          "windgust": 13.3,
          "windspeed": 7.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667250000,
          "dew": 11.5,
          "feelslike": 12,
          "humidity": 96.75,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12,
          "tempC": 12,
          "time": "22:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 82.2,
          "windgust": 15.8,
          "windspeed": 8.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667253600,
          "dew": 11.4,
          "feelslike": 11.9,
          "humidity": 96.75,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1018,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.9,
          "tempC": 11.9,
          "time": "23:00:00",
          "timestamp": 1667170800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 85.1,
          "windgust": 17.6,
          "windspeed": 10.1
        }
      ],
      "humidity": 93,
      "icon": "cloudy",
      "moonphase": 0.21,
      "normal": {
        "cloudcover": [
          0,
          41.6,
          91.3
        ],
        "feelslike": [
          -2.4,
          12,
          18.7
        ],
        "humidity": [
          63.9,
          83.1,
          96.1
        ],
        "precip": [
          0,
          0.4,
          4.3
        ],
        "snowdepth": [
          null,
          null,
          null
        ],
        "tempmax": [
          7.1,
          12,
          18.7
        ],
        "tempmin": [
          -2.2,
          5.1,
          13.3
        ],
        "winddir": [
          93.6,
          177.5,
          264
        ],
        "windgust": [
          10.8,
          18,
          43.2
        ],
        "windspeed": [
          7.9,
          18,
          39.6
        ]
      },
      "precip": 0,
      "precipcover": 0,
      "precipitation": 0,
      "precipprob": 4.8,
      "pressure": 1019.6,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 6.2,
      "solarradiation": 100.4,
      "source": "comb",
      "stations": [
        "EDDB",
        "E2835"
      ],
      "sunrise": "06:59:56",
      "sunriseEpoch": 1667195996,
      "sunset": "16:38:18",
      "sunsetEpoch": 1667230698,
      "tempC": 12.5,
      "tempmaxC": 18,
      "tempminC": 9,
      "timestamp": 1667170800000,
      "uvindex": 3,
      "visibility": 13.2,
      "winddir": 221,
      "windgust": 17.6,
      "windspeed": 13
    },
    {
      "cloudcover": 92.7,
      "conditions": "Overcast",
      "date": "2022-11-01",
      "datetime": "2022-11-01",
      "datetimeEpoch": 1667257200,
      "description": "Cloudy skies throughout the day.",
      "dew": 10.8,
      "feelslike": 12.9,
      "feelslikemax": 17.9,
      "feelslikemin": 8.2,
      "hours": [
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667257200,
          "dew": 11.5,
          "feelslike": 11.9,
          "humidity": 97.39,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1017,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.9,
          "tempC": 11.9,
          "time": "00:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 87.2,
          "windgust": 20.2,
          "windspeed": 7.9
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667260800,
          "dew": 11.5,
          "feelslike": 11.9,
          "humidity": 97.39,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1017,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.9,
          "tempC": 11.9,
          "time": "01:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 92.1,
          "windgust": 20.2,
          "windspeed": 11.2
        },
        {
          "cloudcover": 89.4,
          "conditions": "Partially cloudy",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667264400,
          "dew": 11.5,
          "feelslike": 12,
          "humidity": 96.75,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1016,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12,
          "tempC": 12,
          "time": "02:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 107.9,
          "windgust": 21.6,
          "windspeed": 7.6
        },
        {
          "cloudcover": 65.1,
          "conditions": "Partially cloudy",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667268000,
          "dew": 11.5,
          "feelslike": 11.8,
          "humidity": 98.04,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1016,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.8,
          "tempC": 11.8,
          "time": "03:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 104.8,
          "windgust": 18,
          "windspeed": 9.4
        },
        {
          "cloudcover": 94.1,
          "conditions": "Overcast",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667271600,
          "dew": 11.4,
          "feelslike": 11.6,
          "humidity": 98.69,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1015,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.6,
          "tempC": 11.6,
          "time": "04:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 116.2,
          "windgust": 18,
          "windspeed": 9.7
        },
        {
          "cloudcover": 78.4,
          "conditions": "Partially cloudy",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667275200,
          "dew": 11.2,
          "feelslike": 11.5,
          "humidity": 98.03,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1015,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.5,
          "tempC": 11.5,
          "time": "05:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 132,
          "windgust": 19.4,
          "windspeed": 10.1
        },
        {
          "cloudcover": 97.7,
          "conditions": "Overcast",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667278800,
          "dew": 10.8,
          "feelslike": 11.1,
          "humidity": 98.03,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1015,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.1,
          "tempC": 11.1,
          "time": "06:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 136.2,
          "windgust": 19.8,
          "windspeed": 10.4
        },
        {
          "cloudcover": 95.8,
          "conditions": "Overcast",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667282400,
          "dew": 10.5,
          "feelslike": 10.8,
          "humidity": 98.02,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1015,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10.8,
          "tempC": 10.8,
          "time": "07:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 137.6,
          "windgust": 19.1,
          "windspeed": 10.4
        },
        {
          "cloudcover": 96.1,
          "conditions": "Overcast",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667286000,
          "dew": 10.2,
          "feelslike": 11,
          "humidity": 94.81,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1015,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 23,
          "source": "fcst",
          "temp": 11,
          "tempC": 11,
          "time": "08:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 153.8,
          "windgust": 18.7,
          "windspeed": 9
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667289600,
          "dew": 10.6,
          "feelslike": 12.8,
          "humidity": 86.48,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1016,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 83,
          "source": "fcst",
          "temp": 12.8,
          "tempC": 12.8,
          "time": "09:00:00",
          "timestamp": 1667257200000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 189.8,
          "windgust": 17.6,
          "windspeed": 9.4
        },
        {
          "cloudcover": 99.6,
          "conditions": "Overcast",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667293200,
          "dew": 11.6,
          "feelslike": 14.7,
          "humidity": 81.68,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1016,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 102,
          "source": "fcst",
          "temp": 14.7,
          "tempC": 14.7,
          "time": "10:00:00",
          "timestamp": 1667257200000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 208.3,
          "windgust": 19.8,
          "windspeed": 10.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667296800,
          "dew": 12.6,
          "feelslike": 16.1,
          "humidity": 79.74,
          "icon": "cloudy",
          "precipitation": 0.1,
          "precipprob": 0,
          "preciptype": [
            "rain"
          ],
          "pressure": 1016,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 118,
          "source": "fcst",
          "temp": 16.1,
          "tempC": 16.1,
          "time": "11:00:00",
          "timestamp": 1667257200000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 226.6,
          "windgust": 29.5,
          "windspeed": 15.8
        },
        {
          "cloudcover": 99.3,
          "conditions": "Overcast",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667300400,
          "dew": 13.3,
          "feelslike": 16.5,
          "humidity": 81.37,
          "icon": "cloudy",
          "precipitation": 0.1,
          "precipprob": 0,
          "preciptype": [
            "rain"
          ],
          "pressure": 1016,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.9,
          "solarradiation": 246,
          "source": "fcst",
          "temp": 16.5,
          "tempC": 16.5,
          "time": "12:00:00",
          "timestamp": 1667257200000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 227.7,
          "windgust": 30.6,
          "windspeed": 14
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667304000,
          "dew": 13.2,
          "feelslike": 17.7,
          "humidity": 74.93,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1016,
          "severerisk": 3,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.8,
          "solarradiation": 233,
          "source": "fcst",
          "temp": 17.7,
          "tempC": 17.7,
          "time": "13:00:00",
          "timestamp": 1667257200000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 234.5,
          "windgust": 31.3,
          "windspeed": 16.6
        },
        {
          "cloudcover": 99.1,
          "conditions": "Overcast",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667307600,
          "dew": 12,
          "feelslike": 17.9,
          "humidity": 68.39,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1017,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.7,
          "solarradiation": 181,
          "source": "fcst",
          "temp": 17.9,
          "tempC": 17.9,
          "time": "14:00:00",
          "timestamp": 1667257200000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 252.3,
          "windgust": 34.9,
          "windspeed": 17.6
        },
        {
          "cloudcover": 88.4,
          "conditions": "Partially cloudy",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667311200,
          "dew": 10.8,
          "feelslike": 17.2,
          "humidity": 66.02,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1017,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 121,
          "source": "fcst",
          "temp": 17.2,
          "tempC": 17.2,
          "time": "15:00:00",
          "timestamp": 1667257200000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 265.6,
          "windgust": 32.4,
          "windspeed": 15.5
        },
        {
          "cloudcover": 70.5,
          "conditions": "Partially cloudy",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667314800,
          "dew": 10.3,
          "feelslike": 15.6,
          "humidity": 70.71,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1017,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 54,
          "source": "fcst",
          "temp": 15.6,
          "tempC": 15.6,
          "time": "16:00:00",
          "timestamp": 1667257200000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 253.7,
          "windgust": 28.4,
          "windspeed": 7.2
        },
        {
          "cloudcover": 99,
          "conditions": "Overcast",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667318400,
          "dew": 10.4,
          "feelslike": 14,
          "humidity": 78.91,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1018,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 5,
          "source": "fcst",
          "temp": 14,
          "tempC": 14,
          "time": "17:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 248.1,
          "windgust": 13.3,
          "windspeed": 7.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667322000,
          "dew": 10.4,
          "feelslike": 13.3,
          "humidity": 82.59,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1018,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 13.3,
          "tempC": 13.3,
          "time": "18:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 260.2,
          "windgust": 14,
          "windspeed": 7.9
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667325600,
          "dew": 9.4,
          "feelslike": 12.3,
          "humidity": 82.46,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12.3,
          "tempC": 12.3,
          "time": "19:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 244.7,
          "windgust": 14,
          "windspeed": 7.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667329200,
          "dew": 9.4,
          "feelslike": 11,
          "humidity": 89.86,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11,
          "tempC": 11,
          "time": "20:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 231.7,
          "windgust": 13,
          "windspeed": 6.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667332800,
          "dew": 9.2,
          "feelslike": 10.5,
          "humidity": 91.66,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10.5,
          "tempC": 10.5,
          "time": "21:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 227,
          "windgust": 13.3,
          "windspeed": 7.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667336400,
          "dew": 8.5,
          "feelslike": 9.1,
          "humidity": 90.39,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10,
          "tempC": 10,
          "time": "22:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 230.6,
          "windgust": 13.7,
          "windspeed": 7.6
        },
        {
          "cloudcover": 52.8,
          "conditions": "Partially cloudy",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667340000,
          "dew": 7.8,
          "feelslike": 8.2,
          "humidity": 90.34,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.3,
          "tempC": 9.3,
          "time": "23:00:00",
          "timestamp": 1667257200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 223.1,
          "windgust": 13.7,
          "windspeed": 7.6
        }
      ],
      "humidity": 87.2,
      "icon": "cloudy",
      "moonphase": 0.26,
      "normal": {
        "cloudcover": [
          0,
          41.8,
          89.7
        ],
        "feelslike": [
          -5.3,
          11.2,
          18.7
        ],
        "humidity": [
          77,
          85.4,
          95.6
        ],
        "precip": [
          0,
          1,
          4.1
        ],
        "snowdepth": [
          null,
          null,
          null
        ],
        "tempmax": [
          6.1,
          11.2,
          18.7
        ],
        "tempmin": [
          -1.3,
          4.7,
          10.7
        ],
        "winddir": [
          64.4,
          179.4,
          279.6
        ],
        "windgust": [
          10.8,
          18.7,
          32.4
        ],
        "windspeed": [
          6.1,
          19.1,
          46.1
        ]
      },
      "precip": 0,
      "precipcover": 8.33,
      "precipitation": 0.2,
      "precipprob": 4.8,
      "preciptype": [
        "rain"
      ],
      "pressure": 1016.9,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 4.2,
      "solarradiation": 48.6,
      "source": "fcst",
      "sunrise": "07:01:46",
      "sunriseEpoch": 1667282506,
      "sunset": "16:36:24",
      "sunsetEpoch": 1667316984,
      "tempC": 13,
      "tempmaxC": 17.9,
      "tempminC": 9.3,
      "timestamp": 1667257200000,
      "uvindex": 2,
      "visibility": 24.1,
      "winddir": 203.8,
      "windgust": 34.9,
      "windspeed": 17.6
    },
    {
      "cloudcover": 43.5,
      "conditions": "Partially cloudy",
      "date": "2022-11-02",
      "datetime": "2022-11-02",
      "datetimeEpoch": 1667343600,
      "description": "Partly cloudy throughout the day.",
      "dew": 5.7,
      "feelslike": 7.8,
      "feelslikemax": 14.2,
      "feelslikemin": 3.3,
      "hours": [
        {
          "cloudcover": 9.8,
          "conditions": "Clear",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667343600,
          "dew": 6.9,
          "feelslike": 6.6,
          "humidity": 91.51,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8.2,
          "tempC": 8.2,
          "time": "00:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 207.6,
          "windgust": 15.8,
          "windspeed": 9
        },
        {
          "cloudcover": 47.1,
          "conditions": "Partially cloudy",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667347200,
          "dew": 6.2,
          "feelslike": 5.6,
          "humidity": 92.09,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.4,
          "tempC": 7.4,
          "time": "01:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 208.5,
          "windgust": 16.9,
          "windspeed": 9.4
        },
        {
          "cloudcover": 54.8,
          "conditions": "Partially cloudy",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667350800,
          "dew": 6,
          "feelslike": 5.2,
          "humidity": 92.71,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.1,
          "tempC": 7.1,
          "time": "02:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 212.9,
          "windgust": 17.6,
          "windspeed": 9.7
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667354400,
          "dew": 5.8,
          "feelslike": 4.7,
          "humidity": 93.98,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "03:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 211,
          "windgust": 17.6,
          "windspeed": 9.7
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667358000,
          "dew": 5.8,
          "feelslike": 4.7,
          "humidity": 93.34,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.8,
          "tempC": 6.8,
          "time": "04:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 208.2,
          "windgust": 19.1,
          "windspeed": 10.4
        },
        {
          "cloudcover": 91.4,
          "conditions": "Overcast",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667361600,
          "dew": 5.7,
          "feelslike": 4.5,
          "humidity": 93.33,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "05:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 205.9,
          "windgust": 19.4,
          "windspeed": 10.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667365200,
          "dew": 5.4,
          "feelslike": 4.2,
          "humidity": 92.04,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.6,
          "tempC": 6.6,
          "time": "06:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 203.9,
          "windgust": 20.9,
          "windspeed": 11.9
        },
        {
          "cloudcover": 16.8,
          "conditions": "Clear",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667368800,
          "dew": 5.4,
          "feelslike": 4.1,
          "humidity": 92.68,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.5,
          "tempC": 6.5,
          "time": "07:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 199.3,
          "windgust": 20.9,
          "windspeed": 11.5
        },
        {
          "cloudcover": 49.4,
          "conditions": "Partially cloudy",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667372400,
          "dew": 5.7,
          "feelslike": 4.8,
          "humidity": 89.57,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 19,
          "source": "fcst",
          "temp": 7.3,
          "tempC": 7.3,
          "time": "08:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 204.8,
          "windgust": 24.1,
          "windspeed": 13.3
        },
        {
          "cloudcover": 50.7,
          "conditions": "Partially cloudy",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667376000,
          "dew": 6.4,
          "feelslike": 7,
          "humidity": 81.53,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 100,
          "source": "fcst",
          "temp": 9.4,
          "tempC": 9.4,
          "time": "09:00:00",
          "timestamp": 1667343600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 211.6,
          "windgust": 29.5,
          "windspeed": 15.8
        },
        {
          "cloudcover": 4.9,
          "conditions": "Clear",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667379600,
          "dew": 7.2,
          "feelslike": 11.5,
          "humidity": 74.88,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.8,
          "solarradiation": 235,
          "source": "fcst",
          "temp": 11.5,
          "tempC": 11.5,
          "time": "10:00:00",
          "timestamp": 1667343600000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 222.7,
          "windgust": 35.3,
          "windspeed": 19.1
        },
        {
          "cloudcover": 30.7,
          "conditions": "Partially cloudy",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667383200,
          "dew": 7.1,
          "feelslike": 13.2,
          "humidity": 66.51,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 1,
          "solarradiation": 281,
          "source": "fcst",
          "temp": 13.2,
          "tempC": 13.2,
          "time": "11:00:00",
          "timestamp": 1667343600000,
          "uvindex": 3,
          "visibility": 24.1,
          "winddir": 239.3,
          "windgust": 43.2,
          "windspeed": 23
        },
        {
          "cloudcover": 40.9,
          "conditions": "Partially cloudy",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667386800,
          "dew": 6.6,
          "feelslike": 14,
          "humidity": 61.01,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 1.3,
          "solarradiation": 351,
          "source": "fcst",
          "temp": 14,
          "tempC": 14,
          "time": "12:00:00",
          "timestamp": 1667343600000,
          "uvindex": 4,
          "visibility": 24.1,
          "winddir": 238,
          "windgust": 45.4,
          "windspeed": 24.1
        },
        {
          "cloudcover": 55.1,
          "conditions": "Partially cloudy",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667390400,
          "dew": 6.2,
          "feelslike": 14.1,
          "humidity": 58.97,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 1.2,
          "solarradiation": 345,
          "source": "fcst",
          "temp": 14.1,
          "tempC": 14.1,
          "time": "13:00:00",
          "timestamp": 1667343600000,
          "uvindex": 3,
          "visibility": 24.1,
          "winddir": 241.5,
          "windgust": 49.7,
          "windspeed": 23
        },
        {
          "cloudcover": 78.5,
          "conditions": "Partially cloudy",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667394000,
          "dew": 5.6,
          "feelslike": 14.2,
          "humidity": 56.2,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 1.1,
          "solarradiation": 292,
          "source": "fcst",
          "temp": 14.2,
          "tempC": 14.2,
          "time": "14:00:00",
          "timestamp": 1667343600000,
          "uvindex": 3,
          "visibility": 24.1,
          "winddir": 246.3,
          "windgust": 45.4,
          "windspeed": 22.3
        },
        {
          "cloudcover": 72.3,
          "conditions": "Partially cloudy",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667397600,
          "dew": 5.4,
          "feelslike": 14,
          "humidity": 56.15,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.7,
          "solarradiation": 203,
          "source": "fcst",
          "temp": 14,
          "tempC": 14,
          "time": "15:00:00",
          "timestamp": 1667343600000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 251.7,
          "windgust": 41,
          "windspeed": 22
        },
        {
          "cloudcover": 66.8,
          "conditions": "Partially cloudy",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667401200,
          "dew": 5.4,
          "feelslike": 12.9,
          "humidity": 60.32,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 89,
          "source": "fcst",
          "temp": 12.9,
          "tempC": 12.9,
          "time": "16:00:00",
          "timestamp": 1667343600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 253.2,
          "windgust": 41,
          "windspeed": 18
        },
        {
          "cloudcover": 6.5,
          "conditions": "Clear",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667404800,
          "dew": 5.5,
          "feelslike": 11.1,
          "humidity": 68.39,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1021,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 7,
          "source": "fcst",
          "temp": 11.1,
          "tempC": 11.1,
          "time": "17:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 252.9,
          "windgust": 32.4,
          "windspeed": 13.3
        },
        {
          "cloudcover": 24,
          "conditions": "Partially cloudy",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667408400,
          "dew": 5.7,
          "feelslike": 7.8,
          "humidity": 77.68,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1021,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.4,
          "tempC": 9.4,
          "time": "18:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 245.9,
          "windgust": 23,
          "windspeed": 10.4
        },
        {
          "cloudcover": 0,
          "conditions": "Clear",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667412000,
          "dew": 5.5,
          "feelslike": 6.6,
          "humidity": 83.09,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1021,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8.2,
          "tempC": 8.2,
          "time": "19:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 229.7,
          "windgust": 18.7,
          "windspeed": 9.4
        },
        {
          "cloudcover": 0,
          "conditions": "Clear",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667415600,
          "dew": 5.3,
          "feelslike": 5.2,
          "humidity": 87.72,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1022,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.2,
          "tempC": 7.2,
          "time": "20:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 226,
          "windgust": 18,
          "windspeed": 10.1
        },
        {
          "cloudcover": 0,
          "conditions": "Clear",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667419200,
          "dew": 4.8,
          "feelslike": 4.8,
          "humidity": 87.67,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1022,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "21:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 225.1,
          "windgust": 18.4,
          "windspeed": 9.4
        },
        {
          "cloudcover": 40.6,
          "conditions": "Partially cloudy",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667422800,
          "dew": 4,
          "feelslike": 3.9,
          "humidity": 87.6,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1022,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 5.9,
          "tempC": 5.9,
          "time": "22:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 218.9,
          "windgust": 16.6,
          "windspeed": 9
        },
        {
          "cloudcover": 4.5,
          "conditions": "Clear",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667426400,
          "dew": 3.6,
          "feelslike": 3.3,
          "humidity": 88.79,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1022,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 5.3,
          "tempC": 5.3,
          "time": "23:00:00",
          "timestamp": 1667343600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 213.1,
          "windgust": 16.2,
          "windspeed": 8.6
        }
      ],
      "humidity": 80.3,
      "icon": "partly-cloudy-day",
      "moonphase": 0.32,
      "normal": {
        "cloudcover": [
          0,
          45.5,
          91.8
        ],
        "feelslike": [
          -6.6,
          11.7,
          20.1
        ],
        "humidity": [
          75.6,
          87.5,
          99.7
        ],
        "precip": [
          0,
          2.8,
          24
        ],
        "snowdepth": [
          null,
          null,
          null
        ],
        "tempmax": [
          5.2,
          11.7,
          20.1
        ],
        "tempmin": [
          -1.2,
          5.2,
          14.6
        ],
        "winddir": [
          83.7,
          189.8,
          299.4
        ],
        "windgust": [
          18,
          37.1,
          54.7
        ],
        "windspeed": [
          6.5,
          18.7,
          39.2
        ]
      },
      "precip": 0,
      "precipcover": 0,
      "precipitation": 0,
      "precipprob": 28.6,
      "pressure": 1020,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 6.9,
      "solarradiation": 80.1,
      "source": "fcst",
      "sunrise": "07:03:36",
      "sunriseEpoch": 1667369016,
      "sunset": "16:34:32",
      "sunsetEpoch": 1667403272,
      "tempC": 9.2,
      "tempmaxC": 14.2,
      "tempminC": 5.3,
      "timestamp": 1667343600000,
      "uvindex": 4,
      "visibility": 24.1,
      "winddir": 228.2,
      "windgust": 49.7,
      "windspeed": 24.1
    },
    {
      "cloudcover": 85,
      "conditions": "Partially cloudy",
      "date": "2022-11-03",
      "datetime": "2022-11-03",
      "datetimeEpoch": 1667430000,
      "description": "Partly cloudy throughout the day.",
      "dew": 4.4,
      "feelslike": 6.1,
      "feelslikemax": 12.4,
      "feelslikemin": 1.4,
      "hours": [
        {
          "cloudcover": 9.4,
          "conditions": "Clear",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667430000,
          "dew": 3.3,
          "feelslike": 2.7,
          "humidity": 90.01,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1022,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 4.8,
          "tempC": 4.8,
          "time": "00:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 212.5,
          "windgust": 15.8,
          "windspeed": 8.6
        },
        {
          "cloudcover": 2.8,
          "conditions": "Clear",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667433600,
          "dew": 3.1,
          "feelslike": 2.2,
          "humidity": 91.26,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1022,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 4.4,
          "tempC": 4.4,
          "time": "01:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 198.7,
          "windgust": 15.5,
          "windspeed": 8.6
        },
        {
          "cloudcover": 3.3,
          "conditions": "Clear",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667437200,
          "dew": 2.9,
          "feelslike": 2,
          "humidity": 91.89,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1021,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 4.1,
          "tempC": 4.1,
          "time": "02:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 190.7,
          "windgust": 15.1,
          "windspeed": 8.3
        },
        {
          "cloudcover": 47.6,
          "conditions": "Partially cloudy",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667440800,
          "dew": 2.9,
          "feelslike": 1.4,
          "humidity": 92.53,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1021,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 4,
          "tempC": 4,
          "time": "03:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 186.3,
          "windgust": 18,
          "windspeed": 10.1
        },
        {
          "cloudcover": 76.2,
          "conditions": "Partially cloudy",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667444400,
          "dew": 3.1,
          "feelslike": 1.6,
          "humidity": 92.55,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 4.2,
          "tempC": 4.2,
          "time": "04:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 169.3,
          "windgust": 18.7,
          "windspeed": 10.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667448000,
          "dew": 3,
          "feelslike": 2,
          "humidity": 91.25,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1020,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 4.3,
          "tempC": 4.3,
          "time": "05:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 186.6,
          "windgust": 18.7,
          "windspeed": 9
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667451600,
          "dew": 3.3,
          "feelslike": 1.9,
          "humidity": 91.91,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 4.5,
          "tempC": 4.5,
          "time": "06:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 176.7,
          "windgust": 18.7,
          "windspeed": 10.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667455200,
          "dew": 3.4,
          "feelslike": 2.5,
          "humidity": 88.77,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1019,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 5.1,
          "tempC": 5.1,
          "time": "07:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 171.4,
          "windgust": 19.8,
          "windspeed": 11.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667458800,
          "dew": 2.7,
          "feelslike": 3.1,
          "humidity": 80.47,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1018,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 18,
          "source": "fcst",
          "temp": 5.8,
          "tempC": 5.8,
          "time": "08:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 165.6,
          "windgust": 22,
          "windspeed": 12.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667462400,
          "dew": 2.7,
          "feelslike": 4.8,
          "humidity": 72.58,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1018,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 74,
          "source": "fcst",
          "temp": 7.3,
          "tempC": 7.3,
          "time": "09:00:00",
          "timestamp": 1667430000000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 167.6,
          "windgust": 24.5,
          "windspeed": 13.3
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667466000,
          "dew": 3.1,
          "feelslike": 7,
          "humidity": 65.64,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1017,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.6,
          "solarradiation": 157,
          "source": "fcst",
          "temp": 9.2,
          "tempC": 9.2,
          "time": "10:00:00",
          "timestamp": 1667430000000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 172.6,
          "windgust": 27,
          "windspeed": 14.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667469600,
          "dew": 3.8,
          "feelslike": 10.6,
          "humidity": 62.79,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1017,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.8,
          "solarradiation": 215,
          "source": "fcst",
          "temp": 10.6,
          "tempC": 10.6,
          "time": "11:00:00",
          "timestamp": 1667430000000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 179.1,
          "windgust": 27,
          "windspeed": 13.3
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667473200,
          "dew": 4.8,
          "feelslike": 11.9,
          "humidity": 61.78,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1016,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.7,
          "solarradiation": 194,
          "source": "fcst",
          "temp": 11.9,
          "tempC": 11.9,
          "time": "12:00:00",
          "timestamp": 1667430000000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 174.8,
          "windgust": 27,
          "windspeed": 14.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667476800,
          "dew": 5.4,
          "feelslike": 12.4,
          "humidity": 62.33,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1014,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.8,
          "solarradiation": 223,
          "source": "fcst",
          "temp": 12.4,
          "tempC": 12.4,
          "time": "13:00:00",
          "timestamp": 1667430000000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 181.2,
          "windgust": 28.4,
          "windspeed": 15.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667480400,
          "dew": 5.8,
          "feelslike": 11.9,
          "humidity": 66.09,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1013.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.7,
          "solarradiation": 184,
          "source": "fcst",
          "temp": 11.9,
          "tempC": 11.9,
          "time": "14:00:00",
          "timestamp": 1667430000000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 173,
          "windgust": 25.7,
          "windspeed": 13.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667484000,
          "dew": 6.2,
          "feelslike": 11.5,
          "humidity": 70.07,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1012.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 104,
          "source": "fcst",
          "temp": 11.5,
          "tempC": 11.5,
          "time": "15:00:00",
          "timestamp": 1667430000000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 164.9,
          "windgust": 22.9,
          "windspeed": 11.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667487600,
          "dew": 6.7,
          "feelslike": 11.1,
          "humidity": 74.3,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1012,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 42,
          "source": "fcst",
          "temp": 11.1,
          "tempC": 11.1,
          "time": "16:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 156.7,
          "windgust": 20.2,
          "windspeed": 10.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667491200,
          "dew": 6.3,
          "feelslike": 10.2,
          "humidity": 77.1,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1011.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 3,
          "source": "fcst",
          "temp": 10.2,
          "tempC": 10.2,
          "time": "17:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 152.3,
          "windgust": 19.7,
          "windspeed": 10.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667494800,
          "dew": 6,
          "feelslike": 7.7,
          "humidity": 80.03,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1011.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.3,
          "tempC": 9.3,
          "time": "18:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 147.8,
          "windgust": 19.2,
          "windspeed": 10.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667498400,
          "dew": 5.7,
          "feelslike": 6.7,
          "humidity": 83.11,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 0,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8.4,
          "tempC": 8.4,
          "time": "19:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 143.4,
          "windgust": 18.7,
          "windspeed": 10.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667502000,
          "dew": 5.5,
          "feelslike": 6,
          "humidity": 85.58,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.8,
          "tempC": 7.8,
          "time": "20:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 142.3,
          "windgust": 18.5,
          "windspeed": 10.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667505600,
          "dew": 5.4,
          "feelslike": 5.3,
          "humidity": 88.13,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.2,
          "tempC": 7.2,
          "time": "21:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 141.1,
          "windgust": 18.2,
          "windspeed": 10.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667509200,
          "dew": 5.3,
          "feelslike": 4.6,
          "humidity": 90.78,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1008,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "22:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 140,
          "windgust": 18,
          "windspeed": 10.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667512800,
          "dew": 5.2,
          "feelslike": 4.7,
          "humidity": 90.57,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1007.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "23:00:00",
          "timestamp": 1667430000000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 144.1,
          "windgust": 18,
          "windspeed": 9.8
        }
      ],
      "humidity": 80.9,
      "icon": "partly-cloudy-day",
      "moonphase": 0.37,
      "normal": {
        "cloudcover": [
          1,
          48.1,
          100
        ],
        "feelslike": [
          -8.1,
          10.9,
          17.3
        ],
        "humidity": [
          73.4,
          86.5,
          99.2
        ],
        "precip": [
          0,
          1,
          4.6
        ],
        "snowdepth": [
          null,
          null,
          null
        ],
        "tempmax": [
          3.2,
          10.9,
          17.3
        ],
        "tempmin": [
          -4.1,
          5.4,
          10.3
        ],
        "winddir": [
          75,
          184.9,
          298.6
        ],
        "windgust": [
          3.6,
          24.5,
          57.2
        ],
        "windspeed": [
          8.3,
          19.1,
          33.8
        ]
      },
      "precip": 0,
      "precipcover": 0,
      "precipitation": 0,
      "precipprob": 23.8,
      "pressure": 1015.4,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 4.6,
      "solarradiation": 50.6,
      "source": "fcst",
      "sunrise": "07:05:27",
      "sunriseEpoch": 1667455527,
      "sunset": "16:32:42",
      "sunsetEpoch": 1667489562,
      "tempC": 7.6,
      "tempmaxC": 12.4,
      "tempminC": 4,
      "timestamp": 1667430000000,
      "uvindex": 2,
      "visibility": 24.1,
      "winddir": 168.2,
      "windgust": 28.4,
      "windspeed": 15.1
    },
    {
      "cloudcover": 99.5,
      "conditions": "Overcast",
      "date": "2022-11-04",
      "datetime": "2022-11-04",
      "datetimeEpoch": 1667516400,
      "description": "Cloudy skies throughout the day.",
      "dew": 6.9,
      "feelslike": 8.5,
      "feelslikemax": 12.1,
      "feelslikemin": 4.7,
      "hours": [
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667516400,
          "dew": 5.2,
          "feelslike": 4.7,
          "humidity": 90.36,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1006.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "00:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 148.1,
          "windgust": 18,
          "windspeed": 9.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667520000,
          "dew": 5.2,
          "feelslike": 4.8,
          "humidity": 90.15,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1006,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "01:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 152.2,
          "windgust": 18,
          "windspeed": 9.4
        },
        {
          "cloudcover": 98.5,
          "conditions": "Overcast",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667523600,
          "dew": 5.5,
          "feelslike": 5.3,
          "humidity": 89.77,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1005.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.1,
          "tempC": 7.1,
          "time": "02:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 157.9,
          "windgust": 17.8,
          "windspeed": 9.4
        },
        {
          "cloudcover": 97.1,
          "conditions": "Overcast",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667527200,
          "dew": 5.9,
          "feelslike": 5.8,
          "humidity": 89.39,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1004.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.5,
          "tempC": 7.5,
          "time": "03:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 163.5,
          "windgust": 17.5,
          "windspeed": 9.4
        },
        {
          "cloudcover": 95.6,
          "conditions": "Overcast",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667530800,
          "dew": 6.3,
          "feelslike": 6.3,
          "humidity": 89.01,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1004,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8,
          "tempC": 8,
          "time": "04:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 169.2,
          "windgust": 17.3,
          "windspeed": 9.4
        },
        {
          "cloudcover": 97.1,
          "conditions": "Overcast",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667534400,
          "dew": 6.4,
          "feelslike": 6.8,
          "humidity": 86.06,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1004.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8.7,
          "tempC": 8.7,
          "time": "05:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 181.6,
          "windgust": 20.4,
          "windspeed": 11.2
        },
        {
          "cloudcover": 98.5,
          "conditions": "Overcast",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667538000,
          "dew": 6.7,
          "feelslike": 7.4,
          "humidity": 83.23,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1004.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.4,
          "tempC": 9.4,
          "time": "06:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 194,
          "windgust": 23.5,
          "windspeed": 13
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667541600,
          "dew": 6.9,
          "feelslike": 10.1,
          "humidity": 80.51,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1005,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10.1,
          "tempC": 10.1,
          "time": "07:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 206.4,
          "windgust": 26.6,
          "windspeed": 14.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667545200,
          "dew": 7.3,
          "feelslike": 10.4,
          "humidity": 80.75,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1005.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 10,
          "source": "fcst",
          "temp": 10.4,
          "tempC": 10.4,
          "time": "08:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 211.2,
          "windgust": 26.4,
          "windspeed": 14
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667548800,
          "dew": 7.7,
          "feelslike": 10.9,
          "humidity": 80.99,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1005.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 69,
          "source": "fcst",
          "temp": 10.9,
          "tempC": 10.9,
          "time": "09:00:00",
          "timestamp": 1667516400000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 216,
          "windgust": 26.2,
          "windspeed": 13.3
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667552400,
          "dew": 8.2,
          "feelslike": 11.3,
          "humidity": 81.23,
          "icon": "cloudy",
          "precipitation": 0.1,
          "precipprob": 33.3,
          "preciptype": [
            "rain"
          ],
          "pressure": 1006,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 74,
          "source": "fcst",
          "temp": 11.3,
          "tempC": 11.3,
          "time": "10:00:00",
          "timestamp": 1667516400000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 220.8,
          "windgust": 25.9,
          "windspeed": 12.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667556000,
          "dew": 8,
          "feelslike": 11.5,
          "humidity": 79.09,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1006.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 81,
          "source": "fcst",
          "temp": 11.5,
          "tempC": 11.5,
          "time": "11:00:00",
          "timestamp": 1667516400000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 241.7,
          "windgust": 26.9,
          "windspeed": 13.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667559600,
          "dew": 7.9,
          "feelslike": 11.8,
          "humidity": 77.01,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1006.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 1,
          "solarradiation": 290,
          "source": "fcst",
          "temp": 11.8,
          "tempC": 11.8,
          "time": "12:00:00",
          "timestamp": 1667516400000,
          "uvindex": 3,
          "visibility": 24.1,
          "winddir": 262.7,
          "windgust": 27.8,
          "windspeed": 13.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667563200,
          "dew": 7.8,
          "feelslike": 12.1,
          "humidity": 74.98,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1007,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.6,
          "solarradiation": 156,
          "source": "fcst",
          "temp": 12.1,
          "tempC": 12.1,
          "time": "13:00:00",
          "timestamp": 1667516400000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 283.6,
          "windgust": 28.8,
          "windspeed": 14
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667566800,
          "dew": 7.6,
          "feelslike": 11.5,
          "humidity": 76.96,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1007.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 120,
          "source": "fcst",
          "temp": 11.5,
          "tempC": 11.5,
          "time": "14:00:00",
          "timestamp": 1667516400000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 282.6,
          "windgust": 23.6,
          "windspeed": 11.5
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667570400,
          "dew": 7.5,
          "feelslike": 11,
          "humidity": 79.01,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1007.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 44,
          "source": "fcst",
          "temp": 11,
          "tempC": 11,
          "time": "15:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 281.7,
          "windgust": 18.5,
          "windspeed": 9
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667574000,
          "dew": 7.4,
          "feelslike": 10.5,
          "humidity": 81.12,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1008,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 34,
          "source": "fcst",
          "temp": 10.5,
          "tempC": 10.5,
          "time": "16:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 280.7,
          "windgust": 13.3,
          "windspeed": 6.5
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667577600,
          "dew": 7.2,
          "feelslike": 9.1,
          "humidity": 84.43,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1008.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 5,
          "source": "fcst",
          "temp": 9.7,
          "tempC": 9.7,
          "time": "17:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 280.6,
          "windgust": 12.6,
          "windspeed": 6.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667581200,
          "dew": 7.1,
          "feelslike": 8.3,
          "humidity": 87.89,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1009.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9,
          "tempC": 9,
          "time": "18:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 280.5,
          "windgust": 11.9,
          "windspeed": 6.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667584800,
          "dew": 7,
          "feelslike": 7.4,
          "humidity": 91.52,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 23.8,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8.3,
          "tempC": 8.3,
          "time": "19:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 280.4,
          "windgust": 11.2,
          "windspeed": 6.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667588400,
          "dew": 6.8,
          "feelslike": 7.2,
          "humidity": 91.92,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8,
          "tempC": 8,
          "time": "20:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 292.9,
          "windgust": 10.6,
          "windspeed": 5.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667592000,
          "dew": 6.6,
          "feelslike": 7,
          "humidity": 92.33,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.7,
          "tempC": 7.7,
          "time": "21:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 305.5,
          "windgust": 10,
          "windspeed": 5.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667595600,
          "dew": 6.4,
          "feelslike": 6.9,
          "humidity": 92.73,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.5,
          "tempC": 7.5,
          "time": "22:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 318,
          "windgust": 9.4,
          "windspeed": 5
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667599200,
          "dew": 6.2,
          "feelslike": 6.5,
          "humidity": 93.15,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.2,
          "tempC": 7.2,
          "time": "23:00:00",
          "timestamp": 1667516400000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 317.9,
          "windgust": 9.8,
          "windspeed": 5.3
        }
      ],
      "humidity": 85.1,
      "icon": "cloudy",
      "moonphase": 0.42,
      "normal": {
        "cloudcover": [
          0.2,
          53.1,
          100
        ],
        "feelslike": [
          -6.7,
          10.8,
          15.7
        ],
        "humidity": [
          75.3,
          87.2,
          97.7
        ],
        "precip": [
          0,
          1.9,
          12.9
        ],
        "snowdepth": [
          2,
          2,
          2
        ],
        "tempmax": [
          2.5,
          10.8,
          15.7
        ],
        "tempmin": [
          -2.3,
          5,
          10.2
        ],
        "winddir": [
          66.7,
          181.2,
          266.6
        ],
        "windgust": [
          10.8,
          27,
          55.4
        ],
        "windspeed": [
          3.6,
          19.1,
          37.1
        ]
      },
      "precip": 0,
      "precipcover": 4.17,
      "precipitation": 0.1,
      "precipprob": 42.9,
      "preciptype": [
        "rain"
      ],
      "pressure": 1007,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 3.1,
      "solarradiation": 36.8,
      "source": "fcst",
      "sunrise": "07:07:17",
      "sunriseEpoch": 1667542037,
      "sunset": "16:30:53",
      "sunsetEpoch": 1667575853,
      "tempC": 9.3,
      "tempmaxC": 12.1,
      "tempminC": 6.7,
      "timestamp": 1667516400000,
      "uvindex": 3,
      "visibility": 24.1,
      "winddir": 230.6,
      "windgust": 28.8,
      "windspeed": 14.8
    },
    {
      "cloudcover": 54.7,
      "conditions": "Partially cloudy",
      "date": "2022-11-05",
      "datetime": "2022-11-05",
      "datetimeEpoch": 1667602800,
      "description": "Clearing in the afternoon.",
      "dew": 4.3,
      "feelslike": 7.7,
      "feelslikemax": 11.9,
      "feelslikemin": 4.9,
      "hours": [
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667602800,
          "dew": 6,
          "feelslike": 6.2,
          "humidity": 93.57,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7,
          "tempC": 7,
          "time": "00:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 317.9,
          "windgust": 10.3,
          "windspeed": 5.5
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667606400,
          "dew": 5.9,
          "feelslike": 5.8,
          "humidity": 93.99,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.8,
          "tempC": 6.8,
          "time": "01:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 317.8,
          "windgust": 10.8,
          "windspeed": 5.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667610000,
          "dew": 5.6,
          "feelslike": 5.8,
          "humidity": 93.98,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1011.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.5,
          "tempC": 6.5,
          "time": "02:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 314.4,
          "windgust": 9.5,
          "windspeed": 5
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667613600,
          "dew": 5.4,
          "feelslike": 6.3,
          "humidity": 93.97,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1011.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.3,
          "tempC": 6.3,
          "time": "03:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 311.1,
          "windgust": 8.2,
          "windspeed": 4.3
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667617200,
          "dew": 5.2,
          "feelslike": 6.1,
          "humidity": 93.95,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1012,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.1,
          "tempC": 6.1,
          "time": "04:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 307.7,
          "windgust": 6.8,
          "windspeed": 3.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667620800,
          "dew": 4.1,
          "feelslike": 5.5,
          "humidity": 81.78,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7,
          "tempC": 7,
          "time": "05:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 235.2,
          "windgust": 18.7,
          "windspeed": 7.9
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667624400,
          "dew": 4,
          "feelslike": 5.2,
          "humidity": 81.77,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.9,
          "tempC": 6.9,
          "time": "06:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 238.5,
          "windgust": 21.6,
          "windspeed": 8.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667628000,
          "dew": 3.9,
          "feelslike": 4.9,
          "humidity": 82.32,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 6.7,
          "tempC": 6.7,
          "time": "07:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 233.1,
          "windgust": 21.6,
          "windspeed": 8.6
        },
        {
          "cloudcover": 68.3,
          "conditions": "Partially cloudy",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667631600,
          "dew": 3.9,
          "feelslike": 5.8,
          "humidity": 78.11,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1010.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 36.7,
          "source": "fcst",
          "temp": 7.5,
          "tempC": 7.5,
          "time": "08:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 235.6,
          "windgust": 20.8,
          "windspeed": 9.1
        },
        {
          "cloudcover": 36.7,
          "conditions": "Partially cloudy",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667635200,
          "dew": 3.9,
          "feelslike": 6.6,
          "humidity": 74.15,
          "icon": "partly-cloudy-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1010.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 73.3,
          "source": "fcst",
          "temp": 8.3,
          "tempC": 8.3,
          "time": "09:00:00",
          "timestamp": 1667602800000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 238.2,
          "windgust": 19.9,
          "windspeed": 9.6
        },
        {
          "cloudcover": 5,
          "conditions": "Clear",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667638800,
          "dew": 4,
          "feelslike": 7.5,
          "humidity": 70.41,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 110,
          "source": "fcst",
          "temp": 9.1,
          "tempC": 9.1,
          "time": "10:00:00",
          "timestamp": 1667602800000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 240.7,
          "windgust": 19.1,
          "windspeed": 10.1
        },
        {
          "cloudcover": 6.1,
          "conditions": "Clear",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667642400,
          "dew": 4.1,
          "feelslike": 8.5,
          "humidity": 66.6,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1011.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.7,
          "solarradiation": 180,
          "source": "fcst",
          "temp": 10,
          "tempC": 10,
          "time": "11:00:00",
          "timestamp": 1667602800000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 241.4,
          "windgust": 19,
          "windspeed": 11
        },
        {
          "cloudcover": 7.1,
          "conditions": "Clear",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667646000,
          "dew": 4.2,
          "feelslike": 10.9,
          "humidity": 63.02,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1011.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.9,
          "solarradiation": 250,
          "source": "fcst",
          "temp": 10.9,
          "tempC": 10.9,
          "time": "12:00:00",
          "timestamp": 1667602800000,
          "uvindex": 3,
          "visibility": 24.1,
          "winddir": 242,
          "windgust": 18.8,
          "windspeed": 12
        },
        {
          "cloudcover": 8.2,
          "conditions": "Clear",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667649600,
          "dew": 4.3,
          "feelslike": 11.9,
          "humidity": 59.66,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1012,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 1.2,
          "solarradiation": 320,
          "source": "fcst",
          "temp": 11.9,
          "tempC": 11.9,
          "time": "13:00:00",
          "timestamp": 1667602800000,
          "uvindex": 3,
          "visibility": 24.1,
          "winddir": 242.7,
          "windgust": 18.7,
          "windspeed": 13
        },
        {
          "cloudcover": 7.1,
          "conditions": "Clear",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667653200,
          "dew": 4.1,
          "feelslike": 11.7,
          "humidity": 59.61,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1012,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 1,
          "solarradiation": 273.3,
          "source": "fcst",
          "temp": 11.7,
          "tempC": 11.7,
          "time": "14:00:00",
          "timestamp": 1667602800000,
          "uvindex": 3,
          "visibility": 24.1,
          "winddir": 234.2,
          "windgust": 18.8,
          "windspeed": 11.9
        },
        {
          "cloudcover": 6.1,
          "conditions": "Clear",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667656800,
          "dew": 3.9,
          "feelslike": 11.4,
          "humidity": 59.56,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1012,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.8,
          "solarradiation": 226.7,
          "source": "fcst",
          "temp": 11.4,
          "tempC": 11.4,
          "time": "15:00:00",
          "timestamp": 1667602800000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 225.7,
          "windgust": 19,
          "windspeed": 10.8
        },
        {
          "cloudcover": 5,
          "conditions": "Clear",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667660400,
          "dew": 3.7,
          "feelslike": 11.3,
          "humidity": 59.51,
          "icon": "clear-day",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1012,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.6,
          "solarradiation": 180,
          "source": "fcst",
          "temp": 11.3,
          "tempC": 11.3,
          "time": "16:00:00",
          "timestamp": 1667602800000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 217.2,
          "windgust": 19.1,
          "windspeed": 9.7
        },
        {
          "cloudcover": 34.5,
          "conditions": "Partially cloudy",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667664000,
          "dew": 3.6,
          "feelslike": 10.7,
          "humidity": 61.64,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1012.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 120.3,
          "source": "fcst",
          "temp": 10.7,
          "tempC": 10.7,
          "time": "17:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 212.6,
          "windgust": 23,
          "windspeed": 10.4
        },
        {
          "cloudcover": 64,
          "conditions": "Partially cloudy",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667667600,
          "dew": 3.5,
          "feelslike": 10.1,
          "humidity": 63.86,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1012.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 60.7,
          "source": "fcst",
          "temp": 10.1,
          "tempC": 10.1,
          "time": "18:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 207.9,
          "windgust": 27,
          "windspeed": 11.2
        },
        {
          "cloudcover": 93.5,
          "conditions": "Overcast",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667671200,
          "dew": 3.5,
          "feelslike": 7.7,
          "humidity": 66.17,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 9.5,
          "pressure": 1013,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 1,
          "source": "fcst",
          "temp": 9.5,
          "tempC": 9.5,
          "time": "19:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 203.3,
          "windgust": 31,
          "windspeed": 11.9
        },
        {
          "cloudcover": 71.8,
          "conditions": "Partially cloudy",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667674800,
          "dew": 3.7,
          "feelslike": 7,
          "humidity": 69.57,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1013,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 0.7,
          "source": "fcst",
          "temp": 9,
          "tempC": 9,
          "time": "20:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 200.8,
          "windgust": 32.2,
          "windspeed": 12.5
        },
        {
          "cloudcover": 50,
          "conditions": "Partially cloudy",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667678400,
          "dew": 4,
          "feelslike": 6.4,
          "humidity": 73.16,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1013,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 0.3,
          "source": "fcst",
          "temp": 8.5,
          "tempC": 8.5,
          "time": "21:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 198.4,
          "windgust": 33.4,
          "windspeed": 13.1
        },
        {
          "cloudcover": 28.3,
          "conditions": "Partially cloudy",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667682000,
          "dew": 4.3,
          "feelslike": 5.7,
          "humidity": 76.94,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1013,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8.1,
          "tempC": 8.1,
          "time": "22:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 195.9,
          "windgust": 34.6,
          "windspeed": 13.7
        },
        {
          "cloudcover": 20.5,
          "conditions": "Partially cloudy",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667685600,
          "dew": 4.1,
          "feelslike": 5.2,
          "humidity": 77.97,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1012.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.7,
          "tempC": 7.7,
          "time": "23:00:00",
          "timestamp": 1667602800000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 192.5,
          "windgust": 36.4,
          "windspeed": 14.2
        }
      ],
      "humidity": 74.8,
      "icon": "partly-cloudy-day",
      "moonphase": 0.45,
      "normal": {
        "cloudcover": [
          4.9,
          47.8,
          100
        ],
        "feelslike": [
          -8.1,
          10.9,
          15.7
        ],
        "humidity": [
          78,
          87.4,
          95.7
        ],
        "precip": [
          0,
          1.4,
          6.4
        ],
        "snowdepth": [
          null,
          null,
          null
        ],
        "tempmax": [
          1.9,
          10.9,
          15.7
        ],
        "tempmin": [
          -4.9,
          5.2,
          11.3
        ],
        "winddir": [
          58.8,
          190.8,
          284.6
        ],
        "windgust": [
          14.4,
          31,
          63
        ],
        "windspeed": [
          7.9,
          20.5,
          40.7
        ]
      },
      "precip": 0,
      "precipcover": 0,
      "precipitation": 0,
      "precipprob": 42.9,
      "pressure": 1011.6,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 6.6,
      "solarradiation": 76.4,
      "source": "fcst",
      "sunrise": "07:09:07",
      "sunriseEpoch": 1667628547,
      "sunset": "16:29:06",
      "sunsetEpoch": 1667662146,
      "tempC": 8.7,
      "tempmaxC": 11.9,
      "tempminC": 6.1,
      "timestamp": 1667602800000,
      "uvindex": 3,
      "visibility": 24.1,
      "winddir": 228.3,
      "windgust": 36.4,
      "windspeed": 14.2
    },
    {
      "cloudcover": 80.8,
      "conditions": "Rain, Partially cloudy",
      "date": "2022-11-06",
      "datetime": "2022-11-06",
      "datetimeEpoch": 1667689200,
      "description": "Partly cloudy throughout the day with a chance of rain.",
      "dew": 6.5,
      "feelslike": 9,
      "feelslikemax": 13.4,
      "feelslikemin": 4.3,
      "hours": [
        {
          "cloudcover": 12.8,
          "conditions": "Clear",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667689200,
          "dew": 4,
          "feelslike": 4.8,
          "humidity": 79.02,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1012.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.4,
          "tempC": 7.4,
          "time": "00:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 189.1,
          "windgust": 38.2,
          "windspeed": 14.6
        },
        {
          "cloudcover": 5,
          "conditions": "Clear",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667692800,
          "dew": 3.9,
          "feelslike": 4.3,
          "humidity": 80.09,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1012,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.1,
          "tempC": 7.1,
          "time": "01:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 185.7,
          "windgust": 40,
          "windspeed": 15.1
        },
        {
          "cloudcover": 36.7,
          "conditions": "Partially cloudy",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667696400,
          "dew": 4.2,
          "feelslike": 4.3,
          "humidity": 81.61,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1011.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.1,
          "tempC": 7.1,
          "time": "02:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 183,
          "windgust": 41.3,
          "windspeed": 15.6
        },
        {
          "cloudcover": 68.3,
          "conditions": "Partially cloudy",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667700000,
          "dew": 4.5,
          "feelslike": 4.3,
          "humidity": 83.16,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1010.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.2,
          "tempC": 7.2,
          "time": "03:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 180.2,
          "windgust": 42.6,
          "windspeed": 16.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667703600,
          "dew": 4.9,
          "feelslike": 4.3,
          "humidity": 84.73,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 7.3,
          "tempC": 7.3,
          "time": "04:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 177.5,
          "windgust": 43.9,
          "windspeed": 16.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667707200,
          "dew": 5,
          "feelslike": 5.3,
          "humidity": 80.98,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1009.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8,
          "tempC": 8,
          "time": "05:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 181.2,
          "windgust": 42.7,
          "windspeed": 16.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667710800,
          "dew": 5.1,
          "feelslike": 6.2,
          "humidity": 77.42,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 19,
          "pressure": 1009.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 8.8,
          "tempC": 8.8,
          "time": "06:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 185,
          "windgust": 41.5,
          "windspeed": 17
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667714400,
          "dew": 5.2,
          "feelslike": 7.1,
          "humidity": 74.03,
          "icon": "cloudy",
          "precipitation": 0.1,
          "precipprob": 19,
          "preciptype": [
            "rain"
          ],
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.6,
          "tempC": 9.6,
          "time": "07:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 188.7,
          "windgust": 40.3,
          "windspeed": 17.3
        },
        {
          "cloudcover": 98.9,
          "conditions": "Overcast",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667718000,
          "dew": 5.5,
          "feelslike": 10.2,
          "humidity": 72.79,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 16,
          "source": "fcst",
          "temp": 10.2,
          "tempC": 10.2,
          "time": "08:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 194.1,
          "windgust": 38.4,
          "windspeed": 17.2
        },
        {
          "cloudcover": 97.8,
          "conditions": "Overcast",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667721600,
          "dew": 5.9,
          "feelslike": 10.8,
          "humidity": 71.58,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 32,
          "source": "fcst",
          "temp": 10.8,
          "tempC": 10.8,
          "time": "09:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 199.5,
          "windgust": 36.5,
          "windspeed": 17
        },
        {
          "cloudcover": 96.7,
          "conditions": "Overcast",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667725200,
          "dew": 6.3,
          "feelslike": 11.5,
          "humidity": 70.39,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 48,
          "source": "fcst",
          "temp": 11.5,
          "tempC": 11.5,
          "time": "10:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 204.9,
          "windgust": 34.6,
          "windspeed": 16.9
        },
        {
          "cloudcover": 97.8,
          "conditions": "Overcast",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667728800,
          "dew": 6.5,
          "feelslike": 12.1,
          "humidity": 68.6,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1008.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 113.7,
          "source": "fcst",
          "temp": 12.1,
          "tempC": 12.1,
          "time": "11:00:00",
          "timestamp": 1667689200000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 208.9,
          "windgust": 31,
          "windspeed": 16.7
        },
        {
          "cloudcover": 98.9,
          "conditions": "Overcast",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667732400,
          "dew": 6.7,
          "feelslike": 12.7,
          "humidity": 66.87,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1008.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.7,
          "solarradiation": 179.3,
          "source": "fcst",
          "temp": 12.7,
          "tempC": 12.7,
          "time": "12:00:00",
          "timestamp": 1667689200000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 212.8,
          "windgust": 27.4,
          "windspeed": 16.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667736000,
          "dew": 7,
          "feelslike": 13.4,
          "humidity": 65.2,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 4.8,
          "pressure": 1008,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.9,
          "solarradiation": 245,
          "source": "fcst",
          "temp": 13.4,
          "tempC": 13.4,
          "time": "13:00:00",
          "timestamp": 1667689200000,
          "uvindex": 2,
          "visibility": 24.1,
          "winddir": 216.8,
          "windgust": 23.8,
          "windspeed": 16.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667739600,
          "dew": 7.4,
          "feelslike": 12.8,
          "humidity": 69.7,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1008,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.7,
          "solarradiation": 187.7,
          "source": "fcst",
          "temp": 12.8,
          "tempC": 12.8,
          "time": "14:00:00",
          "timestamp": 1667689200000,
          "uvindex": 2,
          "visibility": 19.8,
          "winddir": 215.9,
          "windgust": 23.9,
          "windspeed": 14.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667743200,
          "dew": 7.9,
          "feelslike": 12.3,
          "humidity": 74.51,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1008,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.5,
          "solarradiation": 130.3,
          "source": "fcst",
          "temp": 12.3,
          "tempC": 12.3,
          "time": "15:00:00",
          "timestamp": 1667689200000,
          "uvindex": 1,
          "visibility": 15.6,
          "winddir": 215.1,
          "windgust": 24,
          "windspeed": 13.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667746800,
          "dew": 8.4,
          "feelslike": 11.8,
          "humidity": 79.66,
          "icon": "cloudy",
          "precipitation": 0.4,
          "precipprob": 33.3,
          "preciptype": [
            "rain"
          ],
          "pressure": 1008,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 73,
          "source": "fcst",
          "temp": 11.8,
          "tempC": 11.8,
          "time": "16:00:00",
          "timestamp": 1667689200000,
          "uvindex": 1,
          "visibility": 11.3,
          "winddir": 214.2,
          "windgust": 24.1,
          "windspeed": 11.5
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667750400,
          "dew": 8.4,
          "feelslike": 11.4,
          "humidity": 81.62,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1008.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 48.7,
          "source": "fcst",
          "temp": 11.4,
          "tempC": 11.4,
          "time": "17:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 15.6,
          "winddir": 215.2,
          "windgust": 21.7,
          "windspeed": 10.7
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667754000,
          "dew": 8.4,
          "feelslike": 11.1,
          "humidity": 83.63,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 33.3,
          "pressure": 1008.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 24.3,
          "source": "fcst",
          "temp": 11.1,
          "tempC": 11.1,
          "time": "18:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 19.8,
          "winddir": 216.3,
          "windgust": 19.3,
          "windspeed": 9.8
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667757600,
          "dew": 8.5,
          "feelslike": 10.8,
          "humidity": 85.7,
          "icon": "cloudy",
          "precipitation": 2.3,
          "precipprob": 33.3,
          "preciptype": [
            "rain"
          ],
          "pressure": 1009,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10.8,
          "tempC": 10.8,
          "time": "19:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 217.3,
          "windgust": 16.9,
          "windspeed": 9
        },
        {
          "cloudcover": 79.1,
          "conditions": "Rain, Partially cloudy",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667761200,
          "dew": 8.4,
          "feelslike": 10.4,
          "humidity": 87.42,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 52.4,
          "preciptype": [
            "rain"
          ],
          "pressure": 1009.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10.4,
          "tempC": 10.4,
          "time": "20:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 215.3,
          "windgust": 21.5,
          "windspeed": 10.2
        },
        {
          "cloudcover": 58.1,
          "conditions": "Rain, Partially cloudy",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667764800,
          "dew": 8.3,
          "feelslike": 8.4,
          "humidity": 89.18,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 52.4,
          "preciptype": [
            "rain"
          ],
          "pressure": 1010.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.9,
          "tempC": 9.9,
          "time": "21:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 213.4,
          "windgust": 26,
          "windspeed": 11.4
        },
        {
          "cloudcover": 37.2,
          "conditions": "Rain, Partially cloudy",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667768400,
          "dew": 8.2,
          "feelslike": 7.7,
          "humidity": 90.98,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 52.4,
          "preciptype": [
            "rain"
          ],
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.6,
          "tempC": 9.6,
          "time": "22:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 211.4,
          "windgust": 30.6,
          "windspeed": 12.6
        },
        {
          "cloudcover": 51.1,
          "conditions": "Rain, Partially cloudy",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667772000,
          "dew": 8.2,
          "feelslike": 7.5,
          "humidity": 91.39,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 52.4,
          "preciptype": [
            "rain"
          ],
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.5,
          "tempC": 9.5,
          "time": "23:00:00",
          "timestamp": 1667689200000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 211.5,
          "windgust": 35,
          "windspeed": 13.6
        }
      ],
      "humidity": 78.8,
      "icon": "rain",
      "moonphase": 0.48,
      "normal": {
        "cloudcover": [
          0.2,
          51.7,
          100
        ],
        "feelslike": [
          -9.4,
          10,
          17
        ],
        "humidity": [
          76.7,
          87.4,
          96.5
        ],
        "precip": [
          0,
          1.6,
          7.6
        ],
        "snowdepth": [
          null,
          null,
          null
        ],
        "tempmax": [
          2.5,
          10,
          17
        ],
        "tempmin": [
          -5.6,
          4.7,
          11.7
        ],
        "winddir": [
          73.5,
          200.9,
          287.4
        ],
        "windgust": [
          7.2,
          24.1,
          50
        ],
        "windspeed": [
          7.2,
          20.2,
          34.9
        ]
      },
      "precip": 0,
      "precipcover": 12.5,
      "precipitation": 2.8,
      "precipprob": 52.4,
      "preciptype": [
        "rain"
      ],
      "pressure": 1009.5,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 4.2,
      "solarradiation": 45.8,
      "source": "fcst",
      "sunrise": "07:10:58",
      "sunriseEpoch": 1667715058,
      "sunset": "16:27:21",
      "sunsetEpoch": 1667748441,
      "tempC": 10.1,
      "tempmaxC": 13.4,
      "tempminC": 7.1,
      "timestamp": 1667689200000,
      "uvindex": 2,
      "visibility": 22.5,
      "winddir": 200.6,
      "windgust": 43.9,
      "windspeed": 17.3
    },
    {
      "cloudcover": 84.4,
      "conditions": "Rain, Partially cloudy",
      "date": "2022-11-07",
      "datetime": "2022-11-07",
      "datetimeEpoch": 1667775600,
      "description": "Partly cloudy throughout the day with a chance of rain.",
      "dew": 8.5,
      "feelslike": 11.9,
      "feelslikemax": 14.3,
      "feelslikemin": 7.2,
      "hours": [
        {
          "cloudcover": 64.9,
          "conditions": "Rain, Partially cloudy",
          "datetime": "00:00:00",
          "datetimeEpoch": 1667775600,
          "dew": 8.2,
          "feelslike": 7.4,
          "humidity": 91.8,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 52.4,
          "preciptype": [
            "rain"
          ],
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.5,
          "tempC": 9.5,
          "time": "00:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 211.6,
          "windgust": 39.5,
          "windspeed": 14.5
        },
        {
          "cloudcover": 78.8,
          "conditions": "Rain, Partially cloudy",
          "datetime": "01:00:00",
          "datetimeEpoch": 1667779200,
          "dew": 8.3,
          "feelslike": 7.2,
          "humidity": 92.22,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 52.4,
          "preciptype": [
            "rain"
          ],
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 9.5,
          "tempC": 9.5,
          "time": "01:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 211.7,
          "windgust": 43.9,
          "windspeed": 15.5
        },
        {
          "cloudcover": 85.9,
          "conditions": "Partially cloudy",
          "datetime": "02:00:00",
          "datetimeEpoch": 1667782800,
          "dew": 8.7,
          "feelslike": 7.8,
          "humidity": 91.42,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10,
          "tempC": 10,
          "time": "02:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 214.4,
          "windgust": 45,
          "windspeed": 16.3
        },
        {
          "cloudcover": 92.9,
          "conditions": "Overcast",
          "datetime": "03:00:00",
          "datetimeEpoch": 1667786400,
          "dew": 9.1,
          "feelslike": 10.5,
          "humidity": 90.64,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 10.5,
          "tempC": 10.5,
          "time": "03:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 217.2,
          "windgust": 46.1,
          "windspeed": 17.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "04:00:00",
          "datetimeEpoch": 1667790000,
          "dew": 9.5,
          "feelslike": 11.1,
          "humidity": 89.87,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.1,
          "tempC": 11.1,
          "time": "04:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 219.9,
          "windgust": 47.2,
          "windspeed": 18
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "05:00:00",
          "datetimeEpoch": 1667793600,
          "dew": 9.1,
          "feelslike": 11.2,
          "humidity": 86.71,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.2,
          "tempC": 11.2,
          "time": "05:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 220.7,
          "windgust": 46.1,
          "windspeed": 18.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "06:00:00",
          "datetimeEpoch": 1667797200,
          "dew": 8.7,
          "feelslike": 11.4,
          "humidity": 83.67,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.4,
          "tempC": 11.4,
          "time": "06:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24,
          "winddir": 221.6,
          "windgust": 45,
          "windspeed": 18.7
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "07:00:00",
          "datetimeEpoch": 1667800800,
          "dew": 8.4,
          "feelslike": 11.6,
          "humidity": 80.72,
          "icon": "cloudy",
          "precipitation": 0.4,
          "precipprob": 28.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.6,
          "tempC": 11.6,
          "time": "07:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24,
          "winddir": 222.4,
          "windgust": 43.9,
          "windspeed": 19.1
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "08:00:00",
          "datetimeEpoch": 1667804400,
          "dew": 8.3,
          "feelslike": 11.9,
          "humidity": 78.61,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 6,
          "source": "fcst",
          "temp": 11.9,
          "tempC": 11.9,
          "time": "08:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24,
          "winddir": 222.5,
          "windgust": 44.6,
          "windspeed": 21.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "09:00:00",
          "datetimeEpoch": 1667808000,
          "dew": 8.3,
          "feelslike": 12.3,
          "humidity": 76.57,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0,
          "solarradiation": 12,
          "source": "fcst",
          "temp": 12.3,
          "tempC": 12.3,
          "time": "09:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 222.6,
          "windgust": 45.4,
          "windspeed": 23.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "10:00:00",
          "datetimeEpoch": 1667811600,
          "dew": 8.3,
          "feelslike": 12.7,
          "humidity": 74.58,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1011,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 18,
          "source": "fcst",
          "temp": 12.7,
          "tempC": 12.7,
          "time": "10:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 222.7,
          "windgust": 46.1,
          "windspeed": 25.6
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "11:00:00",
          "datetimeEpoch": 1667815200,
          "dew": 8.2,
          "feelslike": 13.2,
          "humidity": 71.53,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 59,
          "source": "fcst",
          "temp": 13.2,
          "tempC": 13.2,
          "time": "11:00:00",
          "timestamp": 1667775600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 223,
          "windgust": 47.2,
          "windspeed": 26.4
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "12:00:00",
          "datetimeEpoch": 1667818800,
          "dew": 8.1,
          "feelslike": 13.7,
          "humidity": 68.62,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 100,
          "source": "fcst",
          "temp": 13.7,
          "tempC": 13.7,
          "time": "12:00:00",
          "timestamp": 1667775600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 223.4,
          "windgust": 48.2,
          "windspeed": 27.2
        },
        {
          "cloudcover": 100,
          "conditions": "Overcast",
          "datetime": "13:00:00",
          "datetimeEpoch": 1667822400,
          "dew": 8,
          "feelslike": 14.3,
          "humidity": 65.84,
          "icon": "cloudy",
          "precipitation": 0,
          "precipprob": 42.9,
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.5,
          "solarradiation": 141,
          "source": "fcst",
          "temp": 14.3,
          "tempC": 14.3,
          "time": "13:00:00",
          "timestamp": 1667775600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 223.7,
          "windgust": 49.3,
          "windspeed": 28.1
        },
        {
          "cloudcover": 100,
          "conditions": "Rain, Overcast",
          "datetime": "14:00:00",
          "datetimeEpoch": 1667826000,
          "dew": 8.2,
          "feelslike": 13.9,
          "humidity": 68.81,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 47.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1009.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.4,
          "solarradiation": 116,
          "source": "fcst",
          "temp": 13.9,
          "tempC": 13.9,
          "time": "14:00:00",
          "timestamp": 1667775600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 221.5,
          "windgust": 51.6,
          "windspeed": 28.4
        },
        {
          "cloudcover": 100,
          "conditions": "Rain, Overcast",
          "datetime": "15:00:00",
          "datetimeEpoch": 1667829600,
          "dew": 8.5,
          "feelslike": 13.4,
          "humidity": 71.91,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 47.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1008.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.3,
          "solarradiation": 91,
          "source": "fcst",
          "temp": 13.4,
          "tempC": 13.4,
          "time": "15:00:00",
          "timestamp": 1667775600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 219.4,
          "windgust": 53.9,
          "windspeed": 28.8
        },
        {
          "cloudcover": 100,
          "conditions": "Rain, Overcast",
          "datetime": "16:00:00",
          "datetimeEpoch": 1667833200,
          "dew": 8.8,
          "feelslike": 13.1,
          "humidity": 75.15,
          "icon": "rain",
          "precipitation": 0.3,
          "precipprob": 47.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1008,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 66,
          "source": "fcst",
          "temp": 13.1,
          "tempC": 13.1,
          "time": "16:00:00",
          "timestamp": 1667775600000,
          "uvindex": 1,
          "visibility": 24.1,
          "winddir": 217.2,
          "windgust": 56.2,
          "windspeed": 29.2
        },
        {
          "cloudcover": 100,
          "conditions": "Rain, Overcast",
          "datetime": "17:00:00",
          "datetimeEpoch": 1667836800,
          "dew": 8.9,
          "feelslike": 13.1,
          "humidity": 75.33,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 47.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1007.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.2,
          "solarradiation": 44,
          "source": "fcst",
          "temp": 13.1,
          "tempC": 13.1,
          "time": "17:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24,
          "winddir": 221.5,
          "windgust": 65,
          "windspeed": 31.2
        },
        {
          "cloudcover": 100,
          "conditions": "Rain, Overcast",
          "datetime": "18:00:00",
          "datetimeEpoch": 1667840400,
          "dew": 8.9,
          "feelslike": 13.2,
          "humidity": 75.51,
          "icon": "rain",
          "precipitation": 0,
          "precipprob": 47.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1006.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarenergy": 0.1,
          "solarradiation": 22,
          "source": "fcst",
          "temp": 13.2,
          "tempC": 13.2,
          "time": "18:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 23.9,
          "winddir": 225.9,
          "windgust": 73.9,
          "windspeed": 33.2
        },
        {
          "cloudcover": 100,
          "conditions": "Rain, Overcast",
          "datetime": "19:00:00",
          "datetimeEpoch": 1667844000,
          "dew": 9.1,
          "feelslike": 13.3,
          "humidity": 75.69,
          "icon": "rain",
          "precipitation": 1.2,
          "precipprob": 47.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1006,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 13.3,
          "tempC": 13.3,
          "time": "19:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 23.8,
          "winddir": 230.2,
          "windgust": 82.8,
          "windspeed": 35.3
        },
        {
          "cloudcover": 66.7,
          "conditions": "Partially cloudy",
          "datetime": "20:00:00",
          "datetimeEpoch": 1667847600,
          "dew": 8.6,
          "feelslike": 12.9,
          "humidity": 75.12,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1007.3,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12.9,
          "tempC": 12.9,
          "time": "20:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 23.9,
          "winddir": 243.4,
          "windgust": 72.2,
          "windspeed": 31.9
        },
        {
          "cloudcover": 33.3,
          "conditions": "Partially cloudy",
          "datetime": "21:00:00",
          "datetimeEpoch": 1667851200,
          "dew": 8.1,
          "feelslike": 12.4,
          "humidity": 74.54,
          "icon": "partly-cloudy-night",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1008.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12.4,
          "tempC": 12.4,
          "time": "21:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24,
          "winddir": 256.7,
          "windgust": 61.7,
          "windspeed": 28.6
        },
        {
          "cloudcover": 0,
          "conditions": "Clear",
          "datetime": "22:00:00",
          "datetimeEpoch": 1667854800,
          "dew": 7.6,
          "feelslike": 12.1,
          "humidity": 73.97,
          "icon": "clear-night",
          "precipitation": 0.3,
          "precipprob": 28.6,
          "preciptype": [
            "rain"
          ],
          "pressure": 1010,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 12.1,
          "tempC": 12.1,
          "time": "22:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 269.9,
          "windgust": 51.1,
          "windspeed": 25.2
        },
        {
          "cloudcover": 4.2,
          "conditions": "Clear",
          "datetime": "23:00:00",
          "datetimeEpoch": 1667858400,
          "dew": 7.4,
          "feelslike": 11.7,
          "humidity": 75.08,
          "icon": "clear-night",
          "precipitation": 0,
          "precipprob": 28.6,
          "pressure": 1010.7,
          "severerisk": 10,
          "snow": 0,
          "snowdepth": 0,
          "solarradiation": 0,
          "source": "fcst",
          "temp": 11.7,
          "tempC": 11.7,
          "time": "23:00:00",
          "timestamp": 1667775600000,
          "uvindex": 0,
          "visibility": 24.1,
          "winddir": 265.1,
          "windgust": 52.2,
          "windspeed": 25
        }
      ],
      "humidity": 78.5,
      "icon": "rain",
      "moonphase": 0.49,
      "normal": {
        "cloudcover": [
          0,
          52.6,
          98.7
        ],
        "feelslike": [
          -9.7,
          10.2,
          17
        ],
        "humidity": [
          80.6,
          89.3,
          96.1
        ],
        "precip": [
          0,
          1.3,
          6.6
        ],
        "snowdepth": [
          null,
          null,
          null
        ],
        "tempmax": [
          2.9,
          10.2,
          17
        ],
        "tempmin": [
          -5.7,
          4,
          12.1
        ],
        "winddir": [
          50.4,
          174.7,
          267
        ],
        "windgust": [
          10.8,
          23.8,
          51.8
        ],
        "windspeed": [
          10.8,
          18.7,
          36.4
        ]
      },
      "precip": 0,
      "precipcover": 16.67,
      "precipitation": 2.2,
      "precipprob": 52.4,
      "preciptype": [
        "rain"
      ],
      "pressure": 1009.8,
      "severerisk": 10,
      "snow": 0,
      "snowdepth": 0,
      "solarenergy": 2.4,
      "solarradiation": 28.1,
      "source": "fcst",
      "sunrise": "07:12:48",
      "sunriseEpoch": 1667801568,
      "sunset": "16:25:38",
      "sunsetEpoch": 1667834738,
      "tempC": 12.2,
      "tempmaxC": 14.3,
      "tempminC": 9.5,
      "timestamp": 1667775600000,
      "uvindex": 1,
      "visibility": 24.1,
      "winddir": 228,
      "windgust": 82.8,
      "windspeed": 35.3
    }
  ],
  "description": "Similar temperatures continuing with a chance of rain Sunday & Monday.",
  "latitude": 52.4676201,
  "longitude": 13.5280284,
  "resolvedAddress": "52.4676201,13.5280284",
  "stations": {
    "E2835": {
      "contribution": 0,
      "distance": 14168,
      "id": "E2835",
      "latitude": 52.412,
      "longitude": 13.34,
      "name": "EW2835 Berlin DE",
      "quality": 0,
      "useCount": 0
    },
    "EDDB": {
      "contribution": 0,
      "distance": 9769,
      "id": "EDDB",
      "latitude": 52.38,
      "longitude": 13.52,
      "name": "EDDB",
      "quality": 50,
      "useCount": 0
    }
  },
  "timezone": "Europe/Berlin",
  "tzoffset": 1
}