diff --git a/docs/core/entity/weather.md b/docs/core/entity/weather.md index 1f3ff47b..04533fac 100644 --- a/docs/core/entity/weather.md +++ b/docs/core/entity/weather.md @@ -25,6 +25,7 @@ Properties should always only return information from memory and not do I/O (lik | cloud_coverage | int | `None` | The current cloud coverage in %. | native_visibility | float | `None` | The current visibility in km or mi. | native_visibility_unit | string | `None` | The visibility unit; km or mi. Required if native_visibility is set. +| native_wind_gust_speed | float | `None` | The current wind gust speed in m/s, km/h, mi/h, ft/s or kn. | native_wind_speed | float | `None` | The current wind speed in m/s, km/h, mi/h, ft/s or kn. | native_wind_speed_unit | string | `None` | The wind speed unit;m/s, km/h, mi/h, ft/s or kn. Required if native_wind_speed is set. | native_precipitation_unit | string | `None` | The precipitation unit; mm or in. @@ -57,6 +58,7 @@ Forecast data should either be daily or hourly. | cloud_coverage | int | `None` | The cloud coverage in %. | native_pressure | float | `None` | The air pressure in hPa, mbar, inHg or mmHg. | wind_bearing | float or string | `None` | The wind bearing in azimuth angle (degrees) or 1-3 letter cardinal direction. +| native_wind_gust_speed | int | `None` | The wind gust speed in m/s, km/h, mi/h, ft/s or kn. | native_wind_speed | int | `None` | The wind speed in m/s, km/h, mi/h, ft/s or kn. Forecast data needs to follow the same unit of measurement as defined for properties where applicable.