From 9656d8da4984f6c643ee06dea41838a983e7a7bb Mon Sep 17 00:00:00 2001 From: "Dr. Boris Neubert" Date: Sat, 12 Jan 2019 15:00:52 +0100 Subject: [PATCH] removed dead or deprecated code, updated commandref --- 59_Weather.pm | 474 +++++++++++++++++++++----------------------------- 1 file changed, 196 insertions(+), 278 deletions(-) diff --git a/59_Weather.pm b/59_Weather.pm index a879f55..da43444 100755 --- a/59_Weather.pm +++ b/59_Weather.pm @@ -152,49 +152,14 @@ sub degrees_to_direction($@) { return $directions_txt_i18n[$mod]; } -################################### -# sub Weather_RetrieveData($$) { -# my ($name, $blocking) = @_; -# my $hash = $defs{$name}; -# -# # WOEID [WHERE-ON-EARTH-ID], go to http://weather.yahoo.com to find out -# my $location= $hash->{LOCATION}; -# my $units= $hash->{UNITS}; -# -# my %args= ( -# woeid => $location, -# format => "json", -# blocking => $blocking, -# callbackFnRef => \&Weather_RetrieveDataFinished, -# hash => $hash, -# ); -# -# # this needs to be finalized to use the APIOPTIONS -# my $maxage= $hash->{fhem}->{allowCache} ? 600 : 0; # use cached data if allowed -# $hash->{fhem}->{allowCache}= 1; -# YahooWeatherAPI_RetrieveDataWithCache($maxage, \%args); -# -# -# $hash->{fhem}->{api}->setRetrieveData; -# } sub Weather_ReturnWithError($$) { my ($hash, $responseRef)= @_; my $name= $hash->{NAME}; -# $hash->{fhem}->{allowCache}= 0; # do not use cache on next try -# -# Log3 $hash, 3, "$name: $err"; -# readingsBeginUpdate($hash); -# readingsBulkUpdate($hash, "lastError", $err); -# readingsBulkUpdate($hash, "pubDateComment", $pubDateComment) if(defined($pubDateComment)); -# readingsBulkUpdate($hash, "pubDateRemote", $pubDate) if(defined($pubDate)); -# readingsBulkUpdate($hash, "validity", "stale"); -# readingsEndUpdate($hash, $doTrigger); - readingsBeginUpdate($hash); readingsBulkUpdate($hash, 'lastError', $responseRef->{status}); - + foreach my $r (keys %{$responseRef} ) { readingsBulkUpdate($hash, $r, $responseRef->{$r}) if ( ref($responseRef->{$r}) ne 'HASH' ); } @@ -207,138 +172,12 @@ sub Weather_ReturnWithError($$) { return; } -# sub Weather_RetrieveDataFinished($$$) { -# -# my ($argsRef, $err, $response)= @_; -# -# my $hash= $argsRef->{hash}; -# my $name= $hash->{NAME}; -# my $doTrigger= $argsRef->{blocking} ? 0 : 1; -# -# # check for error from retrieving data -# return Weather_ReturnWithError($hash, $doTrigger, $err, undef, undef) if($err); -# -# # decode JSON data from Weather Channel -# my $data; -# ($err, $data)= YahooWeatherAPI_JSONReturnChannelData($response); -# return Weather_ReturnWithError($hash, $doTrigger, $err, undef, undef) if($err); -# -# # check if up-to-date -# my ($pubDateComment, $pubDate, $pubDateTs)= YahooWeatherAPI_pubDate($data); -# return Weather_ReturnWithError($hash, $doTrigger, $pubDateComment, $pubDate, $pubDateComment) -# unless(defined($pubDateTs)); -# my $ts= defined($hash->{READINGS}->{pubDateTs}) ? $hash->{READINGS}->{pubDateTs}->{VAL} : 0; -# return Weather_ReturnWithError($hash, $doTrigger, "stale data received", $pubDate, $pubDateComment) -# if($ts> $pubDateTs); -# -# -# # -# # from here on we assume that $data is complete and correct -# # -# my $lang= $hash->{LANG}; -# -# my @YahooCodes_i18n= YahooWeatherAPI_getYahooCodes($lang); -# -# my $item= $data->{item}; -# -# readingsBeginUpdate($hash); -# -# # delete some unused readings -# delete($hash->{READINGS}->{temp_f}) if(defined($hash->{READINGS}->{temp_f})); -# delete($hash->{READINGS}->{unit_distance}) if(defined($hash->{READINGS}->{unit_distance})); -# delete($hash->{READINGS}->{unit_speed}) if(defined($hash->{READINGS}->{unit_speed})); -# delete($hash->{READINGS}->{unit_pressuree}) if(defined($hash->{READINGS}->{unit_pressuree})); -# delete($hash->{READINGS}->{unit_temperature}) if(defined($hash->{READINGS}->{unit_temperature})); -# -# # convert to metric units as far as required -# my $isConverted= YahooWeatherAPI_ConvertChannelData($data); -# -# # housekeeping information -# readingsBulkUpdate($hash, "lastError", ""); -# readingsBulkUpdate($hash, "pubDateComment", $pubDateComment); -# readingsBulkUpdate($hash, "pubDate", $pubDate); -# readingsBulkUpdate($hash, "pubDateRemote", $pubDate); -# readingsBulkUpdate($hash, "pubDateTs", $pubDateTs); -# readingsBulkUpdate($hash, "isConverted", $isConverted); -# readingsBulkUpdate($hash, "validity", "up-to-date"); -# -# # description -# readingsBulkUpdate($hash, "description", $data->{description}); -# -# # location -# readingsBulkUpdate($hash, "city", $data->{location}->{city}); -# readingsBulkUpdate($hash, "region", $data->{location}->{region}); -# readingsBulkUpdate($hash, "country", $data->{location}->{country}); -# readingsBulkUpdate($hash, "lat", $item->{lat}); -# readingsBulkUpdate($hash, "long", $item->{long}); -# -# # wind -# my $windspeed= int($data->{wind}->{speed}+0.5); -# readingsBulkUpdate($hash, "wind", $windspeed); -# readingsBulkUpdate($hash, "wind_speed", $windspeed); -# readingsBulkUpdate($hash, "wind_chill", $data->{wind}->{chill}); -# my $winddir= $data->{wind}->{direction}; -# readingsBulkUpdate($hash, "wind_direction", $winddir); -# my $wdir= degrees_to_direction($winddir, @directions_txt_i18n); -# readingsBulkUpdate($hash, "wind_condition", "Wind: $wdir $windspeed km/h"); -# -# # atmosphere -# my $humidity= $data->{atmosphere}->{humidity}; -# readingsBulkUpdate($hash, "humidity", $humidity); -# my $pressure= $data->{atmosphere}->{pressure}; -# readingsBulkUpdate($hash, "pressure", $pressure); -# readingsBulkUpdate($hash, "visibility", int($data->{atmosphere}->{visibility}+0.5)); -# my $pressure_trend= $data->{atmosphere}->{rising}; -# readingsBulkUpdate($hash, "pressure_trend", $pressure_trend); -# readingsBulkUpdate($hash, "pressure_trend_txt", $pressure_trend_txt_i18n{$pressure_trend}); -# readingsBulkUpdate($hash, "pressure_trend_sym", $pressure_trend_sym{$pressure_trend}); -# -# # condition -# my $date= $item->{condition}->{date}; -# readingsBulkUpdate($hash, "current_date_time", $date); -# readingsBulkUpdate($hash, "day_of_week", $wdays_txt_i18n{substr($date,0,3)}); -# my $code= $item->{condition}->{code}; -# readingsBulkUpdate($hash, "code", $code); -# readingsBulkUpdate($hash, "condition", $YahooCodes_i18n[$code]); -# readingsBulkUpdate($hash, "icon", $iconlist[$code]); -# my $temp= $item->{condition}->{temp}; -# readingsBulkUpdate($hash, "temp_c", $temp); -# readingsBulkUpdate($hash, "temperature", $temp); -# -# # forecast -# my $forecast= $item->{forecast}; -# my $i= 0; -# foreach my $fc (@{$forecast}) { -# $i++; -# my $f= "fc" . $i ."_"; -# readingsBulkUpdate($hash, $f . "day_of_week", $wdays_txt_i18n{$fc->{day}}); -# readingsBulkUpdate($hash, $f . "date", $fc->{date}); -# readingsBulkUpdate($hash, $f . "low_c", $fc->{low}); -# readingsBulkUpdate($hash, $f . "high_c", $fc->{high}); -# my $fccode= $fc->{code}; -# readingsBulkUpdate($hash, $f . "code", $fccode); -# readingsBulkUpdate($hash, $f . "condition", $YahooCodes_i18n[$fccode]); -# readingsBulkUpdate($hash, $f . "icon", $iconlist[$fccode]); -# } -# -# #my $val= "T:$temp°C " . substr($status_items_txt_i18n{1}, 0, 1) .":$humidity% " . substr($status_items_txt_i18n{0}, 0, 1) . ":$windspeed km/h P:$pressure mbar"; -# my $val= "T: $temp H: $humidity W: $windspeed P: $pressure"; -# Log3 $hash, 4, "$name: $val"; -# readingsBulkUpdate($hash, "state", $val); -# -# readingsEndUpdate($hash, $doTrigger); -# -# Weather_RearmTimer($hash, gettimeofday()+$hash->{INTERVAL}); -# return; -# -# } - sub Weather_RetrieveCallbackFn($) { my $name = shift; my $hash = $defs{$name}; my $responseRef = $hash->{fhem}->{api}->getWeather; - + if ( $responseRef->{status} eq 'ok' ) { Weather_WriteReadings($hash,$responseRef); } @@ -358,10 +197,10 @@ sub Weather_WriteReadings($$) { delete($hash->{READINGS}->{unit_speed}) if(defined($hash->{READINGS}->{unit_speed})); delete($hash->{READINGS}->{unit_pressuree}) if(defined($hash->{READINGS}->{unit_pressuree})); delete($hash->{READINGS}->{unit_temperature}) if(defined($hash->{READINGS}->{unit_temperature})); - + # housekeeping information readingsBulkUpdate($hash, 'lastError', ''); - foreach my $r (keys %{$dataRef} ) { + foreach my $r (keys %{$dataRef} ) { readingsBulkUpdate($hash, $r, $dataRef->{$r}) if ( ref($dataRef->{$r}) ne 'HASH' and ref($dataRef->{$r}) ne 'ARRAY' ); readingsBulkUpdate($hash, '.license', $dataRef->{license}->{text}); @@ -376,7 +215,7 @@ sub Weather_WriteReadings($$) { readingsBulkUpdate($hash, $r, $v) if ( ref($dataRef->{$r}) ne 'HASH' and ref($dataRef->{$r}) ne 'ARRAY' ); } - + readingsBulkUpdate($hash, 'icon', $iconlist[$dataRef->{current}->{code}]); if ( defined($dataRef->{current}->{wind_direction}) and $dataRef->{current}->{wind_direction} @@ -400,13 +239,13 @@ sub Weather_WriteReadings($$) { foreach my $fc (@{$dataRef->{forecast}->{hourly}}) { $i++; my $f= "hfc" . $i ."_"; - + while( my ($r,$v) = each %{$fc} ) { readingsBulkUpdate($hash, $f.$r, $v) if ( ref($dataRef->{$r}) ne 'HASH' and ref($dataRef->{$r}) ne 'ARRAY' ); } readingsBulkUpdate($hash, $f . 'icon', $iconlist[$dataRef->{forecast}->{hourly}[$i-1]{code}]); - + if ( defined($dataRef->{forecast}->{hourly}[$i-1]{wind_direction}) and $dataRef->{forecast}->{hourly}[$i-1]{wind_direction} and defined($dataRef->{forecast}->{hourly}[$i-1]{wind_speed}) @@ -418,7 +257,7 @@ sub Weather_WriteReadings($$) { } } } - + ## daily if ( defined($dataRef->{forecast}->{daily}) and ref( $dataRef->{forecast}->{daily} ) eq 'ARRAY' and scalar( @{ $dataRef->{forecast}->{daily} } ) > 0 ) @@ -427,13 +266,13 @@ sub Weather_WriteReadings($$) { foreach my $fc (@{$dataRef->{forecast}->{daily}}) { $i++; my $f= "fc" . $i ."_"; - + while( my ($r,$v) = each %{$fc} ) { readingsBulkUpdate($hash, $f.$r, $v) if ( ref($dataRef->{$r}) ne 'HASH' and ref($dataRef->{$r}) ne 'ARRAY' ); } readingsBulkUpdate($hash, $f . 'icon', $iconlist[$dataRef->{forecast}->{daily}[$i-1]{code}]); - + if ( defined($dataRef->{forecast}->{daily}[$i-1]{wind_direction}) and $dataRef->{forecast}->{daily}[$i-1]{wind_direction} and defined($dataRef->{forecast}->{daily}[$i-1]{wind_speed}) @@ -446,12 +285,12 @@ sub Weather_WriteReadings($$) { } } } - + my $val= 'T:' . $dataRef->{current}->{temperature} . '°C' .' ' . substr($status_items_txt_i18n{1}, 0, 1) . ':' . $dataRef->{current}->{humidity} . '%' .' ' . substr($status_items_txt_i18n{0}, 0, 1) . ':' . $dataRef->{current}->{wind} . 'km/h' .' P:' . $dataRef->{current}->{pressure} . 'mbar'; - + Log3 $hash, 4, "$name: $val"; readingsBulkUpdate($hash, 'state', $val); @@ -565,49 +404,29 @@ sub Weather_Define($$) { my ($hash, $def) = @_; - # define Weather [interval] - # define MyWeather Weather "Maintal,HE" 3600 + my $usage= "syntax: define Weather [API=] [apikey=] [location=] [interval=] [lang=]"; - # define Weather location= [API=] [interval=] [lang=] - - my $name; + # defaults my $API="DarkSkyAPI,cachemaxage:600"; - my $location; - my $apikey; my $interval = 3600; - my $lang; - if($def =~ /=/) { + # parse parameters + my ($arrayref, $hashref)= parseParams($def); + my @a= @{$arrayref}; + my %h= %{$hashref}; - my $usage= "syntax: define Weather location= [API=] [lang=]"; + # check minimum syntax + return $usage unless(scalar @a == 2); + my $name= $a[0]; - my ($arrayref, $hashref)= parseParams($def); - my @a= @{$arrayref}; - my %h= %{$hashref}; - return $usage unless(scalar @a == 2); - $name= $a[0]; - - #return $usage unless exists $h{location}; - $location= $h{location}; - $apikey = $h{apikey} if exists $h{apikey}; - $lang= $h{lang} if exists $h{lang}; - $interval= $h{interval} if exists $h{interval}; - $API = $h{API} if exists $h{API}; - - } else { - my @a = split("[ \t][ \t]*", $def); - - return "syntax: define Weather [interval [en|de|nl|fr|pl|it]]" - if(int(@a) < 3 && int(@a) > 5); - - $name = $a[0]; - $location = $a[2]; - if(int(@a)>=4) { $interval= $a[3]; } - if(int(@a)==5) { $lang= $a[4]; } - - } + my $location= $h{location} if exists $h{location}; + my $apikey = $h{apikey} if exists $h{apikey}; + my $lang= $h{lang} if exists $h{lang}; + $interval= $h{interval} if exists $h{interval}; + $API = $h{API} if exists $h{API}; + # evaluate API options my ($api,$apioptions)= split(',', $API, 2); $apioptions= "" unless(defined($apioptions)); eval { @@ -628,13 +447,13 @@ sub Weather_Define($$) { $hash->{READINGS}->{current_date_time}->{VAL}= "none"; $hash->{fhem}->{allowCache}= 1; - + readingsSingleUpdate($hash,'state','Initialized',1); Weather_LanguageInitialize($hash->{LANG}); my $apistring = $api . '::Weather'; $hash->{fhem}->{api} = $apistring->new( { devName => $hash->{NAME}, apikey => $hash->{APIKEY}, location => $hash->{LOCATION}, apioptions => $hash->{APIOPTIONS}, language => $hash->{LANG} } ); - + Weather_GetUpdate($hash) if($init_done); return undef; @@ -729,7 +548,7 @@ sub WeatherAsHtmlH($;$) my $ret = ''; my $fc = ( (defined($h->{READINGS}->{fc1_day_of_week}) and $h->{READINGS}->{fc1_day_of_week}) ? 'fc' : 'hfc' ); - + # icons $ret .= sprintf('', $width, WeatherIconIMGTag(ReadingsVal($d, "icon", ""))); for(my $i=1; $i<$items; $i++) { @@ -779,52 +598,95 @@ sub WeatherAsHtmlD($;$) =pod =item device -=item summary provides current weather condition and forecast (source: Yahoo Weather API) -=item summary_DE stellt Wetterbericht und -vorhersage bereit (Quelle: Yahoo Weather API) +=item summary provides current weather condition and forecast +=item summary_DE stellt Wetterbericht und -vorhersage bereit =begin html

