use strict; use LWP::Simple; use POSIX; my $refresh = 1800; do { my $base="http://radar.weather.gov/ridge/RadarImg/N0R/MTX_N0R_0.gi +f"; my $timestring = strftime( "%Y%m%d_%H%M%S", gmtime() ); my $savefilename = "SLCRadar_".$timestring.".gif"; my $status = getstore($base,$savefilename); print $status."\n" ; sleep $refresh; } while ($refresh);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Automated downloading of NOAA radar images
by merlyn (Sage) on Jun 13, 2007 at 23:28 UTC | |
by Scott7477 (Chaplain) on Jun 14, 2007 at 15:10 UTC | |
by Argel (Prior) on Jun 18, 2007 at 21:28 UTC |