]> Stephen's Gitweb - reasonableweather.git/commitdiff
Update weather API URL to include 7 day forecast as well as current temperature
authorStephen Jianu <stephen@stephenjianu.com>
Tue, 18 Mar 2025 00:50:37 +0000 (19:50 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Tue, 18 Mar 2025 00:50:37 +0000 (19:50 -0500)
index.php

index 04d0efce859ee7c944b556c3be299d965b4aa20c..77f5a9bbf78ad446162ed3c5235ce41646a760a9 100644 (file)
--- a/index.php
+++ b/index.php
@@ -10,7 +10,7 @@
                <h3>Tomorrow's temperature high in Park Ridge is:</h3>
                <h1>
                        <?php
-                               $url = "https://api.open-meteo.com/v1/forecast?latitude=42.0111&longitude=-87.8406&daily=temperature_2m_max&timezone=America%2FChicago&forecast_days=2&wind_speed_unit=mph&temperature_unit=fahrenheit&precipitation_unit=inch";
+                               $url = "https://api.open-meteo.com/v1/forecast?latitude=42.0111&longitude=-87.8406&daily=temperature_2m_max,temperature_2m_min&current=temperature_2m&timezone=America%2FChicago&wind_speed_unit=mph&temperature_unit=fahrenheit&precipitation_unit=inch";
                                $json = json_decode(file_get_contents($url), true);
                                $tempToday = $json["daily"]["temperature_2m_max"][0];
                                $tempTomorrow = $json["daily"]["temperature_2m_max"][1];