Ankündigung

Einklappen
Keine Ankündigung bisher.

Support-Thread zum OpenWeatherMap Plugin

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    #76
    Zitat von jentz1986 Beitrag anzeigen
    Hab ein Regen-Widget gebaut, was auch die letzten 12h und die kommenden 12h Regen anzeigt - sinnvoll?
    Sehr cool!
    Da werde ich dann wohl langsam mal den Umstieg von Darksky wagen... Danke!

    Kommentar


      #77
      Zitat von Onkelandy Beitrag anzeigen
      Sehr cool!
      Gibt es noch andere Widget-Anforderungen, die sinnvoll zum Plugin passen?
      Bitte nicht die Wetter-Widgets aus der SmartVisu replizieren...

      Die Bewässerungssteuerung, die aus dem irrigation-struct kommt hat folgendes Widget (rot eingerahmt, ein Klick auf die Zahnräder öffnet das Popup von oben, das gehört hier nat. zum Gewächshaus):
      Screenshot 2021-07-30 180734.png

      PHP-Code:
      {% import "widgets_openweathermap.html" as owm %}
      <
      h1><img class="icon" src='{{ icon0 }}sani_irrigation.svg' />Bewässerung</h1>
      <
      h2>Regen</h2>
      {{ 
      owm.rain_overview('regengraph''wetter.regen.letzte_12h''wetter.regen.naechste_12h''wetter.von') }}
      <
      h2>Wasserkreise ohne Regen</h2>
      {{ 
      owm.irrigation('ventil_1''Im Gewächshaus''garten.geraet.bewaesserung.am_gewaechshaus.ventil _1') }}
      <
      h2>Wasserkreise mit Regen</h2>
      Bauchfaktor
      {{ basic.slider('''garten.geraet.bewaesserung.bauchfaktor'020.1''''0200) }}

      ... 
      Zuletzt geändert von jentz1986; 30.07.2021, 17:25. Grund: bugfix

      Kommentar


        #78
        Zitat von jentz1986 Beitrag anzeigen
        OK, ich würde für Instanzen einfach nur mehrere Instanzen des gleichen Verzeichnisses machen. Ich habe alle Plugins nur einmal, entweder in meinem "Frickel"-Zustand oder eben aus dem offiziellen Release - daher ändert sich der Name des Plugins nicht.
        So hatte ich das auch, bis ich mal aus Versehen ein "git update" gemacht habe und alle meine Änderungen weg waren. Seit dem lege ich meine "Eigenkreationen" in eigenen Ordnern an. Und Plugin-Name und Order identisch bzw entspricht der Name der Ordner.
        Zitat von jentz1986 Beitrag anzeigen
        Nein - das ist ein und die selbe Fehlermeldung für alle Fälle. Die Matchstrings sollten dann berichtigt werden. - klar es funktioniert, das ist der Sinn der gemachten Implementierung, weil man das mit der Liste gerne übersieht. Aber der korrekte Matchstring ist dann "alerts/0/event" und nicht "alerts/event". "alerts/0/..." ist jetzt auch immer gesetzt, d.h. man kann das Element auch wirklich in einem Item nutzen. Im struct sollten auch nur korrekte Matchstrings sein und nicht solche, die durch interne Korrekturen bereinigt werden.
        Ok

        Kommentar


          #79
          jentz1986 Onkelandy
          ,

          Hallo,

          der erste Wurf der structs ist fertig und diese hier zu finden.

          Es gibt dort 3 Dateien:
          A) Eine aktualisierte plugin.yaml für das owm_plugin. Dort sind die structs enthalten.
          B) Eine Item-Datei, die diese structs nutzt und die Items so erstellt, wie es das darksky_struct gemacht hat. Das wäre also der "Konverter".
          C) Eine Item-Datei, die ebenfalls diese structs (aber andere) nutzt und alle Informationen liefert, die die onecall-api von owm bereitstellt.

          jentz1986
          Könntest Du auch noch die air_pollution api ins Plugin integrieren?

          Bitte mal testen und Feedback an mich.

          DANKE

          Michael

          Kommentar


            #80
            Es ist noch mindestens ein Rechtschreibfehler in der struct für darksky: darksky2owm_lcoals

            Kommentar


              #81
              Zitat von Sisamiwe Beitrag anzeigen
              Könntest Du auch noch die air_pollution api ins Plugin integrieren?
              Ich versuchs. Leider gibt's ja nicht nur die eine, sondern sowohl history als auch forecast. Als ich gerade mit der Implementierung angefangen habe, fiel mir auf, dass das für die mögliche Datenmenge komfortabel 6 weitere Calls sind, die jedes mal abgesetzt werden. Ich habe nur die freie Lizenz und daher nur 1000 Calls/Tag. Wenn SmartVisu Calls macht und meine Handy App Calls macht und SHNG so viele macht, kann das das Kontingent strapazieren. Braucht man alle diese Daten immer? Die Funktionalität vorsehen: Gerne! Alles immer in jedem struct haben? Weiß nicht...

              Ich baue erstmal das Webinterface um, dass man auch wirklich alle abgerufenen JSONs anschauen kann. Das geht ja gerade nicht, weil es nur 6 Tabs gibt.

              Noch eine Beobachtung aus den structs:
              day-0 ist tatsächlich heute, nicht gestern. Es gibt zu heute als zwei relevante Datenmengen: Zukunft (day/0) und Vergangenheit (day/-0).
              Code:
              today_minus_1d:
                  instance: home
                  owm_match_prefix@home: day/-0
                  struct: _priv_openweathermap.historical_daily
              Zuletzt geändert von jentz1986; 01.08.2021, 11:32. Grund: Formatierung des YAML gefixt

              Kommentar


                #82
                Zitat von jentz1986 Beitrag anzeigen
                Braucht man alle diese Daten immer? Die Funktionalität vorsehen: Gerne! Alles immer in jedem struct haben?
                Sicher nicht. Deshalb habe ich das struct auch erstmal so gestaltet, dass man mehr Möglichkeiten hat, SEINE Items zu definieren.

                Zitat von jentz1986 Beitrag anzeigen
                day-0 ist tatsächlich heute, nicht gestern. Es gibt zu heute als zwei relevante Datenmengen: Zukunft (day/0) und Vergangenheit (day/-0).
                Zitat von bmx Beitrag anzeigen
                Es ist noch mindestens ein Rechtschreibfehler in der struct für darksky: darksky2owm_lcoals
                Es war beides mal falsch, d.h. der struct name als auch der struct-Aufruf. Ist bei mir korrigiert.

                Habe ich bei mir korrigiert. Lade bei Gelegenheit eine neuer Version hoch.

                Kommentar


                  #83
                  Zitat von Sisamiwe Beitrag anzeigen
                  Könntest Du auch noch die air_pollution api ins Plugin integrieren?
                  Ja, ist jetzt gemacht. Allerdings ist die API etwas seltsam. Über forecast bekommt man Werte von 6 Tage in die Vergangenheit bis 4 Tage in die Zukunft. Über history kann man Abfragezeiträume definieren - auch in die Zukunft.

                  Soll uns nicht weiter stören:
                  Code:
                  aqi_gestern_11:
                      type: num
                      owm_matchstring: airpollution/day/-1/hour/11/main/aqi
                  aqi_neulich:
                      type: num
                      owm_matchstring: airpollution/day/-4/hour/11/main/aqi
                  aqi_in_11h:
                      type: num
                      owm_matchstring: airpollution/hour/11/main/aqi
                  aqi_jetzt:
                      type: num
                      owm_matchstring: airpollution/main/aqi
                  airpollution/day/-x (kann 1 - 4 sein, weder 0 noch 5 und auch keine positiven Werte)
                  airpollution/hour/x kann nur in die Zukunft, dafür aber bis zu 3 Tage (eigentlich sogar vier, der vierte ist aber im Zweifel nicht da)

                  Das Web-Interface zeigt jetzt auch alle Datenquellen an und ist "etwas" wartbarer geworden...

                  Zitat von Sisamiwe Beitrag anzeigen
                  Deshalb habe ich das struct auch erstmal so gestaltet, dass man mehr Möglichkeiten hat, SEINE Items zu definieren.
                  Das gefällt mir auch sehr gut! Im Zweifel (Wenig RAM, Wunsch nach wenigen Items) nutzt man die structs um rauszubekommen, was man so alles abfragen kann und pickt sich dann nur noch die relevanten Matchstrings über das Web-Interface raus. Bei genug Ressourcen ist das struct aber sicher sehr gut!

                  Ach ja, one more thing: Das mit dem @count von oben hatte ich implementiert - geht auch:
                  Code:
                  alerts_present:
                      type: num
                      owm_matchstring: alerts/@count
                  hours_present:
                      type: num
                      owm_matchstring: day/-0/hour/@count
                  Noch was:
                  Ein Weg sich die Alerts in der SmartVisu anzeigen zu lassen (wetter.alerts ist das Item vom type list das den Matchstring 'alerts' hat):
                  PHP-Code:
                  {{ status.activelist('''wetter.alerts''event''start''description''') }} 
                  Das kann man ja dann auch mit dem alerts/@count verbinden und nur dann anzeigen lassen, wenn auch alerts da sind. Der @count geht auch auf 0 wenn nur das Placebo eingefügt wird.

                  Kommentar


                    #84
                    jentz1986

                    Prima. Ich arbeite nach meinem Urlaub weiter. Bin dann erst mal für 3 Wochen weg.

                    Kommentar


                      #85
                      Sisamiwe Schönen Urlaub!

                      Kommentar


                        #86
                        Ich habe jetzt den Stand der plugin.yaml aus dem gist in meinen Fork gepackt und die README.md soweit auf Stand gebracht. Ab jetzt warte ich wieder demütig auf Feedback :-)

                        Kommentar


                          #87
                          Hi jentz1986 ,

                          Guten Abend, erstmal danke für deine Arbeit. Trifft sich gut, da ich gerade eine Gartenbewässerung installiert habe

                          So nun aber zum Feedback: Die OWM Daten kommen rein. bzw kamen, da mein Account nun die maximalen Anfragen erreicht hat. Ich habe jetzt das Intervall mal auf 600s gesetzt. Mit dem "alten" OWM Plugin habe ich nie eine Mail bei 300s wegen Limitüberschreitung bekommen.

                          Zum: rain_overview-widget

                          In deiner Anleitung auf Github stimmen die Items nicht:
                          rain_past_12h (hier muss statt h = hrs hin) und die Bezeichnung im Widgetcode von Wetter.as_of (hier muss Weather.as.of hin)

                          So und nun zum wichtigen Teil: Das Irrigation Struct funktioniert bei mir weder mit den Originaldaten aus der Anleitung noch mit meinen eigenen. Er rechnet dort scheinbar immer 0 oder-0 aus.

                          Beim Widget ist mir aufgefallen, dass für mich die Litermenge als auch die Quadratmetermenge zu niedrig einstellbar ist. QM sind max 30 und Liter glaub ich 10
                          Ich hatte angedacht die Lösung für meine Rasenberegnung zu nutzen. Dafür habe ich je 2 Gardena OS 140 an einem Ventil, die laut Gardena bei 4 Bar jeweils bis 800L Wasser durchlassen. Die Flächen sind einmal 192m² und 42m².

                          Kommentar


                            #88
                            Zitat von Jackhammer Beitrag anzeigen
                            Zum: rain_overview-widget

                            In deiner Anleitung auf Github stimmen die Items nicht:
                            rain_past_12h (hier muss statt h = hrs hin) und die Bezeichnung im Widgetcode von Wetter.as_of (hier muss Weather.as.of hin)
                            Danke - habs behoben

                            Zitat von Jackhammer Beitrag anzeigen
                            So und nun zum wichtigen Teil: Das Irrigation Struct funktioniert bei mir weder mit den Originaldaten aus der Anleitung noch mit meinen eigenen. Er rechnet dort scheinbar immer 0 oder-0 aus.
                            In einer Version hatte ich im struct mal die Instanzzuordnung vergessen. Ist gefixt.

                            Zitat von Jackhammer Beitrag anzeigen
                            Ich hatte angedacht die Lösung für meine Rasenberegnung zu nutzen. Dafür habe ich je 2 Gardena OS 140 an einem Ventil, die laut Gardena bei 4 Bar jeweils bis 800L Wasser durchlassen. Die Flächen sind einmal 192m² und 42m².
                            Ich hab nur Tropfbewässerungen, aber klar, das macht so viel mehr Sinn. Da das ne reine Widget-Sache ist und Rasen wahrscheinlich das einzig Große ist, mache ich einfach ein weiteres Widget dazu, kommt demnächst. Solange kann einfach jeder im Plugin-Pfad das Widget entsprechend anpassen :-) Ist ja gerade eh nich so weit her mit Bewässerungsbedarf, das macht der große Automat da oben...

                            Kommentar


                              #89
                              Ich habe nun doch eine neue struct „irrigation_weekly“ für Rasenbewässerung gemacht, ohne den ganzen Pflanzdichte-Kram, dafür aber mit nem wöchentlichen Gießraster. Nun wird vier Tage in die Vergangenheit und drei Tage in die Zukunft geschaut und danach bewässert. Vorher musste ich erstmal lernen, was das ist, dieser „Rasen“. Wir haben nur Wiese und die wächst/verbrennt ganz von alleine…

                              Code:
                              rasenbewaesserung:
                                  struct:
                                      - openweathermap.irrigation_weekly
                                      - uzsu.child
                                  rain:
                                      exposure_factor:
                                          initial_value: 1
                                  evaporation:
                                      exposure_factor:
                                          initial_value: 1
                                  factors:
                                      flowrate_l_per_min:
                                          initial_value: 20
                                      area_in_sqm:
                                          initial_value: 350
                                      gut_feeling:
                                          eval: sum
                                          eval_trigger: garten.geraet.bewaesserung.bauchfaktor
                              Das Widget ist dann:

                              Code:
                              {{ owm.irrigation_weekly('rasen', 'Rasenbewässerung', 'garten.geraet.bewaesserung.rasenbewaesserung ') }}
                              Zuletzt geändert von jentz1986; 24.08.2021, 06:47. Grund: Typos

                              Kommentar


                                #90
                                jentz1986

                                Hi,

                                ich habe mal einen Entwurf für die user_doc.rst gemacht und direkt in dein Repo eingestellt. Kannst ja mal drüber schauen.

                                Zum Plugin selbst:
                                • Ca. zwischen 0 und 6 Uhr kommt es täglich zu massiven Fehlermeldungen. Hier mal ein Auszug aus dem Log:
                                  Code:
                                  2021-08-29 00:02:00 ERROR plugins._priv_openweathermap home@: Geographical coordinates of the location (latitude) ERROR: owm-string: lat --> lat from wrk=onecall, Error: Missing child 'lat' after '' (complete path missing: lat)
                                  	2021-08-29 00:02:00 ERROR plugins._priv_openweathermap home@: Geographical coordinates of the location (longitude) ERROR: owm-string: lon --> lon from wrk=onecall, Error: Missing child 'lon' after '' (complete path missing: lon)
                                  	2021-08-29 00:02:01 ERROR plugins._priv_openweathermap home@: Timezone name for the requested location ERROR: owm-string: timezone --> timezone from wrk=onecall, Error: Missing child 'timezone' after '' (complete path missing: timezone)
                                  	2021-08-29 00:02:01 ERROR plugins._priv_openweathermap home@: Shift in seconds from UTC ERROR: owm-string: timezone_offset --> timezone_offset from wrk=onecall, Error: Missing child 'timezone_offset' after '' (complete path missing: timezone_offset)
                                  	2021-08-29 00:02:01 ERROR plugins._priv_openweathermap home@: Current time, Unix, UTC ERROR: owm-string: current/dt --> current/dt from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/dt)
                                  	2021-08-29 00:02:01 ERROR plugins._priv_openweathermap home@: Sunrise time, Unix, UTC ERROR: owm-string: current/sunrise --> current/sunrise from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/sunrise)
                                  	2021-08-29 00:02:01 ERROR plugins._priv_openweathermap home@: Sunset time, Unix, UTC ERROR: owm-string: current/sunset --> current/sunset from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/sunset)
                                  	2021-08-29 00:02:01 ERROR plugins._priv_openweathermap home@: Temperature. Units - default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: current/temp --> current/temp from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/temp)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Temperature. This temperature parameter accounts for the human perception of weather. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: current/feels_like --> current/feels_like from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/feels_like)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Atmospheric pressure on the sea level, hPa ERROR: owm-string: current/pressure --> current/pressure from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/pressure)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Humidity, % ERROR: owm-string: current/humidity --> current/humidity from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/humidity)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: current/dew_point --> current/dew_point from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/dew_point)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Cloudiness,% ERROR: owm-string: current/clouds --> current/clouds from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/clouds)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Current UV index ERROR: owm-string: current/uvi --> current/uvi from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/uvi)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Average visibility, metres ERROR: owm-string: current/visibility --> current/visibility from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/visibility)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Wind speed. Wind speed. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: current/wind_speed --> current/wind_speed from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/wind_speed)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: current/wind_gust --> current/wind_gust from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/wind_gust)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: Wind direction, degrees (meteorological) ERROR: owm-string: current/wind_deg --> current/wind_deg from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/wind_deg)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: (where available) Rain volume for last hour, mm ERROR: owm-string: current/rain/1h --> current/rain/1h from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/rain/1h)
                                  	2021-08-29 00:02:02 ERROR plugins._priv_openweathermap home@: (where available) Snow volume for last hour, mm ERROR: owm-string: current/snow/1h --> current/snow/1h from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/snow/1h)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Weather condition id ERROR: owm-string: current/weather/0/id --> current/weather/0/id from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/weather/0/id)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Group of weather parameters (Rain, Snow, Extreme etc.) ERROR: owm-string: current/weather/0/main --> current/weather/0/main from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/weather/0/main)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Weather condition within the group (full list of weather conditions). Get the output in your language ERROR: owm-string: current/weather/0/description --> current/weather/0/description from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/weather/0/description)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Weather icon id. How to get icons ERROR: owm-string: current/weather/0/icon --> current/weather/0/icon from wrk=onecall, Error: Missing child 'current' after '' (complete path missing: current/weather/0/icon)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Time of the forecasted data, Unix, UTC ERROR: owm-string: hour/1/dt --> hourly/1/dt from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/dt)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Temperature. Units default kelvin, metric Celsius, imperial Fahrenheit. How to change units used ERROR: owm-string: hour/1/temp --> hourly/1/temp from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/temp)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Temperature. This accounts for the human perception of weather. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/1/feels_like --> hourly/1/feels_like from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/feels_like)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Atmospheric pressure on the sea level, hPa ERROR: owm-string: hour/1/pressure --> hourly/1/pressure from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/pressure)
                                  	2021-08-29 00:02:03 ERROR plugins._priv_openweathermap home@: Humidity, % ERROR: owm-string: hour/1/humidity --> hourly/1/humidity from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/humidity)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/1/dew_point --> hourly/1/dew_point from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/dew_point)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: UV index ERROR: owm-string: hour/1/uvi --> hourly/1/uvi from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/uvi)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: Cloudiness, % ERROR: owm-string: hour/1/clouds --> hourly/1/clouds from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/clouds)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: Average visibility, metres ERROR: owm-string: hour/1/visibility --> hourly/1/visibility from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/visibility)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: Wind speed. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/1/wind_speed --> hourly/1/wind_speed from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/wind_speed)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/1/wind_gust --> hourly/1/wind_gust from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/wind_gust)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: Wind direction, degrees (meteorological) ERROR: owm-string: hour/1/wind_deg --> hourly/1/wind_deg from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/wind_deg)
                                  	2021-08-29 00:02:04 ERROR plugins._priv_openweathermap home@: Probability of precipitation ERROR: owm-string: hour/1/pop --> hourly/1/pop from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/pop)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: (where available) Rain volume for last hour, mm ERROR: owm-string: hour/1/rain/1h --> hourly/1/rain/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/rain/1h)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: (where available) Snow volume for last hour, mm ERROR: owm-string: hour/1/snow/1h --> hourly/1/snow/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/snow/1h)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Weather condition id ERROR: owm-string: hour/1/weather/0/id --> hourly/1/weather/0/id from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/weather/0/id)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Group of weather parameters (Rain, Snow, Extreme etc.) ERROR: owm-string: hour/1/weather/0/main --> hourly/1/weather/0/main from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/weather/0/main)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Weather condition within the group (full list of weather conditions). Get the output in your language ERROR: owm-string: hour/1/weather/0/description --> hourly/1/weather/0/description from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/weather/0/description)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Weather icon id. How to get icons ERROR: owm-string: hour/1/weather/0/icon --> hourly/1/weather/0/icon from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/1/weather/0/icon)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Time of the forecasted data, Unix, UTC ERROR: owm-string: hour/2/dt --> hourly/2/dt from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/dt)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Temperature. Units default kelvin, metric Celsius, imperial Fahrenheit. How to change units used ERROR: owm-string: hour/2/temp --> hourly/2/temp from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/temp)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Temperature. This accounts for the human perception of weather. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/2/feels_like --> hourly/2/feels_like from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/feels_like)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Atmospheric pressure on the sea level, hPa ERROR: owm-string: hour/2/pressure --> hourly/2/pressure from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/pressure)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Humidity, % ERROR: owm-string: hour/2/humidity --> hourly/2/humidity from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/humidity)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/2/dew_point --> hourly/2/dew_point from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/dew_point)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: UV index ERROR: owm-string: hour/2/uvi --> hourly/2/uvi from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/uvi)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Cloudiness, % ERROR: owm-string: hour/2/clouds --> hourly/2/clouds from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/clouds)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Average visibility, metres ERROR: owm-string: hour/2/visibility --> hourly/2/visibility from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/visibility)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: Wind speed. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/2/wind_speed --> hourly/2/wind_speed from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/wind_speed)
                                  	2021-08-29 00:02:05 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/2/wind_gust --> hourly/2/wind_gust from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/wind_gust)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Wind direction, degrees (meteorological) ERROR: owm-string: hour/2/wind_deg --> hourly/2/wind_deg from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/wind_deg)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Probability of precipitation ERROR: owm-string: hour/2/pop --> hourly/2/pop from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/pop)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: (where available) Rain volume for last hour, mm ERROR: owm-string: hour/2/rain/1h --> hourly/2/rain/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/rain/1h)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: (where available) Snow volume for last hour, mm ERROR: owm-string: hour/2/snow/1h --> hourly/2/snow/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/snow/1h)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Weather condition id ERROR: owm-string: hour/2/weather/0/id --> hourly/2/weather/0/id from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/weather/0/id)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Group of weather parameters (Rain, Snow, Extreme etc.) ERROR: owm-string: hour/2/weather/0/main --> hourly/2/weather/0/main from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/weather/0/main)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Weather condition within the group (full list of weather conditions). Get the output in your language ERROR: owm-string: hour/2/weather/0/description --> hourly/2/weather/0/description from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/weather/0/description)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Weather icon id. How to get icons ERROR: owm-string: hour/2/weather/0/icon --> hourly/2/weather/0/icon from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/2/weather/0/icon)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Time of the forecasted data, Unix, UTC ERROR: owm-string: hour/3/dt --> hourly/3/dt from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/dt)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Temperature. Units default kelvin, metric Celsius, imperial Fahrenheit. How to change units used ERROR: owm-string: hour/3/temp --> hourly/3/temp from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/temp)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Temperature. This accounts for the human perception of weather. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/3/feels_like --> hourly/3/feels_like from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/feels_like)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Atmospheric pressure on the sea level, hPa ERROR: owm-string: hour/3/pressure --> hourly/3/pressure from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/pressure)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Humidity, % ERROR: owm-string: hour/3/humidity --> hourly/3/humidity from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/humidity)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/3/dew_point --> hourly/3/dew_point from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/dew_point)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: UV index ERROR: owm-string: hour/3/uvi --> hourly/3/uvi from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/uvi)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Cloudiness, % ERROR: owm-string: hour/3/clouds --> hourly/3/clouds from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/clouds)
                                  	2021-08-29 00:02:06 ERROR plugins._priv_openweathermap home@: Average visibility, metres ERROR: owm-string: hour/3/visibility --> hourly/3/visibility from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/visibility)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Wind speed. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/3/wind_speed --> hourly/3/wind_speed from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/wind_speed)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/3/wind_gust --> hourly/3/wind_gust from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/wind_gust)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Wind direction, degrees (meteorological) ERROR: owm-string: hour/3/wind_deg --> hourly/3/wind_deg from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/wind_deg)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Probability of precipitation ERROR: owm-string: hour/3/pop --> hourly/3/pop from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/pop)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: (where available) Rain volume for last hour, mm ERROR: owm-string: hour/3/rain/1h --> hourly/3/rain/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/rain/1h)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: (where available) Snow volume for last hour, mm ERROR: owm-string: hour/3/snow/1h --> hourly/3/snow/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/snow/1h)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Weather condition id ERROR: owm-string: hour/3/weather/0/id --> hourly/3/weather/0/id from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/weather/0/id)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Group of weather parameters (Rain, Snow, Extreme etc.) ERROR: owm-string: hour/3/weather/0/main --> hourly/3/weather/0/main from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/weather/0/main)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Weather condition within the group (full list of weather conditions). Get the output in your language ERROR: owm-string: hour/3/weather/0/description --> hourly/3/weather/0/description from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/weather/0/description)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Weather icon id. How to get icons ERROR: owm-string: hour/3/weather/0/icon --> hourly/3/weather/0/icon from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/3/weather/0/icon)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Time of the forecasted data, Unix, UTC ERROR: owm-string: hour/4/dt --> hourly/4/dt from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/dt)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Temperature. Units default kelvin, metric Celsius, imperial Fahrenheit. How to change units used ERROR: owm-string: hour/4/temp --> hourly/4/temp from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/temp)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Temperature. This accounts for the human perception of weather. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/4/feels_like --> hourly/4/feels_like from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/feels_like)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Atmospheric pressure on the sea level, hPa ERROR: owm-string: hour/4/pressure --> hourly/4/pressure from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/pressure)
                                  	2021-08-29 00:02:07 ERROR plugins._priv_openweathermap home@: Humidity, % ERROR: owm-string: hour/4/humidity --> hourly/4/humidity from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/humidity)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/4/dew_point --> hourly/4/dew_point from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/dew_point)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: UV index ERROR: owm-string: hour/4/uvi --> hourly/4/uvi from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/uvi)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Cloudiness, % ERROR: owm-string: hour/4/clouds --> hourly/4/clouds from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/clouds)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Average visibility, metres ERROR: owm-string: hour/4/visibility --> hourly/4/visibility from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/visibility)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Wind speed. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/4/wind_speed --> hourly/4/wind_speed from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/wind_speed)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/4/wind_gust --> hourly/4/wind_gust from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/wind_gust)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Wind direction, degrees (meteorological) ERROR: owm-string: hour/4/wind_deg --> hourly/4/wind_deg from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/wind_deg)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Probability of precipitation ERROR: owm-string: hour/4/pop --> hourly/4/pop from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/pop)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: (where available) Rain volume for last hour, mm ERROR: owm-string: hour/4/rain/1h --> hourly/4/rain/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/rain/1h)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: (where available) Snow volume for last hour, mm ERROR: owm-string: hour/4/snow/1h --> hourly/4/snow/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/snow/1h)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Weather condition id ERROR: owm-string: hour/4/weather/0/id --> hourly/4/weather/0/id from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/weather/0/id)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Group of weather parameters (Rain, Snow, Extreme etc.) ERROR: owm-string: hour/4/weather/0/main --> hourly/4/weather/0/main from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/weather/0/main)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Weather condition within the group (full list of weather conditions). Get the output in your language ERROR: owm-string: hour/4/weather/0/description --> hourly/4/weather/0/description from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/weather/0/description)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Weather icon id. How to get icons ERROR: owm-string: hour/4/weather/0/icon --> hourly/4/weather/0/icon from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/4/weather/0/icon)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Time of the forecasted data, Unix, UTC ERROR: owm-string: hour/5/dt --> hourly/5/dt from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/dt)
                                  	2021-08-29 00:02:08 ERROR plugins._priv_openweathermap home@: Temperature. Units default kelvin, metric Celsius, imperial Fahrenheit. How to change units used ERROR: owm-string: hour/5/temp --> hourly/5/temp from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/temp)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Temperature. This accounts for the human perception of weather. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/5/feels_like --> hourly/5/feels_like from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/feels_like)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Atmospheric pressure on the sea level, hPa ERROR: owm-string: hour/5/pressure --> hourly/5/pressure from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/pressure)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Humidity, % ERROR: owm-string: hour/5/humidity --> hourly/5/humidity from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/humidity)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/5/dew_point --> hourly/5/dew_point from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/dew_point)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: UV index ERROR: owm-string: hour/5/uvi --> hourly/5/uvi from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/uvi)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Cloudiness, % ERROR: owm-string: hour/5/clouds --> hourly/5/clouds from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/clouds)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Average visibility, metres ERROR: owm-string: hour/5/visibility --> hourly/5/visibility from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/visibility)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Wind speed. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/5/wind_speed --> hourly/5/wind_speed from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/wind_speed)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. How to change units used ERROR: owm-string: hour/5/wind_gust --> hourly/5/wind_gust from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/wind_gust)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Wind direction, degrees (meteorological) ERROR: owm-string: hour/5/wind_deg --> hourly/5/wind_deg from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/wind_deg)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Probability of precipitation ERROR: owm-string: hour/5/pop --> hourly/5/pop from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/pop)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: (where available) Rain volume for last hour, mm ERROR: owm-string: hour/5/rain/1h --> hourly/5/rain/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/rain/1h)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: (where available) Snow volume for last hour, mm ERROR: owm-string: hour/5/snow/1h --> hourly/5/snow/1h from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/snow/1h)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Weather condition id ERROR: owm-string: hour/5/weather/0/id --> hourly/5/weather/0/id from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/weather/0/id)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Group of weather parameters (Rain, Snow, Extreme etc.) ERROR: owm-string: hour/5/weather/0/main --> hourly/5/weather/0/main from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/weather/0/main)
                                  	2021-08-29 00:02:09 ERROR plugins._priv_openweathermap home@: Weather condition within the group (full list of weather conditions). Get the output in your language ERROR: owm-string: hour/5/weather/0/description --> hourly/5/weather/0/description from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/weather/0/description)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: Weather icon id. How to get icons ERROR: owm-string: hour/5/weather/0/icon --> hourly/5/weather/0/icon from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/5/weather/0/icon)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: Time of the forecasted data, Unix, UTC ERROR: owm-string: hour/6/dt --> hourly/6/dt from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/6/dt)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: Temperature. Units default kelvin, metric Celsius, imperial Fahrenheit. How to change units used ERROR: owm-string: hour/6/temp --> hourly/6/temp from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/6/temp)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: Temperature. This accounts for the human perception of weather. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/6/feels_like --> hourly/6/feels_like from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/6/feels_like)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: Atmospheric pressure on the sea level, hPa ERROR: owm-string: hour/6/pressure --> hourly/6/pressure from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/6/pressure)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: Humidity, % ERROR: owm-string: hour/6/humidity --> hourly/6/humidity from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/6/humidity)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: Atmospheric temperature (varying according to pressure and humidity) below which water droplets begin to condense and dew can form. Units default kelvin, metric Celsius, imperial Fahrenheit. ERROR: owm-string: hour/6/dew_point --> hourly/6/dew_point from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/6/dew_point)
                                  	2021-08-29 00:02:10 ERROR plugins._priv_openweathermap home@: UV index ERROR: owm-string: hour/6/uvi --> hourly/6/uvi from wrk=onecall, Error: Missing child 'hourly' after '' (complete path missing: hourly/6/uvi)
                                  Es sieht so aus, als wenn keine Werte bereitstehen.

                                  Hast Du das auch?
                                • Zum anderen wird auch ein Fehler geworfen, wenn im JSON Werte fehlen. Bsp:
                                  Code:
                                  2021-08-29 09:02:06 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: current/wind_gust --> current/wind_gust from wrk=onecall, Error: Missing child 'wind_gust' after 'current' (complete path missing: wind_gust)
                                  	2021-08-29 09:02:09 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: day/-0/wind_gust --> current/wind_gust from wrk=onecall-0, Error: Missing child 'wind_gust' after 'current' (complete path missing: wind_gust)
                                  	2021-08-29 09:02:09 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: day/-1/wind_gust --> current/wind_gust from wrk=onecall-1, Error: Missing child 'wind_gust' after 'current' (complete path missing: wind_gust)
                                  	2021-08-29 09:02:10 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: day/-2/wind_gust --> current/wind_gust from wrk=onecall-2, Error: Missing child 'wind_gust' after 'current' (complete path missing: wind_gust)
                                  	2021-08-29 09:02:10 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: day/-3/wind_gust --> current/wind_gust from wrk=onecall-3, Error: Missing child 'wind_gust' after 'current' (complete path missing: wind_gust)
                                  	2021-08-29 09:02:10 ERROR plugins._priv_openweathermap home@: (where available) Wind gust. Units default metre/sec, metric metre/sec, imperial miles/hour. ERROR: owm-string: day/-4/wind_gust --> current/wind_gust from wrk=onecall-4, Error: Missing child 'wind_gust' after 'current' (complete path missing: wind_gust)
                                  Scheinbar steht wind_gust nicht immer in der Vergangenheit zur Verfügung.

                                  Kannst Du diese Meldungen runterstufen?, also zu WARNING oder DEBUG
                                Sonst alles gut!

                                Kommentar

                                Lädt...
                                X