]> Stephen's Gitweb - reasonableweather.git/commitdiff
Add daily wind speed, precipitation probability, and precipitation sum
authorStephen Jianu <stephen@stephenjianu.com>
Sun, 23 Mar 2025 21:52:03 +0000 (16:52 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Sun, 23 Mar 2025 21:52:03 +0000 (16:52 -0500)
index.php

index de0a177cd144f60a04af53164f0fba88e89de142..49bdca17028c620124e72b20baaed8071eb66772 100644 (file)
--- a/index.php
+++ b/index.php
@@ -7,7 +7,7 @@
        echo "<body style=\"text-align: center;\">\n";
        echo "<h3>The current conditions in Park Ridge are:</h3>\n";
        echo "<h1>\n";
-       $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";
+       $url = "https://api.open-meteo.com/v1/forecast?latitude=42.0111&longitude=-87.8406&daily=temperature_2m_max,temperature_2m_min,weather_code,wind_speed_10m_max,precipitation_probability_max,precipitation_sum&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);
        $code = $json["current"]["weather_code"];
                $image = $jsonDescriptions[$code]["day"]["image"];
                $tempHigh = floor($json["daily"]["temperature_2m_max"][$i]);
                $tempLow = floor($json["daily"]["temperature_2m_min"][$i]);
-               echo "<div style=\"min-width: 10%; display: inline-block;\">\n";
+               $windSpeed = $json["daily"]["wind_speed_10m_max"][$i];
+               $precipProb = $json["daily"]["precipitation_probability_max"][$i];
+               $precipSum = $json["daily"]["precipitation_sum"][$i];
+               echo "<div style=\"min-width: 12%; 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;\">High: </span>".$tempHigh."&deg; F\n";
                echo "<br>\n";
                echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLow."&deg; F\n";
+               echo "<br>\n";
+               echo "<span style=\"font-weight: bold;\">Wind: </span>".$windSpeed." mph\n";
+               echo "<br>\n";
+               echo "<span style=\"font-weight: bold;\">Precip: </span>".$precipProb."%, ".$precipSum." in\n";
                echo "</div>\n";
        }
     echo "<br><br>\n";