Initial commit
This commit is contained in:
parent
1734ec3aa7
commit
133633aa04
5 changed files with 154 additions and 0 deletions
15
README.md
15
README.md
|
@ -2,3 +2,18 @@ Fahrradwetter
|
|||
=============
|
||||
|
||||
Kann man mit dem Fahrrad fahren?
|
||||
|
||||
Cronjob
|
||||
========
|
||||
|
||||
Erstelle einen Cronjob:
|
||||
|
||||
*/10 * * * * wget -N --quiet --output-document=/path/to/programm/api.json http://api.wunderground.com/api/YOUR_API_KEY/forecast10day/q/COUNTRYCODE/CITY.json
|
||||
|
||||
Beispiel:
|
||||
*/10 * * * * wget -N --quiet --output-document=/var/www/customers/cust123/html/bike/api.json http://api.wunderground.com/api/abc1234def/forecast10day/q/DE/Leipzig.json
|
||||
|
||||
Lizenz
|
||||
=======
|
||||
|
||||
Nicht militärische und nicht geheimdienstliche Nutzung und Weiterentwicklung für jedermann entgeltfrei erlaubt, solange die Hinweise des Urhebers nicht entfernt werden.
|
117
index.php
Normal file
117
index.php
Normal file
|
@ -0,0 +1,117 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de-DE">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Fahrradwetter</title>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap.min.css" />
|
||||
<meta name="viewport" content="initial-scale=1,minimum-scale=1,width=device-width" />
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
/*
|
||||
* Konfiguration
|
||||
*/
|
||||
/**
|
||||
* Link zur Wetterstation auf Wunderground
|
||||
*/
|
||||
define('WETTERSTATION', 'http://www.wunderground.com/cgi-bin/findweather/hdfForecast?query=51.330%2C12.363&sp=ISACHSEN121&apiref=5493fcc3357cb244');
|
||||
/**
|
||||
* Name der Stadt
|
||||
*/
|
||||
define('STADT', 'Leipzig');
|
||||
|
||||
/**
|
||||
* Erhalte die Wetterdaten und baue ein Array
|
||||
*
|
||||
* @param string Stadtname
|
||||
* @return array Wetterdaten
|
||||
*/
|
||||
function getWeather(){
|
||||
// JSON holen
|
||||
$json_string = file_get_contents('api.json');
|
||||
$parsed_json = json_decode($json_string, true);
|
||||
|
||||
// Daten aus JSON für die nächsten vier Tage holen
|
||||
for($i = 0; $i <= 9; $i++){
|
||||
$rain[$i] = $parsed_json['forecast']['simpleforecast']
|
||||
['forecastday'][$i]['pop'];
|
||||
$icon[$i] = $parsed_json['forecast']['simpleforecast']
|
||||
['forecastday'][$i]['icon_url'];
|
||||
$day[$i] = $parsed_json['forecast']['simpleforecast']
|
||||
['forecastday'][$i]['date']['weekday'];
|
||||
$tempHi[$i] = $parsed_json['forecast']['simpleforecast']
|
||||
['forecastday'][$i]['high']['celsius'];
|
||||
|
||||
// Fahrradwetter? - Grundsätzlich ja.
|
||||
$fahrrad = '<b>Ja</b>';
|
||||
|
||||
// Vielleicht, wenn Regenwahrscheinlichkeit größer als 40% oder
|
||||
// Temperaturen nicht zwischen 15 und 24°C
|
||||
if($rain[$i] >= 40 || $tempHi[$i] <= 15 || $tempHi[$i] > 24){
|
||||
$fahrrad = '<a href="'. WETTERSTATION .'">Vielleicht</a>';
|
||||
}
|
||||
// Kein Fahrradwetter, wenn Regenwahrscheinlichkeit über 55%
|
||||
// oder Temperaturen nicht zwischen 10 und 27°C
|
||||
if($tempHi[$i] >= 27 || $tempHi[$i] <= 10 || $rain[$i] >= 55){
|
||||
$fahrrad = 'Nein';
|
||||
}
|
||||
|
||||
// Array mit den Daten für einen Tag zusammenbauen
|
||||
$wetter[$i] =
|
||||
array(
|
||||
'rain' => $rain[$i],
|
||||
'icon' => $icon[$i],
|
||||
'day' => $day[$i],
|
||||
'tempHi' => $tempHi[$i],
|
||||
'rad' => $fahrrad,
|
||||
);
|
||||
|
||||
// Arrays miteinander verknüpfen
|
||||
if(isset($wetter[$i-1])){
|
||||
array_merge($wetter[$i-1], $wetter[$i]);
|
||||
}
|
||||
}
|
||||
|
||||
return $wetter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Erstelle eine Tabellenzeile aus einem Array
|
||||
*
|
||||
* @param array array Auszuwertendes Array mit den Daten
|
||||
* @param schluessel string Schlüssel nach dem im Array gesucht wird
|
||||
* @param stringVor string Zeichen die vor dem String auftauchen sollen
|
||||
* @param stringNach string Zeichen die nach dem String auftauchen sollen
|
||||
* @param first string Was soll einmalig am Anfang stehen
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function makeTable($array, $schluessel, $stringVor = NULL,
|
||||
$stringNach = NULL, $first = NULL){
|
||||
|
||||
$string = '<td>'.$first.'</td>';
|
||||
|
||||
foreach($array as $daten){
|
||||
$string .= '<td>';
|
||||
$string .= $stringVor . $daten[$schluessel] . $stringNach;
|
||||
$string .= '</td>';
|
||||
}
|
||||
|
||||
return '<tr>' . $string . '</tr>';
|
||||
}
|
||||
|
||||
$wetter = getWeather();
|
||||
|
||||
echo '<div class="container"><h2 class="text-center"><a href="/">Fahrradwetter in '. STADT .'?</a> - '.$wetter[0]['rad'].'.</h2><br /><table class="table table-striped">';
|
||||
echo makeTable($wetter, 'day');
|
||||
echo makeTable($wetter, 'icon', '<img src="', '" alt="" />');
|
||||
echo makeTable($wetter, 'rain', NULL, '%', 'Regenwahrscheinlichkeit ');
|
||||
echo makeTable($wetter, 'tempHi', NULL, '°C', 'Höchsttemperatur');
|
||||
echo makeTable($wetter, 'rad', NULL, NULL, 'Fahrradwetter');
|
||||
echo '</table>';
|
||||
?>
|
||||
<p><br /></p></div><div class="text-center bg-info"><p><small>Daten via <a href="http://www.wunderground.com/?apiref=5493fcc3357cb244">Wunderground</a>, alle 10 Minuten neu abgerufen.</small></p>
|
||||
<p>Fahrradwetter hat eine Regenwahrscheinlichkeit unter 40% und Temperaturen zwischen 15 und 24°C.</p>
|
||||
<h6>Immer trocken unterwegs mit <a href="http://mainboarder.de">Mainboarder</a> | Code auf <a href="https://github.com/mainboarder/Fahrradwetter">Github</a></h6>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
6
nbproject/private/private.properties
Normal file
6
nbproject/private/private.properties
Normal file
|
@ -0,0 +1,6 @@
|
|||
copy.src.files=false
|
||||
copy.src.on.open=false
|
||||
copy.src.target=
|
||||
index.file=index.php
|
||||
run.as=LOCAL
|
||||
url=http://localhost/fahrradwetter/
|
7
nbproject/project.properties
Normal file
7
nbproject/project.properties
Normal file
|
@ -0,0 +1,7 @@
|
|||
include.path=${php.global.include.path}
|
||||
php.version=PHP_54
|
||||
source.encoding=UTF-8
|
||||
src.dir=.
|
||||
tags.asp=false
|
||||
tags.short=false
|
||||
web.root=.
|
9
nbproject/project.xml
Normal file
9
nbproject/project.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://www.netbeans.org/ns/project/1">
|
||||
<type>org.netbeans.modules.php.project</type>
|
||||
<configuration>
|
||||
<data xmlns="http://www.netbeans.org/ns/php-project/1">
|
||||
<name>fahrradwetter</name>
|
||||
</data>
|
||||
</configuration>
|
||||
</project>
|
Loading…
Reference in a new issue