What is the best way to get current weather via API ?

Could you make some example with this API ?

link|improve this question

77% accept rate
1  
Witch API Service are you using ? – RobertPitt Sep 3 '10 at 22:52
Press the tick on the question if it helps ya. – hydrogen Sep 4 '10 at 1:00
feedback

2 Answers

up vote 2 down vote accepted

Global Weather SOAP Webservice API

Using PHP (with the SOAP module enabled in your php.ini):

$client = new SoapClient("http://www.webservicex.net/globalweather.asmx?wsdl");
$params = new stdClass;
$params->CityName= 'Auckland';
$params->CountryName= 'New Zealand';
$result = $client->GetWeather($params);
// Check for errors...
$weatherXML = $result->GetWeatherResponse;

$weatherXML should then contain an XML document that contains humidity, temperature, sky conditions, wind etc that you can adapt to your needs. You can easily play with the online demo on www.webservice.net anyway to get a feel for things.

link|improve this answer
feedback

Try Services_Weather on pear. It does Global Weather, METAR, et. al.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.