Displaying the weather forecast with charts (OpenWeatherMap)

This tutorial is targeting openHAB 4.2 and newer. Whilst most things described here already work with openHAB 4.1, not everything here works at all or in the described way — please use openHAB 4.2 or newer!

openHAB 4.1 introduced support for sending time series to Items and persisting future states, which is especially useful for any type of forecast.

The OpenWeatherMap binding was one of the first bindings to support this new feature, and with openHAB 4.2 Main UI charts will be able to display future data:

This post will guide you through all required steps to get your own weather forecast charts.

Thing

First of all, you need to add the OpenWeatherMap OneCall Thing:

  1. Install the OpenWeatherMap binding.
  2. Add the OpenWeatherMap Account Thing. (You need an OpenWeatherMap account and setup payment details for the OneCall 3.0 API, but you can set a daily API call limit so you never have to pay. See OpenWeatherMap - Bindings | openHAB)
  3. If you have set your home location, the OneCall Weather and Forecast Thing will be added to the Thing Inbox.
  4. Accept it, and don‘t change the Thing UID.

Items

Add the following Items (either by using an .items file or in the UI: Developer Tools → Add Items from Textual Definition):

Required Items
Group                 gOWM_TimeSeries
// Hourly
Number:Temperature    OneCall_Forecast_Hourly_Temperature                             "Temperatur [%.1f °C]"                     <temperature>  (gOWM_TimeSeries)  {channel="openweathermap:onecall:bridge:local:forecastHourly#temperature"}
Number:Dimensionless  OneCall_Forecast_Hourly_Cloudiness                              "Bewölkung [%d %%]"                        <sun_clouds>   (gOWM_TimeSeries)  {channel="openweathermap:onecall:bridge:local:forecastHourly#cloudiness", unit="%"}
Number:Dimensionless  OneCall_Forecast_Hourly_PrecipitationProbability                "Niederschlagswahrscheinlichkeit [%d %%]"  <rain>         (gOWM_TimeSeries)  {channel="openweathermap:onecall:bridge:local:forecastHourly#precip-probability", unit="%"}
// Daily
Number:Temperature    OneCall_Forecast_Daily_MinTemperature                           "Min. Temperatur [%.1f °C]"                <temperature>  (gOWM_TimeSeries)  {channel="openweathermap:onecall:bridge:local:forecastDaily#min-temperature"}
Number:Temperature    OneCall_Forecast_Daily_MaxTemperature                           "Max. Temperatur [%.1f °C]"                <temperature>  (gOWM_TimeSeries)  {channel="openweathermap:onecall:bridge:local:forecastDaily#max-temperature"}
Number:Dimensionless  OneCall_Forecast_Daily_Cloudiness                               "Bewölkung [%d %%]"                        <sun_clouds>   (gOWM_TimeSeries)  {channel="openweathermap:onecall:bridge:local:forecastDaily#cloudiness", unit="%"}
Number:Dimensionless  OneCall_Forecast_Daily_PrecipitationProbability                 "Niederschlagswahrscheinlichkeit [%d %%]"  <rain>         (gOWM_TimeSeries)  {channel="openweathermap:onecall:bridge:local:forecastDaily#precip-probability", unit="%"}

Persistence

In theory you can use any persistence service with support for time series (e.g. InfluxDB, JDBC — RRD4J works not), but we will use the InMemory persistence service because of its simplicity.

  1. Install the InMemory Persistence add-on.
  2. Go to Settings → Persistence → Configure Persistence Policies: In Memory.
  3. Add a configuration: Select the gOWM_TimeSeries group and the forecast strategy.

Charts

Now you are finally ready to add the UI pages containing the charts:

Create a new chart page and set its Page ID to weather_forecast_hourly. Copy the following code to the code tab:

weather_forecast_hourly chart page code
config:
  future: true
  icon: f7:cloud_sun_rain_fill
  label: Wettervorhersage
  period: 2D
slots:
  dataZoom:
    - component: oh-chart-datazoom
      config:
        type: inside
  grid:
    - component: oh-chart-grid
      config:
        includeLabels: true
  legend:
    - component: oh-chart-legend
      config:
        bottom: 3
        type: scroll
  series:
    - component: oh-time-series
      config:
        color: "#ef5350"
        gridIndex: 0
        item: OneCall_Forecast_Hourly_Temperature
        markPoint:
          data:
            - name: min
              type: min
            - name: max
              type: max
          label:
            backgroundColor: auto
            formatter: =(params) => Number.parseFloat(params.value).toFixed(0) + ' °C'
          symbol: pin
          symbolSize: 60
        name: Temperatur (°C)
        service: inmemory
        type: line
        xAxisIndex: 0
        yAxisIndex: 0
    - component: oh-time-series
      config:
        areaStyle:
          opacity: 0.3
        color: "#42a5f5"
        gridIndex: 0
        item: OneCall_Forecast_Hourly_PrecipitationProbability
        name: Niederschlagswahrscheinlichkeit (%)
        service: inmemory
        type: line
        xAxisIndex: 0
        yAxisIndex: 1
    - component: oh-time-series
      config:
        areaStyle:
          opacity: 0.2
        color: "#bdbdbd"
        gridIndex: 0
        item: OneCall_Forecast_Hourly_Cloudiness
        name: Bewölkung (%)
        service: inmemory
        type: line
        xAxisIndex: 0
        yAxisIndex: 1
  tooltip:
    - component: oh-chart-tooltip
      config:
        confine: true
        snap: true
        valueFormatter: =(value) => value.replace(',', '').replace('.', ',')
  xAxis:
    - component: oh-time-axis
      config:
        gridIndex: 0
  yAxis:
    - component: oh-value-axis
      config:
        axisLabel:
          formatter: "{value} °C"
        gridIndex: 0
    - component: oh-value-axis
      config:
        axisLabel:
          formatter: "{value} %"
        gridIndex: 0
        max: "100"
        min: "0"

