1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#!/usr/bin/env python3
# Copyright © 2014, 2017 Mattias Andrée (maandree@member.fsf.org)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# The module implements support for retrieval of weather reports
from subprocess import Popen, PIPE
def weather(station = None, downloader = None):
'''
Get a brief weather report
Airports should publish METAR (Meteorological Aerodrome Report) reports at XX:20 and XX:50,
it can presumable take some time before the collection server we use (weather.noaa.gov) have
received it. Additionally some airports do not update while closed, and updates while closed
are less accurate.
@param station:str? The station's International Civil Aviation
Organization airport code. If `None`,
$HOME/.config/metar is read, with fallback to
~/.config/metar and /etc/metar.
@param downloader:(url:str)?→list<str> A function that, with an URL as input, returns
a command to download the file at the URL to stdout
@return :(sky:str, visiblity:(:int, :float)?, weather:list<str>)?
The sky condition, visiblity and weather. Sky condition values include
‘clear’, ‘mostly clear’, ‘partly cloudy’, ‘mostly cloudy’, ‘overcast’
and ‘obscured’. The visibility consists of two parameters: the first
on indicates the the visiblity is a upper bound if the value is -1,
a lower bound if +1, and approximate if 0; the second parameter is the
visibility in kilometers. If the visibility is unknown the value will
be `None`. The weather is a list that can, and often is, empty. `None`
is return if observation data cannot be downloaded.
'''
## Get station
if station is None:
import os
try:
home = os.environ['HOME']
with open('%s/.config/metar' % home, 'rb') as file:
station = file.read()
except:
try:
import pwd
home = pwd.getpwuid(os.getuid()).pw_dir
with open('%s/.config/metar' % home, 'rb') as file:
station = file.read()
except:
with open('/etc/metar' % home, 'rb') as file:
station = file.read()
station = station.decode('utf-8', 'replace').split('\n')[0]
## URI of METAR
#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
if downloader is None:
downloader = lambda u : ['wget', u, '-O', '-']
proc = Popen(downloader(url), stdout = PIPE, stderr = PIPE)
## Wait for download to finish and fetch output
output = proc.communicate()[0]
# Ignore output if it was not successful
if not proc.returncode == 0:
return None
## Create field table from
output = output.decode('utf-8', 'replace').split('\n')
output = [line.lower().split(': ') for line in output if ': ' in line]
output = dict([(line[0], ': '.join(line[1:])) for line in output])
## Get sky condition, assume clear (although often not) if omitted
sky_conditions = 'clear' if 'sky conditions' not in output else output['sky conditions']
## Get visibility range
visibility = None
try:
if 'visibility' in output:
# Remove tail digit
visibility = output['visibility'].split(':')[0]
# Remove unit, it is always miles the decoded part
visibility = visibility.replace(' mile(s)', '')
visibility = visibility.replace(' miles', '')
visibility = visibility.replace(' mile', '')
# Range is assumed approximate if not specified
visibility_eq = 0
if visibility.startswith('greater than '):
# Range is a lower bound
visibility_eq = 1
visibility = visibility[len('greater than '):]
if visibility.startswith('less than '):
# Range is an upper bound
visibility_eq = -1
visibility = visibility[len('less than '):]
if len(list(filter(lambda c : not (('0' <= c <= '9') or (c in ' /.')), visibility))) == 0:
# Parse mixed numeral or decimal form
visibility = sum([eval(v) for v in visibility.split(' ')])
# Pack boundary information and range (converted to kilometers)
visibility = (visibility_eq, visibility * 1.609)
else:
visibility = None
except:
## `eval` failed (probably)
visibility = None
## Get weather
weather = '' if 'weather' not in output else output['weather']
## Unify conjnuctions
weather = weather.replace(',', ';').replace(' with ', ';')
## Remove undesired details
# Not important as we are not pilots, we are probably far away
weather = weather.replace(' in the vicinity', '')
# Duration is not important for use either
weather = weather.replace(' during the past hour', '')
# Unimportant detail
weather = weather.replace(' observed', '')
## Split at conjunction
weather = [w.replace(';', '').strip() for w in weather.split(';') if not w == '']
return (sky_conditions, visibility, weather)
|