|
|
|
@ -29,6 +29,7 @@ class Database:
|
|
|
|
AVG(wind_speed) as avg_wind_speed,
|
|
|
|
AVG(wind_speed) as avg_wind_speed,
|
|
|
|
GROUP_CONCAT(DISTINCT weather_description) as descriptions
|
|
|
|
GROUP_CONCAT(DISTINCT weather_description) as descriptions
|
|
|
|
FROM weather_forecast
|
|
|
|
FROM weather_forecast
|
|
|
|
|
|
|
|
WHERE DATE(utc) >= DATE(NOW())
|
|
|
|
GROUP BY DATE(utc)
|
|
|
|
GROUP BY DATE(utc)
|
|
|
|
ORDER BY date ASC
|
|
|
|
ORDER BY date ASC
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
|