-# 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)
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
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¤t=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°\n";
- else
- echo "<img src=\"".$image."\"/><br>".$description."<br>".$json["current"]["temperature_2m"]."° F\n";
+ echo "<img src=\"".$image."\"/><br>".$description."<br>".$json["current"]["temperature_2m"]."° 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."°\n";
- else
- echo "<span style=\"font-weight: bold;\">High: </span>".$tempHigh."° F\n";
+ echo "<span style=\"font-weight: bold;\">High: </span>".$tempHigh."° F\n";
echo "<br>\n";
- if ($relative)
- echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLowConverted."°\n";
- else
- echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLow."° F\n";
+ echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLow."° 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";
?>