]> Stephen's Gitweb - reasonableweather.git/commitdiff
Rebrand this fork as reasonableweather and remove relative functionality
authorStephen Jianu <stephen@stephenjianu.com>
Sun, 23 Mar 2025 21:09:03 +0000 (16:09 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Sun, 23 Mar 2025 21:09:03 +0000 (16:09 -0500)
README.md
index.php

index 0771df39790ebe5276c9a258d4619a43c49acde3..2027c4ec8849c25d15e3f28b1b4bda141b7da122 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-# relativeweather
-This is a simple joke website that pulls a 7 day forecast for Park Ridge, IL where every temperature is relative to the current temperature. It uses the Open-Meteo API.
+# reasonableweather
+This is a simple website that pulls a 7 day forecast for Park Ridge, IL. It uses the Open-Meteo API.
 
 ### Requirements
 * A web server (tested with Apache)
@@ -10,7 +10,7 @@ This is a simple joke website that pulls a 7 day forecast for Park Ridge, IL whe
 Instead of spinning up a web server with PHP yourself, you can opt to run the Docker container. Here is an example:
 
 ```
-docker run -d -p 6969:80 --restart=unless-stopped --name relativeweather registry.services.jianu.house/relativeweather
+docker run -d -p 6969:80 --restart=unless-stopped --name reasonableweather registry.services.jianu.house/reasonableweather
 ```
 
 ### Credits
index 523405455849d0d298d43711149657686ea50e69..e9304c392ae6658879ec83f64f552c990d57a891 100644 (file)
--- a/index.php
+++ b/index.php
@@ -7,7 +7,6 @@
        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"];
-       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 "<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"];
                $description = $jsonDescriptions[$code]["day"]["description"];
                $image = $jsonDescriptions[$code]["day"]["image"];
                $tempHigh = $json["daily"]["temperature_2m_max"][$i];
-               $tempHighConverted = $tempHigh - $tempNow;
                $tempLow = $json["daily"]["temperature_2m_min"][$i];
-               $tempLowConverted = $tempLow - $tempNow;
                echo "<div style=\"min-width: 10%; display: inline-block;\">\n";
                echo "<h3>\n";
                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";
-               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 "<span style=\"font-weight: bold;\">High: </span>".$tempHigh."&deg; F\n";
                echo "<br>\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 "<span style=\"font-weight: bold;\">Low: </span>".$tempLow."&deg; F\n";
                echo "</div>\n";
        }
-       echo "<br><br>\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 "<br><br>\n";
+    echo "<a href=\"https://open-meteo.com/\">Weather data by Open-Meteo.com</a>\n";
        echo "</body>\n";
        echo "</html>\n";
 ?>