diff options
Diffstat (limited to 'src/weather.py')
-rw-r--r-- | src/weather.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/weather.py b/src/weather.py index fba6ffc..268dcbf 100644 --- a/src/weather.py +++ b/src/weather.py @@ -44,7 +44,8 @@ def weather(station, downloader = None): is return if observation data cannot be downloaded. ''' ## URI of METAR - url = 'http://weather.noaa.gov/pub/data/observations/metar/decoded/%s.TXT' + #url = 'http://weather.noaa.gov/pub/data/observations/metar/decoded/%s.TXT' + url = 'http://tgftp.nws.noaa.gov/data/observations/metar/decoded/%s.TXT' url %= station.upper() ## Download METAR # Use wget if not specified |