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¤t=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¤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);
$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."° F\n";
echo "<br>\n";
echo "<span style=\"font-weight: bold;\">Low: </span>".$tempLow."° 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";