This question is no longer up-to-date, for Google shut down (2012?) the unofficial weather API.
I'd like to put some weather forecast to a friend's web page. When i address for
http://www.google.com/ig/api?weather=koprivnica,croatia&hl=hr
The browser returns the right content I'd like to parse to PHP with this code:
<?php
$xml = simplexml_load_file('http://www.google.com/ig/api?weather=koprivnica,croatia&hl=hr');
$information = $xml->xpath("/xml_api_reply/weather/forecast_information");
$current = $xml->xpath("/xml_api_reply/weather/current_conditions");
$forecast_list = $xml->xpath("/xml_api_reply/weather/forecast_conditions");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>VREMENSKA PROGNOZA</title>
</head>
<body>
<h1><?= print $information[0]->city['data']; ?></h1>
<h2>Danas</h2>
<div class="weather">
<img src="<?= 'http://www.google.com' . $current[0]->icon['data']?>" alt="weather"?>
<span class="condition">
<?= $current[0]->temp_f['data'] ?>° F,
<?= $current[0]->condition['data'] ?>
</span>
</div>
<h2>Prognoza</h2>
<?php foreach ($forecast_list as $forecast) : ?>
<div class="weather">
<img src="<?= 'http://www.google.com' . $forecast->icon['data']?>" alt="weather"?>
<div><?= $forecast->day_of_week['data']; ?></div>
<span class="condition">
<?= $forecast->low['data'] ?>° F - <?= $forecast->high['data'] ?>° F,
<?= $forecast->condition['data'] ?>
</span>
</div>
<?php endforeach ?>
</body>
</html>
But the code above won't work 'cause I used 'hr' instead of 'en' (hr = Croatian language):
$xml = simplexml_load_file('http://www.google.com/ig/api?weather=koprivnica,croatia&hl=en')
is the working syntax but the returned data are in English and the temperature is in Fahrenheit.
I suppose it's matter of a wrong UTF-8 encoding property.
I do not know how to grab the exact Croatian text and convert degrees F into Celsius.
Any idea? or a link to some good tutorial? (I'm new to XML...)
THANKS IN ADVANCE!!!!!
I found afterwards a LINK to the F-to-C solution and changed line 19:
<?= $current[0]->temp_f['data'] ?>° F,to
<?= $current[0]->temp_c['data'] ?>° C,
(Btw. I do not use it cause it seems the API handles Celsius.)
( EDIT )
ENGLISH language - but keep °C
To keep the degrees in C having the same time language set to "en" you can use "en-gb".