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.
pywws-page/_graph_templates/includes/hourly_temp_dew_line.xml

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>