diff --git a/homeassistant/components/weather/openweathermap.py b/homeassistant/components/weather/openweathermap.py index 87d2bc6683f..b70413b9565 100644 --- a/homeassistant/components/weather/openweathermap.py +++ b/homeassistant/components/weather/openweathermap.py @@ -130,6 +130,9 @@ class OpenWeatherMapWeather(WeatherEntity): @property def wind_speed(self): """Return the wind speed.""" + if self.hass.config.units.name == 'imperial': + return round(self.data.get_wind().get('speed') * 2.24, 2) + return round(self.data.get_wind().get('speed') * 3.6, 2) @property