Update WDC to 2.2.1
This commit is contained in:
parent
4beee31b93
commit
144ff898b4
2 changed files with 32 additions and 2 deletions
|
@ -4,7 +4,7 @@ ARG WEEWX_UID=421
|
|||
ENV WEEWX_HOME="/home/weewx"
|
||||
ENV WEEWX_VERSION="4.8.0"
|
||||
ENV ARCHIVE="weewx-${WEEWX_VERSION}.tar.gz"
|
||||
ENV WEEWX_WDC_VERSION="v2.2.0"
|
||||
ENV WEEWX_WDC_VERSION="v2.2.1"
|
||||
|
||||
RUN addgroup --system --gid ${WEEWX_UID} weewx \
|
||||
&& adduser --system --uid ${WEEWX_UID} --ingroup weewx weewx
|
||||
|
|
|
@ -48,6 +48,7 @@ SKIN_VERSION = 2.2.0
|
|||
[[[[temp_min_max_avg]]]]
|
||||
label = "Außentemperatur Min/Max/Avg"
|
||||
pointSize = 3
|
||||
yScaleOffset = 0.5
|
||||
[[[[[obs]]]]]
|
||||
[[[[[[outTemp_min]]]]]]
|
||||
observation = "outTemp"
|
||||
|
@ -71,6 +72,7 @@ SKIN_VERSION = 2.2.0
|
|||
|
||||
[[[[windchill_heatindex]]]]
|
||||
label = 'Windchill / Hitzeindex'
|
||||
yScaleOffset = 0.5
|
||||
[[[[[obs]]]]]
|
||||
[[[[[[chill]]]]]]
|
||||
observation = "windchill"
|
||||
|
@ -93,23 +95,51 @@ SKIN_VERSION = 2.2.0
|
|||
isInteractive = True
|
||||
enablePoints = True
|
||||
enableCrosshair = True
|
||||
yScaleOffset = 3
|
||||
# @see https://github.com/plouc/nivo/blob/master/packages/line/index.d.ts#L144
|
||||
curve = "natural"
|
||||
[[[bar]]]
|
||||
enableLabel = False
|
||||
isInteractive = True
|
||||
yScaleOffset = 3
|
||||
|
||||
# Observation specific settings
|
||||
[[[cloudbase]]]
|
||||
yScaleMin = 0
|
||||
yScaleOffset = 300
|
||||
[[[windDir]]]
|
||||
curve = "basis"
|
||||
lineWidth = 0
|
||||
yScaleMin = 0
|
||||
yScaleMax = 360
|
||||
[[[windSpeed]]]
|
||||
yScaleMin = 0
|
||||
[[[windGust]]]
|
||||
yScaleMin = 0
|
||||
[[[radiation]]]
|
||||
curve = "basis"
|
||||
yScaleOffset = 150
|
||||
yScaleMin = 0
|
||||
[[[UV]]]
|
||||
curve = "step"
|
||||
yScaleMin = 0
|
||||
yScaleOffset = 1
|
||||
[[[rain]]]
|
||||
yScaleOffset = 0.25
|
||||
[[[rainRate]]]
|
||||
curve = "linear"
|
||||
yScaleMin = 0
|
||||
yScaleOffset = 0.25
|
||||
[[[outHumidity]]]
|
||||
yScaleMin = 0
|
||||
yScaleMax = 103
|
||||
[[[ET]]]
|
||||
yScaleOffset = 0.02
|
||||
[[[pressure]]]
|
||||
yScaleOffset = 1
|
||||
[[[barometer]]]
|
||||
yScaleOffset = 1
|
||||
[[[altimeter]]]
|
||||
yScaleOffset = 1
|
||||
[[[lightning_strike_count]]]
|
||||
curve = "step"
|
||||
aggregate_type = "sum"
|
||||
|
|
Reference in a new issue