To that effect I submit the following:
Requires: Geo::METAR
#!/usr/bin/perl -w
# Gets METAR information from my Favorite Airports and
# displays temp and wind speed direction.
use LWP::UserAgent;
use Geo::METAR;
use strict;
my $ua = LWP::UserAgent->new;
my $uri = "http://weather.noaa.gov/cgi-bin/mgetmetar.pl?cccc=";
my $m = new Geo::METAR;
#airport codes
my %code = (
Renton => 'krnt',
Ephrata => 'keph',
Boeing_Field => 'kbfi',
CourDAlene => 'kcoe',
Sea_Tac => 'ksea',
);
my (%site,$key,$value);
while (($key,$value) = each %code) {
$site{$value}=$key;
}
for (keys %code) {
$uri .= $code{$_} . "%20";
}
my $req = HTTP::Request->new('GET',$uri);
my $res = $ua->request($req);
if ($res->is_success) {
my @content = split("\n",$res->content);
if (@content) {
for (@content) {
if (/\d{6}Z/) {
$m->metar($_);
print <<"EOT";
Site: $site{lc($m->{SITE})}
Time: $m->{TIME}
Temp: $m->{F_TEMP} deg F.
Wind: $m->{WIND_MPH} mph.
Dir: $m->{WIND_DIR_ENG}
EOT
}
}
}
} else {
print "Error: " . $res->status_line . "\n";
}
Update: Per Odud's excellent suggestion, I added error checking on the get. This meant usingLWP::UserAgent rather than
LWP::Simple
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link
or How to display code and escape characters
are good places to start.
|