| Weather-YR documentation | Contained in the Weather-YR distribution. |
Weather::YR::Locationforecast::Forecast::Full - Stores data about a forecast
This module stores data about a forecast.
Accessor for the wind direction.
Accessor for the wind speed.
Accessor for the temperature data.
Accessor for the pressure data.
Accessor for the fog data.
Accessor for the cloudiness.
Accessor for the clouds data, for low, medium and high clouds.
Knut-Olav, <knut-olav@hoven.ws>
Copyright (C) 2008 by Knut-Olav Hoven
This library is free software; you can redireibute it and/or modify it under the terms as GNU GPL version 2.
| Weather-YR documentation | Contained in the Weather-YR distribution. |
package Weather::YR::Locationforecast::Forecast::Full; use strict; use warnings; use base qw/ Weather::YR::Locationforecast::Forecast Class::Accessor::Fast /;
__PACKAGE__->mk_accessors(qw/ winddirection windspeed temperature pressure fog cloudiness clouds /);
1;