summaryrefslogtreecommitdiffstats
path: root/kachelmann
diff options
context:
space:
mode:
authorroot <root@krebs>2011-08-06 00:25:26 +0200
committerroot <root@krebs>2011-08-06 00:25:26 +0200
commit2f896d02d13eab9d587a8dfd90b6300b1a338716 (patch)
treee7992226fc435e44301bdd3600c9f6c6dd24db42 /kachelmann
parent5af29be38319d819778a117248af04b94beb65f9 (diff)
Added Kachelmann for weathermonitoring
Diffstat (limited to 'kachelmann')
-rwxr-xr-xkachelmann/conditions.pl7
-rw-r--r--kachelmann/weather.xml1
2 files changed, 8 insertions, 0 deletions
diff --git a/kachelmann/conditions.pl b/kachelmann/conditions.pl
new file mode 100755
index 00000000..61c43330
--- /dev/null
+++ b/kachelmann/conditions.pl
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+use XML::Simple;
+system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > weather.xml");
+my $xml = new XML::Simple;
+my $data = $xml->XMLin("weather.xml");
+my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n";
+system("espeak \"$sentence\"");
diff --git a/kachelmann/weather.xml b/kachelmann/weather.xml
new file mode 100644
index 00000000..8a785308
--- /dev/null
+++ b/kachelmann/weather.xml
@@ -0,0 +1 @@
+<?xml version="1.0"?><xml_api_reply version="1"><weather module_id="0" tab_id="0" mobile_row="0" mobile_zipped="1" row="0" section="0" ><forecast_information><city data="Stuttgart, Baden-Württemberg"/><postal_code data="70327-stuttgart"/><latitude_e6 data=""/><longitude_e6 data=""/><forecast_date data="2011-08-05"/><current_date_time data="2011-08-05 21:50:00 +0000"/><unit_system data="SI"/></forecast_information><current_conditions><condition data="Klar"/><temp_f data="63"/><temp_c data="17"/><humidity data="Feuchtigkeit: 88 %"/><icon data="/ig/images/weather/sunny.gif"/><wind_condition data="Wind: NO mit 6 km/h"/></current_conditions><forecast_conditions><day_of_week data="Fr."/><low data="16"/><high data="26"/><icon data="/ig/images/weather/chance_of_storm.gif"/><condition data="Vereinzelt stürmisch"/></forecast_conditions><forecast_conditions><day_of_week data="Sa."/><low data="16"/><high data="26"/><icon data="/ig/images/weather/mostly_sunny.gif"/><condition data="Teils sonnig"/></forecast_conditions><forecast_conditions><day_of_week data="So."/><low data="11"/><high data="22"/><icon data="/ig/images/weather/chance_of_rain.gif"/><condition data="Vereinzelt Regen"/></forecast_conditions><forecast_conditions><day_of_week data="Mo."/><low data="11"/><high data="21"/><icon data="/ig/images/weather/chance_of_storm.gif"/><condition data="Vereinzelt stürmisch"/></forecast_conditions></weather></xml_api_reply>