You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The current version does not support all the data that a weather station can send to the cloud.
Describe the solution you'd like
Below are all the possible ones:
// included most of the time
bar: number, // pressure (hPa)
wdir: number, // wind direction (degree)
wdiravg: number, // average wind direction (degree)
wspd?: number, // wind speed (m/s)
wspdhi?: number, // wind gust (m/s)
wspdavg?: number, // average wind speed (m/s)
rainrate?: number, // rainrate (mm/hour)
rain?: number, // rained today (mm)
temp?: number, // temperature (°C)
hum?: number, // humidity (%)
dew?: number, // dew point (°C)
// optional
temp02?: number, // 2nd temperature (°C)
hum02?: number, // 2nd humidity (%)
chill?: number, // wind-chill (°C)
heat?: number, // heat index (°C)
thw?: number, // Temperature-Humidity-Wind Index or feel like (°C)
solarrad?: number, // solar radiation (W/m²)
uvi?: number, // UV index
vis?: number, // visibility mainly for metar (m)
// logged only
tempin?: number, // in temperature (°C)
humin?: number, // in humidity (%)
dewin?: number, // in dew point (°C)
heatin?: number, // in heat index (°C)
Checklist
Is your feature request related to a problem? Please describe.
The current version does not support all the data that a weather station can send to the cloud.
Describe the solution you'd like
Below are all the possible ones:
// included most of the time
bar: number, // pressure (hPa)
wdir: number, // wind direction (degree)
wdiravg: number, // average wind direction (degree)
wspd?: number, // wind speed (m/s)
wspdhi?: number, // wind gust (m/s)
wspdavg?: number, // average wind speed (m/s)
rainrate?: number, // rainrate (mm/hour)
rain?: number, // rained today (mm)
temp?: number, // temperature (°C)
hum?: number, // humidity (%)
dew?: number, // dew point (°C)
// optional
temp02?: number, // 2nd temperature (°C)
hum02?: number, // 2nd humidity (%)
chill?: number, // wind-chill (°C)
heat?: number, // heat index (°C)
thw?: number, // Temperature-Humidity-Wind Index or feel like (°C)
solarrad?: number, // solar radiation (W/m²)
uvi?: number, // UV index
vis?: number, // visibility mainly for metar (m)
// logged only
tempin?: number, // in temperature (°C)
humin?: number, // in humidity (%)
dewin?: number, // in dew point (°C)
heatin?: number, // in heat index (°C)
source:
https://github.com/maxime-mrl/weathercloud-js
Describe alternatives you've considered
...
Additional context
...
The text was updated successfully, but these errors were encountered: