Forráskód:

	<?php
		$fu   = fopen( "https://api.infojegyzet.hu/idojaras/" , "r" ) ;

		$json = "";
		while (!feof($fu))  $json .= fread($fu, 1024);

		fclose( $fu ) ;

		$adat = json_decode( $json ) ;
	?>

	<div style=' margin: 18px 0 18px 48px; font-family: Courier; color:#226;'>
		<pre><?php print_r($adat); ?></pre>
	</div>

Eredmény:

stdClass Object
(
    [location] => stdClass Object
        (
            [name] => Budapest
            [region] => Budapest
            [country] => Hungary
            [lat] => 47.5
            [lon] => 19.0833
            [tz_id] => Europe/Budapest
            [localtime_epoch] => 1770680823
            [localtime] => 2026-02-10 00:47
        )

    [current] => stdClass Object
        (
            [last_updated_epoch] => 1770680700
            [last_updated] => 2026-02-10 00:45
            [temp_c] => 4.3
            [temp_f] => 39.7
            [is_day] => 0
            [condition] => stdClass Object
                (
                    [text] => Overcast
                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                    [code] => 1009
                )

            [wind_mph] => 4.7
            [wind_kph] => 7.6
            [wind_degree] => 103
            [wind_dir] => ESE
            [pressure_mb] => 1011
            [pressure_in] => 29.85
            [precip_mm] => 0.03
            [precip_in] => 0
            [humidity] => 87
            [cloud] => 100
            [feelslike_c] => 2.4
            [feelslike_f] => 36.4
            [windchill_c] => 1.8
            [windchill_f] => 35.2
            [heatindex_c] => 3.8
            [heatindex_f] => 38.8
            [dewpoint_c] => 1.4
            [dewpoint_f] => 34.6
            [vis_km] => 10
            [vis_miles] => 6
            [uv] => 0
            [gust_mph] => 6.3
            [gust_kph] => 10.1
        )

    [forecast] => stdClass Object
        (
            [forecastday] => Array
                (
                    [0] => stdClass Object
                        (
                            [date] => 2026-02-10
                            [date_epoch] => 1770681600
                            [day] => stdClass Object
                                (
                                    [maxtemp_c] => 3.8
                                    [maxtemp_f] => 38.9
                                    [mintemp_c] => 1.9
                                    [mintemp_f] => 35.4
                                    [avgtemp_c] => 2.8
                                    [avgtemp_f] => 37
                                    [maxwind_mph] => 11.4
                                    [maxwind_kph] => 18.4
                                    [totalprecip_mm] => 0.11
                                    [totalprecip_in] => 0
                                    [totalsnow_cm] => 0
                                    [avgvis_km] => 10
                                    [avgvis_miles] => 6
                                    [avghumidity] => 71
                                    [daily_will_it_rain] => 1
                                    [daily_chance_of_rain] => 85
                                    [daily_will_it_snow] => 0
                                    [daily_chance_of_snow] => 0
                                    [condition] => stdClass Object
                                        (
                                            [text] => Patchy rain nearby
                                            [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                            [code] => 1063
                                        )

                                    [uv] => 0.2
                                )

                            [astro] => stdClass Object
                                (
                                    [sunrise] => 06:57 AM
                                    [sunset] => 04:59 PM
                                    [moonrise] => 01:56 AM
                                    [moonset] => 10:06 AM
                                    [moon_phase] => Waning Crescent
                                    [moon_illumination] => 46
                                    [is_moon_up] => 0
                                    [is_sun_up] => 0
                                )

                            [hour] => Array
                                (
                                    [0] => stdClass Object
                                        (
                                            [time_epoch] => 1770678000
                                            [time] => 2026-02-10 00:00
                                            [temp_c] => 3.7
                                            [temp_f] => 38.7
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 4.5
                                            [wind_kph] => 7.2
                                            [wind_degree] => 90
                                            [wind_dir] => E
                                            [pressure_mb] => 1012
                                            [pressure_in] => 29.88
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 81
                                            [cloud] => 100
                                            [feelslike_c] => 1.9
                                            [feelslike_f] => 35.3
                                            [windchill_c] => 1.9
                                            [windchill_f] => 35.3
                                            [heatindex_c] => 3.7
                                            [heatindex_f] => 38.7
                                            [dewpoint_c] => 0.8
                                            [dewpoint_f] => 33.5
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 6
                                            [gust_kph] => 9.7
                                            [uv] => 0
                                        )

                                    [1] => stdClass Object
                                        (
                                            [time_epoch] => 1770681600
                                            [time] => 2026-02-10 01:00
                                            [temp_c] => 4.3
                                            [temp_f] => 39.7
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 4.7
                                            [wind_kph] => 7.6
                                            [wind_degree] => 103
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.85
                                            [precip_mm] => 0.03
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 87
                                            [cloud] => 100
                                            [feelslike_c] => 1.8
                                            [feelslike_f] => 35.2
                                            [windchill_c] => 1.8
                                            [windchill_f] => 35.2
                                            [heatindex_c] => 3.8
                                            [heatindex_f] => 38.8
                                            [dewpoint_c] => 1.4
                                            [dewpoint_f] => 34.6
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 81
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 6.3
                                            [gust_kph] => 10.1
                                            [uv] => 0
                                        )

                                    [2] => stdClass Object
                                        (
                                            [time_epoch] => 1770685200
                                            [time] => 2026-02-10 02:00
                                            [temp_c] => 3.9
                                            [temp_f] => 39
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 5.1
                                            [wind_kph] => 8.3
                                            [wind_degree] => 119
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1012
                                            [pressure_in] => 29.88
                                            [precip_mm] => 0.01
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 87
                                            [cloud] => 84
                                            [feelslike_c] => 1.8
                                            [feelslike_f] => 35.2
                                            [windchill_c] => 1.8
                                            [windchill_f] => 35.2
                                            [heatindex_c] => 3.9
                                            [heatindex_f] => 39
                                            [dewpoint_c] => 1.9
                                            [dewpoint_f] => 35.3
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 73
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 7
                                            [gust_kph] => 11.2
                                            [uv] => 0
                                        )

                                    [3] => stdClass Object
                                        (
                                            [time_epoch] => 1770688800
                                            [time] => 2026-02-10 03:00
                                            [temp_c] => 4
                                            [temp_f] => 39.1
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.3
                                            [wind_kph] => 10.1
                                            [wind_degree] => 145
                                            [wind_dir] => SE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.87
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 76
                                            [cloud] => 100
                                            [feelslike_c] => 1.4
                                            [feelslike_f] => 34.5
                                            [windchill_c] => 1.4
                                            [windchill_f] => 34.5
                                            [heatindex_c] => 4
                                            [heatindex_f] => 39.1
                                            [dewpoint_c] => 0.1
                                            [dewpoint_f] => 32.1
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.4
                                            [gust_kph] => 13.5
                                            [uv] => 0
                                        )

                                    [4] => stdClass Object
                                        (
                                            [time_epoch] => 1770692400
                                            [time] => 2026-02-10 04:00
                                            [temp_c] => 3.5
                                            [temp_f] => 38.4
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.9
                                            [wind_kph] => 11.2
                                            [wind_degree] => 153
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.86
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 66
                                            [cloud] => 100
                                            [feelslike_c] => 0.7
                                            [feelslike_f] => 33.2
                                            [windchill_c] => 0.7
                                            [windchill_f] => 33.2
                                            [heatindex_c] => 3.5
                                            [heatindex_f] => 38.4
                                            [dewpoint_c] => -2.3
                                            [dewpoint_f] => 28
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 9.1
                                            [gust_kph] => 14.7
                                            [uv] => 0
                                        )

                                    [5] => stdClass Object
                                        (
                                            [time_epoch] => 1770696000
                                            [time] => 2026-02-10 05:00
                                            [temp_c] => 2.8
                                            [temp_f] => 37
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Cloudy 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/119.png
                                                    [code] => 1006
                                                )

                                            [wind_mph] => 6.7
                                            [wind_kph] => 10.8
                                            [wind_degree] => 154
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.86
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 67
                                            [cloud] => 80
                                            [feelslike_c] => -0.2
                                            [feelslike_f] => 31.7
                                            [windchill_c] => -0.2
                                            [windchill_f] => 31.7
                                            [heatindex_c] => 2.8
                                            [heatindex_f] => 37
                                            [dewpoint_c] => -2.7
                                            [dewpoint_f] => 27.1
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.7
                                            [gust_kph] => 14
                                            [uv] => 0
                                        )

                                    [6] => stdClass Object
                                        (
                                            [time_epoch] => 1770699600
                                            [time] => 2026-02-10 06:00
                                            [temp_c] => 2.4
                                            [temp_f] => 36.4
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.9
                                            [wind_kph] => 11.2
                                            [wind_degree] => 156
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.85
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 69
                                            [cloud] => 100
                                            [feelslike_c] => -0.7
                                            [feelslike_f] => 30.8
                                            [windchill_c] => -0.7
                                            [windchill_f] => 30.8
                                            [heatindex_c] => 2.4
                                            [heatindex_f] => 36.4
                                            [dewpoint_c] => -2.7
                                            [dewpoint_f] => 27.2
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.9
                                            [gust_kph] => 14.3
                                            [uv] => 0
                                        )

                                    [7] => stdClass Object
                                        (
                                            [time_epoch] => 1770703200
                                            [time] => 2026-02-10 07:00
                                            [temp_c] => 2.3
                                            [temp_f] => 36.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 7.2
                                            [wind_kph] => 11.5
                                            [wind_degree] => 154
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.85
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 71
                                            [cloud] => 97
                                            [feelslike_c] => -0.9
                                            [feelslike_f] => 30.3
                                            [windchill_c] => -0.9
                                            [windchill_f] => 30.3
                                            [heatindex_c] => 2.3
                                            [heatindex_f] => 36.1
                                            [dewpoint_c] => -2.3
                                            [dewpoint_f] => 27.8
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 9
                                            [gust_kph] => 14.5
                                            [uv] => 0
                                        )

                                    [8] => stdClass Object
                                        (
                                            [time_epoch] => 1770706800
                                            [time] => 2026-02-10 08:00
                                            [temp_c] => 2.3
                                            [temp_f] => 36.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Partly Cloudy 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/116.png
                                                    [code] => 1003
                                                )

                                            [wind_mph] => 7.6
                                            [wind_kph] => 12.2
                                            [wind_degree] => 151
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.85
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 72
                                            [cloud] => 57
                                            [feelslike_c] => -1.1
                                            [feelslike_f] => 30.1
                                            [windchill_c] => -1.1
                                            [windchill_f] => 30.1
                                            [heatindex_c] => 2.3
                                            [heatindex_f] => 36.1
                                            [dewpoint_c] => -2.2
                                            [dewpoint_f] => 28
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 9.5
                                            [gust_kph] => 15.3
                                            [uv] => 0.1
                                        )

                                    [9] => stdClass Object
                                        (
                                            [time_epoch] => 1770710400
                                            [time] => 2026-02-10 09:00
                                            [temp_c] => 2.9
                                            [temp_f] => 37.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 9.6
                                            [wind_kph] => 15.5
                                            [wind_degree] => 157
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1011
                                            [pressure_in] => 29.84
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 68
                                            [cloud] => 100
                                            [feelslike_c] => -1
                                            [feelslike_f] => 30.3
                                            [windchill_c] => -1
                                            [windchill_f] => 30.3
                                            [heatindex_c] => 2.9
                                            [heatindex_f] => 37.1
                                            [dewpoint_c] => -2.4
                                            [dewpoint_f] => 27.6
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 11.5
                                            [gust_kph] => 18.6
                                            [uv] => 0.4
                                        )

                                    [10] => stdClass Object
                                        (
                                            [time_epoch] => 1770714000
                                            [time] => 2026-02-10 10:00
                                            [temp_c] => 3.1
                                            [temp_f] => 37.5
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 11
                                            [wind_kph] => 17.6
                                            [wind_degree] => 157
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1010
                                            [pressure_in] => 29.84
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 67
                                            [cloud] => 100
                                            [feelslike_c] => -1.1
                                            [feelslike_f] => 30.1
                                            [windchill_c] => -1.1
                                            [windchill_f] => 30.1
                                            [heatindex_c] => 3.1
                                            [heatindex_f] => 37.5
                                            [dewpoint_c] => -2.4
                                            [dewpoint_f] => 27.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 12.7
                                            [gust_kph] => 20.4
                                            [uv] => 0.6
                                        )

                                    [11] => stdClass Object
                                        (
                                            [time_epoch] => 1770717600
                                            [time] => 2026-02-10 11:00
                                            [temp_c] => 3.4
                                            [temp_f] => 38.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 11.4
                                            [wind_kph] => 18.4
                                            [wind_degree] => 158
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1010
                                            [pressure_in] => 29.83
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 64
                                            [cloud] => 100
                                            [feelslike_c] => -0.8
                                            [feelslike_f] => 30.6
                                            [windchill_c] => -0.8
                                            [windchill_f] => 30.6
                                            [heatindex_c] => 3.4
                                            [heatindex_f] => 38.1
                                            [dewpoint_c] => -2.8
                                            [dewpoint_f] => 27
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 13.1
                                            [gust_kph] => 21.1
                                            [uv] => 0.8
                                        )

                                    [12] => stdClass Object
                                        (
                                            [time_epoch] => 1770721200
                                            [time] => 2026-02-10 12:00
                                            [temp_c] => 3.7
                                            [temp_f] => 38.7
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 11.2
                                            [wind_kph] => 18
                                            [wind_degree] => 158
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1009
                                            [pressure_in] => 29.81
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 61
                                            [cloud] => 97
                                            [feelslike_c] => -0.3
                                            [feelslike_f] => 31.5
                                            [windchill_c] => -0.3
                                            [windchill_f] => 31.5
                                            [heatindex_c] => 3.7
                                            [heatindex_f] => 38.7
                                            [dewpoint_c] => -3.1
                                            [dewpoint_f] => 26.5
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 12.9
                                            [gust_kph] => 20.7
                                            [uv] => 0.7
                                        )

                                    [13] => stdClass Object
                                        (
                                            [time_epoch] => 1770724800
                                            [time] => 2026-02-10 13:00
                                            [temp_c] => 3.8
                                            [temp_f] => 38.9
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 11
                                            [wind_kph] => 17.6
                                            [wind_degree] => 160
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1009
                                            [pressure_in] => 29.79
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 61
                                            [cloud] => 100
                                            [feelslike_c] => -0.1
                                            [feelslike_f] => 31.8
                                            [windchill_c] => -0.1
                                            [windchill_f] => 31.8
                                            [heatindex_c] => 3.8
                                            [heatindex_f] => 38.9
                                            [dewpoint_c] => -2.9
                                            [dewpoint_f] => 26.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 12.6
                                            [gust_kph] => 20.3
                                            [uv] => 0.5
                                        )

                                    [14] => stdClass Object
                                        (
                                            [time_epoch] => 1770728400
                                            [time] => 2026-02-10 14:00
                                            [temp_c] => 3.3
                                            [temp_f] => 37.9
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 10.3
                                            [wind_kph] => 16.6
                                            [wind_degree] => 159
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1008
                                            [pressure_in] => 29.77
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 66
                                            [cloud] => 100
                                            [feelslike_c] => -0.7
                                            [feelslike_f] => 30.8
                                            [windchill_c] => -0.7
                                            [windchill_f] => 30.8
                                            [heatindex_c] => 3.3
                                            [heatindex_f] => 37.9
                                            [dewpoint_c] => -2.4
                                            [dewpoint_f] => 27.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 11.8
                                            [gust_kph] => 19
                                            [uv] => 0.3
                                        )

                                    [15] => stdClass Object
                                        (
                                            [time_epoch] => 1770732000
                                            [time] => 2026-02-10 15:00
                                            [temp_c] => 2.3
                                            [temp_f] => 36.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 9.4
                                            [wind_kph] => 15.1
                                            [wind_degree] => 155
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1008
                                            [pressure_in] => 29.76
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 74
                                            [cloud] => 100
                                            [feelslike_c] => -1.6
                                            [feelslike_f] => 29.1
                                            [windchill_c] => -1.6
                                            [windchill_f] => 29.1
                                            [heatindex_c] => 2.3
                                            [heatindex_f] => 36.1
                                            [dewpoint_c] => -1.8
                                            [dewpoint_f] => 28.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 10.8
                                            [gust_kph] => 17.4
                                            [uv] => 0.1
                                        )

                                    [16] => stdClass Object
                                        (
                                            [time_epoch] => 1770735600
                                            [time] => 2026-02-10 16:00
                                            [temp_c] => 2
                                            [temp_f] => 35.6
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 8.5
                                            [wind_kph] => 13.7
                                            [wind_degree] => 152
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1008
                                            [pressure_in] => 29.75
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 75
                                            [cloud] => 100
                                            [feelslike_c] => -1.7
                                            [feelslike_f] => 29
                                            [windchill_c] => -1.7
                                            [windchill_f] => 29
                                            [heatindex_c] => 2
                                            [heatindex_f] => 35.6
                                            [dewpoint_c] => -1.8
                                            [dewpoint_f] => 28.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 9.8
                                            [gust_kph] => 15.8
                                            [uv] => 0
                                        )

                                    [17] => stdClass Object
                                        (
                                            [time_epoch] => 1770739200
                                            [time] => 2026-02-10 17:00
                                            [temp_c] => 2.1
                                            [temp_f] => 35.8
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 8.7
                                            [wind_kph] => 14
                                            [wind_degree] => 144
                                            [wind_dir] => SE
                                            [pressure_mb] => 1007
                                            [pressure_in] => 29.74
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 72
                                            [cloud] => 100
                                            [feelslike_c] => -1.6
                                            [feelslike_f] => 29.1
                                            [windchill_c] => -1.6
                                            [windchill_f] => 29.1
                                            [heatindex_c] => 2.1
                                            [heatindex_f] => 35.9
                                            [dewpoint_c] => -2.4
                                            [dewpoint_f] => 27.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 10.4
                                            [gust_kph] => 16.7
                                            [uv] => 0
                                        )

                                    [18] => stdClass Object
                                        (
                                            [time_epoch] => 1770742800
                                            [time] => 2026-02-10 18:00
                                            [temp_c] => 2.3
                                            [temp_f] => 36.2
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 8.9
                                            [wind_kph] => 14.4
                                            [wind_degree] => 140
                                            [wind_dir] => SE
                                            [pressure_mb] => 1007
                                            [pressure_in] => 29.74
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 68
                                            [cloud] => 100
                                            [feelslike_c] => -1.5
                                            [feelslike_f] => 29.4
                                            [windchill_c] => -1.5
                                            [windchill_f] => 29.4
                                            [heatindex_c] => 2.3
                                            [heatindex_f] => 36.2
                                            [dewpoint_c] => -2.9
                                            [dewpoint_f] => 26.8
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 10.6
                                            [gust_kph] => 17
                                            [uv] => 0
                                        )

                                    [19] => stdClass Object
                                        (
                                            [time_epoch] => 1770746400
                                            [time] => 2026-02-10 19:00
                                            [temp_c] => 2
                                            [temp_f] => 35.5
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 8.7
                                            [wind_kph] => 14
                                            [wind_degree] => 142
                                            [wind_dir] => SE
                                            [pressure_mb] => 1007
                                            [pressure_in] => 29.74
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 71
                                            [cloud] => 100
                                            [feelslike_c] => -1.8
                                            [feelslike_f] => 28.7
                                            [windchill_c] => -1.8
                                            [windchill_f] => 28.7
                                            [heatindex_c] => 2
                                            [heatindex_f] => 35.5
                                            [dewpoint_c] => -2.8
                                            [dewpoint_f] => 27
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 10.6
                                            [gust_kph] => 17
                                            [uv] => 0
                                        )

                                    [20] => stdClass Object
                                        (
                                            [time_epoch] => 1770750000
                                            [time] => 2026-02-10 20:00
                                            [temp_c] => 1.9
                                            [temp_f] => 35.4
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 7.2
                                            [wind_kph] => 11.5
                                            [wind_degree] => 147
                                            [wind_dir] => SSE
                                            [pressure_mb] => 1007
                                            [pressure_in] => 29.74
                                            [precip_mm] => 0.02
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 72
                                            [cloud] => 100
                                            [feelslike_c] => -1.4
                                            [feelslike_f] => 29.5
                                            [windchill_c] => -1.4
                                            [windchill_f] => 29.5
                                            [heatindex_c] => 1.9
                                            [heatindex_f] => 35.4
                                            [dewpoint_c] => -2.5
                                            [dewpoint_f] => 27.5
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 68
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.7
                                            [gust_kph] => 13.9
                                            [uv] => 0
                                        )

                                    [21] => stdClass Object
                                        (
                                            [time_epoch] => 1770753600
                                            [time] => 2026-02-10 21:00
                                            [temp_c] => 1.9
                                            [temp_f] => 35.4
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.7
                                            [wind_kph] => 10.8
                                            [wind_degree] => 140
                                            [wind_dir] => SE
                                            [pressure_mb] => 1007
                                            [pressure_in] => 29.74
                                            [precip_mm] => 0.02
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 74
                                            [cloud] => 100
                                            [feelslike_c] => -1.3
                                            [feelslike_f] => 29.7
                                            [windchill_c] => -1.3
                                            [windchill_f] => 29.7
                                            [heatindex_c] => 1.9
                                            [heatindex_f] => 35.3
                                            [dewpoint_c] => -2.3
                                            [dewpoint_f] => 27.8
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 60
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.1
                                            [gust_kph] => 13.1
                                            [uv] => 0
                                        )

                                    [22] => stdClass Object
                                        (
                                            [time_epoch] => 1770757200
                                            [time] => 2026-02-10 22:00
                                            [temp_c] => 1.9
                                            [temp_f] => 35.5
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.7
                                            [wind_kph] => 10.8
                                            [wind_degree] => 136
                                            [wind_dir] => SE
                                            [pressure_mb] => 1006
                                            [pressure_in] => 29.72
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 73
                                            [cloud] => 100
                                            [feelslike_c] => -1.2
                                            [feelslike_f] => 29.9
                                            [windchill_c] => -1.2
                                            [windchill_f] => 29.9
                                            [heatindex_c] => 1.9
                                            [heatindex_f] => 35.5
                                            [dewpoint_c] => -2.4
                                            [dewpoint_f] => 27.6
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.2
                                            [gust_kph] => 13.2
                                            [uv] => 0
                                        )

                                    [23] => stdClass Object
                                        (
                                            [time_epoch] => 1770760800
                                            [time] => 2026-02-10 23:00
                                            [temp_c] => 2
                                            [temp_f] => 35.7
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.7
                                            [wind_kph] => 10.8
                                            [wind_degree] => 128
                                            [wind_dir] => SE
                                            [pressure_mb] => 1006
                                            [pressure_in] => 29.7
                                            [precip_mm] => 0.01
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 72
                                            [cloud] => 100
                                            [feelslike_c] => -1.1
                                            [feelslike_f] => 30.1
                                            [windchill_c] => -1.1
                                            [windchill_f] => 30.1
                                            [heatindex_c] => 2
                                            [heatindex_f] => 35.7
                                            [dewpoint_c] => -2.4
                                            [dewpoint_f] => 27.7
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 85
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.3
                                            [gust_kph] => 13.3
                                            [uv] => 0
                                        )

                                )

                        )

                    [1] => stdClass Object
                        (
                            [date] => 2026-02-11
                            [date_epoch] => 1770768000
                            [day] => stdClass Object
                                (
                                    [maxtemp_c] => 4.8
                                    [maxtemp_f] => 40.7
                                    [mintemp_c] => 1.9
                                    [mintemp_f] => 35.3
                                    [avgtemp_c] => 3.4
                                    [avgtemp_f] => 38.2
                                    [maxwind_mph] => 7.6
                                    [maxwind_kph] => 12.2
                                    [totalprecip_mm] => 2.08
                                    [totalprecip_in] => 0.08
                                    [totalsnow_cm] => 0
                                    [avgvis_km] => 6.5
                                    [avgvis_miles] => 4
                                    [avghumidity] => 89
                                    [daily_will_it_rain] => 1
                                    [daily_chance_of_rain] => 83
                                    [daily_will_it_snow] => 0
                                    [daily_chance_of_snow] => 0
                                    [condition] => stdClass Object
                                        (
                                            [text] => Patchy rain nearby
                                            [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                            [code] => 1063
                                        )

                                    [uv] => 0.1
                                )

                            [astro] => stdClass Object
                                (
                                    [sunrise] => 06:56 AM
                                    [sunset] => 05:01 PM
                                    [moonrise] => 03:02 AM
                                    [moonset] => 10:41 AM
                                    [moon_phase] => Waning Crescent
                                    [moon_illumination] => 36
                                    [is_moon_up] => 0
                                    [is_sun_up] => 0
                                )

                            [hour] => Array
                                (
                                    [0] => stdClass Object
                                        (
                                            [time_epoch] => 1770764400
                                            [time] => 2026-02-11 00:00
                                            [temp_c] => 2
                                            [temp_f] => 35.6
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.9
                                            [wind_kph] => 11.2
                                            [wind_degree] => 127
                                            [wind_dir] => SE
                                            [pressure_mb] => 1005
                                            [pressure_in] => 29.69
                                            [precip_mm] => 0.02
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 75
                                            [cloud] => 99
                                            [feelslike_c] => -1.2
                                            [feelslike_f] => 29.8
                                            [windchill_c] => -1.2
                                            [windchill_f] => 29.8
                                            [heatindex_c] => 2
                                            [heatindex_f] => 35.6
                                            [dewpoint_c] => -2
                                            [dewpoint_f] => 28.4
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 80
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.5
                                            [gust_kph] => 13.7
                                            [uv] => 0
                                        )

                                    [1] => stdClass Object
                                        (
                                            [time_epoch] => 1770768000
                                            [time] => 2026-02-11 01:00
                                            [temp_c] => 2
                                            [temp_f] => 35.5
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.5
                                            [wind_kph] => 10.4
                                            [wind_degree] => 130
                                            [wind_dir] => SE
                                            [pressure_mb] => 1005
                                            [pressure_in] => 29.68
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 77
                                            [cloud] => 100
                                            [feelslike_c] => -1.1
                                            [feelslike_f] => 30.1
                                            [windchill_c] => -1.1
                                            [windchill_f] => 30.1
                                            [heatindex_c] => 2
                                            [heatindex_f] => 35.5
                                            [dewpoint_c] => -1.7
                                            [dewpoint_f] => 29
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.1
                                            [gust_kph] => 13
                                            [uv] => 0
                                        )

                                    [2] => stdClass Object
                                        (
                                            [time_epoch] => 1770771600
                                            [time] => 2026-02-11 02:00
                                            [temp_c] => 2
                                            [temp_f] => 35.6
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.5
                                            [wind_kph] => 10.4
                                            [wind_degree] => 121
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1004
                                            [pressure_in] => 29.65
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 78
                                            [cloud] => 100
                                            [feelslike_c] => -1.1
                                            [feelslike_f] => 30.1
                                            [windchill_c] => -1.1
                                            [windchill_f] => 30.1
                                            [heatindex_c] => 2
                                            [heatindex_f] => 35.6
                                            [dewpoint_c] => -1.5
                                            [dewpoint_f] => 29.3
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.1
                                            [gust_kph] => 13
                                            [uv] => 0
                                        )

                                    [3] => stdClass Object
                                        (
                                            [time_epoch] => 1770775200
                                            [time] => 2026-02-11 03:00
                                            [temp_c] => 1.9
                                            [temp_f] => 35.4
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.5
                                            [wind_kph] => 10.4
                                            [wind_degree] => 119
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1003
                                            [pressure_in] => 29.62
                                            [precip_mm] => 0.06
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 80
                                            [cloud] => 100
                                            [feelslike_c] => -1.1
                                            [feelslike_f] => 29.9
                                            [windchill_c] => -1.1
                                            [windchill_f] => 29.9
                                            [heatindex_c] => 1.9
                                            [heatindex_f] => 35.4
                                            [dewpoint_c] => -1.1
                                            [dewpoint_f] => 30
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8
                                            [gust_kph] => 12.9
                                            [uv] => 0
                                        )

                                    [4] => stdClass Object
                                        (
                                            [time_epoch] => 1770778800
                                            [time] => 2026-02-11 04:00
                                            [temp_c] => 1.9
                                            [temp_f] => 35.4
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.7
                                            [wind_kph] => 10.8
                                            [wind_degree] => 120
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1002
                                            [pressure_in] => 29.59
                                            [precip_mm] => 0.07
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 82
                                            [cloud] => 100
                                            [feelslike_c] => -1.2
                                            [feelslike_f] => 29.8
                                            [windchill_c] => -1.2
                                            [windchill_f] => 29.8
                                            [heatindex_c] => 1.9
                                            [heatindex_f] => 35.4
                                            [dewpoint_c] => -0.8
                                            [dewpoint_f] => 30.5
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.3
                                            [gust_kph] => 13.3
                                            [uv] => 0
                                        )

                                    [5] => stdClass Object
                                        (
                                            [time_epoch] => 1770782400
                                            [time] => 2026-02-11 05:00
                                            [temp_c] => 1.9
                                            [temp_f] => 35.3
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.5
                                            [wind_kph] => 10.4
                                            [wind_degree] => 123
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1002
                                            [pressure_in] => 29.58
                                            [precip_mm] => 0.02
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 86
                                            [cloud] => 100
                                            [feelslike_c] => -1.2
                                            [feelslike_f] => 29.8
                                            [windchill_c] => -1.2
                                            [windchill_f] => 29.8
                                            [heatindex_c] => 1.9
                                            [heatindex_f] => 35.3
                                            [dewpoint_c] => -0.3
                                            [dewpoint_f] => 31.5
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 74
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8
                                            [gust_kph] => 12.9
                                            [uv] => 0
                                        )

                                    [6] => stdClass Object
                                        (
                                            [time_epoch] => 1770786000
                                            [time] => 2026-02-11 06:00
                                            [temp_c] => 2
                                            [temp_f] => 35.6
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.5
                                            [wind_kph] => 10.4
                                            [wind_degree] => 119
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1001
                                            [pressure_in] => 29.56
                                            [precip_mm] => 0.03
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 89
                                            [cloud] => 100
                                            [feelslike_c] => -1
                                            [feelslike_f] => 30.1
                                            [windchill_c] => -1
                                            [windchill_f] => 30.1
                                            [heatindex_c] => 2
                                            [heatindex_f] => 35.6
                                            [dewpoint_c] => 0.3
                                            [dewpoint_f] => 32.6
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 78
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.2
                                            [gust_kph] => 13.2
                                            [uv] => 0
                                        )

                                    [7] => stdClass Object
                                        (
                                            [time_epoch] => 1770789600
                                            [time] => 2026-02-11 07:00
                                            [temp_c] => 2.2
                                            [temp_f] => 36
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 7.2
                                            [wind_kph] => 11.5
                                            [wind_degree] => 119
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1001
                                            [pressure_in] => 29.55
                                            [precip_mm] => 0.04
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 90
                                            [cloud] => 100
                                            [feelslike_c] => -1
                                            [feelslike_f] => 30.2
                                            [windchill_c] => -1
                                            [windchill_f] => 30.2
                                            [heatindex_c] => 2.2
                                            [heatindex_f] => 36
                                            [dewpoint_c] => 0.7
                                            [dewpoint_f] => 33.3
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 79
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 9.1
                                            [gust_kph] => 14.7
                                            [uv] => 0
                                        )

                                    [8] => stdClass Object
                                        (
                                            [time_epoch] => 1770793200
                                            [time] => 2026-02-11 08:00
                                            [temp_c] => 2.4
                                            [temp_f] => 36.4
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 7.6
                                            [wind_kph] => 12.2
                                            [wind_degree] => 113
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1000
                                            [pressure_in] => 29.54
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 89
                                            [cloud] => 100
                                            [feelslike_c] => -0.9
                                            [feelslike_f] => 30.4
                                            [windchill_c] => -0.9
                                            [windchill_f] => 30.4
                                            [heatindex_c] => 2.4
                                            [heatindex_f] => 36.4
                                            [dewpoint_c] => 0.8
                                            [dewpoint_f] => 33.5
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 9.8
                                            [gust_kph] => 15.8
                                            [uv] => 0.1
                                        )

                                    [9] => stdClass Object
                                        (
                                            [time_epoch] => 1770796800
                                            [time] => 2026-02-11 09:00
                                            [temp_c] => 2.8
                                            [temp_f] => 37.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.7
                                            [wind_kph] => 10.8
                                            [wind_degree] => 119
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1000
                                            [pressure_in] => 29.54
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 88
                                            [cloud] => 100
                                            [feelslike_c] => -0.1
                                            [feelslike_f] => 31.8
                                            [windchill_c] => -0.1
                                            [windchill_f] => 31.8
                                            [heatindex_c] => 2.8
                                            [heatindex_f] => 37.1
                                            [dewpoint_c] => 1
                                            [dewpoint_f] => 33.8
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.5
                                            [gust_kph] => 13.7
                                            [uv] => 0.2
                                        )

                                    [10] => stdClass Object
                                        (
                                            [time_epoch] => 1770800400
                                            [time] => 2026-02-11 10:00
                                            [temp_c] => 3.1
                                            [temp_f] => 37.6
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 6.9
                                            [wind_kph] => 11.2
                                            [wind_degree] => 117
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1000
                                            [pressure_in] => 29.53
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 87
                                            [cloud] => 100
                                            [feelslike_c] => 0.1
                                            [feelslike_f] => 32.2
                                            [windchill_c] => 0.1
                                            [windchill_f] => 32.2
                                            [heatindex_c] => 3.1
                                            [heatindex_f] => 37.6
                                            [dewpoint_c] => 1.2
                                            [dewpoint_f] => 34.2
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.8
                                            [gust_kph] => 14.2
                                            [uv] => 0.2
                                        )

                                    [11] => stdClass Object
                                        (
                                            [time_epoch] => 1770804000
                                            [time] => 2026-02-11 11:00
                                            [temp_c] => 3.5
                                            [temp_f] => 38.3
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 6.9
                                            [wind_kph] => 11.2
                                            [wind_degree] => 117
                                            [wind_dir] => ESE
                                            [pressure_mb] => 1000
                                            [pressure_in] => 29.52
                                            [precip_mm] => 0.12
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 86
                                            [cloud] => 100
                                            [feelslike_c] => 0.6
                                            [feelslike_f] => 33.2
                                            [windchill_c] => 0.6
                                            [windchill_f] => 33.2
                                            [heatindex_c] => 3.5
                                            [heatindex_f] => 38.4
                                            [dewpoint_c] => 1.5
                                            [dewpoint_f] => 34.6
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.9
                                            [gust_kph] => 14.3
                                            [uv] => 0.4
                                        )

                                    [12] => stdClass Object
                                        (
                                            [time_epoch] => 1770807600
                                            [time] => 2026-02-11 12:00
                                            [temp_c] => 3.7
                                            [temp_f] => 38.7
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 6
                                            [wind_kph] => 9.7
                                            [wind_degree] => 117
                                            [wind_dir] => ESE
                                            [pressure_mb] => 999
                                            [pressure_in] => 29.5
                                            [precip_mm] => 0.17
                                            [precip_in] => 0.01
                                            [snow_cm] => 0
                                            [humidity] => 87
                                            [cloud] => 100
                                            [feelslike_c] => 1.2
                                            [feelslike_f] => 34.2
                                            [windchill_c] => 1.2
                                            [windchill_f] => 34.2
                                            [heatindex_c] => 3.8
                                            [heatindex_f] => 38.8
                                            [dewpoint_c] => 1.8
                                            [dewpoint_f] => 35.3
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 7.9
                                            [gust_kph] => 12.6
                                            [uv] => 0.2
                                        )

                                    [13] => stdClass Object
                                        (
                                            [time_epoch] => 1770811200
                                            [time] => 2026-02-11 13:00
                                            [temp_c] => 4
                                            [temp_f] => 39.2
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 5.1
                                            [wind_kph] => 8.3
                                            [wind_degree] => 112
                                            [wind_dir] => ESE
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.48
                                            [precip_mm] => 0.48
                                            [precip_in] => 0.02
                                            [snow_cm] => 0
                                            [humidity] => 88
                                            [cloud] => 100
                                            [feelslike_c] => 1.9
                                            [feelslike_f] => 35.4
                                            [windchill_c] => 1.9
                                            [windchill_f] => 35.4
                                            [heatindex_c] => 4
                                            [heatindex_f] => 39.2
                                            [dewpoint_c] => 2.3
                                            [dewpoint_f] => 36.1
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 7
                                            [gust_kph] => 11.2
                                            [uv] => 0.2
                                        )

                                    [14] => stdClass Object
                                        (
                                            [time_epoch] => 1770814800
                                            [time] => 2026-02-11 14:00
                                            [temp_c] => 4
                                            [temp_f] => 39.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 4.3
                                            [wind_kph] => 6.8
                                            [wind_degree] => 105
                                            [wind_dir] => ESE
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.46
                                            [precip_mm] => 0.1
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 91
                                            [cloud] => 100
                                            [feelslike_c] => 2.3
                                            [feelslike_f] => 36.1
                                            [windchill_c] => 2.3
                                            [windchill_f] => 36.1
                                            [heatindex_c] => 4
                                            [heatindex_f] => 39.1
                                            [dewpoint_c] => 2.6
                                            [dewpoint_f] => 36.6
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 6.3
                                            [gust_kph] => 10.2
                                            [uv] => 0.1
                                        )

                                    [15] => stdClass Object
                                        (
                                            [time_epoch] => 1770818400
                                            [time] => 2026-02-11 15:00
                                            [temp_c] => 4.1
                                            [temp_f] => 39.3
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 3.6
                                            [wind_kph] => 5.8
                                            [wind_degree] => 111
                                            [wind_dir] => ESE
                                            [pressure_mb] => 997
                                            [pressure_in] => 29.45
                                            [precip_mm] => 0.14
                                            [precip_in] => 0.01
                                            [snow_cm] => 0
                                            [humidity] => 92
                                            [cloud] => 100
                                            [feelslike_c] => 2.7
                                            [feelslike_f] => 36.9
                                            [windchill_c] => 2.7
                                            [windchill_f] => 36.9
                                            [heatindex_c] => 4.1
                                            [heatindex_f] => 39.3
                                            [dewpoint_c] => 2.9
                                            [dewpoint_f] => 37.3
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 5.8
                                            [gust_kph] => 9.4
                                            [uv] => 0
                                        )

                                    [16] => stdClass Object
                                        (
                                            [time_epoch] => 1770822000
                                            [time] => 2026-02-11 16:00
                                            [temp_c] => 4.2
                                            [temp_f] => 39.5
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 3.4
                                            [wind_kph] => 5.4
                                            [wind_degree] => 134
                                            [wind_dir] => SE
                                            [pressure_mb] => 997
                                            [pressure_in] => 29.45
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 95
                                            [cloud] => 100
                                            [feelslike_c] => 3
                                            [feelslike_f] => 37.4
                                            [windchill_c] => 3
                                            [windchill_f] => 37.4
                                            [heatindex_c] => 4.2
                                            [heatindex_f] => 39.5
                                            [dewpoint_c] => 3.4
                                            [dewpoint_f] => 38.2
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 6.3
                                            [gust_kph] => 10.1
                                            [uv] => 0
                                        )

                                    [17] => stdClass Object
                                        (
                                            [time_epoch] => 1770825600
                                            [time] => 2026-02-11 17:00
                                            [temp_c] => 4.6
                                            [temp_f] => 40.3
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 3.6
                                            [wind_kph] => 5.8
                                            [wind_degree] => 161
                                            [wind_dir] => SSE
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.46
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 96
                                            [cloud] => 100
                                            [feelslike_c] => 3.4
                                            [feelslike_f] => 38.1
                                            [windchill_c] => 3.4
                                            [windchill_f] => 38.1
                                            [heatindex_c] => 4.6
                                            [heatindex_f] => 40.3
                                            [dewpoint_c] => 4
                                            [dewpoint_f] => 39.2
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 6.9
                                            [gust_kph] => 11.2
                                            [uv] => 0
                                        )

                                    [18] => stdClass Object
                                        (
                                            [time_epoch] => 1770829200
                                            [time] => 2026-02-11 18:00
                                            [temp_c] => 4.8
                                            [temp_f] => 40.7
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 2.7
                                            [wind_kph] => 4.3
                                            [wind_degree] => 199
                                            [wind_dir] => SSW
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.46
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 95
                                            [cloud] => 100
                                            [feelslike_c] => 4.2
                                            [feelslike_f] => 39.5
                                            [windchill_c] => 4.2
                                            [windchill_f] => 39.5
                                            [heatindex_c] => 4.8
                                            [heatindex_f] => 40.7
                                            [dewpoint_c] => 4.1
                                            [dewpoint_f] => 39.4
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 5.3
                                            [gust_kph] => 8.5
                                            [uv] => 0
                                        )

                                    [19] => stdClass Object
                                        (
                                            [time_epoch] => 1770832800
                                            [time] => 2026-02-11 19:00
                                            [temp_c] => 4.9
                                            [temp_f] => 40.8
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 2.7
                                            [wind_kph] => 4.3
                                            [wind_degree] => 226
                                            [wind_dir] => SW
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.46
                                            [precip_mm] => 0.21
                                            [precip_in] => 0.01
                                            [snow_cm] => 0
                                            [humidity] => 95
                                            [cloud] => 100
                                            [feelslike_c] => 4.3
                                            [feelslike_f] => 39.7
                                            [windchill_c] => 4.3
                                            [windchill_f] => 39.7
                                            [heatindex_c] => 4.9
                                            [heatindex_f] => 40.8
                                            [dewpoint_c] => 4.2
                                            [dewpoint_f] => 39.6
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 5.2
                                            [gust_kph] => 8.4
                                            [uv] => 0
                                        )

                                    [20] => stdClass Object
                                        (
                                            [time_epoch] => 1770836400
                                            [time] => 2026-02-11 20:00
                                            [temp_c] => 4.8
                                            [temp_f] => 40.7
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 2.9
                                            [wind_kph] => 4.7
                                            [wind_degree] => 207
                                            [wind_dir] => SSW
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.47
                                            [precip_mm] => 0.57
                                            [precip_in] => 0.02
                                            [snow_cm] => 0
                                            [humidity] => 96
                                            [cloud] => 100
                                            [feelslike_c] => 4
                                            [feelslike_f] => 39.2
                                            [windchill_c] => 4
                                            [windchill_f] => 39.2
                                            [heatindex_c] => 4.8
                                            [heatindex_f] => 40.7
                                            [dewpoint_c] => 4.3
                                            [dewpoint_f] => 39.7
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 6
                                            [gust_kph] => 9.6
                                            [uv] => 0
                                        )

                                    [21] => stdClass Object
                                        (
                                            [time_epoch] => 1770840000
                                            [time] => 2026-02-11 21:00
                                            [temp_c] => 4.9
                                            [temp_f] => 40.8
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 3.4
                                            [wind_kph] => 5.4
                                            [wind_degree] => 193
                                            [wind_dir] => SSW
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.46
                                            [precip_mm] => 0.02
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 97
                                            [cloud] => 100
                                            [feelslike_c] => 3.8
                                            [feelslike_f] => 38.8
                                            [windchill_c] => 3.8
                                            [windchill_f] => 38.8
                                            [heatindex_c] => 4.9
                                            [heatindex_f] => 40.8
                                            [dewpoint_c] => 4.4
                                            [dewpoint_f] => 40
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 76
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 7
                                            [gust_kph] => 11.3
                                            [uv] => 0
                                        )

                                    [22] => stdClass Object
                                        (
                                            [time_epoch] => 1770843600
                                            [time] => 2026-02-11 22:00
                                            [temp_c] => 5.3
                                            [temp_f] => 41.5
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 4.3
                                            [wind_kph] => 6.8
                                            [wind_degree] => 214
                                            [wind_dir] => SW
                                            [pressure_mb] => 998
                                            [pressure_in] => 29.46
                                            [precip_mm] => 0.01
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 98
                                            [cloud] => 100
                                            [feelslike_c] => 3.8
                                            [feelslike_f] => 38.8
                                            [windchill_c] => 3.8
                                            [windchill_f] => 38.8
                                            [heatindex_c] => 5.3
                                            [heatindex_f] => 41.5
                                            [dewpoint_c] => 4.9
                                            [dewpoint_f] => 40.8
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 74
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 8.4
                                            [gust_kph] => 13.5
                                            [uv] => 0
                                        )

                                    [23] => stdClass Object
                                        (
                                            [time_epoch] => 1770847200
                                            [time] => 2026-02-11 23:00
                                            [temp_c] => 5.4
                                            [temp_f] => 41.7
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 4
                                            [wind_kph] => 6.5
                                            [wind_degree] => 218
                                            [wind_dir] => SW
                                            [pressure_mb] => 997
                                            [pressure_in] => 29.45
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 99
                                            [cloud] => 100
                                            [feelslike_c] => 4
                                            [feelslike_f] => 39.3
                                            [windchill_c] => 4
                                            [windchill_f] => 39.3
                                            [heatindex_c] => 5.4
                                            [heatindex_f] => 41.7
                                            [dewpoint_c] => 5.2
                                            [dewpoint_f] => 41.4
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 7.8
                                            [gust_kph] => 12.6
                                            [uv] => 0
                                        )

                                )

                        )

                    [2] => stdClass Object
                        (
                            [date] => 2026-02-12
                            [date_epoch] => 1770854400
                            [day] => stdClass Object
                                (
                                    [maxtemp_c] => 8.1
                                    [maxtemp_f] => 46.5
                                    [mintemp_c] => 4.7
                                    [mintemp_f] => 40.5
                                    [avgtemp_c] => 6.6
                                    [avgtemp_f] => 43.8
                                    [maxwind_mph] => 7.4
                                    [maxwind_kph] => 11.9
                                    [totalprecip_mm] => 1.93
                                    [totalprecip_in] => 0.08
                                    [totalsnow_cm] => 0
                                    [avgvis_km] => 3.2
                                    [avgvis_miles] => 2
                                    [avghumidity] => 95
                                    [daily_will_it_rain] => 1
                                    [daily_chance_of_rain] => 89
                                    [daily_will_it_snow] => 0
                                    [daily_chance_of_snow] => 0
                                    [condition] => stdClass Object
                                        (
                                            [text] => Patchy rain nearby
                                            [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                            [code] => 1063
                                        )

                                    [uv] => 0.1
                                )

                            [astro] => stdClass Object
                                (
                                    [sunrise] => 06:54 AM
                                    [sunset] => 05:02 PM
                                    [moonrise] => 04:02 AM
                                    [moonset] => 11:27 AM
                                    [moon_phase] => Waning Crescent
                                    [moon_illumination] => 28
                                    [is_moon_up] => 0
                                    [is_sun_up] => 0
                                )

                            [hour] => Array
                                (
                                    [0] => stdClass Object
                                        (
                                            [time_epoch] => 1770850800
                                            [time] => 2026-02-12 00:00
                                            [temp_c] => 5.4
                                            [temp_f] => 41.8
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 3.8
                                            [wind_kph] => 6.1
                                            [wind_degree] => 196
                                            [wind_dir] => SSW
                                            [pressure_mb] => 997
                                            [pressure_in] => 29.44
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 99
                                            [cloud] => 100
                                            [feelslike_c] => 4.2
                                            [feelslike_f] => 39.5
                                            [windchill_c] => 4.2
                                            [windchill_f] => 39.5
                                            [heatindex_c] => 5.4
                                            [heatindex_f] => 41.8
                                            [dewpoint_c] => 5.2
                                            [dewpoint_f] => 41.4
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 7.5
                                            [gust_kph] => 12.1
                                            [uv] => 0
                                        )

                                    [1] => stdClass Object
                                        (
                                            [time_epoch] => 1770854400
                                            [time] => 2026-02-12 01:00
                                            [temp_c] => 5.6
                                            [temp_f] => 42
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 3.8
                                            [wind_kph] => 6.1
                                            [wind_degree] => 212
                                            [wind_dir] => SSW
                                            [pressure_mb] => 997
                                            [pressure_in] => 29.43
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 98
                                            [cloud] => 100
                                            [feelslike_c] => 4.3
                                            [feelslike_f] => 39.8
                                            [windchill_c] => 4.3
                                            [windchill_f] => 39.8
                                            [heatindex_c] => 5.6
                                            [heatindex_f] => 42
                                            [dewpoint_c] => 5.3
                                            [dewpoint_f] => 41.5
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 7.2
                                            [gust_kph] => 11.6
                                            [uv] => 0
                                        )

                                    [2] => stdClass Object
                                        (
                                            [time_epoch] => 1770858000
                                            [time] => 2026-02-12 02:00
                                            [temp_c] => 5.5
                                            [temp_f] => 42
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 3.6
                                            [wind_kph] => 5.8
                                            [wind_degree] => 195
                                            [wind_dir] => SSW
                                            [pressure_mb] => 996
                                            [pressure_in] => 29.41
                                            [precip_mm] => 0.07
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 98
                                            [cloud] => 100
                                            [feelslike_c] => 4.4
                                            [feelslike_f] => 40
                                            [windchill_c] => 4.4
                                            [windchill_f] => 40
                                            [heatindex_c] => 5.5
                                            [heatindex_f] => 42
                                            [dewpoint_c] => 5.3
                                            [dewpoint_f] => 41.5
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 6.8
                                            [gust_kph] => 11
                                            [uv] => 0
                                        )

                                    [3] => stdClass Object
                                        (
                                            [time_epoch] => 1770861600
                                            [time] => 2026-02-12 03:00
                                            [temp_c] => 5.6
                                            [temp_f] => 42.1
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 4.9
                                            [wind_kph] => 7.9
                                            [wind_degree] => 171
                                            [wind_dir] => S
                                            [pressure_mb] => 995
                                            [pressure_in] => 29.38
                                            [precip_mm] => 0.02
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 99
                                            [cloud] => 100
                                            [feelslike_c] => 3.9
                                            [feelslike_f] => 39
                                            [windchill_c] => 3.9
                                            [windchill_f] => 39
                                            [heatindex_c] => 5.6
                                            [heatindex_f] => 42.1
                                            [dewpoint_c] => 5.4
                                            [dewpoint_f] => 41.8
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 89
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 9.2
                                            [gust_kph] => 14.8
                                            [uv] => 0
                                        )

                                    [4] => stdClass Object
                                        (
                                            [time_epoch] => 1770865200
                                            [time] => 2026-02-12 04:00
                                            [temp_c] => 5.2
                                            [temp_f] => 41.3
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 4.5
                                            [wind_kph] => 7.2
                                            [wind_degree] => 181
                                            [wind_dir] => S
                                            [pressure_mb] => 994
                                            [pressure_in] => 29.36
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 99
                                            [cloud] => 100
                                            [feelslike_c] => 3.6
                                            [feelslike_f] => 38.4
                                            [windchill_c] => 3.6
                                            [windchill_f] => 38.4
                                            [heatindex_c] => 5.2
                                            [heatindex_f] => 41.3
                                            [dewpoint_c] => 5
                                            [dewpoint_f] => 41
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 8.7
                                            [gust_kph] => 14
                                            [uv] => 0
                                        )

                                    [5] => stdClass Object
                                        (
                                            [time_epoch] => 1770868800
                                            [time] => 2026-02-12 05:00
                                            [temp_c] => 5.1
                                            [temp_f] => 41.2
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 4.9
                                            [wind_kph] => 7.9
                                            [wind_degree] => 162
                                            [wind_dir] => SSE
                                            [pressure_mb] => 993
                                            [pressure_in] => 29.34
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 99
                                            [cloud] => 100
                                            [feelslike_c] => 3.3
                                            [feelslike_f] => 37.9
                                            [windchill_c] => 3.3
                                            [windchill_f] => 37.9
                                            [heatindex_c] => 5.1
                                            [heatindex_f] => 41.2
                                            [dewpoint_c] => 4.9
                                            [dewpoint_f] => 40.8
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 9.7
                                            [gust_kph] => 15.6
                                            [uv] => 0
                                        )

                                    [6] => stdClass Object
                                        (
                                            [time_epoch] => 1770872400
                                            [time] => 2026-02-12 06:00
                                            [temp_c] => 4.7
                                            [temp_f] => 40.5
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 4.9
                                            [wind_kph] => 7.9
                                            [wind_degree] => 156
                                            [wind_dir] => SSE
                                            [pressure_mb] => 993
                                            [pressure_in] => 29.31
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 99
                                            [cloud] => 100
                                            [feelslike_c] => 2.8
                                            [feelslike_f] => 37
                                            [windchill_c] => 2.8
                                            [windchill_f] => 37
                                            [heatindex_c] => 4.7
                                            [heatindex_f] => 40.5
                                            [dewpoint_c] => 4.5
                                            [dewpoint_f] => 40.1
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 10.2
                                            [gust_kph] => 16.3
                                            [uv] => 0
                                        )

                                    [7] => stdClass Object
                                        (
                                            [time_epoch] => 1770876000
                                            [time] => 2026-02-12 07:00
                                            [temp_c] => 4.9
                                            [temp_f] => 40.7
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 5.6
                                            [wind_kph] => 9
                                            [wind_degree] => 161
                                            [wind_dir] => SSE
                                            [pressure_mb] => 992
                                            [pressure_in] => 29.3
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 98
                                            [cloud] => 100
                                            [feelslike_c] => 2.7
                                            [feelslike_f] => 36.9
                                            [windchill_c] => 2.7
                                            [windchill_f] => 36.9
                                            [heatindex_c] => 4.9
                                            [heatindex_f] => 40.7
                                            [dewpoint_c] => 4.6
                                            [dewpoint_f] => 40.3
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 11.3
                                            [gust_kph] => 18.2
                                            [uv] => 0
                                        )

                                    [8] => stdClass Object
                                        (
                                            [time_epoch] => 1770879600
                                            [time] => 2026-02-12 08:00
                                            [temp_c] => 6.7
                                            [temp_f] => 44.1
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 7.4
                                            [wind_kph] => 11.9
                                            [wind_degree] => 166
                                            [wind_dir] => SSE
                                            [pressure_mb] => 992
                                            [pressure_in] => 29.29
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 96
                                            [cloud] => 99
                                            [feelslike_c] => 4.4
                                            [feelslike_f] => 39.8
                                            [windchill_c] => 4.4
                                            [windchill_f] => 39.8
                                            [heatindex_c] => 6.7
                                            [heatindex_f] => 44.1
                                            [dewpoint_c] => 6.1
                                            [dewpoint_f] => 43
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 12.2
                                            [gust_kph] => 19.7
                                            [uv] => 0.1
                                        )

                                    [9] => stdClass Object
                                        (
                                            [time_epoch] => 1770883200
                                            [time] => 2026-02-12 09:00
                                            [temp_c] => 7.2
                                            [temp_f] => 44.9
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 7.4
                                            [wind_kph] => 11.9
                                            [wind_degree] => 165
                                            [wind_dir] => SSE
                                            [pressure_mb] => 991
                                            [pressure_in] => 29.27
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 95
                                            [cloud] => 100
                                            [feelslike_c] => 4.9
                                            [feelslike_f] => 40.9
                                            [windchill_c] => 4.9
                                            [windchill_f] => 40.9
                                            [heatindex_c] => 7.2
                                            [heatindex_f] => 44.9
                                            [dewpoint_c] => 6.5
                                            [dewpoint_f] => 43.6
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 10.9
                                            [gust_kph] => 17.5
                                            [uv] => 0.3
                                        )

                                    [10] => stdClass Object
                                        (
                                            [time_epoch] => 1770886800
                                            [time] => 2026-02-12 10:00
                                            [temp_c] => 7.4
                                            [temp_f] => 45.3
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 6.3
                                            [wind_kph] => 10.1
                                            [wind_degree] => 146
                                            [wind_dir] => SSE
                                            [pressure_mb] => 991
                                            [pressure_in] => 29.25
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 94
                                            [cloud] => 100
                                            [feelslike_c] => 5.5
                                            [feelslike_f] => 41.9
                                            [windchill_c] => 5.5
                                            [windchill_f] => 41.9
                                            [heatindex_c] => 7.4
                                            [heatindex_f] => 45.3
                                            [dewpoint_c] => 6.5
                                            [dewpoint_f] => 43.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 8.9
                                            [gust_kph] => 14.4
                                            [uv] => 0.4
                                        )

                                    [11] => stdClass Object
                                        (
                                            [time_epoch] => 1770890400
                                            [time] => 2026-02-12 11:00
                                            [temp_c] => 7.9
                                            [temp_f] => 46.3
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 5.8
                                            [wind_kph] => 9.4
                                            [wind_degree] => 151
                                            [wind_dir] => SSE
                                            [pressure_mb] => 990
                                            [pressure_in] => 29.25
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 91
                                            [cloud] => 100
                                            [feelslike_c] => 6.3
                                            [feelslike_f] => 43.4
                                            [windchill_c] => 6.3
                                            [windchill_f] => 43.4
                                            [heatindex_c] => 8
                                            [heatindex_f] => 46.3
                                            [dewpoint_c] => 6.6
                                            [dewpoint_f] => 44
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 7.9
                                            [gust_kph] => 12.7
                                            [uv] => 0.7
                                        )

                                    [12] => stdClass Object
                                        (
                                            [time_epoch] => 1770894000
                                            [time] => 2026-02-12 12:00
                                            [temp_c] => 8.1
                                            [temp_f] => 46.5
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Patchy rain nearby
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/176.png
                                                    [code] => 1063
                                                )

                                            [wind_mph] => 5.8
                                            [wind_kph] => 9.4
                                            [wind_degree] => 145
                                            [wind_dir] => SE
                                            [pressure_mb] => 989
                                            [pressure_in] => 29.22
                                            [precip_mm] => 0.01
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 90
                                            [cloud] => 100
                                            [feelslike_c] => 6.4
                                            [feelslike_f] => 43.6
                                            [windchill_c] => 6.4
                                            [windchill_f] => 43.6
                                            [heatindex_c] => 8.1
                                            [heatindex_f] => 46.5
                                            [dewpoint_c] => 6.5
                                            [dewpoint_f] => 43.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 68
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.6
                                            [gust_kph] => 13.8
                                            [uv] => 0.4
                                        )

                                    [13] => stdClass Object
                                        (
                                            [time_epoch] => 1770897600
                                            [time] => 2026-02-12 13:00
                                            [temp_c] => 7.8
                                            [temp_f] => 46
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 4.7
                                            [wind_kph] => 7.6
                                            [wind_degree] => 122
                                            [wind_dir] => ESE
                                            [pressure_mb] => 989
                                            [pressure_in] => 29.21
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 91
                                            [cloud] => 92
                                            [feelslike_c] => 6.5
                                            [feelslike_f] => 43.8
                                            [windchill_c] => 6.5
                                            [windchill_f] => 43.8
                                            [heatindex_c] => 7.8
                                            [heatindex_f] => 46
                                            [dewpoint_c] => 6.4
                                            [dewpoint_f] => 43.5
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 7.2
                                            [gust_kph] => 11.6
                                            [uv] => 0.3
                                        )

                                    [14] => stdClass Object
                                        (
                                            [time_epoch] => 1770901200
                                            [time] => 2026-02-12 14:00
                                            [temp_c] => 8
                                            [temp_f] => 46.3
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Cloudy 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/119.png
                                                    [code] => 1006
                                                )

                                            [wind_mph] => 4.9
                                            [wind_kph] => 7.9
                                            [wind_degree] => 120
                                            [wind_dir] => ESE
                                            [pressure_mb] => 989
                                            [pressure_in] => 29.2
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 90
                                            [cloud] => 68
                                            [feelslike_c] => 6.6
                                            [feelslike_f] => 44
                                            [windchill_c] => 6.6
                                            [windchill_f] => 44
                                            [heatindex_c] => 8
                                            [heatindex_f] => 46.3
                                            [dewpoint_c] => 6.4
                                            [dewpoint_f] => 43.6
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 7.2
                                            [gust_kph] => 11.6
                                            [uv] => 0.3
                                        )

                                    [15] => stdClass Object
                                        (
                                            [time_epoch] => 1770904800
                                            [time] => 2026-02-12 15:00
                                            [temp_c] => 8
                                            [temp_f] => 46.4
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Partly Cloudy 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/116.png
                                                    [code] => 1003
                                                )

                                            [wind_mph] => 5.6
                                            [wind_kph] => 9
                                            [wind_degree] => 122
                                            [wind_dir] => ESE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.19
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 87
                                            [cloud] => 59
                                            [feelslike_c] => 6.4
                                            [feelslike_f] => 43.6
                                            [windchill_c] => 6.4
                                            [windchill_f] => 43.6
                                            [heatindex_c] => 8
                                            [heatindex_f] => 46.4
                                            [dewpoint_c] => 6
                                            [dewpoint_f] => 42.7
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 8.2
                                            [gust_kph] => 13.2
                                            [uv] => 0.2
                                        )

                                    [16] => stdClass Object
                                        (
                                            [time_epoch] => 1770908400
                                            [time] => 2026-02-12 16:00
                                            [temp_c] => 7.4
                                            [temp_f] => 45.4
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Overcast 
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/122.png
                                                    [code] => 1009
                                                )

                                            [wind_mph] => 4.7
                                            [wind_kph] => 7.6
                                            [wind_degree] => 104
                                            [wind_dir] => ESE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.18
                                            [precip_mm] => 0
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 87
                                            [cloud] => 100
                                            [feelslike_c] => 6.1
                                            [feelslike_f] => 42.9
                                            [windchill_c] => 6.1
                                            [windchill_f] => 42.9
                                            [heatindex_c] => 7.4
                                            [heatindex_f] => 45.4
                                            [dewpoint_c] => 5.4
                                            [dewpoint_f] => 41.8
                                            [will_it_rain] => 0
                                            [chance_of_rain] => 0
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 10
                                            [vis_miles] => 6
                                            [gust_mph] => 7.7
                                            [gust_kph] => 12.4
                                            [uv] => 0
                                        )

                                    [17] => stdClass Object
                                        (
                                            [time_epoch] => 1770912000
                                            [time] => 2026-02-12 17:00
                                            [temp_c] => 7
                                            [temp_f] => 44.6
                                            [is_day] => 1
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/day/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 3.8
                                            [wind_kph] => 6.1
                                            [wind_degree] => 106
                                            [wind_dir] => ESE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.18
                                            [precip_mm] => 0.32
                                            [precip_in] => 0.01
                                            [snow_cm] => 0
                                            [humidity] => 89
                                            [cloud] => 100
                                            [feelslike_c] => 6
                                            [feelslike_f] => 42.8
                                            [windchill_c] => 6
                                            [windchill_f] => 42.8
                                            [heatindex_c] => 7
                                            [heatindex_f] => 44.6
                                            [dewpoint_c] => 5.3
                                            [dewpoint_f] => 41.6
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 6.5
                                            [gust_kph] => 10.5
                                            [uv] => 0
                                        )

                                    [18] => stdClass Object
                                        (
                                            [time_epoch] => 1770915600
                                            [time] => 2026-02-12 18:00
                                            [temp_c] => 6.8
                                            [temp_f] => 44.2
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 3.4
                                            [wind_kph] => 5.4
                                            [wind_degree] => 102
                                            [wind_dir] => ESE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.19
                                            [precip_mm] => 0.17
                                            [precip_in] => 0.01
                                            [snow_cm] => 0
                                            [humidity] => 92
                                            [cloud] => 100
                                            [feelslike_c] => 6
                                            [feelslike_f] => 42.7
                                            [windchill_c] => 6
                                            [windchill_f] => 42.7
                                            [heatindex_c] => 6.8
                                            [heatindex_f] => 44.2
                                            [dewpoint_c] => 5.5
                                            [dewpoint_f] => 41.9
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 5.7
                                            [gust_kph] => 9.3
                                            [uv] => 0
                                        )

                                    [19] => stdClass Object
                                        (
                                            [time_epoch] => 1770919200
                                            [time] => 2026-02-12 19:00
                                            [temp_c] => 6.6
                                            [temp_f] => 43.9
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 3.4
                                            [wind_kph] => 5.4
                                            [wind_degree] => 105
                                            [wind_dir] => ESE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.18
                                            [precip_mm] => 0.21
                                            [precip_in] => 0.01
                                            [snow_cm] => 0
                                            [humidity] => 94
                                            [cloud] => 100
                                            [feelslike_c] => 5.8
                                            [feelslike_f] => 42.4
                                            [windchill_c] => 5.8
                                            [windchill_f] => 42.4
                                            [heatindex_c] => 6.6
                                            [heatindex_f] => 43.9
                                            [dewpoint_c] => 5.7
                                            [dewpoint_f] => 42.3
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 5.7
                                            [gust_kph] => 9.3
                                            [uv] => 0
                                        )

                                    [20] => stdClass Object
                                        (
                                            [time_epoch] => 1770922800
                                            [time] => 2026-02-12 20:00
                                            [temp_c] => 6.5
                                            [temp_f] => 43.8
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Mist
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/143.png
                                                    [code] => 1030
                                                )

                                            [wind_mph] => 3.1
                                            [wind_kph] => 5
                                            [wind_degree] => 107
                                            [wind_dir] => ESE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.18
                                            [precip_mm] => 0.1
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 96
                                            [cloud] => 100
                                            [feelslike_c] => 5.8
                                            [feelslike_f] => 42.4
                                            [windchill_c] => 5.8
                                            [windchill_f] => 42.4
                                            [heatindex_c] => 6.5
                                            [heatindex_f] => 43.8
                                            [dewpoint_c] => 6
                                            [dewpoint_f] => 42.7
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 5.4
                                            [gust_kph] => 8.7
                                            [uv] => 0
                                        )

                                    [21] => stdClass Object
                                        (
                                            [time_epoch] => 1770926400
                                            [time] => 2026-02-12 21:00
                                            [temp_c] => 6.5
                                            [temp_f] => 43.8
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Fog
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/248.png
                                                    [code] => 1135
                                                )

                                            [wind_mph] => 2.5
                                            [wind_kph] => 4
                                            [wind_degree] => 115
                                            [wind_dir] => ESE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.18
                                            [precip_mm] => 0.07
                                            [precip_in] => 0
                                            [snow_cm] => 0
                                            [humidity] => 97
                                            [cloud] => 100
                                            [feelslike_c] => 6.2
                                            [feelslike_f] => 43.2
                                            [windchill_c] => 6.2
                                            [windchill_f] => 43.2
                                            [heatindex_c] => 6.5
                                            [heatindex_f] => 43.8
                                            [dewpoint_c] => 6.1
                                            [dewpoint_f] => 43
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 0
                                            [vis_miles] => 0
                                            [gust_mph] => 4.3
                                            [gust_kph] => 6.9
                                            [uv] => 0
                                        )

                                    [22] => stdClass Object
                                        (
                                            [time_epoch] => 1770930000
                                            [time] => 2026-02-12 22:00
                                            [temp_c] => 6.6
                                            [temp_f] => 43.9
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 2.5
                                            [wind_kph] => 4
                                            [wind_degree] => 162
                                            [wind_dir] => SSE
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.18
                                            [precip_mm] => 0.56
                                            [precip_in] => 0.02
                                            [snow_cm] => 0
                                            [humidity] => 98
                                            [cloud] => 100
                                            [feelslike_c] => 6.3
                                            [feelslike_f] => 43.4
                                            [windchill_c] => 6.3
                                            [windchill_f] => 43.4
                                            [heatindex_c] => 6.6
                                            [heatindex_f] => 43.9
                                            [dewpoint_c] => 6.4
                                            [dewpoint_f] => 43.5
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 4.2
                                            [gust_kph] => 6.7
                                            [uv] => 0
                                        )

                                    [23] => stdClass Object
                                        (
                                            [time_epoch] => 1770933600
                                            [time] => 2026-02-12 23:00
                                            [temp_c] => 6.7
                                            [temp_f] => 44
                                            [is_day] => 0
                                            [condition] => stdClass Object
                                                (
                                                    [text] => Light drizzle
                                                    [icon] => //cdn.weatherapi.com/weather/64x64/night/266.png
                                                    [code] => 1153
                                                )

                                            [wind_mph] => 3.1
                                            [wind_kph] => 5
                                            [wind_degree] => 174
                                            [wind_dir] => S
                                            [pressure_mb] => 988
                                            [pressure_in] => 29.18
                                            [precip_mm] => 0.4
                                            [precip_in] => 0.02
                                            [snow_cm] => 0
                                            [humidity] => 99
                                            [cloud] => 100
                                            [feelslike_c] => 6
                                            [feelslike_f] => 42.8
                                            [windchill_c] => 6
                                            [windchill_f] => 42.8
                                            [heatindex_c] => 6.7
                                            [heatindex_f] => 44
                                            [dewpoint_c] => 6.5
                                            [dewpoint_f] => 43.8
                                            [will_it_rain] => 1
                                            [chance_of_rain] => 100
                                            [will_it_snow] => 0
                                            [chance_of_snow] => 0
                                            [vis_km] => 2
                                            [vis_miles] => 1
                                            [gust_mph] => 5.3
                                            [gust_kph] => 8.5
                                            [uv] => 0
                                        )

                                )

                        )

                )

        )

)