Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define constants for the GeoNet NZ Volcano integration."""
2 
3 from datetime import timedelta
4 
5 from homeassistant.const import Platform
6 
7 DOMAIN = "geonetnz_volcano"
8 
9 FEED = "feed"
10 
11 ATTR_ACTIVITY = "activity"
12 ATTR_DISTANCE = "distance"
13 ATTR_EXTERNAL_ID = "external_id"
14 ATTR_HAZARDS = "hazards"
15 
16 # Icon alias "mdi:mountain" not working.
17 DEFAULT_ICON = "mdi:image-filter-hdr"
18 DEFAULT_RADIUS = 50.0
19 DEFAULT_SCAN_INTERVAL = timedelta(minutes=5)
20 
21 PLATFORMS = [Platform.SENSOR]
22 
23 IMPERIAL_UNITS = "imperial"
24 METRIC_UNITS = "metric"