-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json
More file actions
81 lines (81 loc) · 1.82 KB
/
config.json
File metadata and controls
81 lines (81 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"port": "/dev/ttyACM0",
"weatherAlarm": "6:00",
"myPosition": {
"lat": 48.14,
"lon": 17.11
},
"channels": {
"alerts": "Public",
"weather": "Public"
},
"timers": {
"blitzCollection": 600000,
"pollWeatherAlerts": 600000,
"meteoAlerts": 600000
},
"blitzArea": {
"minLat": 47.51,
"minLon": 15.54,
"maxLat": 48.76,
"maxLon": 18.62
},
"compasNames": {
"N": "North",
"NE": "North-East",
"E": "East",
"SE": "South-East",
"S": "South",
"SW": "South-West",
"W": "West",
"NW": "North-West"
},
"meteoAlerts": {
"enabled": true,
"timeout": 180,
"severityFilter": [
"severe",
"extreme"
],
"certaintyFilter": [
"likely",
"observed"
],
"url": "https://feeds.meteoalarm.org/feeds/meteoalarm-legacy-atom-slovakia",
"regions": [
"Bratislava"
],
"messageTemplate": "{region} {start} - {end}\n{event}\nSeverity: {severity}, Certainty: {certainty}",
"severity": {
"unknown": "Unknown",
"minor": "Minor",
"moderate": "Moderate",
"severe": "Severe",
"extreme": "Extreme"
},
"certainty": {
"observed": "Observed",
"likely": "Likely (> 50%)",
"possible": "Possible (<= 50%)",
"unlikely": "Unlikely (~ 0%)",
"unknown": "Unknown"
},
"events": {
"wind": "Wind",
"snoworice": "Snow or Ice",
"thunderstorm": "Thunderstorm",
"fog": "Fog",
"hightemperature": "High Temperature",
"lowtemperature": "Low Temperature",
"coastalevent": "Coastal Event",
"forestfire": "Forest Fire",
"avalanche": "Avalanche",
"rain": "Rain",
"flood": "Flood ",
"rainflood": "Rain Flood",
"marinehazard": "Marine Hazard ",
"drought": "Drought ",
"icing": "Icing "
}
}
}