Weather::YR::Locationforecast::Forecast::Full - Stores data about a forecast


Weather-YR documentation Contained in the Weather-YR distribution.

Index


Code Index:

NAME

Top

Weather::YR::Locationforecast::Forecast::Full - Stores data about a forecast

DESCRIPTION

Top

This module stores data about a forecast.

METHODS

Top

winddirection

Accessor for the wind direction.

windspeed

Accessor for the wind speed.

temperature

Accessor for the temperature data.

pressure

Accessor for the pressure data.

fog

Accessor for the fog data.

cloudiness

Accessor for the cloudiness.

clouds

Accessor for the clouds data, for low, medium and high clouds.

SEE ALSO

Top

Weather::YR::Locationforecast, Weather::YR::Locationforecast::Forecast

AUTHOR

Top

Knut-Olav, <knut-olav@hoven.ws>

COPYRIGHT AND LICENSE

Top


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;