119 lines
3.0 KiB
PHP
119 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* OpenWeatherMap-PHP-API — A php api to parse weather data from http://www.OpenWeatherMap.org .
|
|
*
|
|
* @license MIT
|
|
*
|
|
* Please see the LICENSE file distributed with this source code for further
|
|
* information regarding copyright and licensing.
|
|
*
|
|
* Please visit the following links to read about the usage policies and the license of
|
|
* OpenWeatherMap before using this class:
|
|
*
|
|
* @see http://www.OpenWeatherMap.org
|
|
* @see http://www.OpenWeatherMap.org/terms
|
|
* @see http://openweathermap.org/appid
|
|
*/
|
|
|
|
namespace Cmfcmf\OpenWeatherMap;
|
|
|
|
use Cmfcmf\OpenWeatherMap;
|
|
|
|
/**
|
|
* Class WeatherHistory.
|
|
*/
|
|
class WeatherHistory implements \Iterator
|
|
{
|
|
/**
|
|
* The city object. IMPORTANT: Not all values will be set
|
|
*
|
|
* @var Util\City
|
|
*/
|
|
public $city;
|
|
|
|
/**
|
|
* The time needed to calculate the request data.
|
|
*
|
|
* @var float
|
|
*/
|
|
public $calctime;
|
|
|
|
/**
|
|
* An array of {@link WeatherHistory} objects.
|
|
*
|
|
* @var array
|
|
*
|
|
* @see WeatherForecast The WeatherForecast class.
|
|
*/
|
|
private $histories;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
private $position = 0;
|
|
|
|
public function __construct($weatherHistory, $query)
|
|
{
|
|
if (isset($weatherHistory['list'][0]['city'])) {
|
|
$country = $weatherHistory['list'][0]['city']['country'];
|
|
$population = $weatherHistory['list'][0]['city']['population'];
|
|
} else {
|
|
$country = null;
|
|
$population = null;
|
|
}
|
|
|
|
$this->city = new OpenWeatherMap\Util\City($weatherHistory['city_id'], (is_string($query)) ? $query : null, (isset($query['lon'])) ? $query['lon'] : null, (isset($query['lat'])) ? $query['lat'] : null, $country, $population);
|
|
$this->calctime = $weatherHistory['calctime'];
|
|
|
|
foreach ($weatherHistory['list'] as $history) {
|
|
if (isset($history['rain'])) {
|
|
$units = array_keys($history['rain']);
|
|
} else {
|
|
$units = array(0 => null);
|
|
}
|
|
|
|
$this->histories[] = new History($this->city, $history['weather'][0], array('now' => $history['main']['temp'], 'min' => $history['main']['temp_min'], 'max' => $history['main']['temp_max']), $history['main']['pressure'], $history['main']['humidity'], $history['clouds']['all'], isset($history['rain']) ? array('val' => $history['rain'][($units[0])], 'unit' => $units[0]) : null, $history['wind'], \DateTime::createFromFormat('U', $history['dt']));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
public function rewind()
|
|
{
|
|
$this->position = 0;
|
|
}
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
public function current()
|
|
{
|
|
return $this->histories[$this->position];
|
|
}
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
public function key()
|
|
{
|
|
return $this->position;
|
|
}
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
public function next()
|
|
{
|
|
++$this->position;
|
|
}
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
public function valid()
|
|
{
|
|
return isset($this->histories[$this->position]);
|
|
}
|
|
}
|