Create a new chart page and set its Page ID to weather_forecast_daily. Copy the following code to the code tab:

weather_forecast_daily chart page code
config:
  future: true
  icon: f7:cloud_sun_rain_fill
  label: Wettervorhersage
  period: W
slots:
  dataZoom:
    - component: oh-chart-datazoom
      config:
        type: inside
  grid:
    - component: oh-chart-grid
      config:
        includeLabels: true
  legend:
    - component: oh-chart-legend
      config:
        bottom: 3
        type: scroll
  series:
    - component: oh-time-series
      config:
        color: "#ef5350"
        gridIndex: 0
        item: OneCall_Forecast_Daily_MaxTemperature
        markPoint:
          data:
            - name: min
              type: min
            - name: max
              type: max
          label:
            backgroundColor: auto
            formatter: =(params) => Number.parseFloat(params.value).toFixed(0) + ' °C'
          symbol: pin
          symbolSize: 60
        name: Max. Temperatur (°C)
        service: inmemory
        type: line
        xAxisIndex: 0
        yAxisIndex: 0
    - component: oh-time-series
      config:
        color: "#ef5350"
        gridIndex: 0
        item: OneCall_Forecast_Daily_MinTemperature
        markPoint:
          data:
            - name: min
              type: min
            - name: max
              type: max
          label:
            backgroundColor: auto
            formatter: =(params) => Number.parseFloat(params.value).toFixed(0) + ' °C'
          symbol: pin
          symbolSize: 60
        name: Min. Temperatur (°C)
        service: inmemory
        type: line
        xAxisIndex: 0
        yAxisIndex: 0
    - component: oh-time-series
      config:
        areaStyle:
          opacity: 0.3
        color: "#42a5f5"
        gridIndex: 0
        item: OneCall_Forecast_Daily_PrecipitationProbability
        name: Niederschlagswahrscheinlichkeit (%)
        service: inmemory
        type: line
        xAxisIndex: 0
        yAxisIndex: 1
    - component: oh-time-series
      config:
        areaStyle:
          opacity: 0.2
        color: "#bdbdbd"
        gridIndex: 0
        item: OneCall_Forecast_Daily_Cloudiness
        name: Bewölkung (%)
        service: inmemory
        type: line
        xAxisIndex: 0
        yAxisIndex: 1
  tooltip:
    - component: oh-chart-tooltip
      config:
        confine: true
        snap: true
        valueFormatter: =(value) => value.replace(',', '').replace('.', ',')
  xAxis:
    - component: oh-time-axis
      config:
        gridIndex: 0
  yAxis:
    - component: oh-value-axis
      config:
        axisLabel:
          formatter: "{value} °C"
        gridIndex: 0
    - component: oh-value-axis
      config:
        axisLabel:
          formatter: "{value} %"
        gridIndex: 0
        max: "100"
        min: "0"

Create a new tabbed page.
Copy the following code to the code tab:

Tabbed page code
config:
  icon: f7:cloud_sun_rain_fill
  label: Wettervorhersage
tabs:
  - component: oh-tab
    config:
      icon: f7:calendar_today
      page: page:weather_forecast_hourly
      title: Stündlich
    slots:
      default: []
  - component: oh-tab
    config:
      icon: f7:calendar
      page: page:weather_forecast_daily
      title: Täglich
    slots:
      default: []

Feel free to modify all labels to match your language.
In case your country used . as decimal point (in Germany we use ,), just remove valueFormatter from the oh-chart-tooltip component of the chart pages.

/cc @rlkoshak @stefan.hoehn @JustinG @J-N-K @ysc

14 Likes

Great Job @florian-h05 and everyone who made this possible and thanks for writing the tutorial!

1 Like

Hey,

Thanks for the tutorial and also your work with the code…

I have weather station and also saving the values in mariadb …Is it possible to use for the history my own values and for the future the open weather map ones?

Thanks for the tutorial.
Just in case, the charts in 4.1(.2 in my case) also support forecasted data, it’s just that the default is to display data up to the present, so we have to manually advance the time range to see the forecasted data.

Sure, just add your own measurement as a series, and you will be able to browse its history.

I know :wink:
However is it really annoying if you want to display a forecast and always have to select the timerange yourself …

Hi @florian-h05, thank you very much for the tutorial!
Because I was just setting up my new OH 4.2 and was very eager to create all owm items for forecast by hand, this seems to be a very efficient method. So I gave it a try, unfortunately I ran in a problem: At the end of the creation process of the items, I get always an error message: “Bad Request”. The items then are created, but all show “NULL” and are not linked to any channels. If I want to link them manually the One Call API Thing doens’t provid any channels.

Hopefully you can help and give me a hint where to look at?

Can you please share the code tab of your One Call API Thing? Please don‘t forget to remove your API token before showing it though …

Sure, I did not adapt anything, just added it via UI.
Since you are mentioning the API token, in the One Call API thin only location is added as information. The API token is only availble in the owm account thing.

Thank you very much in advance!

Summary

