mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 15:49:31 -07:00
add pressure direction to current conditions
This commit is contained in:
@@ -132,7 +132,7 @@ class CurrentWeather extends WeatherDisplay {
|
||||
fill.dewpoint = data.DewPoint + String.fromCharCode(176);
|
||||
fill.ceiling = (data.Ceiling === 0 ? 'Unlimited' : data.Ceiling + data.CeilingUnit);
|
||||
fill.visibility = data.Visibility + data.VisibilityUnit;
|
||||
fill.pressure = data.Pressure;
|
||||
fill.pressure = `${data.Pressure} ${data.PressureDirection}`;
|
||||
|
||||
// switch (data.PressureDirection) {
|
||||
// case 'R':
|
||||
|
||||
Reference in New Issue
Block a user