Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.52 KB

sensor.swiss_hydrological_data.markdown

File metadata and controls

48 lines (37 loc) · 1.52 KB
layout title description date sidebar comments sharing footer ha_category ha_iot_class ha_release
page
Swiss Hydrological Data
Instructions how to integrate hydrological data of Swiss waters within Home Assistant.
2016-06-17 17:00
true
false
true
true
Sensor
Local Polling
0.22

The swiss_hydrological_data sensor will show you details (temperature, level, and discharge) of rivers and lakes in Switzerland.

The station overview contains a list of all available measuring points and will help to determine the ID of station which is needed for the configuration.

To enable this sensor, add the following lines to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  platform: swiss_hydrological_data
  name: Aare
  station: STATION_ID

Configuration variables:

  • name (Optional): Name to use in the frontend.
  • station (Required): The ID of the measurement point.

The hydrological measurings are coming from the Swiss Federal Office for the Environment (Bundesamt für Umwelt - Abt. Hydrologie) and are updated almost in real-time.

This sensor contains additional information which an easily accessed by a template sensor.

# Example configuration.yaml entry
sensor:
  platform: template
  sensors:
    discharge:
      value_template: '{% raw %}{{ states.sensor.aare.attributes.Discharge }}{% endraw %}'
      friendly_name: 'Discharge'