mirror of
https://github.com/chubin/wttr.in
synced 2025-01-12 03:58:45 +00:00
Merge pull request #692 from nathanielevan/master
Make "Weather:" line use Nerd Fonts with v2d/v2n, and fix v2d to use day icons
This commit is contained in:
commit
8bdc54bb70
2 changed files with 21 additions and 5 deletions
|
@ -25,7 +25,7 @@ from astral.sun import sun
|
|||
|
||||
import pytz
|
||||
|
||||
from constants import WWO_CODE, WEATHER_SYMBOL, WIND_DIRECTION, WEATHER_SYMBOL_WIDTH_VTE, WEATHER_SYMBOL_PLAIN
|
||||
from constants import WWO_CODE, WEATHER_SYMBOL, WEATHER_SYMBOL_WI_NIGHT, WEATHER_SYMBOL_WI_DAY, WIND_DIRECTION, WIND_DIRECTION_WI, WEATHER_SYMBOL_WIDTH_VTE, WEATHER_SYMBOL_PLAIN
|
||||
from weather_data import get_weather_data
|
||||
from . import v2
|
||||
from . import v3
|
||||
|
@ -81,8 +81,21 @@ def render_condition(data, query):
|
|||
"""Emoji encoded weather condition (c)
|
||||
"""
|
||||
|
||||
weather_condition = WEATHER_SYMBOL[WWO_CODE[data['weatherCode']]]
|
||||
spaces = " "*(WEATHER_SYMBOL_WIDTH_VTE.get(weather_condition) - 1)
|
||||
if query.get("view") == "v2n":
|
||||
weather_condition = WEATHER_SYMBOL_WI_NIGHT.get(
|
||||
WWO_CODE.get(
|
||||
data['weatherCode'], "Unknown"))
|
||||
spaces = " "
|
||||
elif query.get("view") == "v2d":
|
||||
weather_condition = WEATHER_SYMBOL_WI_DAY.get(
|
||||
WWO_CODE.get(
|
||||
data['weatherCode'], "Unknown"))
|
||||
spaces = " "
|
||||
else:
|
||||
weather_condition = WEATHER_SYMBOL.get(
|
||||
WWO_CODE.get(
|
||||
data['weatherCode'], "Unknown"))
|
||||
spaces = " "*(3 - WEATHER_SYMBOL_WIDTH_VTE.get(weather_condition, 1))
|
||||
|
||||
return weather_condition + spaces
|
||||
|
||||
|
@ -170,6 +183,9 @@ def render_wind(data, query):
|
|||
degree = ""
|
||||
|
||||
if degree:
|
||||
if query.get("view") in ["v2n", "v2d"]:
|
||||
wind_direction = WIND_DIRECTION_WI[int(((degree+22.5)%360)/45.0)]
|
||||
else:
|
||||
wind_direction = WIND_DIRECTION[int(((degree+22.5)%360)/45.0)]
|
||||
else:
|
||||
wind_direction = ""
|
||||
|
|
|
@ -321,7 +321,7 @@ def draw_emoji(data, config):
|
|||
weather_symbol = constants.WEATHER_SYMBOL_WI_NIGHT
|
||||
weather_symbol_width_vte = constants.WEATHER_SYMBOL_WIDTH_VTE_WI
|
||||
elif config.get("view") == "v2d":
|
||||
weather_symbol = constants.WEATHER_SYMBOL_WI_NIGHT
|
||||
weather_symbol = constants.WEATHER_SYMBOL_WI_DAY
|
||||
weather_symbol_width_vte = constants.WEATHER_SYMBOL_WIDTH_VTE_WI
|
||||
else:
|
||||
weather_symbol = constants.WEATHER_SYMBOL
|
||||
|
|
Loading…
Reference in a new issue