Add Cloud coverage in Weather (#1812)

This commit is contained in:
G Johansson 2023-06-22 23:15:02 +02:00 committed by GitHub
parent 7e24b4c019
commit 0c1cd7fdd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,7 @@ Properties should always only return information from memory and not do I/O (lik
| native_pressure_unit | string | `None` | The air pressure unit; hPa, mbar, inHg or mmHg. Required if native_pressure is set.
| humidity | float | `None` | The current humidity in %.
| ozone | float | `None` | The current ozone level.
| 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_speed | float | `None` | The current wind speed in m/s, km/h, mi/h, ft/s or kn.
@ -52,6 +53,7 @@ Forecast data should either be daily or hourly.
| native_dew_point | float | `None` | The dew point temperature in °C or °F
| native_precipitation | float | `None` | The precipitation amount in mm or in.
| precipitation_probability | int | `None` | The probability of precipitation in %.
| 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_speed | int | `None` | The wind speed in m/s, km/h, mi/h, ft/s or kn.