Split 28days into includes.

This commit is contained in:
2016-09-04 20:52:13 +02:00
parent e8737ca289
commit a9fbfd1384
5 changed files with 59 additions and 112 deletions
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<plot>
<title>Temperatur (℃)</title>
<yrange>-20, 45</yrange>
<source>daily</source>
<boxwidth>boxwidth / 2</boxwidth>
<subplot>
<style>box</style>
<colour>1</colour>
<title>Tagesmaximum</title>
<xcalc>data['start'] + timedelta(hours=18)</xcalc>
<ycalc>data['temp_out_max']</ycalc>
</subplot>
<subplot>
<style>box</style>
<colour>3</colour>
<title>Nachtminimum</title>
<xcalc>data['start'] + timedelta(hours=6)</xcalc>
<ycalc>data['temp_out_min']</ycalc>
</subplot>
</plot>