Weather

    - You need the JSON perl module. Use apt-get install libjson-perl on Debian and derivatives.

    + Note: you need the JSON perl module. Use apt-get install + libjson-perl on Debian and derivatives.

    + + The Weather module works with various weather APIs: +

    +
    + Such a virtual Weather device periodically gathers current and forecast + weather conditions from the chosen weather API.

    - Define -
      - define <name> Weather <location> [<interval> [<language>]]
      -
      - Defines a virtual device for weather forecasts.

      + Define

      +
        + define <name> Weather [API=<API>[,<apiotions>]] [apikey=<apikey>] + [location=<location>] [interval=<interval>] [lang=<lang>]

        - A Weather device periodically gathers current and forecast weather conditions - from the Yahoo Weather API.

        - The parameter location is the WOEID (WHERE-ON-EARTH-ID), go to - http://weather.yahoo.com to find it out for your location.

        + The parameters have the following meanings:
        - The optional parameter interval is the time between subsequent updates - in seconds. It defaults to 3600 (1 hour).

        +
%s
+ + + + + + +
APIname of the weather API, e.g. DarkSkyAPI
apioptionsindivual options for the chosen API
apikeykey for the chosen API
locationlocation for the weather forecast; + e.g. coordinates, a town name or an ID, depending on the chosen API
intervalduration in seconds between updates
langlanguage of the forecast: de, + en, pl, fr, it or nl
+

