<?php # # cumuluswebtags.txt (PHP) - Last modified: 6 January 2015 # // Initial Author: Ray Beriau // Version 1.00 - 10-Aug-2009 -- created this tag list // Version 1.01 - 17-Aug-2009 -- added missing tags // Version 1.02 - 02-Sep-2009 -- slight modifications to the header // Version 1.03 - 13-Nov-2009 -- added new tags // Version 1.04 - 15-Nov-2009 -- corrected comments on a tag // Version 1.05 - 14-Dec-2009 -- new tag added // Version 1.06 - 16-Dec-2009 -- new tag added // Version 1.07 - 22-Dec-2009 -- new tag added // Version 1.08 - 23-Dec-2009 -- new tag added // Version 1.09 - 11-Jan-2010 -- modified Davis battery tags // Version 1.10 - 16-Jan-2010 -- added new altimeter pressure tag // Version 1.11 - 26-Jan-2010 -- added new currcond tag // Version 1.12 - 06-Oct-2010 -- added new tags (Ver 1.9.1 Beta onwards) // Version 1.13 - 16-Feb-2011 -- added new tags (Ver 1.9.1 Beta onwards) // Version 1.14 - 22-Feb-2011 -- added new tags (Ver 1.9.1 Beta 891 onwards) // Version 1.15 - 06-Apr-2011 -- confirmed all tags for Ver 1.9.1 release -- 400 in total. // Version 1.15a- 13-Jul-2011 -- fixed type with the $dewpointH tag // Version 1.16 - 11-Oct-2011 -- added new tags (Ver 1.9.2 of Cumulus) // Version 1.18 - 29-Dec-2011 -- added new tags up to v1.9.2b1026 and fixed a number of entries (480 tags) # Version 2.00 - 6-Jan-2015 -- updated to v1.9.4 b 1099 (625 tags, - NOTE that monthly all-time tags are arrays each with 13 elements ) // ------------------------------------------------------------------------------------------------ // allow viewing of generated source check_sourceview (__FILE__); // Include this line in any other PHP that has cumuluswebtags.txt in an include or require, then the function that follows does not need to be repeated in each PHP document // ------------------------------------------------------------------------------------------------ function check_sourceview ($filenameReal) { if ((isset($_GET['view']) && (strtolower($_GET['view']) == 'sce' || strtolower($_GET['view']) == 'src')) or (isset($_REQUEST['sce']) && ( strtolower($_REQUEST['sce']) == 'view' || strtolower($_REQUEST['sce']) == 'show'))) { $download_size = filesize($filenameReal); header('Pragma: public'); header('Cache-Control: private'); header('Cache-Control: no-cache, must-revalidate'); header("Content-type: text/plain"); header("Accept-Ranges: bytes"); header("Content-Length: $download_size"); header('Connection: close'); readfile($filenameReal); exit; } } // ------------------------------------------------------------------------------------------------ # List of all Cumulus web tags assigned as PHP variables $AllocatedMemory='<#AllocatedMemory>'; $altimeterpressure=<#altimeterpressure>; $altitude='<#altitude>'; $apptemp=<#apptemp>; $apptempH=<#apptempH>; $apptempL=<#apptempL>; $apptempTH=<#apptempTH>; $apptempTL=<#apptempTL>; $apptempYH=<#apptempYH>; $apptempYL=<#apptempYL>; $avgbearing=<#avgbearing>; $avgtemp=<#avgtemp>; $avgtempY=<#avgtempY>; $battery='<#battery>'; // does not apply to all weather station types $bearing=<#bearing>; $BearingRangeFrom=<#BearingRangeFrom>; $BearingRangeFrom10=<#BearingRangeFrom10>; $BearingRangeTo=<#BearingRangeTo>; $BearingRangeTo10=<#BearingRangeTo10>; $bearingTM=<#bearingTM>; $bearingYM=<#bearingYM>; $beaudesc='<#beaudesc>'; $beaufort='<#beaufort>'; $beaufortnumber=<#beaufortnumber>; $build=<#build>; // ------------------------------------------------------------------------------------------------ # Monthly All Time Records $ByMonthAppTempH = Array(); $ByMonthAppTempH[0]=<#ByMonthAppTempH>; // defaults to current month $ByMonthAppTempH[1]=<#ByMonthAppTempH mon=1>; // January $ByMonthAppTempH[2]=<#ByMonthAppTempH mon=2>; //February $ByMonthAppTempH[3]=<#ByMonthAppTempH mon=3>; // March $ByMonthAppTempH[4]=<#ByMonthAppTempH mon=4>; // April $ByMonthAppTempH[5]=<#ByMonthAppTempH mon=5>; // May $ByMonthAppTempH[6]=<#ByMonthAppTempH mon=6>; // June $ByMonthAppTempH[7]=<#ByMonthAppTempH mon=7>; // July $ByMonthAppTempH[8]=<#ByMonthAppTempH mon=8>; // August $ByMonthAppTempH[9]=<#ByMonthAppTempH mon=9>; //September $ByMonthAppTempH[10]=<#ByMonthAppTempH mon=10>; // October $ByMonthAppTempH[11]=<#ByMonthAppTempH mon=11>; // November $ByMonthAppTempH[12]=<#ByMonthAppTempH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthAppTempHT=array(); $ByMonthAppTempHT[0]='<#ByMonthAppTempHT>'; // defaults to current month $ByMonthAppTempHT[1]='<#ByMonthAppTempHT mon=1>'; // January $ByMonthAppTempHT[2]='<#ByMonthAppTempHT mon=2>'; //February $ByMonthAppTempHT[3]='<#ByMonthAppTempHT mon=3>'; // March $ByMonthAppTempHT[4]='<#ByMonthAppTempHT mon=4>'; // April $ByMonthAppTempHT[5]='<#ByMonthAppTempHT mon=5>'; // May $ByMonthAppTempHT[6]='<#ByMonthAppTempHT mon=6>'; // June $ByMonthAppTempHT[7]='<#ByMonthAppTempHT mon=7>'; // July $ByMonthAppTempHT[8]='<#ByMonthAppTempHT mon=8>'; // August $ByMonthAppTempHT[9]='<#ByMonthAppTempHT mon=9>'; //September $ByMonthAppTempHT[10]='<#ByMonthAppTempHTH mon=10>'; // October $ByMonthAppTempHT[11]='<#ByMonthAppTempHTH mon=11>'; // November $ByMonthAppTempHT[12]='<#ByMonthAppTempHTH mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthAppTempL=array(); $ByMonthAppTempL[0]=<#ByMonthAppTempL>; // defaults to current month $ByMonthAppTempL[1]=<#ByMonthAppTempL mon=1>; // January $ByMonthAppTempL[2]=<#ByMonthAppTempL mon=2>; //February $ByMonthAppTempL[3]=<#ByMonthAppTempL mon=3>; // March $ByMonthAppTempL[4]=<#ByMonthAppTempL mon=4>; // April $ByMonthAppTempL[5]=<#ByMonthAppTempL mon=5>; // May $ByMonthAppTempL[6]=<#ByMonthAppTempL mon=6>; // June $ByMonthAppTempL[7]=<#ByMonthAppTempL mon=7>; // July $ByMonthAppTempL[8]=<#ByMonthAppTempL mon=8>; // August $ByMonthAppTempL[9]=<#ByMonthAppTempL mon=9>; //September $ByMonthAppTempL[10]=<#ByMonthAppTempL mon=10>; // October $ByMonthAppTempL[11]=<#ByMonthAppTempL mon=11>; // November $ByMonthAppTempL[12]=<#ByMonthAppTempL mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthAppTempLT=array(); $ByMonthAppTempLT[0]='<#ByMonthAppTempLT>'; // defaults to current month $ByMonthAppTempLT[1]='<#ByMonthAppTempLT mon=1>'; // January $ByMonthAppTempLT[2]='<#ByMonthAppTempLT mon=2>'; //February $ByMonthAppTempLT[3]='<#ByMonthAppTempLT mon=3>'; // March $ByMonthAppTempLT[4]='<#ByMonthAppTempLT mon=4>'; // April $ByMonthAppTempLT[5]='<#ByMonthAppTempLT mon=5>'; // May $ByMonthAppTempLT[6]='<#ByMonthAppTempLT mon=6>'; // June $ByMonthAppTempLT[7]='<#ByMonthAppTempLT mon=7>'; // July $ByMonthAppTempLT[8]='<#ByMonthAppTempLT mon=8>'; // August $ByMonthAppTempLT[9]='<#ByMonthAppTempLT mon=9>'; //September $ByMonthAppTempLT[10]='<#ByMonthAppTempLT mon=10>'; // October $ByMonthAppTempLT[11]='<#ByMonthAppTempLT mon=11>'; // November $ByMonthAppTempLT[12]='<#ByMonthAppTempLT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthDailyRainH=array(); $ByMonthDailyRainH[0]=<#ByMonthDailyRainH>; // defaults to current month $ByMonthDailyRainH[1]=<#ByMonthDailyRainH mon=1>; // January $ByMonthDailyRainH[2]=<#ByMonthDailyRainH mon=2>; //February $ByMonthDailyRainH[3]=<#ByMonthDailyRainH mon=3>; // March $ByMonthDailyRainH[4]=<#ByMonthDailyRainH mon=4>; // April $ByMonthDailyRainH[5]=<#ByMonthDailyRainH mon=5>; // May $ByMonthDailyRainH[6]=<#ByMonthDailyRainH mon=6>; // June $ByMonthDailyRainH[7]=<#ByMonthDailyRainH mon=7>; // July $ByMonthDailyRainH[8]=<#ByMonthDailyRainH mon=8>; // August $ByMonthDailyRainH[9]=<#ByMonthDailyRainH mon=9>; //September $ByMonthDailyRainH[10]=<#ByMonthDailyRainH mon=10>; // October $ByMonthDailyRainH[11]=<#ByMonthDailyRainH mon=11>; // November $ByMonthDailyRainH[12]=<#ByMonthDailyRainH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthDailyRainHT=array(); $ByMonthDailyRainHT[0]='<#ByMonthDailyRainHT>'; // defaults to current month $ByMonthDailyRainHT[1]='<#ByMonthDailyRainHT mon=1>'; // January $ByMonthDailyRainHT[2]='<#ByMonthDailyRainHT mon=2>'; //February $ByMonthDailyRainHT[3]='<#ByMonthDailyRainHT mon=3>'; // March $ByMonthDailyRainHT[4]='<#ByMonthDailyRainHT mon=4>'; // April $ByMonthDailyRainHT[5]='<#ByMonthDailyRainHT mon=5>'; // May $ByMonthDailyRainHT[6]='<#ByMonthDailyRainHT mon=6>'; // June $ByMonthDailyRainHT[7]='<#ByMonthDailyRainHT mon=7>'; // July $ByMonthDailyRainHT[8]='<#ByMonthDailyRainHT mon=8>'; // August $ByMonthDailyRainHT[9]='<#ByMonthDailyRainHT mon=9>'; //September $ByMonthDailyRainHT[10]='<#ByMonthDailyRainHT mon=10>'; // October $ByMonthDailyRainHT[11]='<#ByMonthDailyRainHT mon=11>'; // November $ByMonthDailyRainHT[12]='<#ByMonthDailyRainHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthDewPointH=array(); $ByMonthDewPointH[0]=<#ByMonthDewPointH>; // defaults to current month $ByMonthDewPointH[1]=<#ByMonthDewPointH mon=1>; // January $ByMonthDewPointH[2]=<#ByMonthDewPointH mon=2>; //February $ByMonthDewPointH[3]=<#ByMonthDewPointH mon=3>; // March $ByMonthDewPointH[4]=<#ByMonthDewPointH mon=4>; // April $ByMonthDewPointH[5]=<#ByMonthDewPointH mon=5>; // May $ByMonthDewPointH[6]=<#ByMonthDewPointH mon=6>; // June $ByMonthDewPointH[7]=<#ByMonthDewPointH mon=7>; // July $ByMonthDewPointH[8]=<#ByMonthDewPointH mon=8>; // August $ByMonthDewPointH[9]=<#ByMonthDewPointH mon=9>; //September $ByMonthDewPointH[10]=<#ByMonthDewPointH mon=10>; // October $ByMonthDewPointH[11]=<#ByMonthDewPointH mon=11>; // November $ByMonthDewPointH[12]=<#ByMonthDewPointH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthDewPointHT=array(); $ByMonthDewPointHT[0]='<#ByMonthDewPointHT>'; // defaults to current month $ByMonthDewPointHT[1]='<#ByMonthDewPointHT mon=1>'; // January $ByMonthDewPointHT[2]='<#ByMonthDewPointHT mon=2>'; //February $ByMonthDewPointHT[3]='<#ByMonthDewPointHT mon=3>'; // March $ByMonthDewPointHT[4]='<#ByMonthDewPointHT mon=4>'; // April $ByMonthDewPointHT[5]='<#ByMonthDewPointHT mon=5>'; // May $ByMonthDewPointHT[6]='<#ByMonthDewPointHT mon=6>'; // June $ByMonthDewPointHT[7]='<#ByMonthDewPointHT mon=7>'; // July $ByMonthDewPointHT[8]='<#ByMonthDewPointHT mon=8>'; // August $ByMonthDewPointHT[9]='<#ByMonthDewPointHT mon=9>'; //September $ByMonthDewPointHT[10]='<#ByMonthDewPointHT mon=10>'; // October $ByMonthDewPointHT[11]='<#ByMonthDewPointHT mon=11>'; // November $ByMonthDewPointHT[12]='<#ByMonthDewPointHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthDewPointL=array(); $ByMonthDewPointL[0]=<#ByMonthDewPointL>; // defaults to current month $ByMonthDewPointL[1]=<#ByMonthDewPointL mon=1>; // January $ByMonthDewPointL[2]=<#ByMonthDewPointL mon=2>; //February $ByMonthDewPointL[3]=<#ByMonthDewPointL mon=3>; // March $ByMonthDewPointL[4]=<#ByMonthDewPointL mon=4>; // April $ByMonthDewPointL[5]=<#ByMonthDewPointL mon=5>; // May $ByMonthDewPointL[6]=<#ByMonthDewPointL mon=6>; // June $ByMonthDewPointL[7]=<#ByMonthDewPointL mon=7>; // July $ByMonthDewPointL[8]=<#ByMonthDewPointL mon=8>; // August $ByMonthDewPointL[9]=<#ByMonthDewPointL mon=9>; //September $ByMonthDewPointL[10]=<#ByMonthDewPointL mon=10>; // October $ByMonthDewPointL[11]=<#ByMonthDewPointL mon=11>; // November $ByMonthDewPointL[12]=<#ByMonthDewPointL mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthDewPointLT=array(); $ByMonthDewPointLT[0]='<#ByMonthDewPointLT>'; // defaults to current month $ByMonthDewPointLT[1]='<#ByMonthDewPointLT mon=1>'; // January $ByMonthDewPointLT[2]='<#ByMonthDewPointLT mon=2>'; //February $ByMonthDewPointLT[3]='<#ByMonthDewPointLT mon=3>'; // March $ByMonthDewPointLT[4]='<#ByMonthDewPointLT mon=4>'; // April $ByMonthDewPointLT[5]='<#ByMonthDewPointLT mon=5>'; // May $ByMonthDewPointLT[6]='<#ByMonthDewPointLT mon=6>'; // June $ByMonthDewPointLT[7]='<#ByMonthDewPointLT mon=7>'; // July $ByMonthDewPointLT[8]='<#ByMonthDewPointLT mon=8>'; // August $ByMonthDewPointLT[9]='<#ByMonthDewPointLT mon=9>'; //September $ByMonthDewPointLT[10]='<#ByMonthDewPointLT mon=10>'; // October $ByMonthDewPointLT[11]='<#ByMonthDewPointLT mon=11>'; // November $ByMonthDewPointLT[12]='<#ByMonthDewPointLT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthGustH=array(); $ByMonthGustH[0]=<#ByMonthGustH>; // defaults to current month $ByMonthGustH[1]=<#ByMonthGustH mon=1>; // January $ByMonthGustH[2]=<#ByMonthGustH mon=2>; //February $ByMonthGustH[3]=<#ByMonthGustH mon=3>; // March $ByMonthGustH[4]=<#ByMonthGustH mon=4>; // April $ByMonthGustH[5]=<#ByMonthGustH mon=5>; // May $ByMonthGustH[6]=<#ByMonthGustH mon=6>; // June $ByMonthGustH[7]=<#ByMonthGustH mon=7>; // July $ByMonthGustH[8]=<#ByMonthGustH mon=8>; // August $ByMonthGustH[9]=<#ByMonthGustH mon=9>; //September $ByMonthGustH[10]=<#ByMonthGustH mon=10>; // October $ByMonthGustH[11]=<#ByMonthGustH mon=11>; // November $ByMonthGustH[12]=<#ByMonthGustH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthGustHT=array(); $ByMonthGustHT[0]='<#ByMonthGustHT>'; // defaults to current month $ByMonthGustHT[1]='<#ByMonthGustHT mon=1>'; // January $ByMonthGustHT[2]='<#ByMonthGustHT mon=2>'; //February $ByMonthGustHT[3]='<#ByMonthGustHT mon=3>'; // March $ByMonthGustHT[4]='<#ByMonthGustHT mon=4>'; // April $ByMonthGustHT[5]='<#ByMonthGustHT mon=5>'; // May $ByMonthGustHT[6]='<#ByMonthGustHT mon=6>'; // June $ByMonthGustHT[7]='<#ByMonthGustHT mon=7>'; // July $ByMonthGustHT[8]='<#ByMonthGustHT mon=8>'; // August $ByMonthGustHT[9]='<#ByMonthGustHT mon=9>'; //September $ByMonthGustHT[10]='<#ByMonthGustHT mon=10>'; // October $ByMonthGustHT[11]='<#ByMonthGustHT mon=11>'; // November $ByMonthGustHT[12]='<#ByMonthGustHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthHeatIndexH=array(); $ByMonthHeatIndexH[0]=<#ByMonthHeatIndexH>; // defaults to current month $ByMonthHeatIndexH[1]=<#ByMonthHeatIndexH mon=1>; // January $ByMonthHeatIndexH[2]=<#ByMonthHeatIndexH mon=2>; //February $ByMonthHeatIndexH[3]=<#ByMonthHeatIndexH mon=3>; // March $ByMonthHeatIndexH[4]=<#ByMonthHeatIndexH mon=4>; // April $ByMonthHeatIndexH[5]=<#ByMonthHeatIndexH mon=5>; // May $ByMonthHeatIndexH[6]=<#ByMonthHeatIndexH mon=6>; // June $ByMonthHeatIndexH[7]=<#ByMonthHeatIndexH mon=7>; // July $ByMonthHeatIndexH[8]=<#ByMonthHeatIndexH mon=8>; // August $ByMonthHeatIndexH[9]=<#ByMonthHeatIndexH mon=9>; //September $ByMonthHeatIndexH[10]=<#ByMonthHeatIndexH mon=10>; // October $ByMonthHeatIndexH[11]=<#ByMonthHeatIndexH mon=11>; // November $ByMonthHeatIndexH[12]=<#ByMonthHeatIndexH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthHeatIndexHT=array(); $ByMonthHeatIndexHT[0]='<#BByMonthHeatIndexHT>'; // defaults to current month $ByMonthHeatIndexHT[1]='<#ByMonthHeatIndexHT mon=1>'; // January $ByMonthHeatIndexHT[2]='<#ByMonthHeatIndexHT mon=2>'; //February $ByMonthHeatIndexHT[3]='<#ByMonthHeatIndexHT mon=3>'; // March $ByMonthHeatIndexHT[4]='<#ByMonthHeatIndexHT mon=4>'; // April $ByMonthHeatIndexHT[5]='<#ByMonthHeatIndexHT mon=5>'; // May $ByMonthHeatIndexHT[6]='<#ByMonthHeatIndexHT mon=6>'; // June $ByMonthHeatIndexHT[7]='<#ByMonthHeatIndexHT mon=7>'; // July $ByMonthHeatIndexHT[8]='<#ByMonthHeatIndexHT mon=8>'; // August $ByMonthHeatIndexHT[9]='<#ByMonthHeatIndexHT mon=9>'; //September $ByMonthHeatIndexHT[10]='<#ByMonthHeatIndexHT mon=10>'; // October $ByMonthHeatIndexHT[11]='<#ByMonthHeatIndexHT mon=11>'; // November $ByMonthHeatIndexHT[12]='<#ByMonthHeatIndexHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthHighDailyTempRange=array(); $ByMonthHighDailyTempRange[0]=<#ByMonthHighDailyTempRange>; // defaults to current month $ByMonthHighDailyTempRange[1]=<#ByMonthHighDailyTempRange mon=1>; // January $ByMonthHighDailyTempRange[2]=<#ByMonthHighDailyTempRange mon=2>; //February $ByMonthHighDailyTempRange[3]=<#ByMonthHighDailyTempRange mon=3>; // March $ByMonthHighDailyTempRange[4]=<#ByMonthHighDailyTempRange mon=4>; // April $ByMonthHighDailyTempRange[5]=<#ByMonthHighDailyTempRange mon=5>; // May $ByMonthHighDailyTempRange[6]=<#ByMonthHighDailyTempRange mon=6>; // June $ByMonthHighDailyTempRange[7]=<#ByMonthHighDailyTempRange mon=7>; // July $ByMonthHighDailyTempRange[8]=<#ByMonthHighDailyTempRange mon=8>; // August $ByMonthHighDailyTempRange[9]=<#ByMonthHighDailyTempRange mon=9>; //September $ByMonthHighDailyTempRange[10]=<#ByMonthHighDailyTempRange mon=10>; // October $ByMonthHighDailyTempRange[11]=<#ByMonthHighDailyTempRange mon=11>; // November $ByMonthHighDailyTempRange[12]=<#ByMonthHighDailyTempRange mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthHighDailyTempRangeT=array(); $ByMonthHighDailyTempRangeT[0]='<#ByMonthHighDailyTempRangeT>'; // defaults to current month $ByMonthHighDailyTempRangeT[1]='<#ByMonthHighDailyTempRangeT mon=1>'; // January $ByMonthHighDailyTempRangeT[2]='<#ByMonthHighDailyTempRangeT mon=2>'; //February $ByMonthHighDailyTempRangeT[3]='<#ByMonthHighDailyTempRangeT mon=3>'; // March $ByMonthHighDailyTempRangeT[4]='<#ByMonthHighDailyTempRangeT mon=4>'; // April $ByMonthHighDailyTempRangeT[5]='<#ByMonthHighDailyTempRangeT mon=5>'; // May $ByMonthHighDailyTempRangeT[6]='<#ByMonthHighDailyTempRangeT mon=6>'; // June $ByMonthHighDailyTempRangeT[7]='<#ByMonthHighDailyTempRangeT mon=7>'; // July $ByMonthHighDailyTempRangeT[8]='<#ByMonthHighDailyTempRangeT mon=8>'; // August $ByMonthHighDailyTempRangeT[9]='<#ByMonthHighDailyTempRangeT mon=9>'; //September $ByMonthHighDailyTempRangeT[10]='<#ByMonthHighDailyTempRangeT mon=10>'; // October $ByMonthHighDailyTempRangeT[11]='<#ByMonthHighDailyTempRangeT mon=11>'; // November $ByMonthHighDailyTempRangeT[12]='<#ByMonthHighDailyTempRangeT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthHourlyRainH=array(); $ByMonthHourlyRainH[0]=<#ByMonthHourlyRainH>; // defaults to current month $ByMonthHourlyRainH[1]=<#ByMonthHourlyRainH mon=1>; // January $ByMonthHourlyRainH[2]=<#ByMonthHourlyRainH mon=2>; //February $ByMonthHourlyRainH[3]=<#ByMonthHourlyRainH mon=3>; // March $ByMonthHourlyRainH[4]=<#ByMonthHourlyRainH mon=4>; // April $ByMonthHourlyRainH[5]=<#ByMonthHourlyRainH mon=5>; // May $ByMonthHourlyRainH[6]=<#ByMonthHourlyRainH mon=6>; // June $ByMonthHourlyRainH[7]=<#ByMonthHourlyRainH mon=7>; // July $ByMonthHourlyRainH[8]=<#ByMonthHourlyRainH mon=8>; // August $ByMonthHourlyRainH[9]=<#ByMonthHourlyRainH mon=9>; //September $ByMonthHourlyRainH[10]=<#ByMonthHourlyRainH mon=10>; // October $ByMonthHourlyRainH[11]=<#ByMonthHourlyRainH mon=11>; // November $ByMonthHourlyRainH[12]=<#ByMonthHourlyRainH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthHourlyRainHT=array(); $ByMonthHourlyRainHT[0]='<#ByMonthHourlyRainHT>'; // defaults to current month $ByMonthHourlyRainHT[1]='<#ByMonthHourlyRainHT mon=1>'; // January $ByMonthHourlyRainHT[2]='<#ByMonthHourlyRainHT mon=2>'; //February $ByMonthHourlyRainHT[3]='<#ByMonthHourlyRainHT mon=3>'; // March $ByMonthHourlyRainHT[4]='<#ByMonthHourlyRainHT mon=4>'; // April $ByMonthHourlyRainHT[5]='<#ByMonthHourlyRainHT mon=5>'; // May $ByMonthHourlyRainHT[6]='<#ByMonthHourlyRainHT mon=6>'; // June $ByMonthHourlyRainHT[7]='<#ByMonthHourlyRainHT mon=7>'; // July $ByMonthHourlyRainHT[8]='<#ByMonthHourlyRainHT mon=8>'; // August $ByMonthHourlyRainHT[9]='<#ByMonthHourlyRainHT mon=9>'; //September $ByMonthHourlyRainHT[10]='<#ByMonthHourlyRainHT mon=10>'; // October $ByMonthHourlyRainHT[11]='<#ByMonthHourlyRainHT mon=11>'; // November $ByMonthHourlyRainHT[12]='<#ByMonthHourlyRainHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthHumH=array(); $ByMonthHumH[0]=<#ByMonthHumH>; // defaults to current month $ByMonthHumH[1]=<#ByMonthHumH mon=1>; // January $ByMonthHumH[2]=<#ByMonthHumH mon=2>; //February $ByMonthHumH[3]=<#ByMonthHumH mon=3>; // March $ByMonthHumH[4]=<#ByMonthHumH mon=4>; // April $ByMonthHumH[5]=<#ByMonthHumH mon=5>; // May $ByMonthHumH[6]=<#ByMonthHumH mon=6>; // June $ByMonthHumH[7]=<#ByMonthHumH mon=7>; // July $ByMonthHumH[8]=<#ByMonthHumH mon=8>; // August $ByMonthHumH[9]=<#ByMonthHumH mon=9>; //September $ByMonthHumH[10]=<#ByMonthHumH mon=10>; // October $ByMonthHumH[11]=<#ByMonthHumH mon=11>; // November $ByMonthHumH[12]=<#ByMonthHumH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthHumHT=array(); $ByMonthHumHT[0]='<#ByMonthHumHT>'; // defaults to current month $ByMonthHumHT[1]='<#ByMonthHumHT mon=1>'; // January $ByMonthHumHT[2]='<#ByMonthHumHT mon=2>'; //February $ByMonthHumHT[3]='<#ByMonthHumHT mon=3>'; // March $ByMonthHumHT[4]='<#ByMonthHumHT mon=4>'; // April $ByMonthHumHT[5]='<#ByMonthHumHT mon=5>'; // May $ByMonthHumHT[6]='<#ByMonthHumHT mon=6>'; // June $ByMonthHumHT[7]='<#ByMonthHumHT mon=7>'; // July $ByMonthHumHT[8]='<#ByMonthHumHT mon=8>'; // August $ByMonthHumHT[9]='<#ByMonthHumHT mon=9>'; //September $ByMonthHumHT[10]='<#ByMonthHumHT mon=10>'; // October $ByMonthHumHT[11]='<#ByMonthHumHT mon=11>'; // November $ByMonthHumHT[12]='<#ByMonthHumHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthHumL=array(); $ByMonthHumL[0]=<#ByMonthHumL>; // defaults to current month $ByMonthHumL[1]=<#ByMonthHumL mon=1>; // January $ByMonthHumL[2]=<#ByMonthHumL mon=2>; //February $ByMonthHumL[3]=<#ByMonthHumL mon=3>; // March $ByMonthHumL[4]=<#ByMonthHumL mon=4>; // April $ByMonthHumL[5]=<#ByMonthHumL mon=5>; // May $ByMonthHumL[6]=<#ByMonthHumL mon=6>; // June $ByMonthHumL[7]=<#ByMonthHumL mon=7>; // July $ByMonthHumL[8]=<#ByMonthHumL mon=8>; // August $ByMonthHumL[9]=<#ByMonthHumL mon=9>; //September $ByMonthHumL[10]=<#ByMonthHumL mon=10>; // October $ByMonthHumL[11]=<#ByMonthHumL mon=11>; // November $ByMonthHumL[12]=<#ByMonthHumL mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthHumLT=array(); $ByMonthHumLT[0]='<#ByMonthHumLT>'; // defaults to current month $ByMonthHumLT[1]='<#ByMonthHumLT mon=1>'; // January $ByMonthHumLT[2]='<#ByMonthHumLT mon=2>'; //February $ByMonthHumLT[3]='<#ByMonthHumLT mon=3>'; // March $ByMonthHumLT[4]='<#ByMonthHumLT mon=4>'; // April $ByMonthHumLT[5]='<#ByMonthHumLT mon=5>'; // May $ByMonthHumLT[6]='<#ByMonthHumLT mon=6>'; // June $ByMonthHumLT[7]='<#ByMonthHumLT mon=7>'; // July $ByMonthHumLT[8]='<#ByMonthHumLT mon=8>'; // August $ByMonthHumLT[9]='<#ByMonthHumLTLmon=9>'; //September $ByMonthHumLT[10]='<#ByMonthHumLT mon=10>'; // October $ByMonthHumLT[11]='<#ByMonthHumLT mon=11>'; // November $ByMonthHumLT[12]='<#ByMonthHumLT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthLongestDryPeriod=array(); $ByMonthLongestDryPeriod[0]=<#ByMonthLongestDryPeriod>; // defaults to current month $ByMonthLongestDryPeriod[1]=<#ByMonthLongestDryPeriod mon=1>; // January $ByMonthLongestDryPeriod[2]=<#ByMonthLongestDryPeriod mon=2>; //February $ByMonthLongestDryPeriod[3]=<#ByMonthLongestDryPeriod mon=3>; // March $ByMonthLongestDryPeriod[4]=<#ByMonthLongestDryPeriod mon=4>; // April $ByMonthLongestDryPeriod[5]=<#ByMonthLongestDryPeriod mon=5>; // May $ByMonthLongestDryPeriod[6]=<#ByMonthLongestDryPeriod mon=6>; // June $ByMonthLongestDryPeriod[7]=<#ByMonthLongestDryPeriod mon=7>; // July $ByMonthLongestDryPeriod[8]=<#ByMonthLongestDryPeriod mon=8>; // August $ByMonthLongestDryPeriod[9]=<#ByMonthLongestDryPeriod mon=9>; //September $ByMonthLongestDryPeriod[10]=<#ByMonthLongestDryPeriod mon=10>; // October $ByMonthLongestDryPeriod[11]=<#ByMonthLongestDryPeriod mon=11>; // November $ByMonthLongestDryPeriod[12]=<#ByMonthLongestDryPeriod mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthLongestDryPeriodT=array(); $ByMonthLongestDryPeriodT[0]='<#ByMonthLongestDryPeriodT>'; // defaults to current month $ByMonthLongestDryPeriodT[1]='<#ByMonthLongestDryPeriodT mon=1>'; // January $ByMonthLongestDryPeriodT[2]='<#ByMonthLongestDryPeriodT mon=2>'; //February $ByMonthLongestDryPeriodT[3]='<#ByMonthLongestDryPeriodT mon=3>'; // March $ByMonthLongestDryPeriodT[4]='<#ByMonthLongestDryPeriodT mon=4>'; // April $ByMonthLongestDryPeriodT[5]='<#ByMonthLongestDryPeriodT mon=5>'; // May $ByMonthLongestDryPeriodT[6]='<#ByMonthLongestDryPeriodT mon=6>'; // June $ByMonthLongestDryPeriodT[7]='<#ByMonthLongestDryPeriodT mon=7>'; // July $ByMonthLongestDryPeriodT[8]='<#ByMonthLongestDryPeriodT mon=8>'; // August $ByMonthLongestDryPeriodT[9]='<#ByMonthLongestDryPeriodT mon=9>'; //September $ByMonthLongestDryPeriodT[10]='<#ByMonthLongestDryPeriodT mon=10>'; // October $ByMonthLongestDryPeriodT[11]='<#ByMonthLongestDryPeriodT mon=11>'; // November $ByMonthLongestDryPeriodT[12]='<#ByMonthLongestDryPeriodT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthLongestWetPeriod=array(); $ByMonthLongestWetPeriod[0]=<#ByMonthLongestWetPeriod>; // defaults to current month $ByMonthLongestWetPeriod[1]=<#ByMonthLongestWetPeriod mon=1>; // January $ByMonthLongestWetPeriod[2]=<#ByMonthLongestWetPeriod mon=2>; //February $ByMonthLongestWetPeriod[3]=<#ByMonthLongestWetPeriod mon=3>; // March $ByMonthLongestWetPeriod[4]=<#ByMonthLongestWetPeriod mon=4>; // April $ByMonthLongestWetPeriod[5]=<#ByMonthLongestWetPeriod mon=5>; // May $ByMonthLongestWetPeriod[6]=<#ByMonthLongestWetPeriod mon=6>; // June $ByMonthLongestWetPeriod[7]=<#ByMonthLongestWetPeriod mon=7>; // July $ByMonthLongestWetPeriod[8]=<#ByMonthLongestWetPeriod mon=8>; // August $ByMonthLongestWetPeriod[9]=<#ByMonthLongestWetPeriod mon=9>; //September $ByMonthLongestWetPeriod[10]=<#ByMonthLongestWetPeriod mon=10>; // October $ByMonthLongestWetPeriod[11]=<#ByMonthLongestWetPeriod mon=11>; // November $ByMonthLongestWetPeriod[12]=<#ByMonthLongestWetPeriod mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthLongestWetPeriodT=array(); $ByMonthLongestWetPeriodT[0]='<#ByMonthLongestWetPeriodT>'; // defaults to current month $ByMonthLongestWetPeriodT[1]='<#ByMonthLongestWetPeriodT mon=1>'; // January $ByMonthLongestWetPeriodT[2]='<#ByMonthLongestWetPeriodT mon=2>'; //February $ByMonthLongestWetPeriodT[3]='<#ByMonthLongestWetPeriodT mon=3>'; // March $ByMonthLongestWetPeriodT[4]='<#ByMonthLongestWetPeriodT mon=4>'; // April $ByMonthLongestWetPeriodT[5]='<#ByMonthLongestWetPeriodT mon=5>'; // May $ByMonthLongestWetPeriodT[6]='<#ByMonthLongestWetPeriodT mon=6>'; // June $ByMonthLongestWetPeriodT[7]='<#ByMonthLongestWetPeriodT mon=7>'; // July $ByMonthLongestWetPeriodT[8]='<#ByMonthLongestWetPeriodT mon=8>'; // August $ByMonthLongestWetPeriodT[9]='<#ByMonthLongestWetPeriodT mon=9>'; //September $ByMonthLongestWetPeriodT[10]='<#ByMonthLongestWetPeriodT mon=10>'; // October $ByMonthLongestWetPeriodT[11]='<#ByMonthLongestWetPeriodT mon=11>'; // November $ByMonthLongestWetPeriodT[12]='<#ByMonthLongestWetPeriodT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthLowDailyTempRange=array(); $ByMonthLowDailyTempRange[0]=<#ByMonthLowDailyTempRange>; // defaults to current month $ByMonthLowDailyTempRange[1]=<#ByMonthLowDailyTempRange mon=1>; // January $ByMonthLowDailyTempRange[2]=<#ByMonthLowDailyTempRange mon=2>; //February $ByMonthLowDailyTempRange[3]=<#ByMonthLowDailyTempRange mon=3>; // March $ByMonthLowDailyTempRange[4]=<#ByMonthLowDailyTempRange mon=4>; // April $ByMonthLowDailyTempRange[5]=<#ByMonthLowDailyTempRange mon=5>; // May $ByMonthLowDailyTempRange[6]=<#ByMonthLowDailyTempRange mon=6>; // June $ByMonthLowDailyTempRange[7]=<#ByMonthLowDailyTempRange mon=7>; // July $ByMonthLowDailyTempRange[8]=<#ByMonthLowDailyTempRange mon=8>; // August $ByMonthLowDailyTempRange[9]=<#ByMonthLowDailyTempRange mon=9>; //September $ByMonthLowDailyTempRange[10]=<#ByMonthLowDailyTempRange mon=10>; // October $ByMonthLowDailyTempRange[11]=<#ByMonthLowDailyTempRange mon=11>; // November $ByMonthLowDailyTempRange[12]=<#ByMonthLowDailyTempRange mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthLowDailyTempRangeT=array(); $ByMonthLowDailyTempRangeT[0]='<#ByMonthLowDailyTempRangeT>'; // defaults to current month $ByMonthLowDailyTempRangeT[1]='<#ByMonthLowDailyTempRangeT mon=1>'; // January $ByMonthLowDailyTempRangeT[2]='<#ByMonthLowDailyTempRangeT mon=2>'; //February $ByMonthLowDailyTempRangeT[3]='<#ByMonthLowDailyTempRangeT mon=3>'; // March $ByMonthLowDailyTempRangeT[4]='<#ByMonthLowDailyTempRangeT mon=4>'; // April $ByMonthLowDailyTempRangeT[5]='<#ByMonthLowDailyTempRangeT mon=5>'; // May $ByMonthLowDailyTempRangeT[6]='<#ByMonthLowDailyTempRangeT mon=6>'; // June $ByMonthLowDailyTempRangeT[7]='<#ByMonthLowDailyTempRangeT mon=7>'; // July $ByMonthLowDailyTempRangeT[8]='<#ByMonthLowDailyTempRangeT mon=8>'; // August $ByMonthLowDailyTempRangeT[9]='<#ByMonthLowDailyTempRangeT mon=9>'; //September $ByMonthLowDailyTempRangeT[10]='<#ByMonthLowDailyTempRangeT mon=10>'; // October $ByMonthLowDailyTempRangeT[11]='<#ByMonthLowDailyTempRangeT mon=11>'; // November $ByMonthLowDailyTempRangeT[12]='<#ByMonthLowDailyTempRangeT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthMaxTempL=array(); $ByMonthMaxTempL[0]=<#ByMonthMaxTempL>; // defaults to current month $ByMonthMaxTempL[1]=<#ByMonthMaxTempL mon=1>; // January $ByMonthMaxTempL[2]=<#ByMonthMaxTempL mon=2>; //February $ByMonthMaxTempL[3]=<#ByMonthMaxTempL mon=3>; // March $ByMonthMaxTempL[4]=<#ByMonthMaxTempL mon=4>; // April $ByMonthMaxTempL[5]=<#ByMonthMaxTempL mon=5>; // May $ByMonthMaxTempL[6]=<#ByMonthMaxTempL mon=6>; // June $ByMonthMaxTempL[7]=<#ByMonthMaxTempL mon=7>; // July $ByMonthMaxTempL[8]=<#ByMonthMaxTempL mon=8>; // August $ByMonthMaxTempL[9]=<#ByMonthMaxTempL mon=9>; //September $ByMonthMaxTempL[10]=<#ByMonthMaxTempL mon=10>; // October $ByMonthMaxTempL[11]=<#ByMonthMaxTempL mon=11>; // November $ByMonthMaxTempL[12]=<#ByMonthMaxTempL mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthMaxTempLT=array(); $ByMonthMaxTempLT[0]='<#ByMonthMaxTempLT>'; // defaults to current month $ByMonthMaxTempLT[1]='<#ByMonthMaxTempLT mon=1>'; // January $ByMonthMaxTempLT[2]='<#ByMonthMaxTempLT mon=2>'; //February $ByMonthMaxTempLT[3]='<#ByMonthMaxTempLT mon=3>'; // March $ByMonthMaxTempLT[4]='<#ByMonthMaxTempLT mon=4>'; // April $ByMonthMaxTempLT[5]='<#ByMonthMaxTempLT mon=5>'; // May $ByMonthMaxTempLT[6]='<#ByMonthMaxTempLT mon=6>'; // June $ByMonthMaxTempLT[7]='<#ByMonthMaxTempLT mon=7>'; // July $ByMonthMaxTempLT[8]='<#ByMonthMaxTempLT mon=8>'; // August $ByMonthMaxTempLT[9]='<#ByMonthMaxTempLT mon=9>'; //September $ByMonthMaxTempLT[10]='<#ByMonthMaxTempLT mon=10>'; // October $ByMonthMaxTempLT[11]='<#ByMonthMaxTempLT mon=11>'; // November $ByMonthMaxTempLT[12]='<#ByMonthMaxTempLT mon=12>'; //December $ByMonthMinTempH=array(); $ByMonthMinTempH[0]=<#ByMonthMinTempH>; // defaults to current month $ByMonthMinTempH[1]=<#ByMonthMinTempH mon=1>; // January $ByMonthMinTempH[2]=<#ByMonthMinTempH mon=2>; //February $ByMonthMinTempH[3]=<#ByMonthMinTempH mon=3>; // March $ByMonthMinTempH[4]=<#ByMonthMinTempH mon=4>; // April $ByMonthMinTempH[5]=<#ByMonthMinTempH mon=5>; // May $ByMonthMinTempH[6]=<#ByMonthMinTempH mon=6>; // June $ByMonthMinTempH[7]=<#ByMonthMinTempH mon=7>; // July $ByMonthMinTempH[8]=<#ByMonthMinTempH mon=8>; // August $ByMonthMinTempH[9]=<#ByMonthMinTempH mon=9>; //September $ByMonthMinTempH[10]=<#ByMonthMinTempH mon=10>; // October $ByMonthMinTempH[11]=<#ByMonthMinTempH mon=11>; // November $ByMonthMinTempH[12]=<#ByMonthMinTempH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthMinTempHT=array(); $ByMonthMinTempHT[0]='<#ByMonthMinTempHT>'; // defaults to current month $ByMonthMinTempHT[1]='<#ByMonthMinTempHT mon=1>'; // January $ByMonthMinTempHT[2]='<#ByMonthMinTempHT mon=2>'; //February $ByMonthMinTempHT[3]='<#ByMonthMinTempHT mon=3>'; // March $ByMonthMinTempHT[4]='<#ByMonthMinTempHT mon=4>'; // April $ByMonthMinTempHT[5]='<#ByMonthMinTempHT mon=5>'; // May $ByMonthMinTempHT[6]='<#ByMonthMinTempHT mon=6>'; // June $ByMonthMinTempHT[7]='<#ByMonthMinTempHT mon=7>'; // July $ByMonthMinTempHT[8]='<#ByMonthMinTempHT mon=8>'; // August $ByMonthMinTempHT[9]='<#ByMonthMinTempHT mon=9>'; //September $ByMonthMinTempHT[10]='<#ByMonthMinTempHT mon=10>'; // October $ByMonthMinTempHT[11]='<#ByMonthMinTempHT mon=11>'; // November $ByMonthMinTempHT[12]='<#ByMonthMinTempHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthMonthlyRainH=array(); $ByMonthMonthlyRainH[0]=<#ByMonthMonthlyRainH>; // defaults to current month $ByMonthMonthlyRainH[1]=<#ByMonthMonthlyRainH mon=1>; // January $ByMonthMonthlyRainH[2]=<#ByMonthMonthlyRainH mon=2>; //February $ByMonthMonthlyRainH[3]=<#ByMonthMonthlyRainH mon=3>; // March $ByMonthMonthlyRainH[4]=<#ByMonthMonthlyRainH mon=4>; // April $ByMonthMonthlyRainH[5]=<#ByMonthMonthlyRainH mon=5>; // May $ByMonthMonthlyRainH[6]=<#ByMonthMonthlyRainH mon=6>; // June $ByMonthMonthlyRainH[7]=<#ByMonthMonthlyRainH mon=7>; // July $ByMonthMonthlyRainH[8]=<#ByMonthMonthlyRainH mon=8>; // August $ByMonthMonthlyRainH[9]=<#ByMonthMonthlyRainH mon=9>; //September $ByMonthMonthlyRainH[10]=<#ByMonthMonthlyRainH mon=10>; // October $ByMonthMonthlyRainH[11]=<#ByMonthMonthlyRainH mon=11>; // November $ByMonthMonthlyRainH[12]=<#ByMonthMonthlyRainH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthMonthlyRainHT=array(); $ByMonthMonthlyRainHT[0]='<#ByMonthMonthlyRainHT>'; // defaults to current month $ByMonthMonthlyRainHT[1]='<#ByMonthMonthlyRainHT mon=1>'; // January $ByMonthMonthlyRainHT[2]='<#ByMonthMonthlyRainHT mon=2>'; //February $ByMonthMonthlyRainHT[3]='<#ByMonthMonthlyRainHT mon=3>'; // March $ByMonthMonthlyRainHT[4]='<#ByMonthMonthlyRainHT mon=4>'; // April $ByMonthMonthlyRainHT[5]='<#ByMonthMonthlyRainHT mon=5>'; // May $ByMonthMonthlyRainHT[6]='<#ByMonthMonthlyRainHT mon=6>'; // June $ByMonthMonthlyRainHT[7]='<#ByMonthMonthlyRainHT mon=7>'; // July $ByMonthMonthlyRainHT[8]='<#ByMonthMonthlyRainHT mon=8>'; // August $ByMonthMonthlyRainHT[9]='<#ByMonthMonthlyRainHT mon=9>'; //September $ByMonthMonthlyRainHT[10]='<#ByMonthMonthlyRainHT mon=10>'; // October $ByMonthMonthlyRainHT[11]='<#ByMonthMonthlyRainHT mon=11>'; // November $ByMonthMonthlyRainHT[12]='<#ByMonthMonthlyRainHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthPressH=array(); $ByMonthPressH[0]=<#ByMonthPressH>; // defaults to current month $ByMonthPressH[1]=<#ByMonthPressH mon=1>; // January $ByMonthPressH[2]=<#ByMonthPressH mon=2>; //February $ByMonthPressH[3]=<#ByMonthPressH mon=3>; // March $ByMonthPressH[4]=<#ByMonthPressH mon=4>; // April $ByMonthPressH[5]=<#ByMonthPressH mon=5>; // May $ByMonthPressH[6]=<#ByMonthPressH mon=6>; // June $ByMonthPressH[7]=<#ByMonthPressH mon=7>; // July $ByMonthPressH[8]=<#ByMonthPressH mon=8>; // August $ByMonthPressH[9]=<#ByMonthPressH mon=9>; //September $ByMonthPressH[10]=<#ByMonthPressH mon=10>; // October $ByMonthPressH[11]=<#ByMonthPressH mon=11>; // November $ByMonthPressH[12]=<#ByMonthPressH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthPressHT=array(); $ByMonthPressHT[0]='<#ByMonthPressHT>'; // defaults to current month $ByMonthPressHT[1]='<#ByMonthPressHT mon=1>'; // January $ByMonthPressHT[2]='<#ByMonthPressHT mon=2>'; //February $ByMonthPressHT[3]='<#ByMonthPressHT mon=3>'; // March $ByMonthPressHT[4]='<#ByMonthPressHT mon=4>'; // April $ByMonthPressHT[5]='<#ByMonthPressHT mon=5>'; // May $ByMonthPressHT[6]='<#ByMonthPressHT mon=6>'; // June $ByMonthPressHT[7]='<#ByMonthPressHT mon=7>'; // July $ByMonthPressHT[8]='<#ByMonthPressHT mon=8>'; // August $ByMonthPressHT[9]='<#ByMonthPressHT mon=9>'; //September $ByMonthPressHT[10]='<#ByMonthPressHT mon=10>'; // October $ByMonthPressHT[11]='<#ByMonthPressHT mon=11>'; // November $ByMonthPressHT[12]='<#ByMonthPressHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthPressL=array(); $ByMonthPressL[0]=<#ByMonthPressL>; // defaults to current month $ByMonthPressL[1]=<#ByMonthPressL mon=1>; // January $ByMonthPressL[2]=<#ByMonthPressL mon=2>; //February $ByMonthPressL[3]=<#ByMonthPressL mon=3>; // March $ByMonthPressL[4]=<#ByMonthPressL mon=4>; // April $ByMonthPressL[5]=<#ByMonthPressL mon=5>; // May $ByMonthPressL[6]=<#ByMonthPressL mon=6>; // June $ByMonthPressL[7]=<#ByMonthPressL mon=7>; // July $ByMonthPressL[8]=<#ByMonthPressL mon=8>; // August $ByMonthPressL[9]=<#ByMonthPressL mon=9>; //September $ByMonthPressL[10]=<#ByMonthPressL mon=10>; // October $ByMonthPressL[11]=<#ByMonthPressL mon=11>; // November $ByMonthPressL[12]=<#ByMonthPressL mon=12>; //December // --------------------------------------------------------------------- $ByMonthPressLT=array(); $ByMonthPressLT[0]='<#ByMonthPressLT>'; // defaults to current month $ByMonthPressLT[1]='<#ByMonthPressLT mon=1>'; // January $ByMonthPressLT[2]='<#ByMonthPressLT mon=2>'; //February $ByMonthPressLT[3]='<#ByMonthPressLT mon=3>'; // March $ByMonthPressLT[4]='<#ByMonthPressLT mon=4>'; // April $ByMonthPressLT[5]='<#ByMonthPressLT mon=5>'; // May $ByMonthPressLT[6]='<#ByMonthPressLT mon=6>'; // June $ByMonthPressLT[7]='<#ByMonthPressLT mon=7>'; // July $ByMonthPressLT[8]='<#ByMonthPressLT mon=8>'; // August $ByMonthPressLT[9]='<#ByMonthPressLT mon=9>'; //September $ByMonthPressLT[10]='<#ByMonthPressLT mon=10>'; // October $ByMonthPressLT[11]='<#ByMonthPressLT mon=11>'; // November $ByMonthPressLT[12]='<#ByMonthPressLT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthRainRateH=array(); $ByMonthRainRateH[0]=<#ByMonthRainRateH>; // defaults to current month $ByMonthRainRateH[1]=<#ByMonthRainRateH mon=1>; // January $ByMonthRainRateH[2]=<#ByMonthRainRateH mon=2>; //February $ByMonthRainRateH[3]=<#ByMonthRainRateH mon=3>; // March $ByMonthRainRateH[4]=<#ByMonthRainRateH mon=4>; // April $ByMonthRainRateH[5]=<#ByMonthRainRateH mon=5>; // May $ByMonthRainRateH[6]=<#ByMonthRainRateH mon=6>; // June $ByMonthRainRateH[7]=<#ByMonthRainRateH mon=7>; // July $ByMonthRainRateH[8]=<#ByMonthRainRateH mon=8>; // August $ByMonthRainRateH[9]=<#ByMonthRainRateH mon=9>; //September $ByMonthRainRateH[10]=<#ByMonthRainRateH mon=10>; // October $ByMonthRainRateH[11]=<#ByMonthRainRateH mon=11>; // November $ByMonthRainRateH[12]=<#ByMonthRainRateH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthRainRateHT=array(); $ByMonthRainRateHT[0]='<#ByMonthRainRateHT>'; // defaults to current month $ByMonthRainRateHT[1]='<#ByMonthRainRateHT mon=1>'; // January $ByMonthRainRateHT[2]='<#ByMonthRainRateHT mon=2>'; //February $ByMonthRainRateHT[3]='<#ByMonthRainRateHT mon=3>'; // March $ByMonthRainRateHT[4]='<#ByMonthRainRateHT mon=4>'; // April $ByMonthRainRateHT[5]='<#ByMonthRainRateHT mon=5>'; // May $ByMonthRainRateHT[6]='<#ByMonthRainRateHT mon=6>'; // June $ByMonthRainRateHT[7]='<#ByMonthRainRateHT mon=7>'; // July $ByMonthRainRateHT[8]='<#ByMonthRainRateHT mon=8>'; // August $ByMonthRainRateHT[9]='<#ByMonthRainRateHT mon=9>'; //September $ByMonthRainRateHT[10]='<#ByMonthRainRateHT mon=10>'; // October $ByMonthRainRateHT[11]='<#ByMonthRainRateHT mon=11>'; // November $ByMonthRainRateHT[12]='<#ByMonthRainRateHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthTempH=array(); $ByMonthTempH[0]=<#ByMonthTempH>; // defaults to current month $ByMonthTempH[1]=<#ByMonthTempH mon=1>; // January $ByMonthTempH[2]=<#ByMonthTempH mon=2>; //February $ByMonthTempH[3]=<#ByMonthTempH mon=3>; // March $ByMonthTempH[4]=<#ByMonthTempH mon=4>; // April $ByMonthTempH[5]=<#ByMonthTempH mon=5>; // May $ByMonthTempH[6]=<#ByMonthTempH mon=6>; // June $ByMonthTempH[7]=<#ByMonthTempH mon=7>; // July $ByMonthTempH[8]=<#ByMonthTempH mon=8>; // August $ByMonthTempH[9]=<#ByMonthTempH mon=9>; //September $ByMonthTempH[10]=<#ByMonthTempH mon=10>; // October $ByMonthTempH[11]=<#ByMonthTempH mon=11>; // November $ByMonthTempH[12]=<#ByMonthTempH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthTempHT=array(); $ByMonthTempHT[0]='<#ByMonthTempHT>'; // defaults to current month $ByMonthTempHT[1]='<#ByMonthTempHT mon=1>'; // January $ByMonthTempHT[2]='<#ByMonthTempHT mon=2>'; //February $ByMonthTempHT[3]='<#ByMonthTempHT mon=3>'; // March $ByMonthTempHT[4]='<#ByMonthTempHT mon=4>'; // April $ByMonthTempHT[5]='<#ByMonthTempHT mon=5>'; // May $ByMonthTempHT[6]='<#ByMonthTempHT mon=6>'; // June $ByMonthTempHT[7]='<#ByMonthTempHT mon=7>'; // July $ByMonthTempHT[8]='<#ByMonthTempHT mon=8>'; // August $ByMonthTempHT[9]='<#ByMonthTempHT mon=9>'; //September $ByMonthTempHT[10]='<#ByMonthTempHT mon=10>'; // October $ByMonthTempHT[11]='<#ByMonthTempHT mon=11>'; // November $ByMonthTempHT[12]='<#ByMonthTempHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthTempL=array(); $ByMonthTempL[0]=<#ByMonthTempL>; // defaults to current month $ByMonthTempL[1]=<#ByMonthTempL mon=1>; // January $ByMonthTempL[2]=<#ByMonthTempL mon=2>; //February $ByMonthTempL[3]=<#ByMonthTempL mon=3>; // March $ByMonthTempL[4]=<#ByMonthTempL mon=4>; // April $ByMonthTempL[5]=<#ByMonthTempL mon=5>; // May $ByMonthTempL[6]=<#ByMonthTempL mon=6>; // June $ByMonthTempL[7]=<#ByMonthTempL mon=7>; // July $ByMonthTempL[8]=<#ByMonthTempL mon=8>; // August $ByMonthTempL[9]=<#ByMonthTempL mon=9>; //September $ByMonthTempL[10]=<#ByMonthTempL mon=10>; // October $ByMonthTempL[11]=<#ByMonthTempL mon=11>; // November $ByMonthTempL[12]=<#ByMonthTempL mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthWindHT=array(); $ByMonthWindHT[0]='<#ByMonthWindHT>'; // defaults to current month $ByMonthWindHT[1]='<#ByMonthWindHT mon=1>'; // January $ByMonthWindHT[2]='<#ByMonthWindHT mon=2>'; //February $ByMonthWindHT[3]='<#ByMonthWindHT mon=3>'; // March $ByMonthWindHT[4]='<#ByMonthWindHT mon=4>'; // April $ByMonthWindHT[5]='<#ByMonthWindHT mon=5>'; // May $ByMonthWindHT[6]='<#ByMonthWindHT mon=6>'; // June $ByMonthWindHT[7]='<#ByMonthWindHT mon=7>'; // July $ByMonthWindHT[8]='<#ByMonthWindHT mon=8>'; // August $ByMonthWindHT[9]='<#ByMonthWindHT mon=9>'; //September $ByMonthWindHT[10]='<#ByMonthWindHT mon=10>'; // October $ByMonthWindHT[11]='<#ByMonthWindHT mon=11>'; // November $ByMonthWindHT[12]='<#ByMonthWindHT mon=12>'; //December // ------------------------------------------------------------------------------------------------ $ByMonthWindRunH=array(); $ByMonthWindRunH[0]=<#ByMonthWindRunH>; // defaults to current month $ByMonthWindRunH[1]=<#ByMonthWindRunH mon=1>; // January $ByMonthWindRunH[2]=<#ByMonthWindRunH mon=2>; //February $ByMonthWindRunH[3]=<#ByMonthWindRunH mon=3>; // March $ByMonthWindRunH[4]=<#ByMonthWindRunH mon=4>; // April $ByMonthWindRunH[5]=<#ByMonthWindRunH mon=5>; // May $ByMonthWindRunH[6]=<#ByMonthWindRunH mon=6>; // June $ByMonthWindRunH[7]=<#ByMonthWindRunH mon=7>; // July $ByMonthWindRunH[8]=<#ByMonthWindRunH mon=8>; // August $ByMonthWindRunH[9]=<#ByMonthWindRunH mon=9>; //September $ByMonthWindRunH[10]=<#ByMonthWindRunH mon=10>; // October $ByMonthWindRunH[11]=<#ByMonthWindRunH mon=11>; // November $ByMonthWindRunH[12]=<#ByMonthWindRunH mon=12>; //December // ------------------------------------------------------------------------------------------------ $ByMonthWindRunHT=array(); $ByMonthWindRunHT[0]='<#ByMonthWindRunHT>'; // defaults to current month $ByMonthWindRunHT[1]='<#ByMonthWindRunHT mon=1>'; // January $ByMonthWindRunHT[2]='<#ByMonthWindRunHT mon=2>'; //February $ByMonthWindRunHT[3]='<#ByMonthWindRunHT mon=3>'; // March $ByMonthWindRunHT[4]='<#ByMonthWindRunHT mon=4>'; // April $ByMonthWindRunHT[5]='<#ByMonthWindRunHT mon=5>'; // May $ByMonthWindRunHT[6]='<#ByMonthWindRunHT mon=6>'; // June $ByMonthWindRunHT[7]='<#ByMonthWindRunHT mon=7>'; // July $ByMonthWindRunHT[8]='<#ByMonthWindRunHT mon=8>'; // August $ByMonthWindRunHT[9]='<#ByMonthWindRunHT mon=9>'; //September $ByMonthWindRunHT[10]='<#ByMonthWindRunHT mon=10>'; // October $ByMonthWindRunHT[11]='<#ByMonthWindRunHT mon=11>'; // November $ByMonthWindRunHT[12]='<#ByMonthWindRunHT mon=12>'; //December // -------------------------------------------------------------------------------- # ordinary web tags again $chillhours=<#chillhours>; $cloudbase='<#cloudbase>'; $cloudbaseunit='<#cloudbaseunit>'; $cloudbasevalue=<#cloudbasevalue>; $ConsecutiveDryDays=<#ConsecutiveDryDays>; $ConsecutiveRainDays=<#ConsecutiveRainDays>; $cooldegdays=<#cooldegdays>; $cooldegdaysY=<#cooldegdaysY>; $CpuCount=<#CpuCount>; $CpuName='<#CpuName>'; $cumulusforecast='<#cumulusforecast>'; $cumulusforecastenc='<#cumulusforecastenc>'; $currcond='<#currcond>'; $currcondenc='<#currcondenc>'; $CurrentSolarMax=<#CurrentSolarMax>; $currentwdir='<#currentwdir>'; $dailygraphperiod=<#dailygraphperiod>; $DataStopped=<#DataStopped>; $date='<#date>'; $DavisFirmwareVersion='<#DavisFirmwareVersion>'; // does not apply to all weather station types $DavisMaxInARow='<#DavisMaxInARow>'; // does not apply to all weather station types $DavisNumberOfResynchs='<#DavisNumberOfResynchs>'; // does not apply to all weather station types $DavisNumCRCerrors='<#DavisNumCRCerrors>'; // does not apply to all weather station types $DavisTotalPacketsMissed='<#DavisTotalPacketsMissed>'; // does not apply to all weather station types $DavisTotalPacketsReceived='<#DavisTotalPacketsReceived>'; // does not apply to all weather station types $dawn='<#dawn>'; $day=<#day>; $daylength='<#daylength>'; $daylightlength='<#daylightlength>'; $dayname='<#dayname>'; $DaysSince30Dec1899=<#DaysSince30Dec1899>; $DaysSinceRecordsBegan=<#DaysSinceRecordsBegan>; $dew=<#dew>; $dewpointH=<#dewpointH>; $dewpointL=<#dewpointL>; $dewpointTH=<#dewpointTH>; $dewpointTL=<#dewpointTL>; $dewpointYH=<#dewpointYH>; $dewpointYL=<#dewpointYL>; $DiskFree='<#DiskFree>'; $DiskSize='<#DiskSize>'; $DisplayMode='<#DisplayMode>'; $domwindbearing=<#domwindbearing>; $domwindbearingY=<#domwindbearingY>; $domwinddir='<#domwinddir>'; $domwinddirY='<#domwinddirY>'; $dusk='<#dusk>'; $ErrorLight=<#ErrorLight>; $ET=<#ET>; // does not apply to all weather station types $ExtraDP1=<#ExtraDP1>; $ExtraDP10=<#ExtraDP10>; $ExtraDP2=<#ExtraDP2>; $ExtraDP3=<#ExtraDP3>; $ExtraDP4=<#ExtraDP4>; $ExtraDP5=<#ExtraDP5>; $ExtraDP6=<#ExtraDP6>; $ExtraDP7=<#ExtraDP7>; $ExtraDP8=<#ExtraDP8>; $ExtraDP9=<#ExtraDP9>; $ExtraHum1=<#ExtraHum1>; $ExtraHum10=<#ExtraHum10>; $ExtraHum2=<#ExtraHum2>; $ExtraHum3=<#ExtraHum3>; $ExtraHum4=<#ExtraHum4>; $ExtraHum5=<#ExtraHum5>; $ExtraHum6=<#ExtraHum6>; $ExtraHum7=<#ExtraHum7>; $ExtraHum8=<#ExtraHum8>; $ExtraHum9=<#ExtraHum9>; $ExtraTemp1=<#ExtraTemp1>; $ExtraTemp10=<#ExtraTemp10>; $ExtraTemp2=<#ExtraTemp2>; $ExtraTemp3=<#ExtraTemp3>; $ExtraTemp4=<#ExtraTemp4>; $ExtraTemp5=<#ExtraTemp5>; $ExtraTemp6=<#ExtraTemp6>; $ExtraTemp7=<#ExtraTemp7>; $ExtraTemp8=<#ExtraTemp8>; $ExtraTemp9=<#ExtraTemp9>; $forecast='<#forecast>'; $forecastenc='<#forecastenc>'; $forecastnumber=<#forecastnumber>; $forum='<#forum>'; $graphperiod=<#graphperiod>; $gustM=<#gustM>; $heatdegdays=<#heatdegdays>; $heatdegdaysY=<#heatdegdaysY>; $heatindex=<#heatindex>; $heatindexH=<#heatindexH>; $heatindexTH=<#heatindexTH>; $heatindexYH=<#heatindexYH>; $HighAppTempRecordSet=<#HighAppTempRecordSet>; $HighDailyRainRecordSet=<#HighDailyRainRecordSet>; $HighDailyTempRange=<#HighDailyTempRange>; $HighDewPointRecordSet=<#HighDewPointRecordSet>; $HighHeatIndexRecordSet=<#HighHeatIndexRecordSet>; $HighHourlyRainRecordSet=<#HighHourlyRainRecordSet>; $HighHumidityRecordSet=<#HighHumidityRecordSet>; $HighMinTempRecordSet=<#HighMinTempRecordSet>; $HighMonthlyRainRecordSet=<#HighMonthlyRainRecordSet>; $HighPressAlarm=<#HighPressAlarm>; $HighPressureRecordSet=<#HighPressureRecordSet>; $HighRainRateAlarm=<#HighRainRateAlarm>; $HighRainRateRecordSet=<#HighRainRateRecordSet>; $HighRainTodayAlarm=<#HighRainTodayAlarm>; $HighTempAlarm=<#HighTempAlarm>; $HighTempRangeRecordSet=<#HighTempRangeRecordSet>; $HighTempRecordSet=<#HighTempRecordSet>; $HighWindGustAlarm=<#HighWindGustAlarm>; $HighWindGustRecordSet=<#HighWindGustRecordSet>; $HighWindrunRecordSet=<#HighWindrunRecordSet>; $HighWindSpeedAlarm=<#HighWindSpeedAlarm>; $HighWindSpeedRecordSet=<#HighWindSpeedRecordSet>; $hour=<#hour>; $hourlyrainTH=<#hourlyrainTH>; $hourlyrainYH=<#hourlyrainYH>; $hum=<#hum>; $humH=<#humH>; $humidex=<#humidex>; $HumidityRecordSet=<#HumidityRecordSet>; $humL=<#humL>; $humTH=<#humTH>; $humTL=<#humTL>; $humYH=<#humYH>; $humYL=<#humYL>; $inhum=<#inhum>; $intemp=<#intemp>; $interval=<#interval>; $isdaylight=<#isdaylight>; $IsFreezing=<#IsFreezing>; $IsRaining=<#IsRaining>; $IsSunny=<#IsSunny>; // does not apply to all weather station types $IsSunUp=<#IsSunUp>; $LastDataReadT='<#LastDataReadT>'; $LastRainTipISO='<#LastRainTipISO>'; $LatestError='<#LatestError>'; $LatestErrorDate='<#LatestErrorDate>'; $LatestErrorTime='<#LatestErrorTime>'; $LatestNOAAMonthlyReport='<#LatestNOAAMonthlyReport>'; $LatestNOAAYearlyReport='<#LatestNOAAYearlyReport>'; $latitude=<#latitude dp=5>; $LeafTemp1=<#LeafTemp1>; // does not apply to all weather station types $LeafTemp2=<#LeafTemp2>; // does not apply to all weather station types $LeafWetness1=<#LeafWetness1>; // does not apply to all weather station types $LeafWetness2=<#LeafWetness2>; // does not apply to all weather station types $Light=<#Light>; $location="<#location>"; $LongestDryPeriod=<#LongestDryPeriod>; $LongestDryPeriodRecordSet=<#LongestDryPeriodRecordSet>; $LongestWetPeriod=<#LongestWetPeriod>; $LongestWetPeriodRecordSet=<#LongestWetPeriodRecordSet>; $longitude=<#longitude dp=5>; $longlocation="<#longlocation>"; $LowAppTempRecordSet=<#LowAppTempRecordSet>; $LowDailyTempRange=<#LowDailyTempRange>; $LowDewPointRecordSet=<#LowDewPointRecordSet>; $LowHumidityRecordSet=<#LowHumidityRecordSet>; $LowMaxTempRecordSet=<#LowMaxTempRecordSet>; $LowPressAlarm=<#LowPressAlarm>; $LowPressureRecordSet=<#LowPressureRecordSet>; $LowTempAlarm=<#LowTempAlarm>; $LowTempRangeRecordSet=<#LowTempRangeRecordSet>; $LowTempRecordSet=<#LowTempRecordSet>; $LowWindChillRecordSet=<#LowWindChillRecordSet>; $maxtempL=<#maxtempL>; $MemoryStatus='<#MemoryStatus>'; $metdate='<#metdate>'; $metdateyesterday='<#metdateyesterday>'; $mintempH=<#mintempH>; $minute=<#minute>; $MinutesSinceLastRainTip=<#MinutesSinceLastRainTip>; $month='<#month>'; $MonthAppTempH=<#MonthAppTempH>; $MonthAppTempHD='<#MonthAppTempHD>'; $MonthAppTempHT='<#MonthAppTempHT>'; $MonthAppTempL=<#MonthAppTempL>; $MonthAppTempLD='<#MonthAppTempLD>'; $MonthAppTempLT='<#MonthAppTempLT>'; $MonthDailyRainH=<#MonthDailyRainH>; $MonthDailyRainHD='<#MonthDailyRainHD>'; $MonthDewPointH=<#MonthDewPointH>; $MonthDewPointHD='<#MonthDewPointHD>'; $MonthDewPointHT='<#MonthDewPointHT>'; $MonthDewPointL=<#MonthDewPointL>; $MonthDewPointLD='<#MonthDewPointLD>'; $MonthDewPointLT='<#MonthDewPointLT>'; $MonthGustH=<#MonthGustH>; $MonthGustHD='<#MonthGustHD>'; $MonthGustHT='<#MonthGustHT>'; $MonthHeatIndexH=<#MonthHeatIndexH>; $MonthHeatIndexHD='<#MonthHeatIndexHD>'; $MonthHeatIndexHT='<#MonthHeatIndexHT>'; $MonthHighDailyTempRange=<#MonthHighDailyTempRange>; $MonthHighDailyTempRangeD='<#MonthHighDailyTempRangeD>'; $MonthHourlyRainH=<#MonthHourlyRainH>; $MonthHourlyRainHD='<#MonthHourlyRainHD>'; $MonthHourlyRainHT='<#MonthHourlyRainHT>'; $MonthHumH=<#MonthHumH>; $MonthHumHD='<#MonthHumHD>'; $MonthHumHT='<#MonthHumHT>'; $MonthHumL=<#MonthHumL>; $MonthHumLD='<#MonthHumLD>'; $MonthHumLT='<#MonthHumLT>'; $MonthLongestDryPeriod=<#MonthLongestDryPeriod>; $MonthLongestDryPeriodD='<#MonthLongestDryPeriodD>'; $MonthLongestWetPeriod=<#MonthLongestWetPeriod>; $MonthLongestWetPeriodD='<#MonthLongestWetPeriodD>'; $MonthLowDailyTempRange=<#MonthLowDailyTempRange>; $MonthLowDailyTempRangeD='<#MonthLowDailyTempRangeD>'; $MonthMaxTempL='<#MonthMaxTempL>'; $MonthMaxTempLD='<#MonthMaxTempLD>'; $MonthMinTempH='<#MonthMinTempH>'; $MonthMinTempHD='<#MonthMinTempHD>'; $monthname='<#monthname>'; $MonthPressH=<#MonthPressH>; $MonthPressHD='<#MonthPressHD>'; $MonthPressHT='<#MonthPressHT>'; $MonthPressL=<#MonthPressL>; $MonthPressLD='<#MonthPressLD>'; $MonthPressLT='<#MonthPressLT>'; $MonthRainRateH=<#MonthRainRateH>; $MonthRainRateHD='<#MonthRainRateHD>'; $MonthRainRateHT='<#MonthRainRateHT>'; $MonthTempH=<#MonthTempH>; $MonthTempHD='<#MonthTempHD>'; $MonthTempHT='<#MonthTempHT>'; $MonthTempL=<#MonthTempL>; $MonthTempLD='<#MonthTempLD>'; $MonthTempLT='<#MonthTempLT>'; $MonthWChillL=<#MonthWChillL>; $MonthWChillLD='<#MonthWChillLD>'; $MonthWChillLT='<#MonthWChillLT>'; $MonthWindH=<#MonthWindH>; $MonthWindHD='<#MonthWindHD>'; $MonthWindHT='<#MonthWindHT>'; $MonthWindRunH=<#MonthWindRunH>; $MonthWindRunHD='<#MonthWindRunHD>'; $MoonAge=<#MoonAge>; $MoonPercent=<#MoonPercent>; $MoonPercentAbs=<#MoonPercentAbs>; $moonphase='<#moonphase>'; $moonrise='<#moonrise>'; $moonset='<#moonset>'; $newrecord=<#newrecord>; $nextwindindex=<#nextwindindex>; $OsLanguage='<#OsLanguage>'; $OsVersion='<#OsVersion>'; $press=<#press>; $PressChangeDownAlarm=<#PressChangeDownAlarm>; $PressChangeUpAlarm=<#PressChangeUpAlarm>; $pressH=<#pressH>; $pressL=<#pressL>; $pressTH=<#pressTH>; $pressTL=<#pressTL>; $presstrend='<#presstrend>'; $presstrendenglish='<#presstrendenglish>'; $presstrendval=<#presstrendval>; $pressunit='<#pressunit>'; $PressureRecordSet=<#PressureRecordSet>; $pressYH=<#pressYH>; $pressYL=<#pressYL>; $ProgramUpTime='<#ProgramUpTime>'; $r24hour=<#r24hour>; $RainRecordSet=<#RainRecordSet>; $rainunit='<#rainunit>'; $RCapptempTH=<#RCapptempTH>; $RCapptempTL=<#RCapptempTL>; $RCdew=<#RCdew>; $RCdewpointTH=<#RCdewpointTH>; $RCdewpointTL=<#RCdewpointTL>; $RCheatindex=<#RCheatindex>; $RCheatindexTH=<#RCheatindexTH>; $RChum=<#RChum>; $RCinhum=<#RCinhum>; $RCintemp=<#RCintemp>; $RCpress=<#RCpress>; $RCpressTH=<#RCpressTH>; $RCpressTL=<#RCpressTL>; $RCrfall=<#RCrfall>; $RCrrate=<#RCrrate>; $RCrrateTM=<#RCrrateTM>; $RCtemp=<#RCtemp>; $RCtempTH=<#RCtempTH>; $RCtempTL=<#RCtempTL>; $RCwchill=<#RCwchill>; $RCwchillTL=<#RCwchillTL>; $RCwgust=<#RCwgust>; $RCwgustTM=<#RCwgustTM>; $RCwlatest=<#RCwlatest>; $RCwspeed=<#RCwspeed>; $realtimeinterval=<#realtimeinterval>; $recordsbegandate='<#recordsbegandate>'; $rfall=<#rfall>; $rfallH=<#rfallH>; $rfallhH=<#rfallhH>; $rfallmH=<#rfallmH>; $rfallY=<#rfallY>; $RG11RainToday=<#RG11RainToday>; $RG11RainYest=<#RG11RainYest>; $rhour=<#rhour>; $rmidnight=<#rmidnight>; $rmonth=<#rmonth>; $rollovertime='<#rollovertime>'; $rrate=<#rrate>; $rrateM=<#rrateM>; $rrateTM=<#rrateTM>; $rrateYM=<#rrateYM>; $ryear=<#ryear>; $SensorContactLost=<#SensorContactLost>; // does not apply to all weather station types $shortdayname='<#shortdayname>'; $shortmonthname='<#shortmonthname>'; $shortyear='<#shortyear>'; $snowdepth=<#snowdepth>; $SoilMoisture1=<#SoilMoisture1>; $SoilMoisture2=<#SoilMoisture2>; $SoilMoisture3=<#SoilMoisture3>; $SoilMoisture4=<#SoilMoisture4>; $SoilTemp1=<#SoilTemp1>; $SoilTemp2=<#SoilTemp2>; $SoilTemp3=<#SoilTemp3>; $SoilTemp4=<#SoilTemp4>; $SolarRad=<#SolarRad>; // does not apply to all weather station types $solarTH=<#solarTH>; // does not apply to all weather station types $solarYH=<#solarYH>; // does not apply to all weather station types $stationtype='<#stationtype>'; $StormRain=<#StormRain>; // does not apply to all weather station types $StormRainStart='<#StormRainStart>'; // does not apply to all weather station types $sunrise='<#sunrise>'; $sunset='<#sunset>'; $SunshineHours='<#SunshineHours>'; $SystemUpTime='<#SystemUpTime>'; $TapptempH='<#TapptempH>'; $TapptempL='<#TapptempL>'; $TapptempTH='<#TapptempTH>'; $TapptempTL='<#TapptempTL>'; $TapptempYH='<#TapptempYH>'; $TapptempYL='<#TapptempYL>'; $Tbeaudesc='<#Tbeaudesc>'; $Tbeaufort='<#Tbeaufort>'; $Tbeaufortnumber=<#Tbeaufortnumber>; $TdewpointH='<#TdewpointH>'; $TdewpointL='<#TdewpointL>'; $TdewpointTH='<#TdewpointTH>'; $TdewpointTL='<#TdewpointTL>'; $TdewpointYH='<#TdewpointYH>'; $TdewpointYL='<#TdewpointYL>'; $temp=<#temp>; $TempChangeDownAlarm=<#TempChangeDownAlarm>; $TempChangeLastHour=<#TempChangeLastHour>; $TempChangeUpAlarm=<#TempChangeUpAlarm>; $tempH=<#tempH>; $tempL=<#tempL>; $temprange=<#temprange>; $temprangeY=<#temprangeY>; $TempRecordSet=<#TempRecordSet>; $tempTH=<#tempTH>; $tempTL=<#tempTL>; $temptrend=<#temptrend>; $temptrendenglish='<#temptrendenglish>'; $temptrendtext='<#temptrendtext>'; $tempunit='<#tempunit>'; $tempunitnodeg='<#tempunitnodeg>'; $tempYH=<#tempYH>; $tempYL=<#tempYL>; $TgustM='<#TgustM>'; $TheatindexH='<#TheatindexH>'; $TheatindexTH='<#TheatindexTH>'; $TheatindexYH='<#TheatindexYH>'; $THighDailyTempRange='<#THighDailyTempRange>'; $ThourlyrainTH='<#ThourlyrainTH>'; $ThourlyrainYH='<#ThourlyrainYH>'; $THSWindex='<#THSWindex>'; $ThumH='<#ThumH>'; $ThumL='<#ThumL>'; $ThumTH='<#ThumTH>'; $ThumTL='<#ThumTL>'; $ThumYH='<#ThumYH>'; $ThumYL='<#ThumYL>'; $THWindex='<#THWindex>'; $time='<#time>'; $timehhmmss='<#timehhmmss>'; $timeUTC='<#timeUTC>'; $TLongestDryPeriod='<#TLongestDryPeriod>'; $TLongestWetPeriod='<#TLongestWetPeriod>'; $TLowDailyTempRange='<#TLowDailyTempRange>'; $TmaxtempL='<#TmaxtempL>'; $TmintempH='<#TmintempH>'; $tomorrowdaylength='<#tomorrowdaylength>'; $TpressH='<#TpressH>'; $TpressL='<#TpressL>'; $TpressTH='<#TpressTH>'; $TpressTL='<#TpressTL>'; $TpressYH='<#TpressYH>'; $TpressYL='<#TpressYL>'; $TrfallH='<#TrfallH>'; $TrfallhH='<#TrfallhH>'; $TrfallmH='<#TrfallmH>'; $TrrateM='<#TrrateM>'; $TrrateTM='<#TrrateTM>'; $TrrateYM='<#TrrateYM>'; $TsolarTH='<#TsolarTH>'; // does not apply to all weather station types $TsolarYH='<#TsolarYH>'; // does not apply to all weather station types $TtempH='<#TtempH>'; $TtempL='<#TtempL>'; $TtempTH='<#TtempTH>'; $TtempTL='<#TtempTL>'; $TtempYH='<#TtempYH>'; $TtempYL='<#TtempYL>'; $TUVTH='<#TUVTH>'; // does not apply to all weather station types $TUVYH='<#TUVYH>'; // does not apply to all weather station types $TwchillH='<#TwchillH>'; $TwchillTL='<#TwchillTL>'; $TwchillYL='<#TwchillYL>'; $TwgustTM='<#TwgustTM>'; $TwgustYM='<#TwgustYM>'; $TwindrunH='<#TwindrunH>'; $TwindTM='<#TwindTM>'; $TwindYM='<#TwindYM>'; $TwspeedH='<#TwspeedH>'; $txbattery='<#txbattery>'; // does not apply to all weather station types $update='<#update>'; $UV=<#UV>; // does not apply to all weather station types $UVTH=<#UVTH>; // does not apply to all weather station types $UVYH=<#UVYH>; // does not apply to all weather station types $version='<#version>'; $wchill=<#wchill>; $wchillH=<#wchillH>; $wchillTL=<#wchillTL>; $wchillYL=<#wchillYL>; $wdir='<#wdir>'; $wdirdata=[<#wdirdata>]; $webcam='<#webcam>'; $wetbulb=<#wetbulb>; $wgust=<#wgust>; $wgustTM=<#wgustTM>; $wgustYM=<#wgustYM>; $WindRecordSet=<#WindRecordSet>; $WindRoseData=[<#WindRoseData>]; $WindRosePoints=<#WindRosePoints>; $windrun=<#windrun>; $windrunH=<#windrunH>; $windrununit='<#windrununit>'; $windrunY=<#windrunY>; $WindSampleCount=<#WindSampleCount>; $windTM=<#windTM>; $windunit='<#windunit>'; $windYM=<#windYM>; $wlatest=<#wlatest>; $wsforecast='<#wsforecast>'; $wsforecastenc='<#wsforecastenc>'; $wspddata=[<#wspddata>]; $wspeed=<#wspeed>; $wspeedH=<#wspeedH>; $Ybeaudesc='<#Ybeaudesc>'; $Ybeaufort='<#Ybeaufort>'; $Ybeaufortnumber=<#Ybeaufortnumber>; $year=<#year>; $YearAppTempH=<#YearAppTempH>; $YearAppTempHD='<#YearAppTempHD>'; $YearAppTempHT='<#YearAppTempHT>'; $YearAppTempL=<#YearAppTempL>; $YearAppTempLD='<#YearAppTempLD>'; $YearAppTempLT='<#YearAppTempLT>'; $YearDailyRainH=<#YearDailyRainH>; $YearDailyRainHD='<#YearDailyRainHD>'; $YearDewPointH=<#YearDewPointH>; $YearDewPointHD='<#YearDewPointHD>'; $YearDewPointHT='<#YearDewPointHT>'; $YearDewPointL=<#YearDewPointL>; $YearDewPointLD='<#YearDewPointLD>'; $YearDewPointLT='<#YearDewPointLT>'; $YearGustH=<#YearGustH>; $YearGustHD='<#YearGustHD>'; $YearGustHT='<#YearGustHT>'; $YearHeatIndexH=<#YearHeatIndexH>; $YearHeatIndexHD='<#YearHeatIndexHD>'; $YearHeatIndexHT='<#YearHeatIndexHT>'; $YearHighDailyTempRange=<#YearHighDailyTempRange>; $YearHighDailyTempRangeD='<#YearHighDailyTempRangeD>'; $YearHourlyRainH=<#YearHourlyRainH>; $YearHourlyRainHD='<#YearHourlyRainHD>'; $YearHourlyRainHT='<#YearHourlyRainHT>'; $YearHumH=<#YearHumH>; $YearHumHD='<#YearHumHD>'; $YearHumHT='<#YearHumHT>'; $YearHumL=<#YearHumL>; $YearHumLD='<#YearHumLD>'; $YearHumLT='<#YearHumLT>'; $YearLongestDryPeriod=<#YearLongestDryPeriod>; $YearLongestDryPeriodD='<#YearLongestDryPeriodD>'; $YearLongestWetPeriod=<#YearLongestWetPeriod>; $YearLongestWetPeriodD='<#YearLongestWetPeriodD>'; $YearLowDailyTempRange=<#YearLowDailyTempRange>; $YearLowDailyTempRangeD='<#YearLowDailyTempRangeD>'; $YearMaxTempL=<#YearMaxTempL>; $YearMaxTempLD='<#YearMaxTempLD>'; $YearMinTempH=<#YearMinTempH>; $YearMinTempHD='<#YearMinTempHD>'; $YearMonthlyRainH=<#YearMonthlyRainH>; $YearMonthlyRainHD='<#YearMonthlyRainHD>'; $YearPressH=<#YearPressH>; $YearPressHD='<#YearPressHD>'; $YearPressHT='<#YearPressHT>'; $YearPressL=<#YearPressL>; $YearPressLD='<#YearPressLD>'; $YearPressLT='<#YearPressLT>'; $YearRainRateH=<#YearRainRateH>; $YearRainRateHD='<#YearRainRateHD>'; $YearRainRateHT='<#YearRainRateHT>'; $YearTempH=<#YearTempH>; $YearTempHD='<#YearTempHD>'; $YearTempHT='<#YearTempHT>'; $YearTempL=<#YearTempL>; $YearTempLD='<#YearTempLD>'; $YearTempLT='<#YearTempLT>'; $YearWChillL=<#YearWChillL>; $YearWChillLD='<#YearWChillLD>'; $YearWChillLT='<#YearWChillLT>'; $YearWindH=<#YearWindH>; $YearWindHD='<#YearWindHD>'; $YearWindHT='<#YearWindHT>'; $YearWindRunH=<#YearWindRunH>; $YearWindRunHD='<#YearWindRunHD>'; $yesterday='<#yesterday>'; $YSunshineHours=<#YSunshineHours>; // does not apply to all weather station types // ------------------------------------------------------------- # The following recent tags require a parameter, so you need to decide what parameters you may need in your web pages when you use each of these // The examples shows 3 hours ago $RecentTS='<#RecentTS h=3>'; $RecentDewPoint=<#RecentDewPoint h=3>; $RCRecentDewPoint=<#RCRecentDewPoint h=3>; $RecentHeatIndex=<#RecentHeatIndex h=3>; $RCRecentHeatIndex=<#RCRecentHeatIndex h=3>; $RecentHumidity=<#RecentHumidity h=3>; $RecentOutsideTemp=<#RecentOutsideTemp h=3>; $RCRecentOutsideTemp=<#RCRecentOutsideTemp h=3>; $RecentPressure=<#RecentPressure h=3>; $RCRecentPressure=<#RCRecentPressure h=3>; $RecentRainToday=<#RecentRainToday h=3>; $RCRecentRainToday=<#RCRecentRainToday h=3>; $RecentSolarRad=<#RecentSolarRad h=3>; $RecentUV=<#RecentUV h=3>; $RCRecentUV=<#RCRecentUV h=3>; $RecentWindAvgDir=<#RecentWindAvgDir h=3>; $RecentWindChill=<#RecentWindChill h=3>; $RCRecentWindChill=<#RCRecentWindChill h=3>; $RecentWindDir=<#RecentWindDir h=3>; $RecentWindGust=<#RecentWindGust h=3>; $RCRecentWindGust=<#RCRecentWindGust h=3>; $RecentWindLatest=<#RecentWindLatest h=3>; $RCRecentWindLatest=<#RCRecentWindLatest h=3>; $RecentWindSpeed=<#RecentWindSpeed h=3>; $RCRecentWindSpeed=<#RCRecentWindSpeed h=3>; // ===================================================================== // # See ”http://wiki.sandaysoft.com/a/Webtags” for descriptions for tags # Some tags accept date and/or time format, or other selection modifiers # (no indication is given in this list of what parameters are allowed in each case) # The recent tags do not work without a parameter, so have 'h=3' just as an example # The By month tags are an array with elements representing the most usual parameters # (however by month time-stamps will accept date and time format parameters as well) # See wiki for more information on what parameters can optionally be added to tags ?>