Merge pull request #355 from eRaid6/master (fixes #350)

Adding Probability of Precipitation to one-line output
pull/356/head
Igor Chubin 5 years ago committed by GitHub
commit 6de56f79d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -202,6 +202,7 @@ To specify your own custom output format, use the special `%`-notation:
m Moonphase 🌑🌒🌓🌔🌕🌖🌗🌘,
M Moonday,
p precipitation (mm),
o Probability of Precipitation,
P pressure (hPa),
```

@ -101,6 +101,16 @@ def render_precipitation(data, query):
answer += 'mm'
return answer
def render_precipitation_chance(data, query):
"""
precipitation chance (o)
"""
answer = data.get('chanceofrain', '')
if answer:
answer += '%'
return answer
def render_pressure(data, query):
"""
pressure (P)
@ -189,6 +199,7 @@ FORMAT_SYMBOL = {
'M': render_moonday,
's': render_sunset,
'p': render_precipitation,
'o': render_precipitation_chance,
'P': render_pressure,
}

Loading…
Cancel
Save