- The optional language parameter may be one of - de, - en, - pl, - fr, - nl, - it, - - It determines the natural language in which the forecast information appears. - It defaults to en. If you want to set the language you also have to set the interval.

+ A very simple definition is:

+ define <name> Weather apikey=<DarkSkyAPISecretKey>

+ This uses the Dark Sky API with an individual key that you need to + retrieve from the Dark Sky web site.

Examples:

-      define MyWeather Weather 673513
-      define Forecast Weather 673513 1800
-     
+ define Forecast Weather apikey=987498ghjgf864 + define MyWeather Weather api=OpenWeatherMapAPI,cachemaxage:600 apikey=09878945fdskv876 location=52.4545,13.4545 interval=3600 language=de + - The module provides four additional functions WeatherAsHtml, WeatherAsHtmlV, WeatherAsHtmlH and - WeatherAsHtmlD. The former two functions are identical: they return the HTML code for a - vertically arranged weather forecast. The third function returns the HTML code for a horizontally arranged weather forecast. The - latter function dynamically picks the orientation depending on wether a smallscreen style is set (vertical layout) or not (horizontal layout). Each version accepts an additional paramter to limit the numer of icons to display.

+ + API-specific documentation follows.

+ + Dark Sky

+ + + + + +
APIDarkSkyAPI
apioptionscachemaxage=<cachemaxage>
duration + in seconds to retrieve the forecast from the cache instead from the API
location<latitude,longitude>
+ geographic coordinates in degrees of the location for which the + weather is forecast; if missing, the values of the attributes + of the global device are taken, if these exist.
+