UID: openweathermap:onecall:395fbb9c45:local
label: One Call API - Lokales Wetter und Wettervorhersage
thingTypeUID: openweathermap:onecall
configuration:
numberOfAlerts: 0
location: xxx,yyyy
forecastHours: 12
forecastDays: 6
forecastMinutes: 0
bridgeUID: openweathermap:weather-api:401e2b3c50
channels:

  • id: current#time-stamp
    channelTypeUID: openweathermap:time-stamp
    label: Letzte Messung
    description: Zeigt den Zeitpunkt der letzten Messung an.
    configuration: {}
  • id: current#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: current#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: current#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: current#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: current#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: current#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: current#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: current#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: current#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: current#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: current#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: current#uvindex
    channelTypeUID: openweathermap:uvindex
    label: UV-Index
    description: Zeigt den aktuellen UV-Index an.
    configuration: {}
  • id: current#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: current#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: current#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: current#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: current#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: current#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: current#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastMinutely#precipitation
    channelTypeUID: openweathermap:precipitation
    label: Niederschlag
    description: Zeigt die kumulierte Niederschlagmenge an.
    configuration: {}
  • id: forecastHourly#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHourly#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHourly#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHourly#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHourly#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHourly#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHourly#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHourly#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHourly#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHourly#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHourly#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHourly#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHourly#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHourly#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHourly#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHourly#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHourly#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours01#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours01#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours01#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours01#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours01#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours01#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours01#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours01#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours01#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours01#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours01#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours01#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours01#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours01#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours01#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours01#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours01#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours01#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours02#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours02#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours02#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours02#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours02#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours02#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours02#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours02#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours02#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours02#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours02#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours02#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours02#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours02#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours02#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours02#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours02#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours02#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours03#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours03#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours03#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours03#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours03#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours03#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours03#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours03#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours03#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours03#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours03#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours03#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours03#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours03#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours03#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours03#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours03#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours03#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours04#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours04#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours04#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours04#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours04#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours04#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours04#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours04#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours04#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours04#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours04#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours04#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours04#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours04#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours04#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours04#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours04#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours04#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours05#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours05#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours05#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours05#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours05#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours05#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours05#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours05#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours05#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours05#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours05#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours05#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours05#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours05#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours05#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours05#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours05#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours05#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours06#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours06#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours06#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours06#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours06#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours06#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours06#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours06#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours06#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours06#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours06#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours06#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours06#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours06#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours06#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours06#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours06#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours06#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours07#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours07#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours07#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours07#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours07#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours07#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours07#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours07#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours07#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours07#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours07#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours07#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours07#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours07#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours07#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours07#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours07#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours07#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours08#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours08#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours08#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours08#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours08#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours08#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours08#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours08#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours08#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours08#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours08#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours08#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours08#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours08#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours08#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours08#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours08#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours08#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours09#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours09#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours09#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours09#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours09#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours09#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours09#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours09#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours09#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours09#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours09#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours09#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours09#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours09#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours09#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours09#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours09#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours09#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours10#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours10#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours10#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours10#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours10#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours10#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours10#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours10#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours10#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours10#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours10#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours10#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours10#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours10#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours10#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours10#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours10#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours10#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours11#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours11#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours11#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours11#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours11#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours11#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours11#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours11#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours11#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours11#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours11#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours11#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours11#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours11#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours11#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours11#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours11#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours11#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastHours12#time-stamp
    channelTypeUID: openweathermap:hourly-forecast-time-stamp
    label: Vorhersage Zeit
    description: Zeigt den Zeitpunkt der Vorhersage an.
    configuration: {}
  • id: forecastHours12#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastHours12#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastHours12#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours12#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastHours12#temperature
    channelTypeUID: system:outdoor-temperature
    label: Außentemperatur
    description: Zeigt die aktuelle Außentemperatur an.
    configuration: {}
  • id: forecastHours12#apparent-temperature
    channelTypeUID: openweathermap:apparent-temperature
    label: Gefühlte Temperatur
    description: Zeigt die gefühlte Außentemperatur an.
    configuration: {}
  • id: forecastHours12#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastHours12#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastHours12#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastHours12#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastHours12#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastHours12#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastHours12#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastHours12#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastHours12#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastHours12#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastHours12#visibility
    channelTypeUID: openweathermap:visibility
    label: Sichtweite
    description: Zeigt die aktuelle Sichtweite an.
    configuration: {}
  • id: forecastDaily#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: forecastDaily#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: forecastDaily#moonrise
    channelTypeUID: openweathermap:moonrise
    label: Moonrise Time
    description: Time of moonrise for the given day.
    configuration: {}
  • id: forecastDaily#moonset
    channelTypeUID: openweathermap:moonset
    label: Moonset Time
    description: Time of moonset for the given day.
    configuration: {}
  • id: forecastDaily#moon-phase
    channelTypeUID: openweathermap:moon-phase
    label: Moon Phase
    description: Moon phase for the given day. 0 and 1 are ‘new moon’, 0.25 is
    ‘first quarter moon’, 0.5 is ‘full moon’ and 0.75 is ‘last quarter moon’.
    The periods in between are called ‘waxing crescent’, ‘waxing gibous’,
    ‘waning gibous’, and ‘waning crescent’, respectively.
    configuration: {}
  • id: forecastDaily#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastDaily#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastDaily#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDaily#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDaily#morning-temperature
    channelTypeUID: openweathermap:morning-temperature
    label: Temperatur am Morgen
    description: Zeigt die vorhergesagte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDaily#day-temperature
    channelTypeUID: openweathermap:day-temperature
    label: Temperatur am Tag
    description: Zeigt die vorhergesagte Temperatur am Tag an.
    configuration: {}
  • id: forecastDaily#evening-temperature
    channelTypeUID: openweathermap:evening-temperature
    label: Temperatur am Abend
    description: Prognostizierte Außentemperatur für den Abend.
    configuration: {}
  • id: forecastDaily#night-temperature
    channelTypeUID: openweathermap:night-temperature
    label: Temperatur in der Nacht
    description: Zeigt die vorhergesagte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDaily#min-temperature
    channelTypeUID: openweathermap:forecasted-min-outdoor-temperature
    label: Minimale Temperatur
    description: Zeigt die vorhergesagte minimale Außentemperatur an.
    configuration: {}
  • id: forecastDaily#max-temperature
    channelTypeUID: openweathermap:forecasted-max-outdoor-temperature
    label: Maximale Temperatur
    description: Zeigt die vorhergesagte maximale Außentemperatur an.
    configuration: {}
  • id: forecastDaily#apparent-morning
    channelTypeUID: openweathermap:apparent-morning
    label: Gefühlte Temperatur am Morgen
    description: Zeigt die gefühlte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDaily#apparent-day
    channelTypeUID: openweathermap:apparent-day
    label: Gefühlte Temperatur am Tag
    description: Zeigt die gefühlte Temperatur am Tag an.
    configuration: {}
  • id: forecastDaily#apparent-evening
    channelTypeUID: openweathermap:apparent-evening
    label: Gefühlte Temperatur am Abend
    description: Zeigt die gefühlte Temperatur am Abend an.
    configuration: {}
  • id: forecastDaily#apparent-night
    channelTypeUID: openweathermap:apparent-night
    label: Gefühlte Temperatur in der Nacht
    description: Zeigt die gefühlte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDaily#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastDaily#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastDaily#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastDaily#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastDaily#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastDaily#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastDaily#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastDaily#uvindex
    channelTypeUID: openweathermap:forecasted-uvindex
    label: Vorhergesagter UV-Index
    description: Zeigt den vorhergesagten UV-Index an.
    configuration: {}
  • id: forecastDaily#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastDaily#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastDaily#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastToday#time-stamp
    channelTypeUID: openweathermap:daily-forecast-time-stamp
    label: Vorhersage Datum
    description: Zeigt das Datum der Vorhersage an.
    configuration: {}
  • id: forecastToday#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: forecastToday#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: forecastToday#moonrise
    channelTypeUID: openweathermap:moonrise
    label: Moonrise Time
    description: Time of moonrise for the given day.
    configuration: {}
  • id: forecastToday#moonset
    channelTypeUID: openweathermap:moonset
    label: Moonset Time
    description: Time of moonset for the given day.
    configuration: {}
  • id: forecastToday#moon-phase
    channelTypeUID: openweathermap:moon-phase
    label: Moon Phase
    description: Moon phase for the given day. 0 and 1 are ‘new moon’, 0.25 is
    ‘first quarter moon’, 0.5 is ‘full moon’ and 0.75 is ‘last quarter moon’.
    The periods in between are called ‘waxing crescent’, ‘waxing gibous’,
    ‘waning gibous’, and ‘waning crescent’, respectively.
    configuration: {}
  • id: forecastToday#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastToday#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastToday#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastToday#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastToday#morning-temperature
    channelTypeUID: openweathermap:morning-temperature
    label: Temperatur am Morgen
    description: Zeigt die vorhergesagte Temperatur am Morgen an.
    configuration: {}
  • id: forecastToday#day-temperature
    channelTypeUID: openweathermap:day-temperature
    label: Temperatur am Tag
    description: Zeigt die vorhergesagte Temperatur am Tag an.
    configuration: {}
  • id: forecastToday#evening-temperature
    channelTypeUID: openweathermap:evening-temperature
    label: Temperatur am Abend
    description: Prognostizierte Außentemperatur für den Abend.
    configuration: {}
  • id: forecastToday#night-temperature
    channelTypeUID: openweathermap:night-temperature
    label: Temperatur in der Nacht
    description: Zeigt die vorhergesagte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastToday#min-temperature
    channelTypeUID: openweathermap:forecasted-min-outdoor-temperature
    label: Minimale Temperatur
    description: Zeigt die vorhergesagte minimale Außentemperatur an.
    configuration: {}
  • id: forecastToday#max-temperature
    channelTypeUID: openweathermap:forecasted-max-outdoor-temperature
    label: Maximale Temperatur
    description: Zeigt die vorhergesagte maximale Außentemperatur an.
    configuration: {}
  • id: forecastToday#apparent-morning
    channelTypeUID: openweathermap:apparent-morning
    label: Gefühlte Temperatur am Morgen
    description: Zeigt die gefühlte Temperatur am Morgen an.
    configuration: {}
  • id: forecastToday#apparent-day
    channelTypeUID: openweathermap:apparent-day
    label: Gefühlte Temperatur am Tag
    description: Zeigt die gefühlte Temperatur am Tag an.
    configuration: {}
  • id: forecastToday#apparent-evening
    channelTypeUID: openweathermap:apparent-evening
    label: Gefühlte Temperatur am Abend
    description: Zeigt die gefühlte Temperatur am Abend an.
    configuration: {}
  • id: forecastToday#apparent-night
    channelTypeUID: openweathermap:apparent-night
    label: Gefühlte Temperatur in der Nacht
    description: Zeigt die gefühlte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastToday#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastToday#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastToday#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastToday#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastToday#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastToday#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastToday#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastToday#uvindex
    channelTypeUID: openweathermap:forecasted-uvindex
    label: Vorhergesagter UV-Index
    description: Zeigt den vorhergesagten UV-Index an.
    configuration: {}
  • id: forecastToday#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastToday#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastToday#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastTomorrow#time-stamp
    channelTypeUID: openweathermap:daily-forecast-time-stamp
    label: Vorhersage Datum
    description: Zeigt das Datum der Vorhersage an.
    configuration: {}
  • id: forecastTomorrow#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: forecastTomorrow#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: forecastTomorrow#moonrise
    channelTypeUID: openweathermap:moonrise
    label: Moonrise Time
    description: Time of moonrise for the given day.
    configuration: {}
  • id: forecastTomorrow#moonset
    channelTypeUID: openweathermap:moonset
    label: Moonset Time
    description: Time of moonset for the given day.
    configuration: {}
  • id: forecastTomorrow#moon-phase
    channelTypeUID: openweathermap:moon-phase
    label: Moon Phase
    description: Moon phase for the given day. 0 and 1 are ‘new moon’, 0.25 is
    ‘first quarter moon’, 0.5 is ‘full moon’ and 0.75 is ‘last quarter moon’.
    The periods in between are called ‘waxing crescent’, ‘waxing gibous’,
    ‘waning gibous’, and ‘waning crescent’, respectively.
    configuration: {}
  • id: forecastTomorrow#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastTomorrow#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastTomorrow#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastTomorrow#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastTomorrow#morning-temperature
    channelTypeUID: openweathermap:morning-temperature
    label: Temperatur am Morgen
    description: Zeigt die vorhergesagte Temperatur am Morgen an.
    configuration: {}
  • id: forecastTomorrow#day-temperature
    channelTypeUID: openweathermap:day-temperature
    label: Temperatur am Tag
    description: Zeigt die vorhergesagte Temperatur am Tag an.
    configuration: {}
  • id: forecastTomorrow#evening-temperature
    channelTypeUID: openweathermap:evening-temperature
    label: Temperatur am Abend
    description: Prognostizierte Außentemperatur für den Abend.
    configuration: {}
  • id: forecastTomorrow#night-temperature
    channelTypeUID: openweathermap:night-temperature
    label: Temperatur in der Nacht
    description: Zeigt die vorhergesagte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastTomorrow#min-temperature
    channelTypeUID: openweathermap:forecasted-min-outdoor-temperature
    label: Minimale Temperatur
    description: Zeigt die vorhergesagte minimale Außentemperatur an.
    configuration: {}
  • id: forecastTomorrow#max-temperature
    channelTypeUID: openweathermap:forecasted-max-outdoor-temperature
    label: Maximale Temperatur
    description: Zeigt die vorhergesagte maximale Außentemperatur an.
    configuration: {}
  • id: forecastTomorrow#apparent-morning
    channelTypeUID: openweathermap:apparent-morning
    label: Gefühlte Temperatur am Morgen
    description: Zeigt die gefühlte Temperatur am Morgen an.
    configuration: {}
  • id: forecastTomorrow#apparent-day
    channelTypeUID: openweathermap:apparent-day
    label: Gefühlte Temperatur am Tag
    description: Zeigt die gefühlte Temperatur am Tag an.
    configuration: {}
  • id: forecastTomorrow#apparent-evening
    channelTypeUID: openweathermap:apparent-evening
    label: Gefühlte Temperatur am Abend
    description: Zeigt die gefühlte Temperatur am Abend an.
    configuration: {}
  • id: forecastTomorrow#apparent-night
    channelTypeUID: openweathermap:apparent-night
    label: Gefühlte Temperatur in der Nacht
    description: Zeigt die gefühlte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastTomorrow#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastTomorrow#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastTomorrow#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastTomorrow#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastTomorrow#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastTomorrow#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastTomorrow#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastTomorrow#uvindex
    channelTypeUID: openweathermap:forecasted-uvindex
    label: Vorhergesagter UV-Index
    description: Zeigt den vorhergesagten UV-Index an.
    configuration: {}
  • id: forecastTomorrow#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastTomorrow#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastTomorrow#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastDay2#time-stamp
    channelTypeUID: openweathermap:daily-forecast-time-stamp
    label: Vorhersage Datum
    description: Zeigt das Datum der Vorhersage an.
    configuration: {}
  • id: forecastDay2#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: forecastDay2#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: forecastDay2#moonrise
    channelTypeUID: openweathermap:moonrise
    label: Moonrise Time
    description: Time of moonrise for the given day.
    configuration: {}
  • id: forecastDay2#moonset
    channelTypeUID: openweathermap:moonset
    label: Moonset Time
    description: Time of moonset for the given day.
    configuration: {}
  • id: forecastDay2#moon-phase
    channelTypeUID: openweathermap:moon-phase
    label: Moon Phase
    description: Moon phase for the given day. 0 and 1 are ‘new moon’, 0.25 is
    ‘first quarter moon’, 0.5 is ‘full moon’ and 0.75 is ‘last quarter moon’.
    The periods in between are called ‘waxing crescent’, ‘waxing gibous’,
    ‘waning gibous’, and ‘waning crescent’, respectively.
    configuration: {}
  • id: forecastDay2#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastDay2#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastDay2#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay2#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay2#morning-temperature
    channelTypeUID: openweathermap:morning-temperature
    label: Temperatur am Morgen
    description: Zeigt die vorhergesagte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay2#day-temperature
    channelTypeUID: openweathermap:day-temperature
    label: Temperatur am Tag
    description: Zeigt die vorhergesagte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay2#evening-temperature
    channelTypeUID: openweathermap:evening-temperature
    label: Temperatur am Abend
    description: Prognostizierte Außentemperatur für den Abend.
    configuration: {}
  • id: forecastDay2#night-temperature
    channelTypeUID: openweathermap:night-temperature
    label: Temperatur in der Nacht
    description: Zeigt die vorhergesagte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay2#min-temperature
    channelTypeUID: openweathermap:forecasted-min-outdoor-temperature
    label: Minimale Temperatur
    description: Zeigt die vorhergesagte minimale Außentemperatur an.
    configuration: {}
  • id: forecastDay2#max-temperature
    channelTypeUID: openweathermap:forecasted-max-outdoor-temperature
    label: Maximale Temperatur
    description: Zeigt die vorhergesagte maximale Außentemperatur an.
    configuration: {}
  • id: forecastDay2#apparent-morning
    channelTypeUID: openweathermap:apparent-morning
    label: Gefühlte Temperatur am Morgen
    description: Zeigt die gefühlte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay2#apparent-day
    channelTypeUID: openweathermap:apparent-day
    label: Gefühlte Temperatur am Tag
    description: Zeigt die gefühlte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay2#apparent-evening
    channelTypeUID: openweathermap:apparent-evening
    label: Gefühlte Temperatur am Abend
    description: Zeigt die gefühlte Temperatur am Abend an.
    configuration: {}
  • id: forecastDay2#apparent-night
    channelTypeUID: openweathermap:apparent-night
    label: Gefühlte Temperatur in der Nacht
    description: Zeigt die gefühlte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay2#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastDay2#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastDay2#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastDay2#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastDay2#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastDay2#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastDay2#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastDay2#uvindex
    channelTypeUID: openweathermap:forecasted-uvindex
    label: Vorhergesagter UV-Index
    description: Zeigt den vorhergesagten UV-Index an.
    configuration: {}
  • id: forecastDay2#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastDay2#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastDay2#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastDay3#time-stamp
    channelTypeUID: openweathermap:daily-forecast-time-stamp
    label: Vorhersage Datum
    description: Zeigt das Datum der Vorhersage an.
    configuration: {}
  • id: forecastDay3#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: forecastDay3#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: forecastDay3#moonrise
    channelTypeUID: openweathermap:moonrise
    label: Moonrise Time
    description: Time of moonrise for the given day.
    configuration: {}
  • id: forecastDay3#moonset
    channelTypeUID: openweathermap:moonset
    label: Moonset Time
    description: Time of moonset for the given day.
    configuration: {}
  • id: forecastDay3#moon-phase
    channelTypeUID: openweathermap:moon-phase
    label: Moon Phase
    description: Moon phase for the given day. 0 and 1 are ‘new moon’, 0.25 is
    ‘first quarter moon’, 0.5 is ‘full moon’ and 0.75 is ‘last quarter moon’.
    The periods in between are called ‘waxing crescent’, ‘waxing gibous’,
    ‘waning gibous’, and ‘waning crescent’, respectively.
    configuration: {}
  • id: forecastDay3#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastDay3#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastDay3#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay3#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay3#morning-temperature
    channelTypeUID: openweathermap:morning-temperature
    label: Temperatur am Morgen
    description: Zeigt die vorhergesagte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay3#day-temperature
    channelTypeUID: openweathermap:day-temperature
    label: Temperatur am Tag
    description: Zeigt die vorhergesagte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay3#evening-temperature
    channelTypeUID: openweathermap:evening-temperature
    label: Temperatur am Abend
    description: Prognostizierte Außentemperatur für den Abend.
    configuration: {}
  • id: forecastDay3#night-temperature
    channelTypeUID: openweathermap:night-temperature
    label: Temperatur in der Nacht
    description: Zeigt die vorhergesagte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay3#min-temperature
    channelTypeUID: openweathermap:forecasted-min-outdoor-temperature
    label: Minimale Temperatur
    description: Zeigt die vorhergesagte minimale Außentemperatur an.
    configuration: {}
  • id: forecastDay3#max-temperature
    channelTypeUID: openweathermap:forecasted-max-outdoor-temperature
    label: Maximale Temperatur
    description: Zeigt die vorhergesagte maximale Außentemperatur an.
    configuration: {}
  • id: forecastDay3#apparent-morning
    channelTypeUID: openweathermap:apparent-morning
    label: Gefühlte Temperatur am Morgen
    description: Zeigt die gefühlte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay3#apparent-day
    channelTypeUID: openweathermap:apparent-day
    label: Gefühlte Temperatur am Tag
    description: Zeigt die gefühlte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay3#apparent-evening
    channelTypeUID: openweathermap:apparent-evening
    label: Gefühlte Temperatur am Abend
    description: Zeigt die gefühlte Temperatur am Abend an.
    configuration: {}
  • id: forecastDay3#apparent-night
    channelTypeUID: openweathermap:apparent-night
    label: Gefühlte Temperatur in der Nacht
    description: Zeigt die gefühlte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay3#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastDay3#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastDay3#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastDay3#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastDay3#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastDay3#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastDay3#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastDay3#uvindex
    channelTypeUID: openweathermap:forecasted-uvindex
    label: Vorhergesagter UV-Index
    description: Zeigt den vorhergesagten UV-Index an.
    configuration: {}
  • id: forecastDay3#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastDay3#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastDay3#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastDay4#time-stamp
    channelTypeUID: openweathermap:daily-forecast-time-stamp
    label: Vorhersage Datum
    description: Zeigt das Datum der Vorhersage an.
    configuration: {}
  • id: forecastDay4#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: forecastDay4#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: forecastDay4#moonrise
    channelTypeUID: openweathermap:moonrise
    label: Moonrise Time
    description: Time of moonrise for the given day.
    configuration: {}
  • id: forecastDay4#moonset
    channelTypeUID: openweathermap:moonset
    label: Moonset Time
    description: Time of moonset for the given day.
    configuration: {}
  • id: forecastDay4#moon-phase
    channelTypeUID: openweathermap:moon-phase
    label: Moon Phase
    description: Moon phase for the given day. 0 and 1 are ‘new moon’, 0.25 is
    ‘first quarter moon’, 0.5 is ‘full moon’ and 0.75 is ‘last quarter moon’.
    The periods in between are called ‘waxing crescent’, ‘waxing gibous’,
    ‘waning gibous’, and ‘waning crescent’, respectively.
    configuration: {}
  • id: forecastDay4#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastDay4#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastDay4#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay4#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay4#morning-temperature
    channelTypeUID: openweathermap:morning-temperature
    label: Temperatur am Morgen
    description: Zeigt die vorhergesagte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay4#day-temperature
    channelTypeUID: openweathermap:day-temperature
    label: Temperatur am Tag
    description: Zeigt die vorhergesagte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay4#evening-temperature
    channelTypeUID: openweathermap:evening-temperature
    label: Temperatur am Abend
    description: Prognostizierte Außentemperatur für den Abend.
    configuration: {}
  • id: forecastDay4#night-temperature
    channelTypeUID: openweathermap:night-temperature
    label: Temperatur in der Nacht
    description: Zeigt die vorhergesagte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay4#min-temperature
    channelTypeUID: openweathermap:forecasted-min-outdoor-temperature
    label: Minimale Temperatur
    description: Zeigt die vorhergesagte minimale Außentemperatur an.
    configuration: {}
  • id: forecastDay4#max-temperature
    channelTypeUID: openweathermap:forecasted-max-outdoor-temperature
    label: Maximale Temperatur
    description: Zeigt die vorhergesagte maximale Außentemperatur an.
    configuration: {}
  • id: forecastDay4#apparent-morning
    channelTypeUID: openweathermap:apparent-morning
    label: Gefühlte Temperatur am Morgen
    description: Zeigt die gefühlte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay4#apparent-day
    channelTypeUID: openweathermap:apparent-day
    label: Gefühlte Temperatur am Tag
    description: Zeigt die gefühlte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay4#apparent-evening
    channelTypeUID: openweathermap:apparent-evening
    label: Gefühlte Temperatur am Abend
    description: Zeigt die gefühlte Temperatur am Abend an.
    configuration: {}
  • id: forecastDay4#apparent-night
    channelTypeUID: openweathermap:apparent-night
    label: Gefühlte Temperatur in der Nacht
    description: Zeigt die gefühlte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay4#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastDay4#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastDay4#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastDay4#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastDay4#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastDay4#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastDay4#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastDay4#uvindex
    channelTypeUID: openweathermap:forecasted-uvindex
    label: Vorhergesagter UV-Index
    description: Zeigt den vorhergesagten UV-Index an.
    configuration: {}
  • id: forecastDay4#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastDay4#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastDay4#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}
  • id: forecastDay5#time-stamp
    channelTypeUID: openweathermap:daily-forecast-time-stamp
    label: Vorhersage Datum
    description: Zeigt das Datum der Vorhersage an.
    configuration: {}
  • id: forecastDay5#sunrise
    channelTypeUID: openweathermap:sunrise
    label: Sonnenaufgang
    description: Zeigt den Zeitpunkt des Sonnenaufgangs an.
    configuration: {}
  • id: forecastDay5#sunset
    channelTypeUID: openweathermap:sunset
    label: Sonnenuntergang
    description: Zeigt den Zeitpunkt des Sonnenuntergangs an.
    configuration: {}
  • id: forecastDay5#moonrise
    channelTypeUID: openweathermap:moonrise
    label: Moonrise Time
    description: Time of moonrise for the given day.
    configuration: {}
  • id: forecastDay5#moonset
    channelTypeUID: openweathermap:moonset
    label: Moonset Time
    description: Time of moonset for the given day.
    configuration: {}
  • id: forecastDay5#moon-phase
    channelTypeUID: openweathermap:moon-phase
    label: Moon Phase
    description: Moon phase for the given day. 0 and 1 are ‘new moon’, 0.25 is
    ‘first quarter moon’, 0.5 is ‘full moon’ and 0.75 is ‘last quarter moon’.
    The periods in between are called ‘waxing crescent’, ‘waxing gibous’,
    ‘waning gibous’, and ‘waning crescent’, respectively.
    configuration: {}
  • id: forecastDay5#condition
    channelTypeUID: openweathermap:condition
    label: Wetterlage
    description: Zeigt die aktuelle Wetterlage an.
    configuration: {}
  • id: forecastDay5#condition-id
    channelTypeUID: openweathermap:condition-id
    label: Wetterlage-ID
    description: Zeigt die ID der Wetterlage an.
    configuration: {}
  • id: forecastDay5#icon
    channelTypeUID: openweathermap:condition-icon
    label: Icon
    description: Zeigt das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay5#icon-id
    channelTypeUID: openweathermap:condition-icon-id
    label: Icon-ID
    description: Zeigt die ID für das Icon der Wetterlage an.
    configuration: {}
  • id: forecastDay5#morning-temperature
    channelTypeUID: openweathermap:morning-temperature
    label: Temperatur am Morgen
    description: Zeigt die vorhergesagte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay5#day-temperature
    channelTypeUID: openweathermap:day-temperature
    label: Temperatur am Tag
    description: Zeigt die vorhergesagte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay5#evening-temperature
    channelTypeUID: openweathermap:evening-temperature
    label: Temperatur am Abend
    description: Prognostizierte Außentemperatur für den Abend.
    configuration: {}
  • id: forecastDay5#night-temperature
    channelTypeUID: openweathermap:night-temperature
    label: Temperatur in der Nacht
    description: Zeigt die vorhergesagte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay5#min-temperature
    channelTypeUID: openweathermap:forecasted-min-outdoor-temperature
    label: Minimale Temperatur
    description: Zeigt die vorhergesagte minimale Außentemperatur an.
    configuration: {}
  • id: forecastDay5#max-temperature
    channelTypeUID: openweathermap:forecasted-max-outdoor-temperature
    label: Maximale Temperatur
    description: Zeigt die vorhergesagte maximale Außentemperatur an.
    configuration: {}
  • id: forecastDay5#apparent-morning
    channelTypeUID: openweathermap:apparent-morning
    label: Gefühlte Temperatur am Morgen
    description: Zeigt die gefühlte Temperatur am Morgen an.
    configuration: {}
  • id: forecastDay5#apparent-day
    channelTypeUID: openweathermap:apparent-day
    label: Gefühlte Temperatur am Tag
    description: Zeigt die gefühlte Temperatur am Tag an.
    configuration: {}
  • id: forecastDay5#apparent-evening
    channelTypeUID: openweathermap:apparent-evening
    label: Gefühlte Temperatur am Abend
    description: Zeigt die gefühlte Temperatur am Abend an.
    configuration: {}
  • id: forecastDay5#apparent-night
    channelTypeUID: openweathermap:apparent-night
    label: Gefühlte Temperatur in der Nacht
    description: Zeigt die gefühlte Temperatur in der Nacht an.
    configuration: {}
  • id: forecastDay5#pressure
    channelTypeUID: system:barometric-pressure
    label: Luftdruck
    description: Zeigt den aktuellen Luftdruck an.
    configuration: {}
  • id: forecastDay5#humidity
    channelTypeUID: system:atmospheric-humidity
    label: Luftfeuchtigkeit
    description: Zeigt die aktuelle atmosphärische relative Luftfeuchtigkeit an.
    configuration: {}
  • id: forecastDay5#dew-point
    channelTypeUID: openweathermap:dew-point
    label: Taupunkttemperatur
    description: Zeigt die vorhergesagte Taupunkttemperatur an.
    configuration: {}
  • id: forecastDay5#wind-speed
    channelTypeUID: system:wind-speed
    label: Windgeschwindigkeit
    description: Zeigt die aktuelle Windgeschwindigkeit an.
    configuration: {}
  • id: forecastDay5#wind-direction
    channelTypeUID: system:wind-direction
    label: Windrichtung
    description: Zeigt die aktuelle Windrichtung an (als Winkel).
    configuration: {}
  • id: forecastDay5#gust-speed
    channelTypeUID: openweathermap:gust-speed
    label: Windböengeschwindigkeit
    description: Zeigt die aktuelle Windböengeschwindigkeit an.
    configuration: {}
  • id: forecastDay5#cloudiness
    channelTypeUID: openweathermap:cloudiness
    label: Bewölkung
    description: Zeigt die aktuelle Bewölkung an.
    configuration: {}
  • id: forecastDay5#uvindex
    channelTypeUID: openweathermap:forecasted-uvindex
    label: Vorhergesagter UV-Index
    description: Zeigt den vorhergesagten UV-Index an.
    configuration: {}
  • id: forecastDay5#precip-probability
    channelTypeUID: openweathermap:precip-probability
    label: Vorhergesagte Niederschlagswahrscheinlichkeit
    description: Zeigt die vorhergesagte Niederschlagswahrscheinlichkeit an.
    configuration: {}
  • id: forecastDay5#rain
    channelTypeUID: openweathermap:rain
    label: Regen
    description: Zeigt den kumulierten Regen der letzten Stunde an.
    configuration: {}
  • id: forecastDay5#snow
    channelTypeUID: openweathermap:snow
    label: Schnee
    description: Zeigt den kumulierten Schnee der letzten Stunde an.
    configuration: {}

Edit: I managed to add the channels to the items (so the other way around then mentioned). After this I received a warning in openhab log:

Removing data is not supported in InfluxDB v1.

Seems like you did not follow my tutorial step-by-step …
In the tutorial I use InMemory Persistence to store the forecast, because it requires no setup and is easy to use, plus you normally don’t need to persist forecasts „forever“.
Please follow the steps as described in my tutorial, thanks.

Thanks for the remark! After setting up influxDB v1, v2 and openhab 4.2 several times using InMemory did the trick!

The Error Bad Request still remains when creating the items.

Since you specifically mentioned InfluxDB. Is there a way to use it for forecast?

Can you search for that request in the network tab of the browser dev tools and share the request and its response?

Yeah, you need InfluxDB and add a config for an Item with forecast strategy to the InfluxDB persistence config. As the log told you that removing data is not supported in InfluxDB v1, I guess you need v2 for this use case.