#! pywws - Python software for USB Wireless Weather Stations                       #
#! http://github.com/jim-easterbrook/pywws                                         #
#! Copyright (C) 2008-16  pywws contributors                                       #
#!                                                                                 #
#! This program is free software; you can redistribute it and/or                   #
#! modify it under the terms of the GNU General Public License                     #
#! as published by the Free Software Foundation; either version 2                  #
#! of the License, or (at your option) any later version.                          #
#!                                                                                 #
#! This program is distributed in the hope that it will be useful,                 #
#! but WITHOUT ANY WARRANTY; without even the implied warranty of                  #
#! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                   #
#! GNU General Public License for more details.                                    #
#!                                                                                 #
#! You should have received a copy of the GNU General Public License               #
#! along with this program; if not, write to the Free Software                     #
#! Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. #
#encoding html#
<table border="1" rules="all">
  <tr>
    <th rowspan="3">Month</th>
    <th colspan="6">Temperature</th>
    <th colspan="2">Rainfall</th>
  </tr>
  <tr>
    <th colspan="3">daytime maximum</th>
    <th colspan="3">nighttime minimum</th>
    <th rowspan="2">total</th>
    <th rowspan="2">rainy days</th>
  </tr>
  <tr>
    <th>highest</th>
    <th>average</th>
    <th>lowest</th>
    <th>highest</th>
    <th>average</th>
    <th>lowest</th>
  </tr>
#timezone local#
#monthly#
#jump -11#
#loop 12#
  <tr>
    <td class="right">#calc "data['start']+DAY" "%B %Y"#</td>
    <td>#temp_out_max_hi "%.1f &deg;C"#</td>
    <td>#temp_out_max_ave "%.1f &deg;C"#</td>
    <td>#temp_out_max_lo "%.1f &deg;C"#</td>
    <td>#temp_out_min_hi "%.1f &deg;C"#</td>
    <td>#temp_out_min_ave "%.1f &deg;C"#</td>
    <td>#temp_out_min_lo "%.1f &deg;C"#</td>
    <td>#rain "%0.1f mm"#</td>
    <td>#rain_days "%d"#</td>
  </tr>
#jump 1#
#endloop#
</table>
