]> Stephen's Gitweb - reasonableweather.git/commitdiff
Add "relative" URL parameter
authorStephen Jianu <stephen@stephenjianu.com>
Sun, 23 Mar 2025 14:20:44 +0000 (09:20 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Sun, 23 Mar 2025 14:20:53 +0000 (09:20 -0500)
When "relative" is set to "false", temperature values will be displayed
accurately

index.php

index 4696d2ee8c8469f6a158911d5e8ea21c2405b5eb..bccf738fd9eea2bff146d3382339c334354f074c 100644 (file)
--- a/index.php
+++ b/index.php
@@ -7,6 +7,7 @@
        echo "<body style=\"text-align: center;\">\n";
        echo "<h3>The current conditions in Park Ridge are:</h3>\n";
        echo "<h1>\n";
+       $relative = (strcmp($_GET["relative"], "false") == 0) ? false : true;
        $url = "https://api.open-meteo.com/v1/forecast?latitude=42.0111&longitude=-87.8406&daily=temperature_2m_max,temperature_2m_min,weather_code&current=temperature_2m,weather_code,is_day&timezone=America%2FChicago&wind_speed_unit=mph&temperature_unit=fahrenheit&precipitation_unit=inch";
        $json = json_decode(file_get_contents($url), true);
        $jsonDescriptions = json_decode(file_get_contents("descriptions.json"), true);
        $isDay = ($json["current"]["is_day"]) ? "day" : "night";
        $description = $jsonDescriptions[$code][$isDay]["description"];
        $image = $jsonDescriptions[$code][$isDay]["image"];
-       echo "<img src=\"".$image."\"/><br>".$description."<br>"."0&deg;\n";
+       if ($relative)
+               echo "<img src=\"".$image."\"/><br>".$description."<br>"."0&deg;\n";
+       else
+       echo "<img src=\"".$image."\"/><br>".$description."<br>".$json["current"]["temperature_2m"]."&deg; F\n";
        echo "</h1>\n";
        echo "<h3>Your 7 day forecast for Park Ridge is:</h3>\n";
        $tempNow = $json["current"]["temperature_2m"];
                echo "".date('l', strtotime($json["daily"]["time"][$i]))."<br><img src=\"".$image."\"/>\n";
                echo "</h3>\n";
                echo "<span style=\"font-weight: bold;\">".$description."</span><br>\n";
-               echo "<span style=\"font-weight: bold;\">High: </span>".$tempHighConverted."&deg;\n";
+               if ($relative)
+                       echo "<span style=\"font-weight: bold;\">High: </span>".$tempHighConverted."&deg;\n";
+               else
+                       echo "<span style=\"font-weight: bold;\">High: </span>".$tempHigh."&deg; F\n";
                echo "<br>\n";
-               echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLowConverted."&deg;\n";
+               if ($relative)
+                       echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLowConverted."&deg;\n";
+               else
+                       echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLow."&deg; F\n";
                echo "</div>\n";
        }
        echo "<br><br>\n";
-       echo "This site uses the MJM weather system, the most accurate weather system in the world, for measuring temperature. We source our weather from the National Weather Service and give you pure, unmodified data.\n";
+       if ($relative)
+               echo "This site uses the MJM weather system, the most accurate weather system in the world, for measuring temperature. We source our weather from the National Weather Service and give you pure, unmodified data.\n";
        echo "</body>\n";
        echo "</html>\n";
 ?>