+ + OpenWeatherMap

+ + + + + +
APIOpenWeatherMapAPI
apioptionscachemaxage=<cachemaxage>
duration + in seconds to retrieve the forecast from the cache instead from the API
location<latitude,longitude>
+ geographic coordinates in degrees of the location for which the + weather is forecast; if missing, the values of the attributes + of the global device are taken, if these exist.
+

+ + The module provides four additional functions WeatherAsHtml, + WeatherAsHtmlV, WeatherAsHtmlH and + WeatherAsHtmlD. The former two functions are identical: + they return the HTML code for a vertically arranged weather forecast. + The third function returns the HTML code for a horizontally arranged + weather forecast. The latter function dynamically picks the orientation + depending on wether a smallscreen style is set (vertical layout) or not + (horizontal layout). Each version accepts an additional paramter + to limit the numer of icons to display.

Example:

       define MyWeatherWeblink weblink htmlCode { WeatherAsHtmlH("MyWeather") }
@@ -852,6 +714,7 @@ sub WeatherAsHtmlD($;$)
     Valid readings and their meaning (? can be one of 1, 2, 3, 4, 5 and stands
     for today, tomorrow, etc.):
+ @@ -879,13 +742,9 @@ sub WeatherAsHtmlD($;$)
.locenselicense of the API provider, if available
cityname of town returned for location
codecurrent condition code
conditioncurrent condition
wind_speedsame as wind

