Skip to content

Commit

Permalink
Updated readme to clarify [GH-41]. Removed curve = linear from skin.c…
Browse files Browse the repository at this point in the history
…onf as default for windSpeed and windGust.
  • Loading branch information
Daveiano committed Aug 2, 2022
1 parent 18dd2bc commit 7dacdbf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
23 changes: 13 additions & 10 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,28 +369,31 @@ For a combined diagram of Temperature and Dew point:
```
[[[tempdew]]] # 1
label = 'Temperature / Dewpoint' # 2
pointSize = 3
[[[[obs]]]] # 3
pointSize = 3 # 3
curve = "linear" # 3
[[[[obs]]]] # 4
[[[[[outTemp]]]]]
observation = "outTemp" # 4
observation = "outTemp" # 5
aggregate_type = "avg"
[[[[[dewpoint]]]]]
observation = "dewpoint" # 4
aggregate_type = "avg" # 5
color = '#610000' # 6
observation = "dewpoint" # 5
aggregate_type = "avg" # 6
color = '#610000' # 7
```

`# 1` Name of the combined diagram, needs to be the same as used in `diagram_tile_observations`.

`# 2` Label of the diagram.

`# 3` Under the key `obs` specify the observations to combine (The keys here are random and only used internally).
`# 3` Any additional diagram config available (see [[[diagrams]]](#diagrams)).

`# 4` Set the observation to show.
`# 4` Under the key `obs` specify the observations to combine (The keys here are random and only used internally).

`# 5` Optionally, define the aggregate type (min, max, avg, sum)
`# 5` Set the observation to show.

`# 6` Optionally, define a colour.
`# 6` Optionally, define the aggregate type (min, max, avg, sum)

`# 7` Optionally, define a colour.

`stat_tile_winddir_ordinal` Show ordinals (S, E, SE, etc.) on the wind direction stat tile.

Expand Down
4 changes: 0 additions & 4 deletions skins/weewx-wdc/skin.conf
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@ SKIN_VERSION = 2.0.0
curve = "step"
[[[rainRate]]]
curve = "linear"
[[[windSpeed]]]
curve = "linear"
[[[windGust]]]
curve = "linear"

[[[heights]]]
[[[[classic]]]]
Expand Down

0 comments on commit 7dacdbf

Please sign in to comment.