59_Weather, DarkSky und OpenWeatherMap API Bugfixes

Begonnen von CoolTux, 13 Januar 2019, 21:22:31

Vorheriges Thema - Nächstes Thema

betateilchen

#180
@CoolTux das war meine erste Vermutung - ist aber nicht so. locale ist de_DE.UTF-8

Um Abhängigkeiten von Betriebssystemeinstellungen zu vermeiden, würde ich Wochentage und Monate als Text immer im Modul selbst entsprechend der gewünschten Ausgabesprache ermitteln.

@moonsorrox Dein Browser versucht offenbar, UTF-8 als iso-8859-1 darzustellen.

-----------------------
Formuliere die Aufgabe möglichst einfach und
setze die Lösung richtig um - dann wird es auch funktionieren.
-----------------------
Lesen gefährdet die Unwissenheit!

CoolTux

Zitat von: betateilchen am 27 Februar 2019, 16:57:54
@CoolTux das war meine erste Vermutung - ist aber nicht so. locale ist de_DE.UTF-8

Um Abhängigkeiten von Betriebssystemeinstellungen zu vermeiden, würde ich Wochentage und Monate als Text immer im Modul selbst entsprechend der gewünschten Ausgabesprache ermitteln.

Ich schaue es mir gerne da noch mal an. Aber Du kannst auch mal.
Ich denke denn noch das es an locale liegt. Such mal bitte hier im Thread, da findest Du so einiges, auch wie es gelöst wurde. War immer locale.


Grüße
Du musst nicht wissen wie es geht! Du musst nur wissen wo es steht, wie es geht.
Support me to buy new test hardware for development: https://www.paypal.com/paypalme/MOldenburg
My FHEM Git: https://git.cooltux.net/FHEM/
Das TuxNet Wiki:
https://www.cooltux.net

betateilchen

Zitat von: CoolTux am 27 Februar 2019, 17:16:43
Ich denke denn noch das es an locale liegt. Such mal bitte hier im Thread, da findest Du so einiges, auch wie es gelöst wurde. War immer locale.

Genau deshalb:

Zitat von: betateilchen am 27 Februar 2019, 16:57:54
Um Abhängigkeiten von Betriebssystemeinstellungen zu vermeiden, würde ich Wochentage und Monate als Text immer im Modul selbst entsprechend der gewünschten Ausgabesprache ermitteln.
-----------------------
Formuliere die Aufgabe möglichst einfach und
setze die Lösung richtig um - dann wird es auch funktionieren.
-----------------------
Lesen gefährdet die Unwissenheit!

CoolTux

Du musst nicht wissen wie es geht! Du musst nur wissen wo es steht, wie es geht.
Support me to buy new test hardware for development: https://www.paypal.com/paypalme/MOldenburg
My FHEM Git: https://git.cooltux.net/FHEM/
Das TuxNet Wiki:
https://www.cooltux.net

SibbeH

Hallo CoolTux

Ich habe LANG auf nl gesetzt. Außerdem habe ich überprüft, ob locale auf nl gesetzt ist. Trotzdem werden auch bei mir die Tage immer in Englisch angezeigt.

Wenn Sie Änderungen in 59_weather vornehmen, kannst du dann auch
my %wdays_txt_nl = (
    'Mon' => 'Maa',
    'Tue' => 'Din',
    'Wed' => 'Woe',
    'Thu' => 'Don',
    'Fri' => 'Vri',
    'Sat' => 'Zat',
    'Sun' => 'Zon'
);


ändern für in den Niederlanden üblichen Abkürzungen:
Ma, Di, Wo, Do, Vr, Za, Zo. ?