- The following readings help to identify whether a workaround has kicked in to avoid the retrieval of - stale data from the remote server: - - - - -
pubDatepublication time of forecast for current set of readings
pubDateRemotepublication time of forecast as seen on remote server
validitystale, if publication time as seen on remote server is before that of current set of readings
+ Depending on the chosen API, other readings can be shown as well. + The meaning of these readings can be determined from the API provider's + documentation.
@@ -907,47 +766,101 @@ sub WeatherAsHtmlD($;$)

Weather

    - Es wird das Perl-Modul JSON benötigt. Mit apt-get install libjson-perl kann es unter Debian und Derivaten installiert werden.
    - Das Modul arbeitet mit so genanneten API Modulen zusammen. Welche API Module es gibt wird hier bald stehen

    + Hinweis: es wird das Perl-Modul JSON benötigt. Mit apt-get install + libjson-perl kann es unter Debian und Derivaten installiert + werden.

    + + Das Weather-Modul arbeitet mit verschiedenen Wetter-APIs zusammen: +

    +
    + Eine solche virtuelle Wetterstation sammelt periodisch aktuelle Wetterdaten + und Wettervorhersagen aus dem verwendeten API.

    + - Define + Define

      - Eine ganz einfache Definition ist:
      - define <name> Weather
      - Bei dieser Definition wird die Standard API von DarkSky verwendet. Diese benötigt einen APIKEY. Folglich muss die Definition entsprechend erweitert werden.
      - define <name> Weather apikey=[APIKEY]
      -
      - Was eine API als Übergabeparameter benötigt ist der jeweiligen API Modulbeschreibung zu entnehmen.
      - Die Default API benötigt noch eine location. Also eine Angabe zur Position Deines Ortes (Latitude und Longitude). Diese Informationen werden aus dem globalen Device gelesen, sofern sie nicht mittels der Option location= mit übergeben werden.
      - Es macht generell Sinn diese Informationen eben so wie die Sprache im globalen Device als Attribut zu hinterlegen.
      - Der maximale Aufbau einer Definition lautet:
      - define <name> Weather [<API=OpenWeatherMapAPI:[APIOPTIONEN]>] [<location=[LATITUDE,LONGITUDE] oder ID>] [<interval=INTERVAL>] [<language=LANGUAGE>]
      - Die Angaben in [ ] sind immer als Optional an zu sehen. Ein apikey kann genauso gut ein OAuth Token oder ähnliche Authentifizierungmöglichkeit sein. -
      - Eine solche virtuelle Wetterstation sammelt periodisch aktuelle und zukünftige Wetterdaten aus dem angegebenen oder standard API-Modul.

      + define <name> Weather [API=<API>[,<apiotions>]] [apikey=<apikey>] + [location=<location>] [interval=<interval>] [lang=<lang>]

      - Der optionale Parameter location kan der Locationen ID des Anbieters vom API Modul entsprechen, oder im einfachsten Fall der Angabe von Latitude,Longitude.
      - Steht Latitude und Longitude im global Device und wird von der API benötigt ist eine Angabe nicht nötig

      + Die Parameter haben die folgende Bedeutung:
      - Der optionale Parameter interval gibt die Dauer in Sekunden zwischen den einzelnen Aktualisierungen der Wetterdaten an. Der Standardwert ist 3600 (1 Stunde). Wird kein Wert angegeben, gilt der Standardwert.

      + + + + + + + +
      APIName des Wetter-APIs, z.B. DarkSkyAPI
      apioptionsIndividuelle Optionen für das gewählte API
      apikeySchlüssel für das gewählte API
      locationOrt, für den das Wetter vorhergesagt wird. + Abhängig vom API z.B. die Koordinaten, ein Ortsname oder eine ID.
      intervalDauer in Sekunden zwischen den einzelnen + Aktualisierungen der Wetterdaten
      langSprache der Wettervorhersage: de, + en, pl, fr, it oder nl
      +

      - Der optionale Parameter für die möglichen Sprachen darf einen der folgende Werte annehmen: de, en, pl, fr oder nl. Er bezeichnet die natürliche Sprache, in der die Wetterinformationen dargestellt werden. Der Standardwert ist en. Wird für die Sprache kein Wert angegeben, gilt der Standardwert.

      + Eine ganz einfache Definition ist:

      + define <name> Weather apikey=<DarkSkyAPISecretKey>

      + Bei dieser Definition wird die API von Dark Sky verwendet mit einem + individuellen Schlüssel, den man sich auf der Webseite von Dark Sky + beschaffen muss.

      Beispiele:

      -      define MyWeather Weather api=OpenWeatherMapAPI,cachemaxage:600 apikey=09878945fdskv876 location=52.4545,13.4545 interval=3600 language=de
             define Forecast Weather apikey=987498ghjgf864
      -     
      + define MyWeather Weather api=OpenWeatherMapAPI,cachemaxage:600 apikey=09878945fdskv876 location=52.4545,13.4545 interval=3600 language=de +
