Weatherng-plugin
Aus VDR Wiki
(Unterschied zwischen Versionen)
Pidel (Diskussion | Beiträge) (→Tipps) |
Pidel (Diskussion | Beiträge) (→Tipps: Datei-Box eingefügt) |
||
Zeile 155: | Zeile 155: | ||
-lMagick -lfreetype -ljpeg -lpng -lbz2 -lz -lpthread -lm -lpthread | -lMagick -lfreetype -ljpeg -lpng -lbz2 -lz -lpthread -lm -lpthread | ||
* Beispiel einer weatherng.conf (bei [[C't-VDR]] /etc/vdr/plugins/weatherng.conf) | * Beispiel einer weatherng.conf (bei [[C't-VDR]] /etc/vdr/plugins/weatherng.conf) | ||
− | + | {{Box Datei|/etc/vdr/plugins/weatherng.conf| | |
− | + | <pre> | |
− | + | # | |
− | + | # Weather map images | |
− | + | # | |
− | + | # Specifiy the URLs of weather maps, which should be displayed in the plugin | |
− | + | # | |
− | + | MAP_URL_1="" | |
− | + | MAP_URL_2="" | |
− | + | MAP_URL_3="" | |
− | + | MAP_URL_4="" | |
− | + | MAP_URL_5="" | |
− | + | ||
− | + | # | |
− | + | # The Weather Channel XML data source | |
− | + | # | |
− | + | # See README.Debian on how to obtain the partner id, license key and | |
− | + | # station ID (up to three different station ID's can be provided). | |
− | + | # | |
− | + | TWC_PARTNER_ID="" | |
− | + | TWC_LICENSE_KEY="" | |
− | + | TWC_STATION_ID_1="GMXX0049" # Hamburg | |
− | + | TWC_STATION_ID_2="GMXX0014" # Bremen | |
− | + | TWC_STATION_ID_3="" | |
+ | </pre> | ||
+ | }} | ||
+ | |||
<!-- ==Wunschliste== --> | <!-- ==Wunschliste== --> | ||
<!-- ==Snapshot== --> | <!-- ==Snapshot== --> |
Version vom 7. Juli 2006, 12:05 Uhr
Inhaltsverzeichnis |
Beschreibung
Autor: Sascha Bajonczak
Zeigt Wettervorhersage für die nächsten Tage an.
Bilder
Softwareanforderungen
- ImageMagick >= libpng >= pkgconfig
- wget
Installation
Source
cd $SOURCEDIR tar xvzf wget-<VERSION>.tar.gz cd wget-<VERSION> ./configure --prefix=/usr/local make make install cd - cd $SOURCEDIR tar jxvf libpng-<VERSION>.tar.bz2 cd libpng-<VERSION> make prefix=/usr/local -f scripts/makefile.linux make install -f scripts/makefile.linux ldconfig cd - tar jxvf ImageMagick-<VERSION>.tar.bz2 cd ImageMagick-<VERSION> ./configure --prefix=/usr/local \ --without-dps \ --without-fpx \ --without-gslib \ --without-jbig \ --without-jp2 \ --without-lcms \ --without-tiff \ --without-xml \ --without-x make make install ldconfig
Arch-Linux
pacman -S imagemagick
Crux
prt-get depinst imagemagick
Debian
apt-get install libmagick++9-dev
Gentoo
emerge imagemagick
SuSE
yast -i ImageMagick-devel ImageMagick-Magick++
Optionen
HAVE_MAGICK=1 | Uncomment these if you have the appropriate libraries. |
HAVE_IMLIB2=1 | Uncomment these if you have the appropriate libraries. |
HAVE_4MB=1 | Uncomment these, if you own a modded 4Mb FF-Card. |
Konfiguration
mkdir -p $VDRCONFIG/plugins/weatherng cp -R $SOURCEDIR/VDR/PLUGINS/weatherng/images $VDRCONFIG/plugins/weatherng ln -s $SOURCEDIR/VDR/PLUGINS/weatherng/examples/weatherng.sh $VDRCONFIG/plugins/weatherng chmod +x $VDRCONFIG/plugins/weatherng/weatherng.sh
Alles weitere ist in der README{,.DE} ausführlich beschrieben.
Parameter
Parameter (kurz) | Parameter (lang) | Beschreibung |
---|---|---|
-D DIR | --data=DIR | Verzeichnis wo sich die Daten befinden. |
-I DIR | --images=DIR | Verzeichnis in welchen sich die Wettersymbole befinden. |
-S DIR | --script=DIR | Verzeichnis wo sich die weatherng.sh befindet. |
Bedienung
Vorhersagemodus
Auf | Zeigt die Wettervorhersage für die Nacht an. |
---|---|
Ab | Zeigt die Wettervorhersage für den Tag an. |
Links | Springt ein Tag zurück. |
Rechts | Springt ein Tag vor. |
Rot | Zeigt Satellitenbild - Bewoelkung (morgen) |
Grün | Zeigt Satellitenbild - Windstaerke/-richtung (morgen) |
Gelb | Zeigt Satellitenbild - Temperatur (morgen) |
Blau | Zeigt Satellitenbild - Niederschlag (morgen) |
5 | Zeigt Satellitenbild - Deutsche Uebersicht (jetzt) |
Satellitenmodus
Zurück | Kommt wieder in den Vorhersagemodus. |
---|
Tipps
- Aufpassen das "Magick" mit png support uebersetzt wurde, geht wie folgt:
shell> Magick-config --libs -lMagick -lfreetype -ljpeg -lpng -lbz2 -lz -lpthread -lm -lpthread
- Beispiel einer weatherng.conf (bei C't-VDR /etc/vdr/plugins/weatherng.conf)
# # Weather map images # # Specifiy the URLs of weather maps, which should be displayed in the plugin # MAP_URL_1="" MAP_URL_2="" MAP_URL_3="" MAP_URL_4="" MAP_URL_5="" # # The Weather Channel XML data source # # See README.Debian on how to obtain the partner id, license key and # station ID (up to three different station ID's can be provided). # TWC_PARTNER_ID="" TWC_LICENSE_KEY="" TWC_STATION_ID_1="GMXX0049" # Hamburg TWC_STATION_ID_2="GMXX0014" # Bremen TWC_STATION_ID_3=""