Page 3 of 3
Re: Trigger Event
Posted: Tue Sep 09, 2025 4:16 am
by davidmc36
Mattk wrote: Sat Sep 06, 2025 6:17 am
Then how about setting up an Email event at a Specific Time [18:00] with a Subj# Body something like
Frost Risk @
[[hh]:[mm]##if# {*(Condition1) && (Conditon2) && (Condition3)*} #then# Yes #else# No #fi#
I noticed on received emails there was a leading square brace before the time on subject line.
I removed the extra one.
Re: Trigger Event
Posted: Tue Sep 09, 2025 9:02 pm
by Mauricio
Thank you very much for the detail David, t's true, it came out with a square at the beginning.
Re: Trigger Event
Posted: Tue Sep 09, 2025 9:21 pm
by Mauricio
I'm thinking about setting up risk trigger events or forest fire early warnings perhaps thinking about the Australian MacArthur model (FFDI) or another model. Does anyone already have something set up that they could please point me to? Thanks
Re: Trigger Event
Posted: Tue Sep 09, 2025 11:03 pm
by davidmc36
All the data points can have selectors of daily max, monthly max, yearly max, or averages, or minimums.
With the basic template posted by Matt you could monitor every [your choice frequency] the accumulation of temp, rain, wind for example and set an alarm condition. Hot, no rain, lots of wind.....DING DING DING!
Check all the options:
https://www.meteobridge.com/wiki/index. ... =Templates
Re: Trigger Event
Posted: Fri Sep 12, 2025 11:35 pm
by davidmc36
I am using this to monitor if it is too sunny to be out:
Code: Select all
Sun Exposure @ [hh]:[mm]##if# {*([sol0rad-havg] >=150.0) && ([uv0index-havg] >=1.5) && ([sol0total-dmax=h] >=3.0)*} #then# Exposure High #else# Low Danger #fi#
I set it to check "before every 3rd full hour"
Seems fairly realistic.
Re: Trigger Event
Posted: Sat Sep 13, 2025 3:47 am
by Mattk
That would be appropriate if the check was "before every full hour", "before every 3rd full hour" and using -havg which is the average value of this hour then at every 3 hours you you are only looking at the past hour and if that is what you expect then all is good?
If you actually wanted the average for the 3 hour period "before every 3rd full hour" then you would have to do something different?
Re: Trigger Event
Posted: Sun Sep 14, 2025 3:52 am
by davidmc36
That's right. I check the most recent hour with this method. Every two hours is the next best choice. I have not decided which I like best.