- Das Modul unterstützt zusätzlich vier verschiedene Funktionen WeatherAsHtml, WeatherAsHtmlV, WeatherAsHtmlH und WeatherAsHtmlD. Die ersten beiden Funktionen sind identisch: sie erzeugen den HTML-Code für eine vertikale Darstellung des Wetterberichtes. Die dritte Funktion liefert den HTML-Code für eine horizontale Darstellung des Wetterberichtes. Die letztgenannte Funktion wählt automatisch eine Ausrichtung, die abhängig davon ist, ob ein Smallcreen Style ausgewählt ist (vertikale Darstellung) oder nicht (horizontale Darstellung). Alle vier Funnktionen akzeptieren einen zusätzlichen optionalen Paramter um die Anzahl der darzustellenden Icons anzugeben.

+ Es folgt die API-spezifische Dokumentation.

+ + Dark Sky

+ + + + + +
APIDarkSkyAPI
apioptionscachemaxage=<cachemaxage>
Zeitdauer in + Sekunden, innerhalb derer die Wettervorhersage nicht neu abgerufen + sondern aus dem Cache zurück geliefert wird.
location<latitude,longitude>
Geographische Breite + und Länge des Ortes in Grad, für den das Wetter vorhergesagt wird. + Bei fehlender Angabe werden die Werte aus den gleichnamigen Attributen + des global-Device genommen, sofern vorhanden.
+

