NAME
Weather::Bug::SevenDayForecast - Simple class interface to the 7 day forecast.
VERSION
This document describes Weather::Bug::SevenDayForecast version 0.25
SYNOPSIS
use Weather::Bug;
my $wbug = Weather::Bug->new( 'YOURAPIKEYHERE' );
my $fc = $wbug->get_forecast( 77096 );
printf( "Forecast for \%s, \%s at \%s, on \%s\n",
$fc->location()->city(), $fc->location()->state(),
$fc->date()->hms(), $fc->date->ymd()
);
foreach my $f ($fc->forecasts())
{
my $hi = $f->high();
my $lo = $f->low();
print $f->title(), ":\n",
($hi->is_null() ? "" : "\tHigh: $hi\n"),
($lo->is_null() ? "" : "\tLow: $lo\n"),
$f->prediction(), "\n";
}
DESCRIPTION
The SevenDayForecast object encapsulates the time/date, location, and a set of Forecast objects that represents a 7-day forecast response from the WeatherBug API.
INTERFACE
Accessor Methods
The methods providing access to the SevenDayForecast's fields are:
- date
-
Date of the forecast as a DateTime object.
- type
-
The type of forecast, always appears to be detailed.
- location
-
A Location object describing where the forecast is made.
- forecasts
-
Reference to an array of Weather::Bug::Forecast objects. The items are ordered in time.
Factory Methods
Since the object is usually created from an XML repsonse, the class provides factory methods that take a portion of the XML and return a SevenDayForecast.
- from_xml
-
This class method takes an XML::LibXML Node object representing an
aws:forecasts
node and returns a Weather::Bug::SevenDayForecast object.
DIAGNOSTICS
CONFIGURATION AND ENVIRONMENT
Weather::Bug requires no configuration files or environment variables.
DEPENDENCIES
Moose
, XML::LibXML
, and DateTime
.
INCOMPATIBILITIES
None reported.
BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests to bug-weather-weatherbug@rt.cpan.org
, or through the web interface at http://rt.cpan.org.
AUTHOR
G. Wade Johnson <wade@anomaly.org>
LICENCE AND COPYRIGHT
Copyright (c) 2008, G. Wade Johnson <wade@anomaly.org>
. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.