Kannst du auch im
my %status_items_txt_nl = (
    0 => "Wind",
    1 => "Vochtigheid",
    2 => "Temperatuur",
    3 => "Direct",
    4 => "Weersvoorspelling voor "


Nummer 3 "Direkt" ändern  in "Actueel"?

Mit freundlichen Grüßen
SibbeH
Raspberry Pi, CULV3, 3xCUNO, MAX Thermostat, MAX Wandthermostat, HM, HmIP. UWZ, WeekProfile

CoolTux

Zitat von: SibbeH am 27 Februar 2019, 19:43:04
Hallo CoolTux

Ich habe LANG auf nl gesetzt. Außerdem habe ich überprüft, ob locale auf nl gesetzt ist. Trotzdem werden auch bei mir die Tage immer in Englisch angezeigt.

Wenn Sie Änderungen in 59_weather vornehmen, kannst du dann auch
my %wdays_txt_nl = (
    'Mon' => 'Maa',
    'Tue' => 'Din',
    'Wed' => 'Woe',
    'Thu' => 'Don',
    'Fri' => 'Vri',
    'Sat' => 'Zat',
    'Sun' => 'Zon'
);


ändern für in den Niederlanden üblichen Abkürzungen:
Ma, Di, Wo, Do, Vr, Za, Zo. ?

Kannst du auch im
my %status_items_txt_nl = (
    0 => "Wind",
    1 => "Vochtigheid",
    2 => "Temperatuur",
    3 => "Direct",
    4 => "Weersvoorspelling voor "


Nummer 3 "Direkt" ändern  in "Actueel"?

Mit freundlichen Grüßen
SibbeH

Hallo Sibbe,

Das Weather Modul gehört Boris. Am besten für Dein Anliegen bitte einen eigenen Thread auf machen. Ich schaue es mir aber gerne an und werde Boris wenn dann einen Patch an bieten.

Kommen die anderen Daten denn auf Niederländisch? Also Text für Tagesprognose und so?
Du musst nicht wissen wie es geht! Du musst nur wissen wo es steht, wie es geht.
Support me to buy new test hardware for development: https://www.paypal.com/paypalme/MOldenburg
My FHEM Git: https://git.cooltux.net/FHEM/
Das TuxNet Wiki:
https://www.cooltux.net

SibbeH

Hi CoolTux,

Ja alles andere kommt auf Niederländisch

Sibbe
Raspberry Pi, CULV3, 3xCUNO, MAX Thermostat, MAX Wandthermostat, HM, HmIP. UWZ, WeekProfile

ToKa

Hallo CoolTux,

bei mir werden die Umlaut im Monat jetzt richtig angezeigt.

Danke für die tolle Arbeit.

Beste Grüße
Torsten
RaspberryPi3 mit RaZberry2 und Conbee II
Fibaro: FGWPE/F-101 Switch & FIBARO System FGWPE/F Wall Plug Gen5, FGSD002 Smoke Sensor
EUROtronic: SPIRIT Wall Radiator Thermostat Valve Control
Shelly2.5 Rollladenaktoren
Zipato Bulb 2, Osram und InnrLight

CoolTux

Zitat von: ToKa am 27 Februar 2019, 20:16:54
Hallo CoolTux,

bei mir werden die Umlaut im Monat jetzt richtig angezeigt.

Danke für die tolle Arbeit.

Beste Grüße
Torsten

Danke Dir für die Rückmeldung.

Grüße
Du musst nicht wissen wie es geht! Du musst nur wissen wo es steht, wie es geht.
Support me to buy new test hardware for development: https://www.paypal.com/paypalme/MOldenburg
My FHEM Git: https://git.cooltux.net/FHEM/
Das TuxNet Wiki:
https://www.cooltux.net

moonsorrox

#189
Zitat von: CoolTux am 27 Februar 2019, 16:45:09
Screenshots helfen weder mir noch Dir.

Was brauchst du noch..?
wenn ich locale eingeben bekomme ich folgendes:
root@FHEM-Server:~# locale
LANG=de_DE.UTF-8
LANGUAGE=
LC_CTYPE="de_DE.UTF-8"
LC_NUMERIC="de_DE.UTF-8"
LC_TIME="de_DE.UTF-8"
LC_COLLATE="de_DE.UTF-8"
LC_MONETARY="de_DE.UTF-8"
LC_MESSAGES="de_DE.UTF-8"
LC_PAPER="de_DE.UTF-8"
LC_NAME="de_DE.UTF-8"
LC_ADDRESS="de_DE.UTF-8"
LC_TELEPHONE="de_DE.UTF-8"
LC_MEASUREMENT="de_DE.UTF-8"
LC_IDENTIFICATION="de_DE.UTF-8"
LC_ALL=


Noch eine Anmerkung, auf meinem Debian Testsystem kommt bei locale das gleiche heraus hier wird aber der Monat März richtig angezeigt.
Das "locale" von oben ist von meinem Ubuntu System welches ich produktiv einsetze.
Intel-NUC i5: FHEM-Server 6.1 :: Perl v5.18.2

Homematic: HM-USB-CFG2,HM-CFG-LAN Adapter, HM-LC-BL1-FM, HM-LC-Sw1PBU-FM, HM-LC-Sw1-PI-2, HM-WDS10-TH-O, HM-CC-TC, HM-LC-SW2-FM

CoolTux

Zitat von: moonsorrox am 28 Februar 2019, 12:35:48
Was brauchst du noch..?
wenn ich locale eingeben bekomme ich folgendes:
root@FHEM-Server:~# locale
LANG=de_DE.UTF-8
LANGUAGE=
LC_CTYPE="de_DE.UTF-8"
LC_NUMERIC="de_DE.UTF-8"
LC_TIME="de_DE.UTF-8"
LC_COLLATE="de_DE.UTF-8"
LC_MONETARY="de_DE.UTF-8"
LC_MESSAGES="de_DE.UTF-8"
LC_PAPER="de_DE.UTF-8"
LC_NAME="de_DE.UTF-8"
LC_ADDRESS="de_DE.UTF-8"
LC_TELEPHONE="de_DE.UTF-8"
LC_MEASUREMENT="de_DE.UTF-8"
LC_IDENTIFICATION="de_DE.UTF-8"
LC_ALL=


Mich hätte ein list vom Device interessiert. Denn es geht Dir ja darum das Dein Browser anscheinend immer noch falsche Werte wieder gibt. Sprich Umlaute sind kaputt.
Hast Du Dir Udo sein Post angeschaut?
Zitat von: betateilchen am 27 Februar 2019, 16:57:54
@CoolTux das war meine erste Vermutung - ist aber nicht so. locale ist de_DE.UTF-8

Um Abhängigkeiten von Betriebssystemeinstellungen zu vermeiden, würde ich Wochentage und Monate als Text immer im Modul selbst entsprechend der gewünschten Ausgabesprache ermitteln.

@moonsorrox Dein Browser versucht offenbar, UTF-8 als iso-8859-1 darzustellen.


Du musst nicht wissen wie es geht! Du musst nur wissen wo es steht, wie es geht.
Support me to buy new test hardware for development: https://www.paypal.com/paypalme/MOldenburg
My FHEM Git: https://git.cooltux.net/FHEM/
Das TuxNet Wiki:
https://www.cooltux.net

moonsorrox

#191
Ja das von Udo habe ich gesehen und UTF-8 als iso-8859-1 wird es wohl sein so wie sein Screenshot es zeigt, nur warum das bei meinem Testsystem richtig ist und bei meinem eingesetzten vermag ich nicht zu sagen  :-\

hier mal das list:
Internals:
   API        DarkSkyAPI
   APIKEY     xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
   APIOPTIONS cachemaxage:600
   CFGFN      ./FHEM/Wetter.cfg
   DEF        API=DarkSkyAPI,cachemaxage:600 apikey=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx location=52.xxxxxx,9.xxxxxx interval=3600 lang=de
   FUUID      5c4319dc-f33f-a6c6-c2bf-28c6a1de44cc6caa
   INTERVAL   3600
   LANG       de
   LOCATION   52.xxxxxx,9.xxxxxx
   MODEL      DarkSkyAPI
   NAME       MeinWetter
   NOTIFYDEV  global
   NR         2010
   NTFY_ORDER 50-MeinWetter
   STATE      T: 11 °C F: 65 % W: 23 km/h P: 1014 hPa
   TYPE       Weather
   READINGS:
     2019-02-28 11:53:56   apiMaintainer   Leon Gaultier (<a href=https://forum.fhem.de/index.php?action=profile;u=13684>CoolTux</a>)
     2019-02-28 11:53:56   apiVersion      0.2.5
     2019-02-28 11:53:56   apparentTemperature 11
     2019-02-28 11:53:56   cloudCover      43
     2019-02-28 11:53:56   code            30
     2019-02-28 11:53:56   condition       Leicht bewölkt
     2019-02-28 11:53:56   current_date_time Do, 28 Feb 2019 11:53
     2019-02-28 11:53:56   dewPoint        4
     2019-02-28 11:53:56   fc1_apparentTempHigh 13
     2019-02-28 11:53:56   fc1_apparentTempHighTime Do, 28 Feb 2019 16:00
     2019-02-28 11:53:56   fc1_apparentTempLow 5
     2019-02-28 11:53:56   fc1_apparentTempLowTime Fr,  1 Mär 2019 08:00
     2019-02-28 11:53:56   fc1_cloudCover  51
     2019-02-28 11:53:56   fc1_code        29
     2019-02-28 11:53:56   fc1_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc1_day_of_week Do
     2019-02-28 11:53:56   fc1_dewPoint    3
     2019-02-28 11:53:56   fc1_high_c      13
     2019-02-28 11:53:56   fc1_humidity    68
     2019-02-28 11:53:56   fc1_icon        partly_cloudy_night
     2019-02-28 11:53:56   fc1_iconAPI     partly-cloudy-night
     2019-02-28 11:53:56   fc1_low_c       6
     2019-02-28 11:53:56   fc1_moonPhase   0.81
     2019-02-28 11:53:56   fc1_ozone       296.15
     2019-02-28 11:53:56   fc1_precipIntensity 0.0025
     2019-02-28 11:53:56   fc1_precipIntensityMax 0.0051
     2019-02-28 11:53:56   fc1_precipIntensityMaxTime Do, 28 Feb 2019 23:00
     2019-02-28 11:53:56   fc1_precipProbability 5
     2019-02-28 11:53:56   fc1_precipType  rain
     2019-02-28 11:53:56   fc1_pressure    1014
     2019-02-28 11:53:56   fc1_pubDate     Do, 28 Feb 2019 00:00
     2019-02-28 11:53:56   fc1_sunriseTime Do, 28 Feb 2019 07:12
     2019-02-28 11:53:56   fc1_sunsetTime  Do, 28 Feb 2019 17:59
     2019-02-28 11:53:56   fc1_tempHigh    13
     2019-02-28 11:53:56   fc1_tempHighTime Do, 28 Feb 2019 16:00
     2019-02-28 11:53:56   fc1_tempLow     6
     2019-02-28 11:53:56   fc1_tempLowTime Fr,  1 Mär 2019 08:00
     2019-02-28 11:53:56   fc1_uvIndex     2
     2019-02-28 11:53:56   fc1_uvIndexTime Do, 28 Feb 2019 11:00
     2019-02-28 11:53:56   fc1_visibility  12
     2019-02-28 11:53:56   fc1_wind        12
     2019-02-28 11:53:56   fc1_windGust    40
     2019-02-28 11:53:56   fc1_windGustTime Do, 28 Feb 2019 06:00
     2019-02-28 11:53:56   fc1_wind_condition Wind: W 12 km/h
     2019-02-28 11:53:56   fc1_wind_direction 267
     2019-02-28 11:53:56   fc1_wind_speed  12
     2019-02-28 11:53:56   fc2_apparentTempHigh 10
     2019-02-28 11:53:56   fc2_apparentTempHighTime Fr,  1 Mär 2019 14:00
     2019-02-28 11:53:56   fc2_apparentTempLow 0
     2019-02-28 11:53:56   fc2_apparentTempLowTime Sa,  2 Mär 2019 06:00
     2019-02-28 11:53:56   fc2_cloudCover  72
     2019-02-28 11:53:56   fc2_code        30
     2019-02-28 11:53:56   fc2_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc2_day_of_week Fr
     2019-02-28 11:53:56   fc2_dewPoint    3
     2019-02-28 11:53:56   fc2_high_c      10
     2019-02-28 11:53:56   fc2_humidity    74
     2019-02-28 11:53:56   fc2_icon        partly_cloudy
     2019-02-28 11:53:56   fc2_iconAPI     partly-cloudy-day
     2019-02-28 11:53:56   fc2_low_c       1
     2019-02-28 11:53:56   fc2_moonPhase   0.84
     2019-02-28 11:53:56   fc2_ozone       362.36
     2019-02-28 11:53:56   fc2_precipIntensity 0.0102
     2019-02-28 11:53:56   fc2_precipIntensityMax 0.0305
     2019-02-28 11:53:56   fc2_precipIntensityMaxTime Fr,  1 Mär 2019 03:00
     2019-02-28 11:53:56   fc2_precipProbability 24
     2019-02-28 11:53:56   fc2_precipType  rain
     2019-02-28 11:53:56   fc2_pressure    1013
     2019-02-28 11:53:56   fc2_pubDate     Fr,  1 Mär 2019 00:00
     2019-02-28 11:53:56   fc2_sunriseTime Fr,  1 Mär 2019 07:09
     2019-02-28 11:53:56   fc2_sunsetTime  Fr,  1 Mär 2019 18:00
     2019-02-28 11:53:56   fc2_tempHigh    10
     2019-02-28 11:53:56   fc2_tempHighTime Fr,  1 Mär 2019 14:00
     2019-02-28 11:53:56   fc2_tempLow     1
     2019-02-28 11:53:56   fc2_tempLowTime Sa,  2 Mär 2019 07:00
     2019-02-28 11:53:56   fc2_uvIndex     2
     2019-02-28 11:53:56   fc2_uvIndexTime Fr,  1 Mär 2019 12:00
     2019-02-28 11:53:56   fc2_visibility  16
     2019-02-28 11:53:56   fc2_wind        9
     2019-02-28 11:53:56   fc2_windGust    24
     2019-02-28 11:53:56   fc2_windGustTime Fr,  1 Mär 2019 16:00
     2019-02-28 11:53:56   fc2_wind_condition Wind: NW 9 km/h
     2019-02-28 11:53:56   fc2_wind_direction 310
     2019-02-28 11:53:56   fc2_wind_speed  9
     2019-02-28 11:53:56   fc3_apparentTempHigh 13
     2019-02-28 11:53:56   fc3_apparentTempHighTime Sa,  2 Mär 2019 17:00
     2019-02-28 11:53:56   fc3_apparentTempLow 6
     2019-02-28 11:53:56   fc3_apparentTempLowTime So,  3 Mär 2019 01:00
     2019-02-28 11:53:56   fc3_cloudCover  79
     2019-02-28 11:53:56   fc3_code        30
     2019-02-28 11:53:56   fc3_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc3_day_of_week Sa
     2019-02-28 11:53:56   fc3_dewPoint    3
     2019-02-28 11:53:56   fc3_high_c      13
     2019-02-28 11:53:56   fc3_humidity    77
     2019-02-28 11:53:56   fc3_icon        partly_cloudy
     2019-02-28 11:53:56   fc3_iconAPI     partly-cloudy-day
     2019-02-28 11:53:56   fc3_low_c       10
     2019-02-28 11:53:56   fc3_moonPhase   0.87
     2019-02-28 11:53:56   fc3_ozone       343.65
     2019-02-28 11:53:56   fc3_precipIntensity 0.0178
     2019-02-28 11:53:56   fc3_precipIntensityMax 0.0864
     2019-02-28 11:53:56   fc3_precipIntensityMaxTime Sa,  2 Mär 2019 19:00
     2019-02-28 11:53:56   fc3_precipProbability 22
     2019-02-28 11:53:56   fc3_precipType  rain
     2019-02-28 11:53:56   fc3_pressure    1013
     2019-02-28 11:53:56   fc3_pubDate     Sa,  2 Mär 2019 00:00
     2019-02-28 11:53:56   fc3_sunriseTime Sa,  2 Mär 2019 07:07
     2019-02-28 11:53:56   fc3_sunsetTime  Sa,  2 Mär 2019 18:02
     2019-02-28 11:53:56   fc3_tempHigh    13
     2019-02-28 11:53:56   fc3_tempHighTime Sa,  2 Mär 2019 17:00
     2019-02-28 11:53:56   fc3_tempLow     10
     2019-02-28 11:53:56   fc3_tempLowTime So,  3 Mär 2019 00:00
     2019-02-28 11:53:56   fc3_uvIndex     2
     2019-02-28 11:53:56   fc3_uvIndexTime Sa,  2 Mär 2019 12:00
     2019-02-28 11:53:56   fc3_visibility  16
     2019-02-28 11:53:56   fc3_wind        11
     2019-02-28 11:53:56   fc3_windGust    49
     2019-02-28 11:53:56   fc3_windGustTime Sa,  2 Mär 2019 23:00
     2019-02-28 11:53:56   fc3_wind_condition Wind: SW 11 km/h
     2019-02-28 11:53:56   fc3_wind_direction 232
     2019-02-28 11:53:56   fc3_wind_speed  11
     2019-02-28 11:53:56   fc4_apparentTempHigh 11
     2019-02-28 11:53:56   fc4_apparentTempHighTime So,  3 Mär 2019 07:00
     2019-02-28 11:53:56   fc4_apparentTempLow 6
     2019-02-28 11:53:56   fc4_apparentTempLowTime Mo,  4 Mär 2019 08:00
     2019-02-28 11:53:56   fc4_cloudCover  100
     2019-02-28 11:53:56   fc4_code        11
     2019-02-28 11:53:56   fc4_condition   Leichter Regen und Wind am Vormittag.
     2019-02-28 11:53:56   fc4_day_of_week So
     2019-02-28 11:53:56   fc4_dewPoint    6
     2019-02-28 11:53:56   fc4_high_c      11
     2019-02-28 11:53:56   fc4_humidity    77
     2019-02-28 11:53:56   fc4_icon        chance_of_rain
     2019-02-28 11:53:56   fc4_iconAPI     rain
     2019-02-28 11:53:56   fc4_low_c       9
     2019-02-28 11:53:56   fc4_moonPhase   0.9
     2019-02-28 11:53:56   fc4_ozone       331.51
     2019-02-28 11:53:56   fc4_precipIntensity 0.4115
     2019-02-28 11:53:56   fc4_precipIntensityMax 0.8865
     2019-02-28 11:53:56   fc4_precipIntensityMaxTime So,  3 Mär 2019 10:00
     2019-02-28 11:53:56   fc4_precipProbability 97
     2019-02-28 11:53:56   fc4_precipType  rain
     2019-02-28 11:53:56   fc4_pressure    1004
     2019-02-28 11:53:56   fc4_pubDate     So,  3 Mär 2019 00:00
     2019-02-28 11:53:56   fc4_sunriseTime So,  3 Mär 2019 07:05
     2019-02-28 11:53:56   fc4_sunsetTime  So,  3 Mär 2019 18:04
     2019-02-28 11:53:56   fc4_tempHigh    11
     2019-02-28 11:53:56   fc4_tempHighTime So,  3 Mär 2019 07:00
     2019-02-28 11:53:56   fc4_tempLow     9
     2019-02-28 11:53:56   fc4_tempLowTime Mo,  4 Mär 2019 07:00
     2019-02-28 11:53:56   fc4_uvIndex     2
     2019-02-28 11:53:56   fc4_uvIndexTime So,  3 Mär 2019 12:00
     2019-02-28 11:53:56   fc4_visibility  8
     2019-02-28 11:53:56   fc4_wind        18
     2019-02-28 11:53:56   fc4_windGust    63
     2019-02-28 11:53:56   fc4_windGustTime So,  3 Mär 2019 04:00
     2019-02-28 11:53:56   fc4_wind_condition Wind: SW 18 km/h
     2019-02-28 11:53:56   fc4_wind_direction 233
     2019-02-28 11:53:56   fc4_wind_speed  18
     2019-02-28 11:53:56   fc5_apparentTempHigh 10
     2019-02-28 11:53:56   fc5_apparentTempHighTime Mo,  4 Mär 2019 10:00
     2019-02-28 11:53:56   fc5_apparentTempLow 1
     2019-02-28 11:53:56   fc5_apparentTempLowTime Di,  5 Mär 2019 08:00
     2019-02-28 11:53:56   fc5_cloudCover  81
     2019-02-28 11:53:56   fc5_code        24
     2019-02-28 11:53:56   fc5_condition   Den ganzen Tag lang frische Brise und Abend Nebel.
     2019-02-28 11:53:56   fc5_day_of_week Mo
     2019-02-28 11:53:56   fc5_dewPoint    3
     2019-02-28 11:53:56   fc5_high_c      10
     2019-02-28 11:53:56   fc5_humidity    66
     2019-02-28 11:53:56   fc5_icon        windy
     2019-02-28 11:53:56   fc5_iconAPI     wind
     2019-02-28 11:53:56   fc5_low_c       5
     2019-02-28 11:53:56   fc5_moonPhase   0.93
     2019-02-28 11:53:56   fc5_ozone       384.27
     2019-02-28 11:53:56   fc5_precipIntensity 0.1956
     2019-02-28 11:53:56   fc5_precipIntensityMax 0.5486
     2019-02-28 11:53:56   fc5_precipIntensityMaxTime Mo,  4 Mär 2019 19:00
     2019-02-28 11:53:56   fc5_precipProbability 68
     2019-02-28 11:53:56   fc5_precipType  rain
     2019-02-28 11:53:56   fc5_pressure    992
     2019-02-28 11:53:56   fc5_pubDate     Mo,  4 Mär 2019 00:00
     2019-02-28 11:53:56   fc5_sunriseTime Mo,  4 Mär 2019 07:03
     2019-02-28 11:53:56   fc5_sunsetTime  Mo,  4 Mär 2019 18:06
     2019-02-28 11:53:56   fc5_tempHigh    10
     2019-02-28 11:53:56   fc5_tempHighTime Mo,  4 Mär 2019 10:00
     2019-02-28 11:53:56   fc5_tempLow     5
     2019-02-28 11:53:56   fc5_tempLowTime Di,  5 Mär 2019 07:00
     2019-02-28 11:53:56   fc5_uvIndex     2
     2019-02-28 11:53:56   fc5_uvIndexTime Mo,  4 Mär 2019 12:00
     2019-02-28 11:53:56   fc5_visibility  13
     2019-02-28 11:53:56   fc5_wind        32
     2019-02-28 11:53:56   fc5_windGust    72
     2019-02-28 11:53:56   fc5_windGustTime Mo,  4 Mär 2019 11:00
     2019-02-28 11:53:56   fc5_wind_condition Wind: WSW 32 km/h
     2019-02-28 11:53:56   fc5_wind_direction 238
     2019-02-28 11:53:56   fc5_wind_speed  32
     2019-02-28 11:53:56   fc6_apparentTempHigh 5
     2019-02-28 11:53:56   fc6_apparentTempHighTime Di,  5 Mär 2019 18:00
     2019-02-28 11:53:56   fc6_apparentTempLow 1
     2019-02-28 11:53:56   fc6_apparentTempLowTime Mi,  6 Mär 2019 07:00
     2019-02-28 11:53:56   fc6_cloudCover  80
     2019-02-28 11:53:56   fc6_code        20
     2019-02-28 11:53:56   fc6_condition   Nebel am Nachmittag.
     2019-02-28 11:53:56   fc6_day_of_week Di
     2019-02-28 11:53:56   fc6_dewPoint    1
     2019-02-28 11:53:56   fc6_high_c      9
     2019-02-28 11:53:56   fc6_humidity    68
     2019-02-28 11:53:56   fc6_icon        fog
     2019-02-28 11:53:56   fc6_iconAPI     fog
     2019-02-28 11:53:56   fc6_low_c       4
     2019-02-28 11:53:56   fc6_moonPhase   0.96
     2019-02-28 11:53:56   fc6_ozone       450.74
     2019-02-28 11:53:56   fc6_precipIntensity 0.0635
     2019-02-28 11:53:56   fc6_precipIntensityMax 0.2692
     2019-02-28 11:53:56   fc6_precipIntensityMaxTime Di,  5 Mär 2019 16:00
     2019-02-28 11:53:56   fc6_precipProbability 42
     2019-02-28 11:53:56   fc6_precipType  rain
     2019-02-28 11:53:56   fc6_pressure    1000
     2019-02-28 11:53:56   fc6_pubDate     Di,  5 Mär 2019 00:00
     2019-02-28 11:53:56   fc6_sunriseTime Di,  5 Mär 2019 07:00
     2019-02-28 11:53:56   fc6_sunsetTime  Di,  5 Mär 2019 18:08
     2019-02-28 11:53:56   fc6_tempHigh    9
     2019-02-28 11:53:56   fc6_tempHighTime Di,  5 Mär 2019 15:00
     2019-02-28 11:53:56   fc6_tempLow     4
     2019-02-28 11:53:56   fc6_tempLowTime Mi,  6 Mär 2019 04:00
     2019-02-28 11:53:56   fc6_uvIndex     1
     2019-02-28 11:53:56   fc6_uvIndexTime Di,  5 Mär 2019 10:00
     2019-02-28 11:53:56   fc6_visibility  14
     2019-02-28 11:53:56   fc6_wind        19
     2019-02-28 11:53:56   fc6_windGust    55
     2019-02-28 11:53:56   fc6_windGustTime Di,  5 Mär 2019 00:00
     2019-02-28 11:53:56   fc6_wind_condition Wind: W 19 km/h
     2019-02-28 11:53:56   fc6_wind_direction 260
     2019-02-28 11:53:56   fc6_wind_speed  19
     2019-02-28 11:53:56   fc7_apparentTempHigh 5
     2019-02-28 11:53:56   fc7_apparentTempHighTime Mi,  6 Mär 2019 19:00
     2019-02-28 11:53:56   fc7_apparentTempLow 3
     2019-02-28 11:53:56   fc7_apparentTempLowTime Do,  7 Mär 2019 05:00
     2019-02-28 11:53:56   fc7_cloudCover  97
     2019-02-28 11:53:56   fc7_code        20
     2019-02-28 11:53:56   fc7_condition   Nebel von nachmittags bis abends.
     2019-02-28 11:53:56   fc7_day_of_week Mi
     2019-02-28 11:53:56   fc7_dewPoint    1
     2019-02-28 11:53:56   fc7_high_c      8
     2019-02-28 11:53:56   fc7_humidity    71
     2019-02-28 11:53:56   fc7_icon        fog
     2019-02-28 11:53:56   fc7_iconAPI     fog
     2019-02-28 11:53:56   fc7_low_c       6
     2019-02-28 11:53:56   fc7_moonPhase   0.99
     2019-02-28 11:53:56   fc7_ozone       348.7
     2019-02-28 11:53:56   fc7_precipIntensity 0.221
     2019-02-28 11:53:56   fc7_precipIntensityMax 0.8433
     2019-02-28 11:53:56   fc7_precipIntensityMaxTime Mi,  6 Mär 2019 04:00
     2019-02-28 11:53:56   fc7_precipProbability 87
     2019-02-28 11:53:56   fc7_precipType  rain
     2019-02-28 11:53:56   fc7_pressure    1000
     2019-02-28 11:53:56   fc7_pubDate     Mi,  6 Mär 2019 00:00
     2019-02-28 11:53:56   fc7_sunriseTime Mi,  6 Mär 2019 06:58
     2019-02-28 11:53:56   fc7_sunsetTime  Mi,  6 Mär 2019 18:09
     2019-02-28 11:53:56   fc7_tempHigh    8
     2019-02-28 11:53:56   fc7_tempHighTime Mi,  6 Mär 2019 13:00
     2019-02-28 11:53:56   fc7_tempLow     6
     2019-02-28 11:53:56   fc7_tempLowTime Do,  7 Mär 2019 05:00
     2019-02-28 11:53:56   fc7_uvIndex     2
     2019-02-28 11:53:56   fc7_uvIndexTime Mi,  6 Mär 2019 12:00
     2019-02-28 11:53:56   fc7_visibility  11
     2019-02-28 11:53:56   fc7_wind        19
     2019-02-28 11:53:56   fc7_windGust    47
     2019-02-28 11:53:56   fc7_windGustTime Mi,  6 Mär 2019 13:00
     2019-02-28 11:53:56   fc7_wind_condition Wind: SSO 19 km/h
     2019-02-28 11:53:56   fc7_wind_direction 154
     2019-02-28 11:53:56   fc7_wind_speed  19
     2019-02-28 11:53:56   fc8_apparentTempHigh 6
     2019-02-28 11:53:56   fc8_apparentTempHighTime Do,  7 Mär 2019 10:00
     2019-02-28 11:53:56   fc8_apparentTempLow 3
     2019-02-28 11:53:56   fc8_apparentTempLowTime Fr,  8 Mär 2019 08:00
     2019-02-28 11:53:56   fc8_cloudCover  94
     2019-02-28 11:53:56   fc8_code        30
     2019-02-28 11:53:56   fc8_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc8_day_of_week Do
     2019-02-28 11:53:56   fc8_dewPoint    2
     2019-02-28 11:53:56   fc8_high_c      9
     2019-02-28 11:53:56   fc8_humidity    72
     2019-02-28 11:53:56   fc8_icon        partly_cloudy
     2019-02-28 11:53:56   fc8_iconAPI     partly-cloudy-day
     2019-02-28 11:53:56   fc8_low_c       6
     2019-02-28 11:53:56   fc8_moonPhase   0.03
     2019-02-28 11:53:56   fc8_ozone       406.16
     2019-02-28 11:53:56   fc8_precipIntensity 0.0864
     2019-02-28 11:53:56   fc8_precipIntensityMax 0.2718
     2019-02-28 11:53:56   fc8_precipIntensityMaxTime Do,  7 Mär 2019 04:00
     2019-02-28 11:53:56   fc8_precipProbability 78
     2019-02-28 11:53:56   fc8_precipType  rain
     2019-02-28 11:53:56   fc8_pressure    1004
     2019-02-28 11:53:56   fc8_pubDate     Do,  7 Mär 2019 00:00
     2019-02-28 11:53:56   fc8_sunriseTime Do,  7 Mär 2019 06:56
     2019-02-28 11:53:56   fc8_sunsetTime  Do,  7 Mär 2019 18:11
     2019-02-28 11:53:56   fc8_tempHigh    9
     2019-02-28 11:53:56   fc8_tempHighTime Do,  7 Mär 2019 10:00
     2019-02-28 11:53:56   fc8_tempLow     6
     2019-02-28 11:53:56   fc8_tempLowTime Fr,  8 Mär 2019 07:00
     2019-02-28 11:53:56   fc8_uvIndex     1
     2019-02-28 11:53:56   fc8_uvIndexTime Do,  7 Mär 2019 10:00
     2019-02-28 11:53:56   fc8_visibility  14
     2019-02-28 11:53:56   fc8_wind        17
     2019-02-28 11:53:56   fc8_windGust    52
     2019-02-28 11:53:56   fc8_windGustTime Do,  7 Mär 2019 13:00
     2019-02-28 11:53:56   fc8_wind_condition Wind: SW 17 km/h
     2019-02-28 11:53:56   fc8_wind_direction 220
     2019-02-28 11:53:56   fc8_wind_speed  17
     2019-02-28 11:53:56   hfc10_cloudCover 100
     2019-02-28 11:53:56   hfc10_code      26
     2019-02-28 11:53:56   hfc10_condition Stark bewölkt
     2019-02-28 11:53:56   hfc10_day_of_week Do, 20:00
     2019-02-28 11:53:56   hfc10_dewPoint  4.8
     2019-02-28 11:53:56   hfc10_humidity  73
     2019-02-28 11:53:56   hfc10_icon      cloudy
     2019-02-28 11:53:56   hfc10_iconAPI   cloudy
     2019-02-28 11:53:56   hfc10_ozone     323.95
     2019-02-28 11:53:56   hfc10_precipIntensity 0
     2019-02-28 11:53:56   hfc10_precipProbability 0
     2019-02-28 11:53:56   hfc10_precipType -
     2019-02-28 11:53:56   hfc10_pressure  1012.5
     2019-02-28 11:53:56   hfc10_pubDate   Do, 28 Feb 2019 20:00
     2019-02-28 11:53:56   hfc10_temperature 9.5
     2019-02-28 11:53:56   hfc10_uvIndex   0
     2019-02-28 11:53:56   hfc10_visibility 16.1
     2019-02-28 11:53:56   hfc10_wind      8
     2019-02-28 11:53:56   hfc10_windGust  17
     2019-02-28 11:53:56   hfc10_wind_condition Wind: N 8 km/h
     2019-02-28 11:53:56   hfc10_wind_direction 5
     2019-02-28 11:53:56   hfc10_wind_speed 8
     2019-02-28 11:53:56   hfc11_cloudCover 100
     2019-02-28 11:53:56   hfc11_code      26
     2019-02-28 11:53:56   hfc11_condition Stark bewölkt
     2019-02-28 11:53:56   hfc11_day_of_week Do, 21:00
     2019-02-28 11:53:56   hfc11_dewPoint  4.9
     2019-02-28 11:53:56   hfc11_humidity  78
     2019-02-28 11:53:56   hfc11_icon      cloudy
     2019-02-28 11:53:56   hfc11_iconAPI   cloudy
     2019-02-28 11:53:56   hfc11_ozone     335.65
     2019-02-28 11:53:56   hfc11_precipIntensity 0
     2019-02-28 11:53:56   hfc11_precipProbability 0
     2019-02-28 11:53:56   hfc11_precipType -
     2019-02-28 11:53:56   hfc11_pressure  1012.5
     2019-02-28 11:53:56   hfc11_pubDate   Do, 28 Feb 2019 21:00
     2019-02-28 11:53:56   hfc11_temperature 8.6
     2019-02-28 11:53:56   hfc11_uvIndex   0
     2019-02-28 11:53:56   hfc11_visibility 16.1
     2019-02-28 11:53:56   hfc11_wind      7
     2019-02-28 11:53:56   hfc11_windGust  12
     2019-02-28 11:53:56   hfc11_wind_condition Wind: S 7 km/h
     2019-02-28 11:53:56   hfc11_wind_direction 172
     2019-02-28 11:53:56   hfc11_wind_speed 7
     2019-02-28 11:53:56   hfc12_cloudCover 100
     2019-02-28 11:53:56   hfc12_code      26
     2019-02-28 11:53:56   hfc12_condition Stark bewölkt
     2019-02-28 11:53:56   hfc12_day_of_week Do, 22:00
     2019-02-28 11:53:56   hfc12_dewPoint  5.1
     2019-02-28 11:53:56   hfc12_humidity  81
     2019-02-28 11:53:56   hfc12_icon      cloudy
     2019-02-28 11:53:56   hfc12_iconAPI   cloudy
     2019-02-28 11:53:56   hfc12_ozone     346.59
     2019-02-28 11:53:56   hfc12_precipIntensity 0
     2019-02-28 11:53:56   hfc12_precipProbability 0
     2019-02-28 11:53:56   hfc12_precipType -
     2019-02-28 11:53:56   hfc12_pressure  1012.4
     2019-02-28 11:53:56   hfc12_pubDate   Do, 28 Feb 2019 22:00
     2019-02-28 11:53:56   hfc12_temperature 8.2
     2019-02-28 11:53:56   hfc12_uvIndex   0
     2019-02-28 11:53:56   hfc12_visibility 16.1
     2019-02-28 11:53:56   hfc12_wind      6
     2019-02-28 11:53:56   hfc12_windGust  8
     2019-02-28 11:53:56   hfc12_wind_condition Wind: W 6 km/h
     2019-02-28 11:53:56   hfc12_wind_direction 262
     2019-02-28 11:53:56   hfc12_wind_speed 6
     2019-02-28 11:53:56   hfc13_cloudCover 100
     2019-02-28 11:53:56   hfc13_code      26
     2019-02-28 11:53:56   hfc13_condition Stark bewölkt
     2019-02-28 11:53:56   hfc13_day_of_week Do, 23:00
     2019-02-28 11:53:56   hfc13_dewPoint  5.4
     2019-02-28 11:53:56   hfc13_humidity  82
     2019-02-28 11:53:56   hfc13_icon      cloudy
     2019-02-28 11:53:56   hfc13_iconAPI   cloudy
     2019-02-28 11:53:56   hfc13_ozone     357.14
     2019-02-28 11:53:56   hfc13_precipIntensity 0.0051
     2019-02-28 11:53:56   hfc13_precipProbability 3
     2019-02-28 11:53:56   hfc13_precipType rain
     2019-02-28 11:53:56   hfc13_pressure  1012.2
     2019-02-28 11:53:56   hfc13_pubDate   Do, 28 Feb 2019 23:00
     2019-02-28 11:53:56   hfc13_temperature 8.2
     2019-02-28 11:53:56   hfc13_uvIndex   0
     2019-02-28 11:53:56   hfc13_visibility 16.1
     2019-02-28 11:53:56   hfc13_wind      6
     2019-02-28 11:53:56   hfc13_windGust  8
     2019-02-28 11:53:56   hfc13_wind_condition Wind: W 6 km/h
     2019-02-28 11:53:56   hfc13_wind_direction 267
     2019-02-28 11:53:56   hfc13_wind_speed 6
     2019-02-28 11:53:56   hfc14_cloudCover 100
     2019-02-28 11:53:56   hfc14_code      26
     2019-02-28 11:53:56   hfc14_condition Stark bewölkt
     2019-02-28 11:53:56   hfc14_day_of_week Fr, 00:00
     2019-02-28 11:53:56   hfc14_dewPoint  5.7
     2019-02-28 11:53:56   hfc14_humidity  84
     2019-02-28 11:53:56   hfc14_icon      cloudy
     2019-02-28 11:53:56   hfc14_iconAPI   cloudy
     2019-02-28 11:53:56   hfc14_ozone     367.15
     2019-02-28 11:53:56   hfc14_precipIntensity 0.0152
     2019-02-28 11:53:56   hfc14_precipProbability 5
     2019-02-28 11:53:56   hfc14_precipType rain
     2019-02-28 11:53:56   hfc14_pressure  1012.0
     2019-02-28 11:53:56   hfc14_pubDate   Fr,  1 Mär 2019 00:00
     2019-02-28 11:53:56   hfc14_temperature 8.4
     2019-02-28 11:53:56   hfc14_uvIndex   0
     2019-02-28 11:53:56   hfc14_visibility 16.1
     2019-02-28 11:53:56   hfc14_wind      7
     2019-02-28 11:53:56   hfc14_windGust  10
     2019-02-28 11:53:56   hfc14_wind_condition Wind: W 7 km/h
     2019-02-28 11:53:56   hfc14_wind_direction 266
     2019-02-28 11:53:56   hfc14_wind_speed 7
     2019-02-28 11:53:56   hfc15_cloudCover 99
     2019-02-28 11:53:56   hfc15_code      26
     2019-02-28 11:53:56   hfc15_condition Stark bewölkt
     2019-02-28 11:53:56   hfc15_day_of_week Fr, 01:00
     2019-02-28 11:53:56   hfc15_dewPoint  6.0
     2019-02-28 11:53:56   hfc15_humidity  85
     2019-02-28 11:53:56   hfc15_icon      cloudy
     2019-02-28 11:53:56   hfc15_iconAPI   cloudy
     2019-02-28 11:53:56   hfc15_ozone     373.04
     2019-02-28 11:53:56   hfc15_precipIntensity 0.0254
     2019-02-28 11:53:56   hfc15_precipProbability 7
     2019-02-28 11:53:56   hfc15_precipType rain
     2019-02-28 11:53:56   hfc15_pressure  1011.7
     2019-02-28 11:53:56   hfc15_pubDate   Fr,  1 Mär 2019 01:00
     2019-02-28 11:53:56   hfc15_temperature 8.4
     2019-02-28 11:53:56   hfc15_uvIndex   0
     2019-02-28 11:53:56   hfc15_visibility 16.1
     2019-02-28 11:53:56   hfc15_wind      7
     2019-02-28 11:53:56   hfc15_windGust  11
     2019-02-28 11:53:56   hfc15_wind_condition Wind: WSW 7 km/h
     2019-02-28 11:53:56   hfc15_wind_direction 255
     2019-02-28 11:53:56   hfc15_wind_speed 7
     2019-02-28 11:53:56   hfc16_cloudCover 97
     2019-02-28 11:53:56   hfc16_code      26
     2019-02-28 11:53:56   hfc16_condition Stark bewölkt
     2019-02-28 11:53:56   hfc16_day_of_week Fr, 02:00
     2019-02-28 11:53:56   hfc16_dewPoint  6.2
     2019-02-28 11:53:56   hfc16_humidity  87
     2019-02-28 11:53:56   hfc16_icon      cloudy
     2019-02-28 11:53:56   hfc16_iconAPI   cloudy
     2019-02-28 11:53:56   hfc16_ozone     372.73
     2019-02-28 11:53:56   hfc16_precipIntensity 0.0305
     2019-02-28 11:53:56   hfc16_precipProbability 9
     2019-02-28 11:53:56   hfc16_precipType rain
     2019-02-28 11:53:56   hfc16_pressure  1011.3
     2019-02-28 11:53:56   hfc16_pubDate   Fr,  1 Mär 2019 02:00
     2019-02-28 11:53:56   hfc16_temperature 8.2
     2019-02-28 11:53:56   hfc16_uvIndex   0
     2019-02-28 11:53:56   hfc16_visibility 16.1
     2019-02-28 11:53:56   hfc16_wind      7
     2019-02-28 11:53:56   hfc16_windGust  11
     2019-02-28 11:53:56   hfc16_wind_condition Wind: W 7 km/h
     2019-02-28 11:53:56   hfc16_wind_direction 265
     2019-02-28 11:53:56   hfc16_wind_speed 7
     2019-02-28 11:53:56   hfc17_cloudCover 94
     2019-02-28 11:53:56   hfc17_code      26
     2019-02-28 11:53:56   hfc17_condition Stark bewölkt
     2019-02-28 11:53:56   hfc17_day_of_week Fr, 03:00
     2019-02-28 11:53:56   hfc17_dewPoint  6.3
     2019-02-28 11:53:56   hfc17_humidity  89
     2019-02-28 11:53:56   hfc17_icon      cloudy
     2019-02-28 11:53:56   hfc17_iconAPI   cloudy
     2019-02-28 11:53:56   hfc17_ozone     368.56
     2019-02-28 11:53:56   hfc17_precipIntensity 0.0305
     2019-02-28 11:53:56   hfc17_precipProbability 10
     2019-02-28 11:53:56   hfc17_precipType rain
     2019-02-28 11:53:56   hfc17_pressure  1010.8
     2019-02-28 11:53:56   hfc17_pubDate   Fr,  1 Mär 2019 03:00
     2019-02-28 11:53:56   hfc17_temperature 8.0
     2019-02-28 11:53:56   hfc17_uvIndex   0
     2019-02-28 11:53:56   hfc17_visibility 16.1
     2019-02-28 11:53:56   hfc17_wind      7
     2019-02-28 11:53:56   hfc17_windGust  11
     2019-02-28 11:53:56   hfc17_wind_condition Wind: W 7 km/h
     2019-02-28 11:53:56   hfc17_wind_direction 270
     2019-02-28 11:53:56   hfc17_wind_speed 7
     2019-02-28 11:53:56   hfc18_cloudCover 92
     2019-02-28 11:53:56   hfc18_code      29
     2019-02-28 11:53:56   hfc18_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc18_day_of_week Fr, 04:00
     2019-02-28 11:53:56   hfc18_dewPoint  6.3
     2019-02-28 11:53:56   hfc18_humidity  90
     2019-02-28 11:53:56   hfc18_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc18_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc18_ozone     364.41
     2019-02-28 11:53:56   hfc18_precipIntensity 0.0254
     2019-02-28 11:53:56   hfc18_precipProbability 11
     2019-02-28 11:53:56   hfc18_precipType rain
     2019-02-28 11:53:56   hfc18_pressure  1010.6
     2019-02-28 11:53:56   hfc18_pubDate   Fr,  1 Mär 2019 04:00
     2019-02-28 11:53:56   hfc18_temperature 7.8
     2019-02-28 11:53:56   hfc18_uvIndex   0
     2019-02-28 11:53:56   hfc18_visibility 16.1
     2019-02-28 11:53:56   hfc18_wind      7
     2019-02-28 11:53:56   hfc18_windGust  11
     2019-02-28 11:53:56   hfc18_wind_condition Wind: WSW 7 km/h
     2019-02-28 11:53:56   hfc18_wind_direction 256
     2019-02-28 11:53:56   hfc18_wind_speed 7
     2019-02-28 11:53:56   hfc19_cloudCover 92
     2019-02-28 11:53:56   hfc19_code      29
     2019-02-28 11:53:56   hfc19_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc19_day_of_week Fr, 05:00
     2019-02-28 11:53:56   hfc19_dewPoint  6.3
     2019-02-28 11:53:56   hfc19_humidity  91
     2019-02-28 11:53:56   hfc19_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc19_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc19_ozone     360.69
     2019-02-28 11:53:56   hfc19_precipIntensity 0.0203
     2019-02-28 11:53:56   hfc19_precipProbability 12
     2019-02-28 11:53:56   hfc19_precipType rain
     2019-02-28 11:53:56   hfc19_pressure  1010.6
     2019-02-28 11:53:56   hfc19_pubDate   Fr,  1 Mär 2019 05:00
     2019-02-28 11:53:56   hfc19_temperature 7.6
     2019-02-28 11:53:56   hfc19_uvIndex   0
     2019-02-28 11:53:56   hfc19_visibility 16.1
     2019-02-28 11:53:56   hfc19_wind      7
     2019-02-28 11:53:56   hfc19_windGust  12
     2019-02-28 11:53:56   hfc19_wind_condition Wind: S 7 km/h
     2019-02-28 11:53:56   hfc19_wind_direction 171
     2019-02-28 11:53:56   hfc19_wind_speed 7
     2019-02-28 11:53:56   hfc1_cloudCover 44
     2019-02-28 11:53:56   hfc1_code       30
     2019-02-28 11:53:56   hfc1_condition  Leicht bewölkt
     2019-02-28 11:53:56   hfc1_day_of_week Do, 11:00
     2019-02-28 11:53:56   hfc1_dewPoint   3.9
     2019-02-28 11:53:56   hfc1_humidity   70
     2019-02-28 11:53:56   hfc1_icon       partly_cloudy
     2019-02-28 11:53:56   hfc1_iconAPI    partly-cloudy-day
     2019-02-28 11:53:56   hfc1_ozone      282.08
     2019-02-28 11:53:56   hfc1_precipIntensity 0
     2019-02-28 11:53:56   hfc1_precipProbability 0
     2019-02-28 11:53:56   hfc1_precipType -
     2019-02-28 11:53:56   hfc1_pressure   1013.7
     2019-02-28 11:53:56   hfc1_pubDate    Do, 28 Feb 2019 11:00
     2019-02-28 11:53:56   hfc1_temperature 9.0
     2019-02-28 11:53:56   hfc1_uvIndex    2
     2019-02-28 11:53:56   hfc1_visibility 6.8
     2019-02-28 11:53:56   hfc1_wind       22
     2019-02-28 11:53:56   hfc1_windGust   29
     2019-02-28 11:53:56   hfc1_wind_condition Wind: W 22 km/h
     2019-02-28 11:53:56   hfc1_wind_direction 270
     2019-02-28 11:53:56   hfc1_wind_speed 22
     2019-02-28 11:53:56   hfc20_cloudCover 92
     2019-02-28 11:53:56   hfc20_code      29
     2019-02-28 11:53:56   hfc20_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc20_day_of_week Fr, 06:00
     2019-02-28 11:53:56   hfc20_dewPoint  6.1
     2019-02-28 11:53:56   hfc20_humidity  92
     2019-02-28 11:53:56   hfc20_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc20_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc20_ozone     356.98
     2019-02-28 11:53:56   hfc20_precipIntensity 0.0203
     2019-02-28 11:53:56   hfc20_precipProbability 13
     2019-02-28 11:53:56   hfc20_precipType rain
     2019-02-28 11:53:56   hfc20_pressure  1010.7
     2019-02-28 11:53:56   hfc20_pubDate   Fr,  1 Mär 2019 06:00
     2019-02-28 11:53:56   hfc20_temperature 7.4
     2019-02-28 11:53:56   hfc20_uvIndex   0
     2019-02-28 11:53:56   hfc20_visibility 16.1
     2019-02-28 11:53:56   hfc20_wind      7
     2019-02-28 11:53:56   hfc20_windGust  13
     2019-02-28 11:53:56   hfc20_wind_condition Wind: NO 7 km/h
     2019-02-28 11:53:56   hfc20_wind_direction 54
     2019-02-28 11:53:56   hfc20_wind_speed 7
     2019-02-28 11:53:56   hfc21_cloudCover 92
     2019-02-28 11:53:56   hfc21_code      29
     2019-02-28 11:53:56   hfc21_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc21_day_of_week Fr, 07:00
     2019-02-28 11:53:56   hfc21_dewPoint  5.7
     2019-02-28 11:53:56   hfc21_humidity  93
     2019-02-28 11:53:56   hfc21_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc21_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc21_ozone     355.48
     2019-02-28 11:53:56   hfc21_precipIntensity 0.0229
     2019-02-28 11:53:56   hfc21_precipProbability 13
     2019-02-28 11:53:56   hfc21_precipType rain
     2019-02-28 11:53:56   hfc21_pressure  1011.0
     2019-02-28 11:53:56   hfc21_pubDate   Fr,  1 Mär 2019 07:00
     2019-02-28 11:53:56   hfc21_temperature 6.8
     2019-02-28 11:53:56   hfc21_uvIndex   0
     2019-02-28 11:53:56   hfc21_visibility 16.1
     2019-02-28 11:53:56   hfc21_wind      7
     2019-02-28 11:53:56   hfc21_windGust  14
     2019-02-28 11:53:56   hfc21_wind_condition Wind: NNW 7 km/h
     2019-02-28 11:53:56   hfc21_wind_direction 329
     2019-02-28 11:53:56   hfc21_wind_speed 7
     2019-02-28 11:53:56   hfc22_cloudCover 94
     2019-02-28 11:53:56   hfc22_code      26
     2019-02-28 11:53:56   hfc22_condition Stark bewölkt
     2019-02-28 11:53:56   hfc22_day_of_week Fr, 08:00
     2019-02-28 11:53:56   hfc22_dewPoint  4.9
     2019-02-28 11:53:56   hfc22_humidity  92
     2019-02-28 11:53:56   hfc22_icon      cloudy
     2019-02-28 11:53:56   hfc22_iconAPI   cloudy
     2019-02-28 11:53:56   hfc22_ozone     357.89
     2019-02-28 11:53:56   hfc22_precipIntensity 0.0127
     2019-02-28 11:53:56   hfc22_precipProbability 9
     2019-02-28 11:53:56   hfc22_precipType rain
     2019-02-28 11:53:56   hfc22_pressure  1011.4
     2019-02-28 11:53:56   hfc22_pubDate   Fr,  1 Mär 2019 08:00
     2019-02-28 11:53:56   hfc22_temperature 6.1
     2019-02-28 11:53:56   hfc22_uvIndex   0
     2019-02-28 11:53:56   hfc22_visibility 16.1
     2019-02-28 11:53:56   hfc22_wind      8
     2019-02-28 11:53:56   hfc22_windGust  15
     2019-02-28 11:53:56   hfc22_wind_condition Wind: NW 8 km/h
     2019-02-28 11:53:56   hfc22_wind_direction 313
     2019-02-28 11:53:56   hfc22_wind_speed 8
     2019-02-28 11:53:56   hfc23_cloudCover 95
     2019-02-28 11:53:56   hfc23_code      26
     2019-02-28 11:53:56   hfc23_condition Stark bewölkt
     2019-02-28 11:53:56   hfc23_day_of_week Fr, 09:00
     2019-02-28 11:53:56   hfc23_dewPoint  3.9
     2019-02-28 11:53:56   hfc23_humidity  88
     2019-02-28 11:53:56   hfc23_icon      cloudy
     2019-02-28 11:53:56   hfc23_iconAPI   cloudy
     2019-02-28 11:53:56   hfc23_ozone     362.51
     2019-02-28 11:53:56   hfc23_precipIntensity 0
     2019-02-28 11:53:56   hfc23_precipProbability 0
     2019-02-28 11:53:56   hfc23_precipType -
     2019-02-28 11:53:56   hfc23_pressure  1011.9
     2019-02-28 11:53:56   hfc23_pubDate   Fr,  1 Mär 2019 09:00
     2019-02-28 11:53:56   hfc23_temperature 5.7
     2019-02-28 11:53:56   hfc23_uvIndex   0
     2019-02-28 11:53:56   hfc23_visibility 16.1
     2019-02-28 11:53:56   hfc23_wind      9
     2019-02-28 11:53:56   hfc23_windGust  15
     2019-02-28 11:53:56   hfc23_wind_condition Wind: NNW 9 km/h
     2019-02-28 11:53:56   hfc23_wind_direction 329
     2019-02-28 11:53:56   hfc23_wind_speed 9
     2019-02-28 11:53:56   hfc24_cloudCover 92
     2019-02-28 11:53:56   hfc24_code      30
     2019-02-28 11:53:56   hfc24_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc24_day_of_week Fr, 10:00
     2019-02-28 11:53:56   hfc24_dewPoint  3.0
     2019-02-28 11:53:56   hfc24_humidity  81
     2019-02-28 11:53:56   hfc24_icon      partly_cloudy
     2019-02-28 11:53:56   hfc24_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc24_ozone     366.14
     2019-02-28 11:53:56   hfc24_precipIntensity 0
     2019-02-28 11:53:56   hfc24_precipProbability 0
     2019-02-28 11:53:56   hfc24_precipType -
     2019-02-28 11:53:56   hfc24_pressure  1012.4
     2019-02-28 11:53:56   hfc24_pubDate   Fr,  1 Mär 2019 10:00
     2019-02-28 11:53:56   hfc24_temperature 6.0
     2019-02-28 11:53:56   hfc24_uvIndex   1
     2019-02-28 11:53:56   hfc24_visibility 16.1
     2019-02-28 11:53:56   hfc24_wind      11
     2019-02-28 11:53:56   hfc24_windGust  16
     2019-02-28 11:53:56   hfc24_wind_condition Wind: NNW 11 km/h
     2019-02-28 11:53:56   hfc24_wind_direction 342
     2019-02-28 11:53:56   hfc24_wind_speed 11
     2019-02-28 11:53:56   hfc25_cloudCover 81
     2019-02-28 11:53:56   hfc25_code      30
     2019-02-28 11:53:56   hfc25_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc25_day_of_week Fr, 11:00
     2019-02-28 11:53:56   hfc25_dewPoint  2.5
     2019-02-28 11:53:56   hfc25_humidity  73
     2019-02-28 11:53:56   hfc25_icon      partly_cloudy
     2019-02-28 11:53:56   hfc25_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc25_ozone     367.66
     2019-02-28 11:53:56   hfc25_precipIntensity 0
     2019-02-28 11:53:56   hfc25_precipProbability 0
     2019-02-28 11:53:56   hfc25_precipType -
     2019-02-28 11:53:56   hfc25_pressure  1012.8
     2019-02-28 11:53:56   hfc25_pubDate   Fr,  1 Mär 2019 11:00
     2019-02-28 11:53:56   hfc25_temperature 7.0
     2019-02-28 11:53:56   hfc25_uvIndex   1
     2019-02-28 11:53:56   hfc25_visibility 16.1
     2019-02-28 11:53:56   hfc25_wind      12
     2019-02-28 11:53:56   hfc25_windGust  17
     2019-02-28 11:53:56   hfc25_wind_condition Wind: NNW 12 km/h
     2019-02-28 11:53:56   hfc25_wind_direction 335
     2019-02-28 11:53:56   hfc25_wind_speed 12
     2019-02-28 11:53:56   hfc26_cloudCover 65
     2019-02-28 11:53:56   hfc26_code      30
     2019-02-28 11:53:56   hfc26_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc26_day_of_week Fr, 12:00
     2019-02-28 11:53:56   hfc26_dewPoint  2.1
     2019-02-28 11:53:56   hfc26_humidity  64
     2019-02-28 11:53:56   hfc26_icon      partly_cloudy
     2019-02-28 11:53:56   hfc26_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc26_ozone     368.21
     2019-02-28 11:53:56   hfc26_precipIntensity 0
     2019-02-28 11:53:56   hfc26_precipProbability 0
     2019-02-28 11:53:56   hfc26_precipType -
     2019-02-28 11:53:56   hfc26_pressure  1013.3
     2019-02-28 11:53:56   hfc26_pubDate   Fr,  1 Mär 2019 12:00
     2019-02-28 11:53:56   hfc26_temperature 8.7
     2019-02-28 11:53:56   hfc26_uvIndex   2
     2019-02-28 11:53:56   hfc26_visibility 16.1
     2019-02-28 11:53:56   hfc26_wind      14
     2019-02-28 11:53:56   hfc26_windGust  19
     2019-02-28 11:53:56   hfc26_wind_condition Wind: NW 14 km/h
     2019-02-28 11:53:56   hfc26_wind_direction 324
     2019-02-28 11:53:56   hfc26_wind_speed 14
     2019-02-28 11:53:56   hfc27_cloudCover 48
     2019-02-28 11:53:56   hfc27_code      30
     2019-02-28 11:53:56   hfc27_condition Leicht bewölkt
     2019-02-28 11:53:56   hfc27_day_of_week Fr, 13:00
     2019-02-28 11:53:56   hfc27_dewPoint  1.9
     2019-02-28 11:53:56   hfc27_humidity  58
     2019-02-28 11:53:56   hfc27_icon      partly_cloudy
     2019-02-28 11:53:56   hfc27_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc27_ozone     368.11
     2019-02-28 11:53:56   hfc27_precipIntensity 0
     2019-02-28 11:53:56   hfc27_precipProbability 0
     2019-02-28 11:53:56   hfc27_precipType -
     2019-02-28 11:53:56   hfc27_pressure  1013.6
     2019-02-28 11:53:56   hfc27_pubDate   Fr,  1 Mär 2019 13:00
     2019-02-28 11:53:56   hfc27_temperature 9.8
     2019-02-28 11:53:56   hfc27_uvIndex   2
     2019-02-28 11:53:56   hfc27_visibility 16.1
     2019-02-28 11:53:56   hfc27_wind      15
     2019-02-28 11:53:56   hfc27_windGust  20
     2019-02-28 11:53:56   hfc27_wind_condition Wind: NW 15 km/h
     2019-02-28 11:53:56   hfc27_wind_direction 316
     2019-02-28 11:53:56   hfc27_wind_speed 15
     2019-02-28 11:53:56   hfc28_cloudCover 31
     2019-02-28 11:53:56   hfc28_code      30
     2019-02-28 11:53:56   hfc28_condition Leicht bewölkt
     2019-02-28 11:53:56   hfc28_day_of_week Fr, 14:00
     2019-02-28 11:53:56   hfc28_dewPoint  2.0
     2019-02-28 11:53:56   hfc28_humidity  57
     2019-02-28 11:53:56   hfc28_icon      partly_cloudy
     2019-02-28 11:53:56   hfc28_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc28_ozone     367.35
     2019-02-28 11:53:56   hfc28_precipIntensity 0
     2019-02-28 11:53:56   hfc28_precipProbability 0
     2019-02-28 11:53:56   hfc28_precipType -
     2019-02-28 11:53:56   hfc28_pressure  1013.9
     2019-02-28 11:53:56   hfc28_pubDate   Fr,  1 Mär 2019 14:00
     2019-02-28 11:53:56   hfc28_temperature 10.2
     2019-02-28 11:53:56   hfc28_uvIndex   1
     2019-02-28 11:53:56   hfc28_visibility 16.1
     2019-02-28 11:53:56   hfc28_wind      16
     2019-02-28 11:53:56   hfc28_windGust  21
     2019-02-28 11:53:56   hfc28_wind_condition Wind: NW 16 km/h
     2019-02-28 11:53:56   hfc28_wind_direction 316
     2019-02-28 11:53:56   hfc28_wind_speed 16
     2019-02-28 11:53:56   hfc29_cloudCover 14
     2019-02-28 11:53:56   hfc29_code      32
     2019-02-28 11:53:56   hfc29_condition Heiter
     2019-02-28 11:53:56   hfc29_day_of_week Fr, 15:00
     2019-02-28 11:53:56   hfc29_dewPoint  2.1
     2019-02-28 11:53:56   hfc29_humidity  57
     2019-02-28 11:53:56   hfc29_icon      sunny
     2019-02-28 11:53:56   hfc29_iconAPI   clear-day
     2019-02-28 11:53:56   hfc29_ozone     365.93
     2019-02-28 11:53:56   hfc29_precipIntensity 0
     2019-02-28 11:53:56   hfc29_precipProbability 0
     2019-02-28 11:53:56   hfc29_precipType -
     2019-02-28 11:53:56   hfc29_pressure  1014.0
     2019-02-28 11:53:56   hfc29_pubDate   Fr,  1 Mär 2019 15:00
     2019-02-28 11:53:56   hfc29_temperature 10.1
     2019-02-28 11:53:56   hfc29_uvIndex   1
     2019-02-28 11:53:56   hfc29_visibility 16.1
     2019-02-28 11:53:56   hfc29_wind      18
     2019-02-28 11:53:56   hfc29_windGust  23
     2019-02-28 11:53:56   hfc29_wind_condition Wind: NW 18 km/h
     2019-02-28 11:53:56   hfc29_wind_direction 319
     2019-02-28 11:53:56   hfc29_wind_speed 18
     2019-02-28 11:53:56   hfc2_cloudCover 43
     2019-02-28 11:53:56   hfc2_code       30
     2019-02-28 11:53:56   hfc2_condition  Leicht bewölkt
     2019-02-28 11:53:56   hfc2_day_of_week Do, 12:00
     2019-02-28 11:53:56   hfc2_dewPoint   4.1
     2019-02-28 11:53:56   hfc2_humidity   64
     2019-02-28 11:53:56   hfc2_icon       partly_cloudy
     2019-02-28 11:53:56   hfc2_iconAPI    partly-cloudy-day
     2019-02-28 11:53:56   hfc2_ozone      284.01
     2019-02-28 11:53:56   hfc2_precipIntensity 0
     2019-02-28 11:53:56   hfc2_precipProbability 0
     2019-02-28 11:53:56   hfc2_precipType -
     2019-02-28 11:53:56   hfc2_pressure   1013.5
     2019-02-28 11:53:56   hfc2_pubDate    Do, 28 Feb 2019 12:00
     2019-02-28 11:53:56   hfc2_temperature 10.7
     2019-02-28 11:53:56   hfc2_uvIndex    2
     2019-02-28 11:53:56   hfc2_visibility 6.8
     2019-02-28 11:53:56   hfc2_wind       23
     2019-02-28 11:53:56   hfc2_windGust   28
     2019-02-28 11:53:56   hfc2_wind_condition Wind: WNW 23 km/h
     2019-02-28 11:53:56   hfc2_wind_direction 291
     2019-02-28 11:53:56   hfc2_wind_speed 23
     2019-02-28 11:53:56   hfc30_cloudCover 6
     2019-02-28 11:53:56   hfc30_code      32
     2019-02-28 11:53:56   hfc30_condition Heiter
     2019-02-28 11:53:56   hfc30_day_of_week Fr, 16:00
     2019-02-28 11:53:56   hfc30_dewPoint  2.1
     2019-02-28 11:53:56   hfc30_humidity  58
     2019-02-28 11:53:56   hfc30_icon      sunny
     2019-02-28 11:53:56   hfc30_iconAPI   clear-day
     2019-02-28 11:53:56   hfc30_ozone     364.32
     2019-02-28 11:53:56   hfc30_precipIntensity 0
     2019-02-28 11:53:56   hfc30_precipProbability 0
     2019-02-28 11:53:56   hfc30_precipType -
     2019-02-28 11:53:56   hfc30_pressure  1014.3
     2019-02-28 11:53:56   hfc30_pubDate   Fr,  1 Mär 2019 16:00
     2019-02-28 11:53:56   hfc30_temperature 10.1
     2019-02-28 11:53:56   hfc30_uvIndex   0
     2019-02-28 11:53:56   hfc30_visibility 16.1
     2019-02-28 11:53:56   hfc30_wind      18
     2019-02-28 11:53:56   hfc30_windGust  24
     
     

etwas gekürzt...
Intel-NUC i5: FHEM-Server 6.1 :: Perl v5.18.2

Homematic: HM-USB-CFG2,HM-CFG-LAN Adapter, HM-LC-BL1-FM, HM-LC-Sw1PBU-FM, HM-LC-Sw1-PI-2, HM-WDS10-TH-O, HM-CC-TC, HM-LC-SW2-FM

CoolTux

Zitat von: moonsorrox am 28 Februar 2019, 12:56:23
Ja das von Udo habe ich gesehen und UTF-8 als iso-8859-1 wird es wohl sein so wie sein Screenshot es zeigt, nur warum das bei meinem Testsystem richtig ist und bei meinem eingesetzten vermag ich nicht zu sagen  :-\

hier mal das list:
Internals:
   API        DarkSkyAPI
   APIKEY     xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
   APIOPTIONS cachemaxage:600
   CFGFN      ./FHEM/Wetter.cfg
   DEF        API=DarkSkyAPI,cachemaxage:600 apikey=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx location=52.xxxxxx,9.xxxxxx interval=3600 lang=de
   FUUID      5c4319dc-f33f-a6c6-c2bf-28c6a1de44cc6caa
   INTERVAL   3600
   LANG       de
   LOCATION   52.xxxxxx,9.xxxxxx
   MODEL      DarkSkyAPI
   NAME       MeinWetter
   NOTIFYDEV  global
   NR         2010
   NTFY_ORDER 50-MeinWetter
   STATE      T: 11 °C F: 65 % W: 23 km/h P: 1014 hPa
   TYPE       Weather
   READINGS:
     2019-02-28 11:53:56   apiMaintainer   Leon Gaultier (<a href=https://forum.fhem.de/index.php?action=profile;u=13684>CoolTux</a>)
     2019-02-28 11:53:56   apiVersion      0.2.5
     2019-02-28 11:53:56   apparentTemperature 11
     2019-02-28 11:53:56   cloudCover      43
     2019-02-28 11:53:56   code            30
     2019-02-28 11:53:56   condition       Leicht bewölkt
     2019-02-28 11:53:56   current_date_time Do, 28 Feb 2019 11:53
     2019-02-28 11:53:56   dewPoint        4
     2019-02-28 11:53:56   fc1_apparentTempHigh 13
     2019-02-28 11:53:56   fc1_apparentTempHighTime Do, 28 Feb 2019 16:00
     2019-02-28 11:53:56   fc1_apparentTempLow 5
     2019-02-28 11:53:56   fc1_apparentTempLowTime Fr,  1 Mär 2019 08:00
     2019-02-28 11:53:56   fc1_cloudCover  51
     2019-02-28 11:53:56   fc1_code        29
     2019-02-28 11:53:56   fc1_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc1_day_of_week Do
     2019-02-28 11:53:56   fc1_dewPoint    3
     2019-02-28 11:53:56   fc1_high_c      13
     2019-02-28 11:53:56   fc1_humidity    68
     2019-02-28 11:53:56   fc1_icon        partly_cloudy_night
     2019-02-28 11:53:56   fc1_iconAPI     partly-cloudy-night
     2019-02-28 11:53:56   fc1_low_c       6
     2019-02-28 11:53:56   fc1_moonPhase   0.81
     2019-02-28 11:53:56   fc1_ozone       296.15
     2019-02-28 11:53:56   fc1_precipIntensity 0.0025
     2019-02-28 11:53:56   fc1_precipIntensityMax 0.0051
     2019-02-28 11:53:56   fc1_precipIntensityMaxTime Do, 28 Feb 2019 23:00
     2019-02-28 11:53:56   fc1_precipProbability 5
     2019-02-28 11:53:56   fc1_precipType  rain
     2019-02-28 11:53:56   fc1_pressure    1014
     2019-02-28 11:53:56   fc1_pubDate     Do, 28 Feb 2019 00:00
     2019-02-28 11:53:56   fc1_sunriseTime Do, 28 Feb 2019 07:12
     2019-02-28 11:53:56   fc1_sunsetTime  Do, 28 Feb 2019 17:59
     2019-02-28 11:53:56   fc1_tempHigh    13
     2019-02-28 11:53:56   fc1_tempHighTime Do, 28 Feb 2019 16:00
     2019-02-28 11:53:56   fc1_tempLow     6
     2019-02-28 11:53:56   fc1_tempLowTime Fr,  1 Mär 2019 08:00
     2019-02-28 11:53:56   fc1_uvIndex     2
     2019-02-28 11:53:56   fc1_uvIndexTime Do, 28 Feb 2019 11:00
     2019-02-28 11:53:56   fc1_visibility  12
     2019-02-28 11:53:56   fc1_wind        12
     2019-02-28 11:53:56   fc1_windGust    40
     2019-02-28 11:53:56   fc1_windGustTime Do, 28 Feb 2019 06:00
     2019-02-28 11:53:56   fc1_wind_condition Wind: W 12 km/h
     2019-02-28 11:53:56   fc1_wind_direction 267
     2019-02-28 11:53:56   fc1_wind_speed  12
     2019-02-28 11:53:56   fc2_apparentTempHigh 10
     2019-02-28 11:53:56   fc2_apparentTempHighTime Fr,  1 Mär 2019 14:00
     2019-02-28 11:53:56   fc2_apparentTempLow 0
     2019-02-28 11:53:56   fc2_apparentTempLowTime Sa,  2 Mär 2019 06:00
     2019-02-28 11:53:56   fc2_cloudCover  72
     2019-02-28 11:53:56   fc2_code        30
     2019-02-28 11:53:56   fc2_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc2_day_of_week Fr
     2019-02-28 11:53:56   fc2_dewPoint    3
     2019-02-28 11:53:56   fc2_high_c      10
     2019-02-28 11:53:56   fc2_humidity    74
     2019-02-28 11:53:56   fc2_icon        partly_cloudy
     2019-02-28 11:53:56   fc2_iconAPI     partly-cloudy-day
     2019-02-28 11:53:56   fc2_low_c       1
     2019-02-28 11:53:56   fc2_moonPhase   0.84
     2019-02-28 11:53:56   fc2_ozone       362.36
     2019-02-28 11:53:56   fc2_precipIntensity 0.0102
     2019-02-28 11:53:56   fc2_precipIntensityMax 0.0305
     2019-02-28 11:53:56   fc2_precipIntensityMaxTime Fr,  1 Mär 2019 03:00
     2019-02-28 11:53:56   fc2_precipProbability 24
     2019-02-28 11:53:56   fc2_precipType  rain
     2019-02-28 11:53:56   fc2_pressure    1013
     2019-02-28 11:53:56   fc2_pubDate     Fr,  1 Mär 2019 00:00
     2019-02-28 11:53:56   fc2_sunriseTime Fr,  1 Mär 2019 07:09
     2019-02-28 11:53:56   fc2_sunsetTime  Fr,  1 Mär 2019 18:00
     2019-02-28 11:53:56   fc2_tempHigh    10
     2019-02-28 11:53:56   fc2_tempHighTime Fr,  1 Mär 2019 14:00
     2019-02-28 11:53:56   fc2_tempLow     1
     2019-02-28 11:53:56   fc2_tempLowTime Sa,  2 Mär 2019 07:00
     2019-02-28 11:53:56   fc2_uvIndex     2
     2019-02-28 11:53:56   fc2_uvIndexTime Fr,  1 Mär 2019 12:00
     2019-02-28 11:53:56   fc2_visibility  16
     2019-02-28 11:53:56   fc2_wind        9
     2019-02-28 11:53:56   fc2_windGust    24
     2019-02-28 11:53:56   fc2_windGustTime Fr,  1 Mär 2019 16:00
     2019-02-28 11:53:56   fc2_wind_condition Wind: NW 9 km/h
     2019-02-28 11:53:56   fc2_wind_direction 310
     2019-02-28 11:53:56   fc2_wind_speed  9
     2019-02-28 11:53:56   fc3_apparentTempHigh 13
     2019-02-28 11:53:56   fc3_apparentTempHighTime Sa,  2 Mär 2019 17:00
     2019-02-28 11:53:56   fc3_apparentTempLow 6
     2019-02-28 11:53:56   fc3_apparentTempLowTime So,  3 Mär 2019 01:00
     2019-02-28 11:53:56   fc3_cloudCover  79
     2019-02-28 11:53:56   fc3_code        30
     2019-02-28 11:53:56   fc3_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc3_day_of_week Sa
     2019-02-28 11:53:56   fc3_dewPoint    3
     2019-02-28 11:53:56   fc3_high_c      13
     2019-02-28 11:53:56   fc3_humidity    77
     2019-02-28 11:53:56   fc3_icon        partly_cloudy
     2019-02-28 11:53:56   fc3_iconAPI     partly-cloudy-day
     2019-02-28 11:53:56   fc3_low_c       10
     2019-02-28 11:53:56   fc3_moonPhase   0.87
     2019-02-28 11:53:56   fc3_ozone       343.65
     2019-02-28 11:53:56   fc3_precipIntensity 0.0178
     2019-02-28 11:53:56   fc3_precipIntensityMax 0.0864
     2019-02-28 11:53:56   fc3_precipIntensityMaxTime Sa,  2 Mär 2019 19:00
     2019-02-28 11:53:56   fc3_precipProbability 22
     2019-02-28 11:53:56   fc3_precipType  rain
     2019-02-28 11:53:56   fc3_pressure    1013
     2019-02-28 11:53:56   fc3_pubDate     Sa,  2 Mär 2019 00:00
     2019-02-28 11:53:56   fc3_sunriseTime Sa,  2 Mär 2019 07:07
     2019-02-28 11:53:56   fc3_sunsetTime  Sa,  2 Mär 2019 18:02
     2019-02-28 11:53:56   fc3_tempHigh    13
     2019-02-28 11:53:56   fc3_tempHighTime Sa,  2 Mär 2019 17:00
     2019-02-28 11:53:56   fc3_tempLow     10
     2019-02-28 11:53:56   fc3_tempLowTime So,  3 Mär 2019 00:00
     2019-02-28 11:53:56   fc3_uvIndex     2
     2019-02-28 11:53:56   fc3_uvIndexTime Sa,  2 Mär 2019 12:00
     2019-02-28 11:53:56   fc3_visibility  16
     2019-02-28 11:53:56   fc3_wind        11
     2019-02-28 11:53:56   fc3_windGust    49
     2019-02-28 11:53:56   fc3_windGustTime Sa,  2 Mär 2019 23:00
     2019-02-28 11:53:56   fc3_wind_condition Wind: SW 11 km/h
     2019-02-28 11:53:56   fc3_wind_direction 232
     2019-02-28 11:53:56   fc3_wind_speed  11
     2019-02-28 11:53:56   fc4_apparentTempHigh 11
     2019-02-28 11:53:56   fc4_apparentTempHighTime So,  3 Mär 2019 07:00
     2019-02-28 11:53:56   fc4_apparentTempLow 6
     2019-02-28 11:53:56   fc4_apparentTempLowTime Mo,  4 Mär 2019 08:00
     2019-02-28 11:53:56   fc4_cloudCover  100
     2019-02-28 11:53:56   fc4_code        11
     2019-02-28 11:53:56   fc4_condition   Leichter Regen und Wind am Vormittag.
     2019-02-28 11:53:56   fc4_day_of_week So
     2019-02-28 11:53:56   fc4_dewPoint    6
     2019-02-28 11:53:56   fc4_high_c      11
     2019-02-28 11:53:56   fc4_humidity    77
     2019-02-28 11:53:56   fc4_icon        chance_of_rain
     2019-02-28 11:53:56   fc4_iconAPI     rain
     2019-02-28 11:53:56   fc4_low_c       9
     2019-02-28 11:53:56   fc4_moonPhase   0.9
     2019-02-28 11:53:56   fc4_ozone       331.51
     2019-02-28 11:53:56   fc4_precipIntensity 0.4115
     2019-02-28 11:53:56   fc4_precipIntensityMax 0.8865
     2019-02-28 11:53:56   fc4_precipIntensityMaxTime So,  3 Mär 2019 10:00
     2019-02-28 11:53:56   fc4_precipProbability 97
     2019-02-28 11:53:56   fc4_precipType  rain
     2019-02-28 11:53:56   fc4_pressure    1004
     2019-02-28 11:53:56   fc4_pubDate     So,  3 Mär 2019 00:00
     2019-02-28 11:53:56   fc4_sunriseTime So,  3 Mär 2019 07:05
     2019-02-28 11:53:56   fc4_sunsetTime  So,  3 Mär 2019 18:04
     2019-02-28 11:53:56   fc4_tempHigh    11
     2019-02-28 11:53:56   fc4_tempHighTime So,  3 Mär 2019 07:00
     2019-02-28 11:53:56   fc4_tempLow     9
     2019-02-28 11:53:56   fc4_tempLowTime Mo,  4 Mär 2019 07:00
     2019-02-28 11:53:56   fc4_uvIndex     2
     2019-02-28 11:53:56   fc4_uvIndexTime So,  3 Mär 2019 12:00
     2019-02-28 11:53:56   fc4_visibility  8
     2019-02-28 11:53:56   fc4_wind        18
     2019-02-28 11:53:56   fc4_windGust    63
     2019-02-28 11:53:56   fc4_windGustTime So,  3 Mär 2019 04:00
     2019-02-28 11:53:56   fc4_wind_condition Wind: SW 18 km/h
     2019-02-28 11:53:56   fc4_wind_direction 233
     2019-02-28 11:53:56   fc4_wind_speed  18
     2019-02-28 11:53:56   fc5_apparentTempHigh 10
     2019-02-28 11:53:56   fc5_apparentTempHighTime Mo,  4 Mär 2019 10:00
     2019-02-28 11:53:56   fc5_apparentTempLow 1
     2019-02-28 11:53:56   fc5_apparentTempLowTime Di,  5 Mär 2019 08:00
     2019-02-28 11:53:56   fc5_cloudCover  81
     2019-02-28 11:53:56   fc5_code        24
     2019-02-28 11:53:56   fc5_condition   Den ganzen Tag lang frische Brise und Abend Nebel.
     2019-02-28 11:53:56   fc5_day_of_week Mo
     2019-02-28 11:53:56   fc5_dewPoint    3
     2019-02-28 11:53:56   fc5_high_c      10
     2019-02-28 11:53:56   fc5_humidity    66
     2019-02-28 11:53:56   fc5_icon        windy
     2019-02-28 11:53:56   fc5_iconAPI     wind
     2019-02-28 11:53:56   fc5_low_c       5
     2019-02-28 11:53:56   fc5_moonPhase   0.93
     2019-02-28 11:53:56   fc5_ozone       384.27
     2019-02-28 11:53:56   fc5_precipIntensity 0.1956
     2019-02-28 11:53:56   fc5_precipIntensityMax 0.5486
     2019-02-28 11:53:56   fc5_precipIntensityMaxTime Mo,  4 Mär 2019 19:00
     2019-02-28 11:53:56   fc5_precipProbability 68
     2019-02-28 11:53:56   fc5_precipType  rain
     2019-02-28 11:53:56   fc5_pressure    992
     2019-02-28 11:53:56   fc5_pubDate     Mo,  4 Mär 2019 00:00
     2019-02-28 11:53:56   fc5_sunriseTime Mo,  4 Mär 2019 07:03
     2019-02-28 11:53:56   fc5_sunsetTime  Mo,  4 Mär 2019 18:06
     2019-02-28 11:53:56   fc5_tempHigh    10
     2019-02-28 11:53:56   fc5_tempHighTime Mo,  4 Mär 2019 10:00
     2019-02-28 11:53:56   fc5_tempLow     5
     2019-02-28 11:53:56   fc5_tempLowTime Di,  5 Mär 2019 07:00
     2019-02-28 11:53:56   fc5_uvIndex     2
     2019-02-28 11:53:56   fc5_uvIndexTime Mo,  4 Mär 2019 12:00
     2019-02-28 11:53:56   fc5_visibility  13
     2019-02-28 11:53:56   fc5_wind        32
     2019-02-28 11:53:56   fc5_windGust    72
     2019-02-28 11:53:56   fc5_windGustTime Mo,  4 Mär 2019 11:00
     2019-02-28 11:53:56   fc5_wind_condition Wind: WSW 32 km/h
     2019-02-28 11:53:56   fc5_wind_direction 238
     2019-02-28 11:53:56   fc5_wind_speed  32
     2019-02-28 11:53:56   fc6_apparentTempHigh 5
     2019-02-28 11:53:56   fc6_apparentTempHighTime Di,  5 Mär 2019 18:00
     2019-02-28 11:53:56   fc6_apparentTempLow 1
     2019-02-28 11:53:56   fc6_apparentTempLowTime Mi,  6 Mär 2019 07:00
     2019-02-28 11:53:56   fc6_cloudCover  80
     2019-02-28 11:53:56   fc6_code        20
     2019-02-28 11:53:56   fc6_condition   Nebel am Nachmittag.
     2019-02-28 11:53:56   fc6_day_of_week Di
     2019-02-28 11:53:56   fc6_dewPoint    1
     2019-02-28 11:53:56   fc6_high_c      9
     2019-02-28 11:53:56   fc6_humidity    68
     2019-02-28 11:53:56   fc6_icon        fog
     2019-02-28 11:53:56   fc6_iconAPI     fog
     2019-02-28 11:53:56   fc6_low_c       4
     2019-02-28 11:53:56   fc6_moonPhase   0.96
     2019-02-28 11:53:56   fc6_ozone       450.74
     2019-02-28 11:53:56   fc6_precipIntensity 0.0635
     2019-02-28 11:53:56   fc6_precipIntensityMax 0.2692
     2019-02-28 11:53:56   fc6_precipIntensityMaxTime Di,  5 Mär 2019 16:00
     2019-02-28 11:53:56   fc6_precipProbability 42
     2019-02-28 11:53:56   fc6_precipType  rain
     2019-02-28 11:53:56   fc6_pressure    1000
     2019-02-28 11:53:56   fc6_pubDate     Di,  5 Mär 2019 00:00
     2019-02-28 11:53:56   fc6_sunriseTime Di,  5 Mär 2019 07:00
     2019-02-28 11:53:56   fc6_sunsetTime  Di,  5 Mär 2019 18:08
     2019-02-28 11:53:56   fc6_tempHigh    9
     2019-02-28 11:53:56   fc6_tempHighTime Di,  5 Mär 2019 15:00
     2019-02-28 11:53:56   fc6_tempLow     4
     2019-02-28 11:53:56   fc6_tempLowTime Mi,  6 Mär 2019 04:00
     2019-02-28 11:53:56   fc6_uvIndex     1
     2019-02-28 11:53:56   fc6_uvIndexTime Di,  5 Mär 2019 10:00
     2019-02-28 11:53:56   fc6_visibility  14
     2019-02-28 11:53:56   fc6_wind        19
     2019-02-28 11:53:56   fc6_windGust    55
     2019-02-28 11:53:56   fc6_windGustTime Di,  5 Mär 2019 00:00
     2019-02-28 11:53:56   fc6_wind_condition Wind: W 19 km/h
     2019-02-28 11:53:56   fc6_wind_direction 260
     2019-02-28 11:53:56   fc6_wind_speed  19
     2019-02-28 11:53:56   fc7_apparentTempHigh 5
     2019-02-28 11:53:56   fc7_apparentTempHighTime Mi,  6 Mär 2019 19:00
     2019-02-28 11:53:56   fc7_apparentTempLow 3
     2019-02-28 11:53:56   fc7_apparentTempLowTime Do,  7 Mär 2019 05:00
     2019-02-28 11:53:56   fc7_cloudCover  97
     2019-02-28 11:53:56   fc7_code        20
     2019-02-28 11:53:56   fc7_condition   Nebel von nachmittags bis abends.
     2019-02-28 11:53:56   fc7_day_of_week Mi
     2019-02-28 11:53:56   fc7_dewPoint    1
     2019-02-28 11:53:56   fc7_high_c      8
     2019-02-28 11:53:56   fc7_humidity    71
     2019-02-28 11:53:56   fc7_icon        fog
     2019-02-28 11:53:56   fc7_iconAPI     fog
     2019-02-28 11:53:56   fc7_low_c       6
     2019-02-28 11:53:56   fc7_moonPhase   0.99
     2019-02-28 11:53:56   fc7_ozone       348.7
     2019-02-28 11:53:56   fc7_precipIntensity 0.221
     2019-02-28 11:53:56   fc7_precipIntensityMax 0.8433
     2019-02-28 11:53:56   fc7_precipIntensityMaxTime Mi,  6 Mär 2019 04:00
     2019-02-28 11:53:56   fc7_precipProbability 87
     2019-02-28 11:53:56   fc7_precipType  rain
     2019-02-28 11:53:56   fc7_pressure    1000
     2019-02-28 11:53:56   fc7_pubDate     Mi,  6 Mär 2019 00:00
     2019-02-28 11:53:56   fc7_sunriseTime Mi,  6 Mär 2019 06:58
     2019-02-28 11:53:56   fc7_sunsetTime  Mi,  6 Mär 2019 18:09
     2019-02-28 11:53:56   fc7_tempHigh    8
     2019-02-28 11:53:56   fc7_tempHighTime Mi,  6 Mär 2019 13:00
     2019-02-28 11:53:56   fc7_tempLow     6
     2019-02-28 11:53:56   fc7_tempLowTime Do,  7 Mär 2019 05:00
     2019-02-28 11:53:56   fc7_uvIndex     2
     2019-02-28 11:53:56   fc7_uvIndexTime Mi,  6 Mär 2019 12:00
     2019-02-28 11:53:56   fc7_visibility  11
     2019-02-28 11:53:56   fc7_wind        19
     2019-02-28 11:53:56   fc7_windGust    47
     2019-02-28 11:53:56   fc7_windGustTime Mi,  6 Mär 2019 13:00
     2019-02-28 11:53:56   fc7_wind_condition Wind: SSO 19 km/h
     2019-02-28 11:53:56   fc7_wind_direction 154
     2019-02-28 11:53:56   fc7_wind_speed  19
     2019-02-28 11:53:56   fc8_apparentTempHigh 6
     2019-02-28 11:53:56   fc8_apparentTempHighTime Do,  7 Mär 2019 10:00
     2019-02-28 11:53:56   fc8_apparentTempLow 3
     2019-02-28 11:53:56   fc8_apparentTempLowTime Fr,  8 Mär 2019 08:00
     2019-02-28 11:53:56   fc8_cloudCover  94
     2019-02-28 11:53:56   fc8_code        30
     2019-02-28 11:53:56   fc8_condition   Den ganzen Tag lang überwiegend bewölkt.
     2019-02-28 11:53:56   fc8_day_of_week Do
     2019-02-28 11:53:56   fc8_dewPoint    2
     2019-02-28 11:53:56   fc8_high_c      9
     2019-02-28 11:53:56   fc8_humidity    72
     2019-02-28 11:53:56   fc8_icon        partly_cloudy
     2019-02-28 11:53:56   fc8_iconAPI     partly-cloudy-day
     2019-02-28 11:53:56   fc8_low_c       6
     2019-02-28 11:53:56   fc8_moonPhase   0.03
     2019-02-28 11:53:56   fc8_ozone       406.16
     2019-02-28 11:53:56   fc8_precipIntensity 0.0864
     2019-02-28 11:53:56   fc8_precipIntensityMax 0.2718
     2019-02-28 11:53:56   fc8_precipIntensityMaxTime Do,  7 Mär 2019 04:00
     2019-02-28 11:53:56   fc8_precipProbability 78
     2019-02-28 11:53:56   fc8_precipType  rain
     2019-02-28 11:53:56   fc8_pressure    1004
     2019-02-28 11:53:56   fc8_pubDate     Do,  7 Mär 2019 00:00
     2019-02-28 11:53:56   fc8_sunriseTime Do,  7 Mär 2019 06:56
     2019-02-28 11:53:56   fc8_sunsetTime  Do,  7 Mär 2019 18:11
     2019-02-28 11:53:56   fc8_tempHigh    9
     2019-02-28 11:53:56   fc8_tempHighTime Do,  7 Mär 2019 10:00
     2019-02-28 11:53:56   fc8_tempLow     6
     2019-02-28 11:53:56   fc8_tempLowTime Fr,  8 Mär 2019 07:00
     2019-02-28 11:53:56   fc8_uvIndex     1
     2019-02-28 11:53:56   fc8_uvIndexTime Do,  7 Mär 2019 10:00
     2019-02-28 11:53:56   fc8_visibility  14
     2019-02-28 11:53:56   fc8_wind        17
     2019-02-28 11:53:56   fc8_windGust    52
     2019-02-28 11:53:56   fc8_windGustTime Do,  7 Mär 2019 13:00
     2019-02-28 11:53:56   fc8_wind_condition Wind: SW 17 km/h
     2019-02-28 11:53:56   fc8_wind_direction 220
     2019-02-28 11:53:56   fc8_wind_speed  17
     2019-02-28 11:53:56   hfc10_cloudCover 100
     2019-02-28 11:53:56   hfc10_code      26
     2019-02-28 11:53:56   hfc10_condition Stark bewölkt
     2019-02-28 11:53:56   hfc10_day_of_week Do, 20:00
     2019-02-28 11:53:56   hfc10_dewPoint  4.8
     2019-02-28 11:53:56   hfc10_humidity  73
     2019-02-28 11:53:56   hfc10_icon      cloudy
     2019-02-28 11:53:56   hfc10_iconAPI   cloudy
     2019-02-28 11:53:56   hfc10_ozone     323.95
     2019-02-28 11:53:56   hfc10_precipIntensity 0
     2019-02-28 11:53:56   hfc10_precipProbability 0
     2019-02-28 11:53:56   hfc10_precipType -
     2019-02-28 11:53:56   hfc10_pressure  1012.5
     2019-02-28 11:53:56   hfc10_pubDate   Do, 28 Feb 2019 20:00
     2019-02-28 11:53:56   hfc10_temperature 9.5
     2019-02-28 11:53:56   hfc10_uvIndex   0
     2019-02-28 11:53:56   hfc10_visibility 16.1
     2019-02-28 11:53:56   hfc10_wind      8
     2019-02-28 11:53:56   hfc10_windGust  17
     2019-02-28 11:53:56   hfc10_wind_condition Wind: N 8 km/h
     2019-02-28 11:53:56   hfc10_wind_direction 5
     2019-02-28 11:53:56   hfc10_wind_speed 8
     2019-02-28 11:53:56   hfc11_cloudCover 100
     2019-02-28 11:53:56   hfc11_code      26
     2019-02-28 11:53:56   hfc11_condition Stark bewölkt
     2019-02-28 11:53:56   hfc11_day_of_week Do, 21:00
     2019-02-28 11:53:56   hfc11_dewPoint  4.9
     2019-02-28 11:53:56   hfc11_humidity  78
     2019-02-28 11:53:56   hfc11_icon      cloudy
     2019-02-28 11:53:56   hfc11_iconAPI   cloudy
     2019-02-28 11:53:56   hfc11_ozone     335.65
     2019-02-28 11:53:56   hfc11_precipIntensity 0
     2019-02-28 11:53:56   hfc11_precipProbability 0
     2019-02-28 11:53:56   hfc11_precipType -
     2019-02-28 11:53:56   hfc11_pressure  1012.5
     2019-02-28 11:53:56   hfc11_pubDate   Do, 28 Feb 2019 21:00
     2019-02-28 11:53:56   hfc11_temperature 8.6
     2019-02-28 11:53:56   hfc11_uvIndex   0
     2019-02-28 11:53:56   hfc11_visibility 16.1
     2019-02-28 11:53:56   hfc11_wind      7
     2019-02-28 11:53:56   hfc11_windGust  12
     2019-02-28 11:53:56   hfc11_wind_condition Wind: S 7 km/h
     2019-02-28 11:53:56   hfc11_wind_direction 172
     2019-02-28 11:53:56   hfc11_wind_speed 7
     2019-02-28 11:53:56   hfc12_cloudCover 100
     2019-02-28 11:53:56   hfc12_code      26
     2019-02-28 11:53:56   hfc12_condition Stark bewölkt
     2019-02-28 11:53:56   hfc12_day_of_week Do, 22:00
     2019-02-28 11:53:56   hfc12_dewPoint  5.1
     2019-02-28 11:53:56   hfc12_humidity  81
     2019-02-28 11:53:56   hfc12_icon      cloudy
     2019-02-28 11:53:56   hfc12_iconAPI   cloudy
     2019-02-28 11:53:56   hfc12_ozone     346.59
     2019-02-28 11:53:56   hfc12_precipIntensity 0
     2019-02-28 11:53:56   hfc12_precipProbability 0
     2019-02-28 11:53:56   hfc12_precipType -
     2019-02-28 11:53:56   hfc12_pressure  1012.4
     2019-02-28 11:53:56   hfc12_pubDate   Do, 28 Feb 2019 22:00
     2019-02-28 11:53:56   hfc12_temperature 8.2
     2019-02-28 11:53:56   hfc12_uvIndex   0
     2019-02-28 11:53:56   hfc12_visibility 16.1
     2019-02-28 11:53:56   hfc12_wind      6
     2019-02-28 11:53:56   hfc12_windGust  8
     2019-02-28 11:53:56   hfc12_wind_condition Wind: W 6 km/h
     2019-02-28 11:53:56   hfc12_wind_direction 262
     2019-02-28 11:53:56   hfc12_wind_speed 6
     2019-02-28 11:53:56   hfc13_cloudCover 100
     2019-02-28 11:53:56   hfc13_code      26
     2019-02-28 11:53:56   hfc13_condition Stark bewölkt
     2019-02-28 11:53:56   hfc13_day_of_week Do, 23:00
     2019-02-28 11:53:56   hfc13_dewPoint  5.4
     2019-02-28 11:53:56   hfc13_humidity  82
     2019-02-28 11:53:56   hfc13_icon      cloudy
     2019-02-28 11:53:56   hfc13_iconAPI   cloudy
     2019-02-28 11:53:56   hfc13_ozone     357.14
     2019-02-28 11:53:56   hfc13_precipIntensity 0.0051
     2019-02-28 11:53:56   hfc13_precipProbability 3
     2019-02-28 11:53:56   hfc13_precipType rain
     2019-02-28 11:53:56   hfc13_pressure  1012.2
     2019-02-28 11:53:56   hfc13_pubDate   Do, 28 Feb 2019 23:00
     2019-02-28 11:53:56   hfc13_temperature 8.2
     2019-02-28 11:53:56   hfc13_uvIndex   0
     2019-02-28 11:53:56   hfc13_visibility 16.1
     2019-02-28 11:53:56   hfc13_wind      6
     2019-02-28 11:53:56   hfc13_windGust  8
     2019-02-28 11:53:56   hfc13_wind_condition Wind: W 6 km/h
     2019-02-28 11:53:56   hfc13_wind_direction 267
     2019-02-28 11:53:56   hfc13_wind_speed 6
     2019-02-28 11:53:56   hfc14_cloudCover 100
     2019-02-28 11:53:56   hfc14_code      26
     2019-02-28 11:53:56   hfc14_condition Stark bewölkt
     2019-02-28 11:53:56   hfc14_day_of_week Fr, 00:00
     2019-02-28 11:53:56   hfc14_dewPoint  5.7
     2019-02-28 11:53:56   hfc14_humidity  84
     2019-02-28 11:53:56   hfc14_icon      cloudy
     2019-02-28 11:53:56   hfc14_iconAPI   cloudy
     2019-02-28 11:53:56   hfc14_ozone     367.15
     2019-02-28 11:53:56   hfc14_precipIntensity 0.0152
     2019-02-28 11:53:56   hfc14_precipProbability 5
     2019-02-28 11:53:56   hfc14_precipType rain
     2019-02-28 11:53:56   hfc14_pressure  1012.0
     2019-02-28 11:53:56   hfc14_pubDate   Fr,  1 Mär 2019 00:00
     2019-02-28 11:53:56   hfc14_temperature 8.4
     2019-02-28 11:53:56   hfc14_uvIndex   0
     2019-02-28 11:53:56   hfc14_visibility 16.1
     2019-02-28 11:53:56   hfc14_wind      7
     2019-02-28 11:53:56   hfc14_windGust  10
     2019-02-28 11:53:56   hfc14_wind_condition Wind: W 7 km/h
     2019-02-28 11:53:56   hfc14_wind_direction 266
     2019-02-28 11:53:56   hfc14_wind_speed 7
     2019-02-28 11:53:56   hfc15_cloudCover 99
     2019-02-28 11:53:56   hfc15_code      26
     2019-02-28 11:53:56   hfc15_condition Stark bewölkt
     2019-02-28 11:53:56   hfc15_day_of_week Fr, 01:00
     2019-02-28 11:53:56   hfc15_dewPoint  6.0
     2019-02-28 11:53:56   hfc15_humidity  85
     2019-02-28 11:53:56   hfc15_icon      cloudy
     2019-02-28 11:53:56   hfc15_iconAPI   cloudy
     2019-02-28 11:53:56   hfc15_ozone     373.04
     2019-02-28 11:53:56   hfc15_precipIntensity 0.0254
     2019-02-28 11:53:56   hfc15_precipProbability 7
     2019-02-28 11:53:56   hfc15_precipType rain
     2019-02-28 11:53:56   hfc15_pressure  1011.7
     2019-02-28 11:53:56   hfc15_pubDate   Fr,  1 Mär 2019 01:00
     2019-02-28 11:53:56   hfc15_temperature 8.4
     2019-02-28 11:53:56   hfc15_uvIndex   0
     2019-02-28 11:53:56   hfc15_visibility 16.1
     2019-02-28 11:53:56   hfc15_wind      7
     2019-02-28 11:53:56   hfc15_windGust  11
     2019-02-28 11:53:56   hfc15_wind_condition Wind: WSW 7 km/h
     2019-02-28 11:53:56   hfc15_wind_direction 255
     2019-02-28 11:53:56   hfc15_wind_speed 7
     2019-02-28 11:53:56   hfc16_cloudCover 97
     2019-02-28 11:53:56   hfc16_code      26
     2019-02-28 11:53:56   hfc16_condition Stark bewölkt
     2019-02-28 11:53:56   hfc16_day_of_week Fr, 02:00
     2019-02-28 11:53:56   hfc16_dewPoint  6.2
     2019-02-28 11:53:56   hfc16_humidity  87
     2019-02-28 11:53:56   hfc16_icon      cloudy
     2019-02-28 11:53:56   hfc16_iconAPI   cloudy
     2019-02-28 11:53:56   hfc16_ozone     372.73
     2019-02-28 11:53:56   hfc16_precipIntensity 0.0305
     2019-02-28 11:53:56   hfc16_precipProbability 9
     2019-02-28 11:53:56   hfc16_precipType rain
     2019-02-28 11:53:56   hfc16_pressure  1011.3
     2019-02-28 11:53:56   hfc16_pubDate   Fr,  1 Mär 2019 02:00
     2019-02-28 11:53:56   hfc16_temperature 8.2
     2019-02-28 11:53:56   hfc16_uvIndex   0
     2019-02-28 11:53:56   hfc16_visibility 16.1
     2019-02-28 11:53:56   hfc16_wind      7
     2019-02-28 11:53:56   hfc16_windGust  11
     2019-02-28 11:53:56   hfc16_wind_condition Wind: W 7 km/h
     2019-02-28 11:53:56   hfc16_wind_direction 265
     2019-02-28 11:53:56   hfc16_wind_speed 7
     2019-02-28 11:53:56   hfc17_cloudCover 94
     2019-02-28 11:53:56   hfc17_code      26
     2019-02-28 11:53:56   hfc17_condition Stark bewölkt
     2019-02-28 11:53:56   hfc17_day_of_week Fr, 03:00
     2019-02-28 11:53:56   hfc17_dewPoint  6.3
     2019-02-28 11:53:56   hfc17_humidity  89
     2019-02-28 11:53:56   hfc17_icon      cloudy
     2019-02-28 11:53:56   hfc17_iconAPI   cloudy
     2019-02-28 11:53:56   hfc17_ozone     368.56
     2019-02-28 11:53:56   hfc17_precipIntensity 0.0305
     2019-02-28 11:53:56   hfc17_precipProbability 10
     2019-02-28 11:53:56   hfc17_precipType rain
     2019-02-28 11:53:56   hfc17_pressure  1010.8
     2019-02-28 11:53:56   hfc17_pubDate   Fr,  1 Mär 2019 03:00
     2019-02-28 11:53:56   hfc17_temperature 8.0
     2019-02-28 11:53:56   hfc17_uvIndex   0
     2019-02-28 11:53:56   hfc17_visibility 16.1
     2019-02-28 11:53:56   hfc17_wind      7
     2019-02-28 11:53:56   hfc17_windGust  11
     2019-02-28 11:53:56   hfc17_wind_condition Wind: W 7 km/h
     2019-02-28 11:53:56   hfc17_wind_direction 270
     2019-02-28 11:53:56   hfc17_wind_speed 7
     2019-02-28 11:53:56   hfc18_cloudCover 92
     2019-02-28 11:53:56   hfc18_code      29
     2019-02-28 11:53:56   hfc18_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc18_day_of_week Fr, 04:00
     2019-02-28 11:53:56   hfc18_dewPoint  6.3
     2019-02-28 11:53:56   hfc18_humidity  90
     2019-02-28 11:53:56   hfc18_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc18_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc18_ozone     364.41
     2019-02-28 11:53:56   hfc18_precipIntensity 0.0254
     2019-02-28 11:53:56   hfc18_precipProbability 11
     2019-02-28 11:53:56   hfc18_precipType rain
     2019-02-28 11:53:56   hfc18_pressure  1010.6
     2019-02-28 11:53:56   hfc18_pubDate   Fr,  1 Mär 2019 04:00
     2019-02-28 11:53:56   hfc18_temperature 7.8
     2019-02-28 11:53:56   hfc18_uvIndex   0
     2019-02-28 11:53:56   hfc18_visibility 16.1
     2019-02-28 11:53:56   hfc18_wind      7
     2019-02-28 11:53:56   hfc18_windGust  11
     2019-02-28 11:53:56   hfc18_wind_condition Wind: WSW 7 km/h
     2019-02-28 11:53:56   hfc18_wind_direction 256
     2019-02-28 11:53:56   hfc18_wind_speed 7
     2019-02-28 11:53:56   hfc19_cloudCover 92
     2019-02-28 11:53:56   hfc19_code      29
     2019-02-28 11:53:56   hfc19_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc19_day_of_week Fr, 05:00
     2019-02-28 11:53:56   hfc19_dewPoint  6.3
     2019-02-28 11:53:56   hfc19_humidity  91
     2019-02-28 11:53:56   hfc19_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc19_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc19_ozone     360.69
     2019-02-28 11:53:56   hfc19_precipIntensity 0.0203
     2019-02-28 11:53:56   hfc19_precipProbability 12
     2019-02-28 11:53:56   hfc19_precipType rain
     2019-02-28 11:53:56   hfc19_pressure  1010.6
     2019-02-28 11:53:56   hfc19_pubDate   Fr,  1 Mär 2019 05:00
     2019-02-28 11:53:56   hfc19_temperature 7.6
     2019-02-28 11:53:56   hfc19_uvIndex   0
     2019-02-28 11:53:56   hfc19_visibility 16.1
     2019-02-28 11:53:56   hfc19_wind      7
     2019-02-28 11:53:56   hfc19_windGust  12
     2019-02-28 11:53:56   hfc19_wind_condition Wind: S 7 km/h
     2019-02-28 11:53:56   hfc19_wind_direction 171
     2019-02-28 11:53:56   hfc19_wind_speed 7
     2019-02-28 11:53:56   hfc1_cloudCover 44
     2019-02-28 11:53:56   hfc1_code       30
     2019-02-28 11:53:56   hfc1_condition  Leicht bewölkt
     2019-02-28 11:53:56   hfc1_day_of_week Do, 11:00
     2019-02-28 11:53:56   hfc1_dewPoint   3.9
     2019-02-28 11:53:56   hfc1_humidity   70
     2019-02-28 11:53:56   hfc1_icon       partly_cloudy
     2019-02-28 11:53:56   hfc1_iconAPI    partly-cloudy-day
     2019-02-28 11:53:56   hfc1_ozone      282.08
     2019-02-28 11:53:56   hfc1_precipIntensity 0
     2019-02-28 11:53:56   hfc1_precipProbability 0
     2019-02-28 11:53:56   hfc1_precipType -
     2019-02-28 11:53:56   hfc1_pressure   1013.7
     2019-02-28 11:53:56   hfc1_pubDate    Do, 28 Feb 2019 11:00
     2019-02-28 11:53:56   hfc1_temperature 9.0
     2019-02-28 11:53:56   hfc1_uvIndex    2
     2019-02-28 11:53:56   hfc1_visibility 6.8
     2019-02-28 11:53:56   hfc1_wind       22
     2019-02-28 11:53:56   hfc1_windGust   29
     2019-02-28 11:53:56   hfc1_wind_condition Wind: W 22 km/h
     2019-02-28 11:53:56   hfc1_wind_direction 270
     2019-02-28 11:53:56   hfc1_wind_speed 22
     2019-02-28 11:53:56   hfc20_cloudCover 92
     2019-02-28 11:53:56   hfc20_code      29
     2019-02-28 11:53:56   hfc20_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc20_day_of_week Fr, 06:00
     2019-02-28 11:53:56   hfc20_dewPoint  6.1
     2019-02-28 11:53:56   hfc20_humidity  92
     2019-02-28 11:53:56   hfc20_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc20_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc20_ozone     356.98
     2019-02-28 11:53:56   hfc20_precipIntensity 0.0203
     2019-02-28 11:53:56   hfc20_precipProbability 13
     2019-02-28 11:53:56   hfc20_precipType rain
     2019-02-28 11:53:56   hfc20_pressure  1010.7
     2019-02-28 11:53:56   hfc20_pubDate   Fr,  1 Mär 2019 06:00
     2019-02-28 11:53:56   hfc20_temperature 7.4
     2019-02-28 11:53:56   hfc20_uvIndex   0
     2019-02-28 11:53:56   hfc20_visibility 16.1
     2019-02-28 11:53:56   hfc20_wind      7
     2019-02-28 11:53:56   hfc20_windGust  13
     2019-02-28 11:53:56   hfc20_wind_condition Wind: NO 7 km/h
     2019-02-28 11:53:56   hfc20_wind_direction 54
     2019-02-28 11:53:56   hfc20_wind_speed 7
     2019-02-28 11:53:56   hfc21_cloudCover 92
     2019-02-28 11:53:56   hfc21_code      29
     2019-02-28 11:53:56   hfc21_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc21_day_of_week Fr, 07:00
     2019-02-28 11:53:56   hfc21_dewPoint  5.7
     2019-02-28 11:53:56   hfc21_humidity  93
     2019-02-28 11:53:56   hfc21_icon      partly_cloudy_night
     2019-02-28 11:53:56   hfc21_iconAPI   partly-cloudy-night
     2019-02-28 11:53:56   hfc21_ozone     355.48
     2019-02-28 11:53:56   hfc21_precipIntensity 0.0229
     2019-02-28 11:53:56   hfc21_precipProbability 13
     2019-02-28 11:53:56   hfc21_precipType rain
     2019-02-28 11:53:56   hfc21_pressure  1011.0
     2019-02-28 11:53:56   hfc21_pubDate   Fr,  1 Mär 2019 07:00
     2019-02-28 11:53:56   hfc21_temperature 6.8
     2019-02-28 11:53:56   hfc21_uvIndex   0
     2019-02-28 11:53:56   hfc21_visibility 16.1
     2019-02-28 11:53:56   hfc21_wind      7
     2019-02-28 11:53:56   hfc21_windGust  14
     2019-02-28 11:53:56   hfc21_wind_condition Wind: NNW 7 km/h
     2019-02-28 11:53:56   hfc21_wind_direction 329
     2019-02-28 11:53:56   hfc21_wind_speed 7
     2019-02-28 11:53:56   hfc22_cloudCover 94
     2019-02-28 11:53:56   hfc22_code      26
     2019-02-28 11:53:56   hfc22_condition Stark bewölkt
     2019-02-28 11:53:56   hfc22_day_of_week Fr, 08:00
     2019-02-28 11:53:56   hfc22_dewPoint  4.9
     2019-02-28 11:53:56   hfc22_humidity  92
     2019-02-28 11:53:56   hfc22_icon      cloudy
     2019-02-28 11:53:56   hfc22_iconAPI   cloudy
     2019-02-28 11:53:56   hfc22_ozone     357.89
     2019-02-28 11:53:56   hfc22_precipIntensity 0.0127
     2019-02-28 11:53:56   hfc22_precipProbability 9
     2019-02-28 11:53:56   hfc22_precipType rain
     2019-02-28 11:53:56   hfc22_pressure  1011.4
     2019-02-28 11:53:56   hfc22_pubDate   Fr,  1 Mär 2019 08:00
     2019-02-28 11:53:56   hfc22_temperature 6.1
     2019-02-28 11:53:56   hfc22_uvIndex   0
     2019-02-28 11:53:56   hfc22_visibility 16.1
     2019-02-28 11:53:56   hfc22_wind      8
     2019-02-28 11:53:56   hfc22_windGust  15
     2019-02-28 11:53:56   hfc22_wind_condition Wind: NW 8 km/h
     2019-02-28 11:53:56   hfc22_wind_direction 313
     2019-02-28 11:53:56   hfc22_wind_speed 8
     2019-02-28 11:53:56   hfc23_cloudCover 95
     2019-02-28 11:53:56   hfc23_code      26
     2019-02-28 11:53:56   hfc23_condition Stark bewölkt
     2019-02-28 11:53:56   hfc23_day_of_week Fr, 09:00
     2019-02-28 11:53:56   hfc23_dewPoint  3.9
     2019-02-28 11:53:56   hfc23_humidity  88
     2019-02-28 11:53:56   hfc23_icon      cloudy
     2019-02-28 11:53:56   hfc23_iconAPI   cloudy
     2019-02-28 11:53:56   hfc23_ozone     362.51
     2019-02-28 11:53:56   hfc23_precipIntensity 0
     2019-02-28 11:53:56   hfc23_precipProbability 0
     2019-02-28 11:53:56   hfc23_precipType -
     2019-02-28 11:53:56   hfc23_pressure  1011.9
     2019-02-28 11:53:56   hfc23_pubDate   Fr,  1 Mär 2019 09:00
     2019-02-28 11:53:56   hfc23_temperature 5.7
     2019-02-28 11:53:56   hfc23_uvIndex   0
     2019-02-28 11:53:56   hfc23_visibility 16.1
     2019-02-28 11:53:56   hfc23_wind      9
     2019-02-28 11:53:56   hfc23_windGust  15
     2019-02-28 11:53:56   hfc23_wind_condition Wind: NNW 9 km/h
     2019-02-28 11:53:56   hfc23_wind_direction 329
     2019-02-28 11:53:56   hfc23_wind_speed 9
     2019-02-28 11:53:56   hfc24_cloudCover 92
     2019-02-28 11:53:56   hfc24_code      30
     2019-02-28 11:53:56   hfc24_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc24_day_of_week Fr, 10:00
     2019-02-28 11:53:56   hfc24_dewPoint  3.0
     2019-02-28 11:53:56   hfc24_humidity  81
     2019-02-28 11:53:56   hfc24_icon      partly_cloudy
     2019-02-28 11:53:56   hfc24_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc24_ozone     366.14
     2019-02-28 11:53:56   hfc24_precipIntensity 0
     2019-02-28 11:53:56   hfc24_precipProbability 0
     2019-02-28 11:53:56   hfc24_precipType -
     2019-02-28 11:53:56   hfc24_pressure  1012.4
     2019-02-28 11:53:56   hfc24_pubDate   Fr,  1 Mär 2019 10:00
     2019-02-28 11:53:56   hfc24_temperature 6.0
     2019-02-28 11:53:56   hfc24_uvIndex   1
     2019-02-28 11:53:56   hfc24_visibility 16.1
     2019-02-28 11:53:56   hfc24_wind      11
     2019-02-28 11:53:56   hfc24_windGust  16
     2019-02-28 11:53:56   hfc24_wind_condition Wind: NNW 11 km/h
     2019-02-28 11:53:56   hfc24_wind_direction 342
     2019-02-28 11:53:56   hfc24_wind_speed 11
     2019-02-28 11:53:56   hfc25_cloudCover 81
     2019-02-28 11:53:56   hfc25_code      30
     2019-02-28 11:53:56   hfc25_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc25_day_of_week Fr, 11:00
     2019-02-28 11:53:56   hfc25_dewPoint  2.5
     2019-02-28 11:53:56   hfc25_humidity  73
     2019-02-28 11:53:56   hfc25_icon      partly_cloudy
     2019-02-28 11:53:56   hfc25_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc25_ozone     367.66
     2019-02-28 11:53:56   hfc25_precipIntensity 0
     2019-02-28 11:53:56   hfc25_precipProbability 0
     2019-02-28 11:53:56   hfc25_precipType -
     2019-02-28 11:53:56   hfc25_pressure  1012.8
     2019-02-28 11:53:56   hfc25_pubDate   Fr,  1 Mär 2019 11:00
     2019-02-28 11:53:56   hfc25_temperature 7.0
     2019-02-28 11:53:56   hfc25_uvIndex   1
     2019-02-28 11:53:56   hfc25_visibility 16.1
     2019-02-28 11:53:56   hfc25_wind      12
     2019-02-28 11:53:56   hfc25_windGust  17
     2019-02-28 11:53:56   hfc25_wind_condition Wind: NNW 12 km/h
     2019-02-28 11:53:56   hfc25_wind_direction 335
     2019-02-28 11:53:56   hfc25_wind_speed 12
     2019-02-28 11:53:56   hfc26_cloudCover 65
     2019-02-28 11:53:56   hfc26_code      30
     2019-02-28 11:53:56   hfc26_condition Überwiegend bewölkt
     2019-02-28 11:53:56   hfc26_day_of_week Fr, 12:00
     2019-02-28 11:53:56   hfc26_dewPoint  2.1
     2019-02-28 11:53:56   hfc26_humidity  64
     2019-02-28 11:53:56   hfc26_icon      partly_cloudy
     2019-02-28 11:53:56   hfc26_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc26_ozone     368.21
     2019-02-28 11:53:56   hfc26_precipIntensity 0
     2019-02-28 11:53:56   hfc26_precipProbability 0
     2019-02-28 11:53:56   hfc26_precipType -
     2019-02-28 11:53:56   hfc26_pressure  1013.3
     2019-02-28 11:53:56   hfc26_pubDate   Fr,  1 Mär 2019 12:00
     2019-02-28 11:53:56   hfc26_temperature 8.7
     2019-02-28 11:53:56   hfc26_uvIndex   2
     2019-02-28 11:53:56   hfc26_visibility 16.1
     2019-02-28 11:53:56   hfc26_wind      14
     2019-02-28 11:53:56   hfc26_windGust  19
     2019-02-28 11:53:56   hfc26_wind_condition Wind: NW 14 km/h
     2019-02-28 11:53:56   hfc26_wind_direction 324
     2019-02-28 11:53:56   hfc26_wind_speed 14
     2019-02-28 11:53:56   hfc27_cloudCover 48
     2019-02-28 11:53:56   hfc27_code      30
     2019-02-28 11:53:56   hfc27_condition Leicht bewölkt
     2019-02-28 11:53:56   hfc27_day_of_week Fr, 13:00
     2019-02-28 11:53:56   hfc27_dewPoint  1.9
     2019-02-28 11:53:56   hfc27_humidity  58
     2019-02-28 11:53:56   hfc27_icon      partly_cloudy
     2019-02-28 11:53:56   hfc27_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc27_ozone     368.11
     2019-02-28 11:53:56   hfc27_precipIntensity 0
     2019-02-28 11:53:56   hfc27_precipProbability 0
     2019-02-28 11:53:56   hfc27_precipType -
     2019-02-28 11:53:56   hfc27_pressure  1013.6
     2019-02-28 11:53:56   hfc27_pubDate   Fr,  1 Mär 2019 13:00
     2019-02-28 11:53:56   hfc27_temperature 9.8
     2019-02-28 11:53:56   hfc27_uvIndex   2
     2019-02-28 11:53:56   hfc27_visibility 16.1
     2019-02-28 11:53:56   hfc27_wind      15
     2019-02-28 11:53:56   hfc27_windGust  20
     2019-02-28 11:53:56   hfc27_wind_condition Wind: NW 15 km/h
     2019-02-28 11:53:56   hfc27_wind_direction 316
     2019-02-28 11:53:56   hfc27_wind_speed 15
     2019-02-28 11:53:56   hfc28_cloudCover 31
     2019-02-28 11:53:56   hfc28_code      30
     2019-02-28 11:53:56   hfc28_condition Leicht bewölkt
     2019-02-28 11:53:56   hfc28_day_of_week Fr, 14:00
     2019-02-28 11:53:56   hfc28_dewPoint  2.0
     2019-02-28 11:53:56   hfc28_humidity  57
     2019-02-28 11:53:56   hfc28_icon      partly_cloudy
     2019-02-28 11:53:56   hfc28_iconAPI   partly-cloudy-day
     2019-02-28 11:53:56   hfc28_ozone     367.35
     2019-02-28 11:53:56   hfc28_precipIntensity 0
     2019-02-28 11:53:56   hfc28_precipProbability 0
     2019-02-28 11:53:56   hfc28_precipType -
     2019-02-28 11:53:56   hfc28_pressure  1013.9
     2019-02-28 11:53:56   hfc28_pubDate   Fr,  1 Mär 2019 14:00
     2019-02-28 11:53:56   hfc28_temperature 10.2
     2019-02-28 11:53:56   hfc28_uvIndex   1
     2019-02-28 11:53:56   hfc28_visibility 16.1
     2019-02-28 11:53:56   hfc28_wind      16
     2019-02-28 11:53:56   hfc28_windGust  21
     2019-02-28 11:53:56   hfc28_wind_condition Wind: NW 16 km/h
     2019-02-28 11:53:56   hfc28_wind_direction 316
     2019-02-28 11:53:56   hfc28_wind_speed 16
     2019-02-28 11:53:56   hfc29_cloudCover 14
     2019-02-28 11:53:56   hfc29_code      32
     2019-02-28 11:53:56   hfc29_condition Heiter
     2019-02-28 11:53:56   hfc29_day_of_week Fr, 15:00
     2019-02-28 11:53:56   hfc29_dewPoint  2.1
     2019-02-28 11:53:56   hfc29_humidity  57
     2019-02-28 11:53:56   hfc29_icon      sunny
     2019-02-28 11:53:56   hfc29_iconAPI   clear-day
     2019-02-28 11:53:56   hfc29_ozone     365.93
     2019-02-28 11:53:56   hfc29_precipIntensity 0
     2019-02-28 11:53:56   hfc29_precipProbability 0
     2019-02-28 11:53:56   hfc29_precipType -
     2019-02-28 11:53:56   hfc29_pressure  1014.0
     2019-02-28 11:53:56   hfc29_pubDate   Fr,  1 Mär 2019 15:00
     2019-02-28 11:53:56   hfc29_temperature 10.1
     2019-02-28 11:53:56   hfc29_uvIndex   1
     2019-02-28 11:53:56   hfc29_visibility 16.1
     2019-02-28 11:53:56   hfc29_wind      18
     2019-02-28 11:53:56   hfc29_windGust  23
     2019-02-28 11:53:56   hfc29_wind_condition Wind: NW 18 km/h
     2019-02-28 11:53:56   hfc29_wind_direction 319
     2019-02-28 11:53:56   hfc29_wind_speed 18
     2019-02-28 11:53:56   hfc2_cloudCover 43
     2019-02-28 11:53:56   hfc2_code       30
     2019-02-28 11:53:56   hfc2_condition  Leicht bewölkt
     2019-02-28 11:53:56   hfc2_day_of_week Do, 12:00
     2019-02-28 11:53:56   hfc2_dewPoint   4.1
     2019-02-28 11:53:56   hfc2_humidity   64
     2019-02-28 11:53:56   hfc2_icon       partly_cloudy
     2019-02-28 11:53:56   hfc2_iconAPI    partly-cloudy-day
     2019-02-28 11:53:56   hfc2_ozone      284.01
     2019-02-28 11:53:56   hfc2_precipIntensity 0
     2019-02-28 11:53:56   hfc2_precipProbability 0
     2019-02-28 11:53:56   hfc2_precipType -
     2019-02-28 11:53:56   hfc2_pressure   1013.5
     2019-02-28 11:53:56   hfc2_pubDate    Do, 28 Feb 2019 12:00
     2019-02-28 11:53:56   hfc2_temperature 10.7
     2019-02-28 11:53:56   hfc2_uvIndex    2
     2019-02-28 11:53:56   hfc2_visibility 6.8
     2019-02-28 11:53:56   hfc2_wind       23
     2019-02-28 11:53:56   hfc2_windGust   28
     2019-02-28 11:53:56   hfc2_wind_condition Wind: WNW 23 km/h
     2019-02-28 11:53:56   hfc2_wind_direction 291
     2019-02-28 11:53:56   hfc2_wind_speed 23
     2019-02-28 11:53:56   hfc30_cloudCover 6
     2019-02-28 11:53:56   hfc30_code      32
     2019-02-28 11:53:56   hfc30_condition Heiter
     2019-02-28 11:53:56   hfc30_day_of_week Fr, 16:00
     2019-02-28 11:53:56   hfc30_dewPoint  2.1
     2019-02-28 11:53:56   hfc30_humidity  58
     2019-02-28 11:53:56   hfc30_icon      sunny
     2019-02-28 11:53:56   hfc30_iconAPI   clear-day
     2019-02-28 11:53:56   hfc30_ozone     364.32
     2019-02-28 11:53:56   hfc30_precipIntensity 0
     2019-02-28 11:53:56   hfc30_precipProbability 0
     2019-02-28 11:53:56   hfc30_precipType -
     2019-02-28 11:53:56   hfc30_pressure  1014.3
     2019-02-28 11:53:56   hfc30_pubDate   Fr,  1 Mär 2019 16:00
     2019-02-28 11:53:56   hfc30_temperature 10.1
     2019-02-28 11:53:56   hfc30_uvIndex   0
     2019-02-28 11:53:56   hfc30_visibility 16.1
     2019-02-28 11:53:56   hfc30_wind      18
     2019-02-28 11:53:56   hfc30_windGust  24
     
     

etwas gekürzt...

Welche Untershciede gibt es denn zwischen den Systemen? Rufst Du beide Systeme mit ein und dem selben Browser auf?
Du musst nicht wissen wie es geht! Du musst nur wissen wo es steht, wie es geht.
Support me to buy new test hardware for development: https://www.paypal.com/paypalme/MOldenburg
My FHEM Git: https://git.cooltux.net/FHEM/
Das TuxNet Wiki:
https://www.cooltux.net

moonsorrox

Wie gesagt das Testsystem ist ein Debian in einer VM und mein produktives ist auf einem Intel NUC mit Ubuntu
Und ja beides im Firefox
Intel-NUC i5: FHEM-Server 6.1 :: Perl v5.18.2

Homematic: HM-USB-CFG2,HM-CFG-LAN Adapter, HM-LC-BL1-FM, HM-LC-Sw1PBU-FM, HM-LC-Sw1-PI-2, HM-WDS10-TH-O, HM-CC-TC, HM-LC-SW2-FM

CoolTux

Du musst nicht wissen wie es geht! Du musst nur wissen wo es steht, wie es geht.
Support me to buy new test hardware for development: https://www.paypal.com/paypalme/MOldenburg
My FHEM Git: https://git.cooltux.net/FHEM/
Das TuxNet Wiki:
https://www.cooltux.net