I have been looking at some figures to use from a few Meteotemplate sites near me. The Yearly Report is what I have been looking at and, the monthly averages.
Does this sound about the right way to obtain the data for the normals figures?
~Bob~




Code: Select all
<span class="mticon-rain" style="font-size:1.7em"></span> <strong>Precipitation normals</strong><br>
Units:
<select id="areaNormalsRUnits" name="areaNormalsRUnits">
<option value="mm" <?php if($areaNormalsRUnits=="C"){echo "selected";}?>>mm</option>
<option value="in" <?php if($areaNormalsRUnits=="F"){echo "selected";}?>>in</option>
</select>Code: Select all
<span class="mticon-rain" style="font-size:1.7em"></span> <strong>Precipitation normals</strong><br>
Units:
<select id="areaNormalsRUnits" name="areaNormalsRUnits">
<option value="mm" <?php if($areaNormalsRUnits=="mm"){echo "selected";}?>>mm</option>
<option value="in" <?php if($areaNormalsRUnits=="in"){echo "selected";}?>>in</option>
</select>
