Changed test of $jsonize() to use highs and lows for the month, instead of year.

Matches other tests.
This commit is contained in:
Tom Keffer
2021-03-20 08:32:47 -07:00
parent 2ae06ada39
commit 9afff28172
3 changed files with 4 additions and 4 deletions

View File

File diff suppressed because one or more lines are too long

View File

File diff suppressed because one or more lines are too long

View File

@@ -59,8 +59,8 @@
<p>Aggregated series, using \$jsonize(), and rounding of raw data:
\$jsonize(\$zip(\$min.start.unix_epoch_ms.raw, \$min.data.degree_C.raw(2), \$max.data.degree_C.raw(2)))
#set $min = $year.outTemp.series(aggregation_type='min', aggregation_interval='day')
#set $max = $year.outTemp.series(aggregation_type='max', aggregation_interval='day')
#set $min = $month.outTemp.series(aggregation_type='min', aggregation_interval='day')
#set $max = $month.outTemp.series(aggregation_type='max', aggregation_interval='day')
<pre>
$jsonize($zip($min.start.unix_epoch_ms.raw, $min.data.degree_C.raw(2), $max.data.degree_C.raw(2)))
</pre>