@@ -30,7 +30,8 @@ npm install .
3030 },
3131 "timers" : {
3232 "blitzCollection" : 600000 , // how often should we aggregate thunder data for evaluation
33- "pollWeatherAlerts" : 600000 // how often should we download weather altert data
33+ "meteoAlerts" : 600000 , // how often should we download weather altert data
34+ "meteoAlerts" : 600000 // how often should we weather alterts checked
3435 },
3536 "blitzArea" : { // thunder reporting area. if there is storm detected inside, report it
3637 "minLat" : 47.51 ,
@@ -47,6 +48,30 @@ npm install .
4748 "SW" : " South-West" ,
4849 "W" : " West" ,
4950 "NW" : " North-West"
51+ },
52+ "meteoAlerts" : { // meteo alarm config sections
53+ "enabled" : true , // enables or disables meteo alarm
54+ "timeout" : 60 , // how long should the warning be muted after sending, in minutes
55+ "severityFilter" : [" severe" , " extreme" ], // severity levels which will be send
56+ "certaintyFilter" : [" likely" , " observed" ], // certainty levels which will be send
57+ "url" : " https://feeds.meteoalarm.org/feeds/meteoalarm-legacy-atom-slovakia" , // atom feed with warnings
58+ "regions" : [
59+ " Bratislava" // list of monitored regions/ areas
60+ ],
61+ "severity" : { // severity translations
62+ "unknown" : " Unknown" ,
63+ "minor" : " Minor" ,
64+ "moderate" : " Moderate" ,
65+ "severe" : " Severe" ,
66+ "extreme " : " Extreme"
67+ },
68+ "certainty" : { // ceverity translations
69+ "observed" : " Observed" ,
70+ "likely" : " Likely (> 50%)" ,
71+ "possible" : " Possible (<= 50%)" ,
72+ "unlikely" : " Unlikely (~ 0%)" ,
73+ "unknown" : " Unknown"
74+ }
5075 }
5176}
5277```
0 commit comments