Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pywws-page/_graph_templates/includes/hourly_temp_dew_line.xml
T
2016-09-06 20:26:35 +02:00

17 lines
424 B
XML

<?xml version="1.0" encoding="utf-8"?>
<plot>
<yrange>-20, 40</yrange>
<grid>ytics</grid>
<source>hourly</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>