arashi has asked for the wisdom of the Perl Monks concerning the following question:
Thanks in advance for your help#!/usr/bin/perl -w use strict; use Geo::WeatherNWS; my $Report=Geo::WeatherNWS::new(); $Report->setservername("weather.noaa.gov"); $Report->setusername("anonymous"); $Report->setpassword('anemailuser@adomain.com'); $Report->setdirectory("/data/observations/metar/stations"); $Report->getreport('kmrj'); print $report;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: WeatherNWS Timeout
by BrowserUk (Patriarch) on Aug 28, 2002 at 19:44 UTC | |
Re: WeatherNWS Timeout
by fglock (Vicar) on Aug 28, 2002 at 19:38 UTC |