+ + OpenWeatherMap

+ + + + + +
APIOpenWeatherMapAPI
apioptionscachemaxage=<cachemaxage> Zeitdauer in + Sekunden, innerhalb derer die Wettervorhersage nicht neu abgerufen + sondern aus dem Cache zurück geliefert wird.
location<latitude,longitude> Geographische Breite + und Länge des Ortes in Grad, für den das Wetter vorhergesagt wird. + Bei fehlender Angabe werden die Werte aus den gleichnamigen Attributen + des global-Device genommen, sofern vorhanden.
+

+ + Das Modul unterstützt zusätzlich vier verschiedene Funktionen + WeatherAsHtml, WeatherAsHtmlV, + WeatherAsHtmlH und WeatherAsHtmlD. + Die ersten beiden Funktionen sind identisch: sie erzeugen + den HTML-Kode für eine vertikale Darstellung des Wetterberichtes. + Die dritte Funktion liefert den HTML-Code für eine horizontale + Darstellung des Wetterberichtes. Die letztgenannte Funktion wählt + automatisch eine Ausrichtung, die abhängig davon ist, ob ein + Smallcreen Style ausgewählt ist (vertikale Darstellung) oder + nicht (horizontale Darstellung). Alle vier Funnktionen akzeptieren + einen zusätzlichen optionalen Paramter um die Anzahl der + darzustellenden Icons anzugeben.

