diff --git a/FHEM/55_GDS.pm b/FHEM/55_GDS.pm index 2eba279e7..593303462 100644 --- a/FHEM/55_GDS.pm +++ b/FHEM/55_GDS.pm @@ -24,34 +24,6 @@ # along with fhem. If not, see . # #################################################################################################### -# Changelog: -# -# 2013-08-07 initial release -# -# 2013-08-08 added logging -# added firewall/proxy support -# fixed XMLin missing parameter -# added :noArg to setlist-definitions -# added AttrFn -# modi retrieval of VHDL messages 30-33 -# -# 2013-08-09 added more logging -# fixed missing error message if WARNCELLID does not exist -# update commandref -# -# 2013-08-10 added some more tolerance on text inputs -# modi switched from GetLogList to Log3 -# -# 2013-08-11 added retrieval for condition maps -# added retrieval for forecast maps -# added retrieval for warning maps -# added retrieval for radar maps -# modi use LWP::ua for some file transfers instead of ftp -# due to transfer errors on image files -# use parameter #5 = 1 in RetrieveFile for ftp -# added get caplist -# -#################################################################################################### package main; @@ -1010,6 +982,39 @@ sub initDropdownLists(){ 1; +#################################################################################################### +# +# Documentation +# +#################################################################################################### +# +# Changelog: +# +# 2013-08-07 initial release +# +# 2013-08-08 added logging +# added firewall/proxy support +# fixed XMLin missing parameter +# added :noArg to setlist-definitions +# added AttrFn +# modi retrieval of VHDL messages 30-33 +# +# 2013-08-09 added more logging +# fixed missing error message if WARNCELLID does not exist +# update commandref +# +# 2013-08-10 added some more tolerance on text inputs +# modi switched from GetLogList to Log3 +# +# 2013-08-11 added retrieval for condition maps +# added retrieval for forecast maps +# added retrieval for warning maps +# added retrieval for radar maps +# modi use LWP::ua for some file transfers instead of ftp +# due to transfer errors on image files +# use parameter #5 = 1 in RetrieveFile for ftp +# added get caplist +# #################################################################################################### # # Further informations @@ -1035,14 +1040,6 @@ sub initDropdownLists(){ # #################################################################################################### - -#################################################################################################### -# -# Documentation -# -#################################################################################################### - - =pod =begin html @@ -1107,11 +1104,27 @@ sub initDropdownLists(){
    Retrieve alert message for selected region from DWD server

+ get <name> caplist +

+
    Retrieve list showing all defined warning regions.
    + You can find your WARNCELLID with this list.
+
+ get <name> conditions <stationName>

    Retrieve current conditions at selected station

+ get <name> conditionsmap <region> +

+
    Retrieve map (imagefile) showing current conditions at selected station
+
+ + get <name> forecastsmap <stationName> +

+
    Retrieve map (imagefile) showing forecasts for selected region
+
+ get <name> help

    Show a help text with available commands
@@ -1127,6 +1140,11 @@ sub initDropdownLists(){
    List all available stations that provide conditions data

+ get <name> radarmap <region> +

+
    Retrieve map (imagefile) containig radar view from selected region
+
+ get <name> rereadcfg

    Reread all required data from DWD Server manually: station list and CAP data
@@ -1143,6 +1161,14 @@ sub initDropdownLists(){
  • report type VHDL33 = cancel report, issued if necessary to cancel VHDL32
  • +
    + + get <name> warningssmap <region> +

    +
      Retrieve map (imagefile) containig current warnings for selected region marked with symbols
    +

    + All downloaded mapfiles can be found inside "GDS Files" area in left navigation bar. +

    @@ -1177,9 +1203,8 @@ sub initDropdownLists(){
    • Module uses following additional Perl modules:

      -
        Net::FTP, List::MoreUtils, XML::Simple


      - If not installed in your environment, please install with

      -
        cpan install moduleName
    • +
        Net::FTP, List::MoreUtils, XML::Simple, Text::CSV


      + If not already installed in your environment, please install them using appropriate commands from your environment.

    • Have fun!