NAME
Weather::Bug::Forecast - Simple class interface to a single forecast from the WeatherBug API.
VERSION
This document describes Weather::Bug::Forecast 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
This object encapsulates a single Forecast from the 7-day forecast response from the WeatherBug API. A FullForecast object contains a list of Forecast objects, each of which describes one forecast.
INTERFACE
Accessor Methods
The methods providing access to the location's fields are:
- title
-
String explaining the time period of the forecast.
- short_title
-
A short version of the prediction containing just the most important information.
- imageurl
-
URL of an image characterizing the forecast.
- description
-
Effectively the same information as the title, sometimes abbreviated.
- prediction
-
Text prediction of the weather for the time period.
- high
-
High temperature for the time period.
- low
-
Low temperature for the time period.
Factory Method
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 Forecast object.
- from_xml
-
Extract the Forecast information from an
aws:forecast
nodeReturn a new Weather::Bug::Forecast object
DIAGNOSTICS
None.
CONFIGURATION AND ENVIRONMENT
Weather::Bug requires no configuration files or environment variables.
DEPENDENCIES
Moose
, XML::LibXML
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.