Gauges min/max #176
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi, the charts and gauges have defaults that are defined at different levels:
overridden by
overridden by
So, by configuring a language/locale for the report you also define, at least partly, how the the gauges are configured, that's because it's assumed that a specific language has most likely a certain unit system. So, for having english language with metric unit system, you will have to define the configs for the gauges and charts within the skin specific stanza (or defaults, if applies) in weewx.conf. Take care you nest the configs in weewx.conf two [[-levels deeper than, they are defined in skin.conf or lang/{language}.conf. Your outTemp stanza in weewx.conf could look like this, assuming it's very unlikely that the outTemp is below -20°C or above 40°C at your place. For nice splits make sure, that the value range is reasonable divisable by the splitnumber. |
Beta Was this translation helpful? Give feedback.

Hi, the charts and gauges have defaults that are defined at different levels:
overridden by
overridden by
So, by configuring a language/locale for the report you also define, at least partly, how the the gauges are configured, that's because it's assumed that a specific language has most likely a certain unit system. So, for having english language with metric unit system, you will have to define the configs for the gauges and charts within the skin specific stanza (or defaults, if applies) in weewx.conf. Take care you nest the configs in weewx.conf two [[-levels deeper than, they are defined in skin.conf or lang/{language}.conf.
Your outTem…