Wetterdaten in Filadelfia

Die Wetterdaten in Filadelfia werden von der Wetterstation von Radio ZP-30 aufgezeichnet und aktualisiert.

 

 {source}
<!– You can place html anywhere within the source tags –>

<script language=»javascript» type=»text/javascript»>
// You can place JavaScript like this

</script>
<?php

$handle = @fopen(«/home3/zpthrzer/public_html/main/clima/wvwebpage002», «r»); //read line one by one
$textoHTML=»;

while (!feof($handle)) // Loop til end of file.
{
$buffer = fgets($handle, 4096); // Read a line.

$textoHTML = $textoHTML . $buffer;

// use mysql insert query here
}

$textoHTML = str_replace(«Current Weather Conditions as of»,»Wetterdaten «,$textoHTML);
$textoHTML = str_replace(«Temperature»,»Temperatur «,$textoHTML);
$textoHTML = str_replace(«Dew Point»,»Temperatur Taupunkt «,$textoHTML);
$textoHTML = str_replace(«Heat Index»,»Hitzeindex»,$textoHTML);
$textoHTML = str_replace(«Wind Chill Factor»,»Gefühlte Temperatur «,$textoHTML);
$textoHTML = str_replace(«Relative Humidity»,»Relative Luftfeuchtigkeit «,$textoHTML);
$textoHTML = str_replace(«Barometric Pressure»,»Luftdruck «,$textoHTML);
$textoHTML = str_replace(«Rainfall Since Midnight»,»Regen (desde 00:00)»,$textoHTML);
$textoHTML = str_replace(«Missing»,»-«,$textoHTML);
$textoHTML = str_replace(«Wind Direction»,»Windrichtung «,$textoHTML);
$textoHTML = str_replace(«Wind Speed»,»Windgeschwindigkeit «,$textoHTML);
$textoHTML = str_replace(«Peak Wind Gust»,»Höchstgeschwindigkeit des Windes «,$textoHTML);
$textoHTML = str_replace(«High Since Midnight»,»Höchsttemperatur «,$textoHTML);
$textoHTML = str_replace(«Low»,»Tiefsttemperatur «,$textoHTML);
$textoHTML = str_replace(«Sunrise»,»Tagesanbruch «,$textoHTML);
$textoHTML = str_replace(«Sunset»,»Sonnenuntergang «,$textoHTML);

echo $textoHTML;

?>
{/source}