webit/wwo-local-weather

World Weather Online Local Weather API PHP implementation

dev-master 2013-09-16 10:08 UTC

This package is auto-updated.

Last update: 2024-04-20 21:53:24 UTC


README

What is this?

Implementation of Local Weather API from http://www.worldweatheronline.com/

Usage

$apiKey = 'your api key';
$request = new CityRequest($apiKey);
$request->setFormat(CityRequest::FORMAT_JSON); // json is default format
$request->setNumberOfDays(3); // default 2
$request->setCity('New York');
$request->setCountry('USA');

$proxy = new CurlProxy();
$response = $proxy->performRequest($request);
if($response->getSuccess()) {
    echo $response->getCurrentWeather() . "\n";
    foreach($response->getWeatherList() as $weather) {
        echo $weather . "\n";
    }
} else {
    foreach($response->getErrors() as $error) {
        echo $error . "\n";
    }
}

TODO:

  • Implementation of XML Response format
  • Implementation of CSV Response format
  • Tests