I would be interested in alerts when a particular value combination arises in the forecast.
The overall alert condition is a combination of several subexpressions.
let me lay out the idea by example:
given:
location1, location2, location3, time-of-day1, time-of-day2
maxtemp
if (temperature(location1, time-of-day1, surface) < maxtemp) AND
(wind(location1, time-of-day1, surface, IconEU) < 10km/h) AND
(wind(location2, time-of-day2, FL180, ECMWF) > 80 km/h) AND
(wind_direction(location2, time-of-day2,FL180, ECMWF) between 290 and 20 degrees)) AND
(wind(location3, time-of-day3, surface, IconEU) < 10km/h) AND
(temperature(location2, time-of-day1, surface) < maxtemp)
then
create alert("Alps crossing possible")
having this done once nightly looking into the future as far as models provide that would be super useful.
I admit the parameterization is complex and probably pushing the envelope for a mobile gui - it might be more productive to address the issue algorithmically (plugin idea!)
thanks for this great tool!