Class SimpleRealtimeData

Contains basic realtime weather data. Works regardless of the weather station model (Vue, Pro, Pro 2) and its firmware version.

Hierarchy

Implemented by

Properties

etDay: null | number

Measured evapotranspiration (ET) of the day

humIn: null | number

Current inside humidity in percent

humOut: null | number

Current outside humidity in percent

press: null | number

Current pressure

pressTrend: null | "Falling Rapidly" | "Steady" | "Rising Rapidly" | "Rising Slowly" | "Falling Slowly"

The pressure's trend. There are five possible trends:

  • Falling Rapidly
  • Falling Slowly
  • Steady
  • Rising Slowly
  • Rising Rapidly
pressTrendID: null | 0 | 20 | 60 | -60 | -20

The pressure's trend encoded as number.

  • -60 stands for Falling Rapidly
  • -20 stands for Falling Slowly
  • 0 stands for Steady
  • 20 stands for Rising Slowly
  • 60 stands for Rising Rapidly
rainDay: null | number

The amount of rain that fell today

rainRate: null | number

The current rain rate

solarRadiation: null | number

Currently measured solar radiation

stormRain: null | number

The most recent rainstorm's amount of rain

stormStartDate: null | Date

The most recent rainstorm's start date (without time)

tempIn: null | number

Current inside temperature (the console's temperature)

tempOut: null | number

Current outside temperature

time: Date

The time the record was created

uv: null | number

Currently measured UV index

wind: null | number

Currently measured wind speed

windAvg10m: null | number

Average wind speed in the recent ten minutes

windDir: null | "NNE" | "NE" | "ENE" | "E" | "ESE" | "SE" | "SSE" | "S" | "SSW" | "SW" | "WSW" | "W" | "WNW" | "NW" | "NNW" | "N"

Currently measured wind direction encoded as string. Possible values are:

  • NNE
  • NE
  • ENE
  • E
  • ESE
  • SE
  • SSE
  • S
  • SSW
  • SW
  • WSW
  • W
  • WNW
  • NW
  • NNW
  • N
windDirDeg: null | number

The wind speed direction in degrees (from 1 to 360). 90° is East, 180° is South, 270°is West and 360° is North.

Generated using TypeDoc