| WWW-Hanako documentation | view source | Contained in the WWW-Hanako distribution. |
WWW::Hanako - Perl interface for Hanako(Pollen observation system at Japan)
use WWW::Hanako;
my $hanako = WWW::Hanako->new(area=>3, mst=>51300200);
my $now = $hanako->now();
print "hour: $now->{hour}\n";
print "pollen: $now->{pollen}\n";
print "wind direction: $now->{wd}\n";
print "wind speed: $now->{ws}\n";
return hash object contains:
observation time(hour).
amount of airborne pollen(num/m^3).
wind direction.
wind speed(m/s).
air temperature(degrees Celsius).
amount of precipitation(mm).
This perl module provides an interface to the Hanako that is Pollen observation system at Japan.
Create new instance of WWW::Hanako. set area code and mst code.
Method that returns the today's information.
Method that returns the current information.
See http://kafun.taiki.go.jp/ for more information on Hanako
Tsukasa Hamano, <hamano@klab.org>
Copyright (C) 2009 by Tsukasa Hamano
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.
| WWW-Hanako documentation | view source | Contained in the WWW-Hanako distribution. |