Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.

50 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<graph xmlns:xi="http://www.w3.org/2001/XInclude">
<size>400, 220</size>
<fileformat>pngcairo font "arial,8"</fileformat>
<lmargin>6</lmargin>
<rmargin>7</rmargin>
<duration>hours=24</duration>
<xtics>2</xtics>
<xformat>%H%M</xformat>
<xlabel></xlabel>
<dateformat></dateformat>
<plot>
<bmargin>1</bmargin>
<yrange>-10, 35</yrange>
<source>raw</source>
<subplot>
<colour>1</colour>
<title>Temperatur (℃)</title>
<ycalc>data['temp_out']</ycalc>
</subplot>
<subplot>
<colour>3</colour>
<ycalc>dew_point(data['temp_out'], data['hum_out'])</ycalc>
<title>Taupunkt (℃)</title>
</subplot>
</plot>
<plot>
<bmargin>1.6</bmargin>
<title>Niederschlag (㎜)</title>
<yrange>0, 6</yrange>
<y2range>0, 30</y2range>
<ylabel>stündl.</ylabel>
<y2label>gesamt</y2label>
<source>hourly</source>
<subplot>
<colour>5</colour>
<style>box</style>
<xcalc>data['idx'].replace(minute=30, second=0)</xcalc>
<ycalc>data['rain']</ycalc>
<title>stündl.</title>
</subplot>
<subplot>
<colour>3</colour>
<axes>x1y2</axes>
<ycalc>data['rain'] + last_ycalc</ycalc>
<title>gesamt</title>
</subplot>
</plot>
</graph>