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_HOME="/home/weewx"
|
||||||
ENV WEEWX_VERSION="4.8.0"
|
ENV WEEWX_VERSION="4.8.0"
|
||||||
ENV ARCHIVE="weewx-${WEEWX_VERSION}.tar.gz"
|
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 \
|
RUN addgroup --system --gid ${WEEWX_UID} weewx \
|
||||||
&& adduser --system --uid ${WEEWX_UID} --ingroup weewx weewx
|
&& adduser --system --uid ${WEEWX_UID} --ingroup weewx weewx
|
||||||
|
|
|
@ -48,6 +48,7 @@ SKIN_VERSION = 2.2.0
|
||||||
[[[[temp_min_max_avg]]]]
|
[[[[temp_min_max_avg]]]]
|
||||||
label = "Außentemperatur Min/Max/Avg"
|
label = "Außentemperatur Min/Max/Avg"
|
||||||
pointSize = 3
|
pointSize = 3
|
||||||
|
yScaleOffset = 0.5
|
||||||
[[[[[obs]]]]]
|
[[[[[obs]]]]]
|
||||||
[[[[[[outTemp_min]]]]]]
|
[[[[[[outTemp_min]]]]]]
|
||||||
observation = "outTemp"
|
observation = "outTemp"
|
||||||
|
@ -71,6 +72,7 @@ SKIN_VERSION = 2.2.0
|
||||||
|
|
||||||
[[[[windchill_heatindex]]]]
|
[[[[windchill_heatindex]]]]
|
||||||
label = 'Windchill / Hitzeindex'
|
label = 'Windchill / Hitzeindex'
|
||||||
|
yScaleOffset = 0.5
|
||||||
[[[[[obs]]]]]
|
[[[[[obs]]]]]
|
||||||
[[[[[[chill]]]]]]
|
[[[[[[chill]]]]]]
|
||||||
observation = "windchill"
|
observation = "windchill"
|
||||||
|
@ -93,23 +95,51 @@ SKIN_VERSION = 2.2.0
|
||||||
isInteractive = True
|
isInteractive = True
|
||||||
enablePoints = True
|
enablePoints = True
|
||||||
enableCrosshair = True
|
enableCrosshair = True
|
||||||
|
yScaleOffset = 3
|
||||||
# @see https://github.com/plouc/nivo/blob/master/packages/line/index.d.ts#L144
|
# @see https://github.com/plouc/nivo/blob/master/packages/line/index.d.ts#L144
|
||||||
curve = "natural"
|
curve = "natural"
|
||||||
[[[bar]]]
|
[[[bar]]]
|
||||||
enableLabel = False
|
enableLabel = False
|
||||||
isInteractive = True
|
isInteractive = True
|
||||||
|
yScaleOffset = 3
|
||||||
|
|
||||||
|
# Observation specific settings
|
||||||
|
[[[cloudbase]]]
|
||||||
|
yScaleMin = 0
|
||||||
|
yScaleOffset = 300
|
||||||
[[[windDir]]]
|
[[[windDir]]]
|
||||||
curve = "basis"
|
curve = "basis"
|
||||||
lineWidth = 0
|
lineWidth = 0
|
||||||
yScaleMin = 0
|
yScaleMin = 0
|
||||||
yScaleMax = 360
|
yScaleMax = 360
|
||||||
|
[[[windSpeed]]]
|
||||||
|
yScaleMin = 0
|
||||||
|
[[[windGust]]]
|
||||||
|
yScaleMin = 0
|
||||||
[[[radiation]]]
|
[[[radiation]]]
|
||||||
curve = "basis"
|
curve = "basis"
|
||||||
yScaleOffset = 150
|
yScaleMin = 0
|
||||||
[[[UV]]]
|
[[[UV]]]
|
||||||
curve = "step"
|
curve = "step"
|
||||||
|
yScaleMin = 0
|
||||||
|
yScaleOffset = 1
|
||||||
|
[[[rain]]]
|
||||||
|
yScaleOffset = 0.25
|
||||||
[[[rainRate]]]
|
[[[rainRate]]]
|
||||||
curve = "linear"
|
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]]]
|
[[[lightning_strike_count]]]
|
||||||
curve = "step"
|
curve = "step"
|
||||||
aggregate_type = "sum"
|
aggregate_type = "sum"
|
||||||
|
|
Reference in a new issue