Beispiel:

       define MyWeatherWeblink weblink htmlCode { WeatherAsHtmlH("MyWeather") }
     
-
@@ -956,7 +869,9 @@ sub WeatherAsHtmlD($;$)
    set <name> update

    - Erzwingt eine Abfrage der Wetterdaten. Die darauffolgende Abfrage wird gemäß dem eingestellten Intervall interval Sekunden später durchgeführt.

    + Erzwingt eine Abfrage der Wetterdaten. Die darauffolgende Abfrage + wird gemäß dem eingestellten + Intervall interval Sekunden später durchgeführt.


@@ -967,8 +882,8 @@ sub WeatherAsHtmlD($;$) Gültige ausgelesene Daten (readings) und ihre Bedeutung (das ? kann einen der Werte 1, 2, 3 , 4 oder 5 annehmen und steht für heute, morgen, übermorgen etc.):

- - + + @@ -992,14 +907,17 @@ sub WeatherAsHtmlD($;$)
.licensZeigt die Lizense des entsprechenden API Anbieters an, sofern vorhanden
cityName der Stadt, der aufgrund der location übermittelt wird
.licenseLizenz des jeweiligen API-Anbieters, sofern vorhanden
cityName der Stadt, der für die location übermittelt wird
codeCode für die aktuellen Wetterverhältnisse
conditionaktuelle Wetterverhältnisse
current_date_timeZeitstempel der letzten Aktualisierung der Wetterdaten vom Server
validitystale, wenn der Veröffentlichungszeitpunkt auf dem entfernten Server vor dem Zeitpunkt der aktuellen Daten (readings) liegt

- Je nach verwendeter API ist es durchaus möglich das weitere Readings geschrieben werden. Die Bedeutung dieser Readings kann man der API Beschreibung des Anbieters entnehmen. + Je nach verwendeter API ist es durchaus möglich, dass weitere + Readings geschrieben werden. Die Bedeutung dieser Readings kann man + der API-Beschreibung des Anbieters entnehmen.
Attribute
    -
  • disable: stellt die Abfrage der Wetterdaten ab - der Timer läft gemäß Plan doch es werden keine Daten vom +
  • disable: stellt die Abfrage der Wetterdaten ab - der Timer läft + gemäß Plan doch es werden keine Daten vom API angefordert.
  • readingFnAttributes