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"];
- echo "<img src=\"".$image."\"/><br>".$description."<br>"."0°\n";
+ 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 "</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."°\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 "<br>\n";
- echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLowConverted."°\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 "</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";
?>