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/monthly_temp_maxmin_bar.xml

37 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<plot>
<title>Temperatur (℃)</title>
<yrange>-20, 50</yrange>
<grid>ytics</grid>
<source>monthly</source>
<boxwidth>boxwidth / 2</boxwidth>
<subplot>
<style>box</style>
<colour>rgb "#f44336"</colour>
<title>Mittleres Tagesmaximum</title>
<xcalc>data['start'] + timedelta(days=20)</xcalc>
<ycalc>data['temp_out_max_ave']</ycalc>
</subplot>
<subplot>
<style>+</style>
<colour>rgb "#b71c1c"</colour>
<title>Höchstes Tagesmaximum</title>
<xcalc>data['temp_out_max_hi_t']</xcalc>
<ycalc>data['temp_out_max_hi']</ycalc>
</subplot>
<subplot>
<style>box</style>
<colour>rgb "#607d8b"</colour>
<title>Mittleres Nachtminimum</title>
<xcalc>data['start'] + timedelta(days=7)</xcalc>
<ycalc>data['temp_out_min_ave']</ycalc>
</subplot>
<subplot>
<style>+</style>
<colour>rgb "#263238"</colour>
<title>Tiefstes Nachtminimum</title>
<xcalc>data['temp_out_min_lo_t']</xcalc>
<ycalc>data['temp_out_min_lo']</ycalc>
</subplot>
</plot>