]> Stephen's Gitweb - reasonableweather.git/commitdiff
Base forecasted high temperature on current temperature rather than today's high
authorStephen Jianu <stephen@stephenjianu.com>
Tue, 18 Mar 2025 00:53:34 +0000 (19:53 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Tue, 18 Mar 2025 00:53:34 +0000 (19:53 -0500)
index.php

index 77f5a9bbf78ad446162ed3c5235ce41646a760a9..feecdac7a828da69e30c450c965ec39e6981f41f 100644 (file)
--- a/index.php
+++ b/index.php
@@ -3,7 +3,7 @@
                <title>Weather in Park Ridge</title>
        </head>
        <body style="text-align: center;">
-               <h3>Today's temperature high in Park Ridge is:</h3>
+               <h3>The current temperature in Park Ridge is:</h3>
                <h1>
                        0&deg;
                </h1>
@@ -12,9 +12,9 @@
                        <?php
                                $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];
+                               $tempNow = $json["current"]["temperature_2m"];
                                $tempTomorrow = $json["daily"]["temperature_2m_max"][1];
-                               $tempConverted = $tempTomorrow - $tempToday;
+                               $tempConverted = $tempTomorrow - $tempNow;
                                echo $tempConverted."&deg;"
                        ?>
                </h1>