]> Stephen's Gitweb - reasonableweather.git/commitdiff
Initial commit
authorStephen Jianu <stephen@stephenjianu.com>
Fri, 14 Mar 2025 22:31:53 +0000 (17:31 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Fri, 14 Mar 2025 22:31:53 +0000 (17:31 -0500)
index.php [new file with mode: 0644]

diff --git a/index.php b/index.php
new file mode 100644 (file)
index 0000000..04d0efc
--- /dev/null
+++ b/index.php
@@ -0,0 +1,23 @@
+<html>
+       <head>
+               <title>Weather in Park Ridge</title>
+       </head>
+       <body style="text-align: center;">
+               <h3>Today's temperature high in Park Ridge is:</h3>
+               <h1>
+                       0&deg;
+               </h1>
+               <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";
+                               $json = json_decode(file_get_contents($url), true);
+                               $tempToday = $json["daily"]["temperature_2m_max"][0];
+                               $tempTomorrow = $json["daily"]["temperature_2m_max"][1];
+                               $tempConverted = $tempTomorrow - $tempToday;
+                               echo $tempConverted."&deg;"
+                       ?>
+               </h1>
+               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.
+       </body>
+</html>