../testtags.php - dated: Mar 20 2023 7:00 pm
1 | <?php
2 | // converted tagslist.txt to .\tagslist.php for php tags
3 | // by gen-PHP-tagslist.pl - Version 1.00 - 07-Apr-2006
4 | // Author: Ken True - webmaster-weather.org
5 | // Edited: 20-Apr-2006 to trim unused tags
6 | // Version 1.01 - 25-Jan-2008 -- added Windy-rain to icon list
7 | // Version 1.02 - 24-Jun-2008 -- added variables to replace old trends-inc.html with trends-inc.php
8 | // Version 1.03 - 27-Oct-2008 -- added Snow and WU almanac variables
9 | // Version 1.04 - 03-Jun-2009 -- added moonrisedate/moonsetdate for wxastronomy.php
10 | // Version 1.05 - 11-Jul-2009 -- added tags for printable flyer, alternative dashboard, high/low/avg plugins
11 | // Thanks to Mike and Scott for their permission to add the above tags!
12 | // Version 1.06 - 12-Jul-2009 -- added tags for V4.0 of alternative dashboard
13 | // Version 1.07 - 23-Jul-2011 -- added support for multiple plugin scripts for WD - see comments for supported scripts
14 | // Version 1.08 - 04-Aug-2012 -- added support for monthly average tags
15 | /*
16 | 1.07 includes support for:
17 |
18 | WebsterWeather: http://www.websterweatherlive.com/wxScripts.php
19 | Alt-Dashboard 4.xx Script (Pre-Rainer's JavaScript) V4.30 18-FEB-2011
20 | Alt-Dashboard 5.xx Script V5.20 18-FEB-2011
21 | UpdatedAlt-Dashboard 6.xx Script V6.20 27-JUN-2011
22 | UpdatedMOBILE Dashboard 1.xx Script V1.30 15-JUL-2011
23 | High/Low/Averages Script Ver 3 Ajax-PHP Template Only V3.01 25-MAR-2011
24 |
25 | 642weather (MChallis) http://www.642weather.com/weather/scripts-printable-flyer.php
26 | Printable Flyer Add-on for WD/PHP/AJAX Website Template V1.12 06-Nov-2009
27 |
28 | Eastmasonville http://eastmasonvilleweather.com/downloads.php
29 | Station Records (wxrecords) V1.13 - 24-May-2011
30 |
31 | Relayweather http://www.relayweather.com/downloads.php
32 | Temperature and Rain Trending (wxglobalwarming) V1.0 20-Jan-2010
33 |
34 | end of 1.07 update description
35 | */
36 | // --------------------------------------------------------------------------
37 | // allow viewing of generated source
38 |
39 | if ( isset($_REQUEST['sce']) && strtolower($_REQUEST['sce']) == 'view' ) {
40 | //--self downloader --
41 | $filenameReal = __FILE__;
42 | $download_size = filesize($filenameReal);
43 | header('Pragma: public');
44 | header('Cache-Control: private');
45 | header('Cache-Control: no-cache, must-revalidate');
46 | header('Content-type: text/plain');
47 | header('Accept-Ranges: bytes');
48 | header("Content-Length: $download_size");
49 | header('Connection: close');
50 |
51 | readfile($filenameReal);
52 | exit;
53 | }
54 | // Units
55 | // -----
56 | $uomtemp = 'F'; // = 'C', 'F', (or '°C', '°F', or '°C', '°F' )
57 | $uombaro = 'inHg'; // = 'inHg', 'hPa', 'kPa', 'mb'
58 | $uomwind = 'mph'; // = 'kts','mph','kmh','km/h','m/s','Bft'
59 | $uomrain = 'in'; // = 'mm', 'in'
60 | $datefmt = 'm/d/y'; // = 'd/m/y', 'm/d/y'
61 | $uomdistance = 'mi'; // = 'mi','km' (for windrun variables)
62 | //
63 | // General OR Non Weather Specific/SUN/MOON
64 | // ========================================
65 | $time = '7:00 PM'; // current time
66 | $date = '3/20/2023'; // current date
67 | $sunrise = '6:56 am'; // sun rise time (make sure you have the correct lat/lon
68 | // in view/sun moon)
69 | $time_minute = '00'; // Current minute
70 | $time_hour = '19'; // Current hour
71 | $date_day = '20'; // Current day
72 | $date_month = '03'; // Current month
73 | $date_year = '2023'; // Current year
74 | $monthname = 'March'; // Current month name
75 | $dayname = 'Monday'; // Current day name
76 | $sunset = '7:05 pm'; // sunset time
77 | $moonrisedate = '03/20/23'; // moon rise date
78 | $moonrise = '6:40 am'; // moon rise time
79 | $moonsetdate = '03/20/23'; // moon set date
80 | $moonset = '5:52 pm'; // moon set time
81 | $moonage = 'Moon age: 28 days,16 hours,8 minutes,1%'; // current age of the moon (days since new moon)
82 | $moonphase = '1%'; // Moon phase %
83 | $moonphasename = 'New Moon'; // 10.36z addition
84 | $marchequinox = '21:25 UTC March 20 2023'; // March equinox date
85 | $junesolstice = '14:58 UTC June 21 2023'; // June solstice date
86 | $sepequinox = '06:51 UTC September 23 2023'; // September equinox date
87 | $decsolstice = '03:28 UTC December 22 2023'; // December solstice date
88 | $moonperihel = '05:43 UTC January 4 2024'; // Next Moon perihel date
89 | $moonaphel = '14:36 UTC July 5 2023'; // Next moon perihel date
90 | $moonperigee = '02:31 UTC April 16 2023'; // Next moon perigee date
91 | $moonapogee = '11:18 UTC March 31 2023'; // Next moon apogee date
92 | $newmoon = '07:06 UTC February 20 2023'; // Date/time of the next/last new moon
93 | $nextnewmoon = '17:24 UTC March 21 2023'; // Date/time of the next new moon for next month
94 | $firstquarter = '08:06 UTC February 27 2023'; // Date/time of the next/last first quarter moon
95 | $lastquarter = '02:09 UTC March 15 2023'; // Date/time of the next/last last quarter moon
96 | $fullmoon = '12:41 UTC March 7 2023'; // Date/time of the next/last full moon
97 | $fullmoondate = 'March 07 2023'; // Date of the next/last full moon (date only)
98 | $suneclipse = 'March 29 2025 10:14:27 81%'; // Next sun eclipse
99 | $mooneclipse = 'October 28 2023 15:14:40 13%'; // Next moon eclipse date
100 | $easterdate = '9 April 2023'; // Next easter date
101 | $chinesenewyear = '21 January 2023 ()'; // Chinese new year
102 | $hoursofpossibledaylight = '12:09'; // Total hours/minutes of possible daylight for today
103 | //
104 | $weatherreport = 'clear'; // current weather conditions from selected METAR
105 | $stationaltitude = '200'; // Station altitude, feet, as set in the units setup
106 | // this under setup)
107 | $stationlatitude = '040:53:17'; // Latitude (from the sun moon rise/set setup)
108 | $stationlongitude = '0073:17:12'; // Longtitude (from the sun moon rise/set setup)
109 | $windowsuptime = '20 Days 12 Hours 22 Minutes 20 Seconds'; // uptime for windows on weather pc
110 | $freememory = '14.08GB'; // amount of free memory on the pc
111 | $Startimedate = '5:41:15 AM 2/28/2023'; // Time/date WD was started
112 |
113 | /*
114 | $NOAAEvent = 'NO CURRENT ADVISORIES'; // NOAA Watch/Warning/Advisory
115 | $noaawarningraw = '
116 | '; // NOAA RAW watch/warning/advisory
117 | */
118 |
119 | $wdversion = '10.37S' . '-(b' . '145' . ')'; // Weather Display version number you are running
120 | $wdversiononly = '10.37S';
121 | $wdbuild = '145'; // Weather Display build number you are running
122 | $noaacityname = '---'; // City name,from the noaa setup (in the av/ext setup)
123 | //
124 | $timeofnextupdate = '---'; // Time of next Update/Upload of the weather data to your web page (based on the web table update
125 | //
126 | $heatcolourword = '---'; // How hot/cold it feels at the moment, based on the humidex, used with the conditionscolour.jpg
127 | //
128 | //
129 | // Temperature/Humidity
130 | // ====================
131 | // Current:
132 | // --------
133 | $temperature = '42.7'; // temperature
134 | $tempnodp = '43'; // temperature, no decimal place
135 | $humidity = '46'; // humidity
136 | $dewpt = '23.3'; // dew point
137 | $maxtemp = '51.7'; // today's maximum temperature
138 | $maxtempt = '3:41 PM'; // time this occurred
139 | $mintemp = '30.5'; // today's minimum temperature
140 | $mintempt = '7:39 AM'; // time this occurred
141 | $feelslike = '40'; // Shows heat index or humidex or windchill (if less than 16oC)
142 |
143 | $heati = '42.8'; // current heat index
144 | $heatinodp = '43'; // current heat index,no decimal place
145 | $windch = '40.3'; // current wind-chill
146 | $windchnodp = '40'; // current wind-chill, no decimal place
147 | $humidexfaren = '37.0'; // Humidex value in oF
148 | $humidexcelsius = '2.8'; // Humidex value in oC
149 |
150 | $apparenttemp = '37.6'; // Apparent temperature
151 | $apparentsolartemp = '37.6'; // Apparent temperature in the sun (you need a solar sensor)
152 | $apparenttempc = '3.1'; // Apparent temperature, °C
153 | $apparentsolartempc = '3.1'; // Apparent temperature in the sun, °C (you need a solar sensor)
154 | $apparenttempf = '37.6'; // Apparent temperature, °F
155 | $apparentsolartempf = '37.6'; // Apparent temperature in the sun, °F (you need a solar sensor)
156 | //
157 | $WUmaxtemp = '32.0'; // Todays average max temperature from the selected Wunderground almanac station
158 | $WUmintemp = '32.0'; // Todays average min temperature from the selected Wunderground almanac station
159 | //
160 | $WUmaxtempr = '32.0'; // Todays record max temperature from the selected Wunderground almanac station
161 | $WUmintempr = '32.0'; // Todays record min temperature from the selected Wunderground almanac station
162 | $WUmaxtempryr = '0'; // Year that it occured
163 | $WUmintempryr = '0'; // year that it occured
164 | //
165 | //
166 | // Yesterday:
167 | // ----------
168 | $tempchangehour = '-2.7'; // Temperature change in the last hour
169 | $maxtempyest = '41.6'; // Yesterday's max temperature
170 | $maxtempyestt = '12:00 AM'; // Time of yesterday's max temperature
171 | $mintempyest = '30.4'; // Yesterday's min temperature
172 | $mintempyestt = '7:37 AM'; // Time of yesterday's min temperature
173 | //
174 | //
175 | // Trends:
176 | // -------
177 | $temp24hoursago = '36.5'; // The temperature 24 hours ago
178 | $humchangelasthour = '+8'; // Humidity change last hour
179 | $dewchangelasthour = '+2.0'; // Dew point change last hour
180 | $barochangelasthour = '-0.006'; // Baro change last hour
181 | //
182 | // Wind
183 | // ====
184 | // Current:
185 | // --------
186 | //
187 | $avgspd = '4.1'; // average wind speed (current)
188 | $gstspd = '4.0'; // current/gust wind speed
189 | $maxgst = '14.0'; // today's maximum wind speed
190 | $maxgstt = '1:12 PM'; // time this occurred
191 | $maxgsthr = '13.0 mph WSW'; // maximum gust last hour
192 | $dirdeg = '207'; // wind direction (degrees)
193 | $dirlabel = 'SSW'; // wind direction (NNE etc)
194 | //$maxgustlastimediatehourtime = '18:13'; // 18:13 time that the max gust last prior 1 hour occured
195 | $avwindlastimediate10 = '3.5'; // Average wind for the last immediate 10 minute period
196 | // $avdir10minute = '194'; // average ten minute wind direction (degrees)
197 |
198 | $beaufortnum ='1'; //Beaufort wind force number
199 | $currbftspeed = '2 bft'; //Current Beaufort wind speed
200 |
201 | $bftspeedtext = 'Light Breeze'; //Beaufort scale in text (i.e Fresh Breeze)
202 | //
203 | //
204 | // Baromometer
205 | // ===========
206 | // Current:
207 | // --------
208 | $baro = '30.231'; // current barometer
209 | $baroinusa2dp = '30.23 inches'; // Current barometer reading in inches, 2 decimal places only.
210 | $trend = '-0.002'; // amount of change in the last hour
211 | $pressuretrendname = 'Steady'; // pressure trend (i.e. 'falling'), last hour
212 | $pressuretrendname3hour = 'Steady'; // pressure trend (i.e. 'falling'), last 3 hours
213 |
214 | $vpforecasttext = 'partly cloudy with little temp change.'; // Forecast text from the Davis VP
215 | //
216 | //
217 | // Rain
218 | // ====
219 | // Current:
220 | // --------
221 | $dayrn = '0.00'; // today's rain
222 | $monthrn = '4.22'; // rain so far this month
223 | $yearrn = '9.12'; // rain so far this year
224 | $dayswithnorain = '1'; // Consecutative days with no rain
225 | $dayswithrain = '11'; // Days with rain for the month
226 | $dayswithrainyear = '29'; // Days with rain for the year
227 | $currentrainratehr = '0.000'; // Current rain rate, mm/hr (or in./hr)
228 | $maxrainrate = '0.000'; // Max rain rate,for the day, mm/min (or in./min)
229 | $maxrainratehr = '0.000'; // Max rain rate,for the day, mm/hr (or in.mm)
230 | $maxrainratetime = '00:00 AM'; // Time that occurred
231 | // Yesterday:
232 | // ----------
233 | $yesterdayrain = '0.00 '; // Yesterday rain
234 | //
235 | $vpstormrainstart = '0/0/0'; //Davis VP Storm rain start date
236 | $vpstormrain = '0.00'; //Davis VP Storm rain value
237 | //
238 | //
239 | // Sunshine/Solar/ET
240 | // =================
241 | $VPsolar = '0'; // Solar energy number (W/M2)
242 | $VPuv = '0.0'; // UV number
243 | $highsolar = '0'; // Daily high solar (for Davis VP and Grow stations)
244 | $highuv = '0.0'; // Daily high UV (for Davis VP stations)
245 | $currentsolarpercent = '0'; // Current solar percent for stations with a temperature solar sensor (like the dallas 1 wire)
246 | $highsolartime = '12:00 AM'; // Time that the daily high solar occured
247 | $lowsolartime = '12:00 AM'; // Time that the daily low solar occured
248 | $highuvtime = '12:00 AM'; // Time that the daily high UV occured
249 | $lowuvtime = '12:00 AM'; // Time that the daily low UV occured
250 | $highuvyest = '0.0'; // Yesterday's high UV
251 | $highuvyesttime = '12:00 AM'; // Time of yesterday's high UV
252 | $burntime = '720'; // Time (minutes) to burn (normal skin) at the current UV rate, from the Davis VP with UV sensor
253 | //
254 | // the solar setup.
255 | //
256 | //
257 | // Number of resynchronizations, The largest number of packets in a row that were received., and the number of CRC errors
258 | //
259 | // detected.
260 | //
261 | //
262 | // Record Readings
263 | // ===============
264 | //
265 | // for current month to date:
266 | //
267 | $mrecordwindgust = '23.0'; // All time record high wind gust
268 | $mrecordhighgustday = '15'; // Day of record high wind gust
269 | //
270 | //
271 | // Snow
272 | // =====
273 | //
274 | $snowseasonin = '0.00'; // Snow for season you have entered under input daily weather, inches
275 | $snowmonthin = '0'; // Snow for month you have entered under input daily weather, inches
276 | $snowtodayin = '0.00'; // Snow for today you have entered under input daily weather, inches
277 | $snowseasoncm = '0.0'; // Snow for season you have entered under input daily weather, cm
278 | $snowmonthcm = '0'; // Snow for month you have entered under input daily weather, cm
279 | $snowtodaycm = '0.0'; // Snow for today you have entered under input daily weather, cm
280 | $snowyesterday = '0'; // Yesterdays' snow
281 | $snowheight = '619'; // Estimated height snow will fall at
282 | $snowheightnew = '1399'; // Estimated height snow will fall at, new formula
283 | //
284 | $snownowin = '0.00'; // Current snow depth, inches.
285 | $snownowcm = '0.0'; // Current snow depth, cm.
286 | //
287 | $snowrain = '0.00'; // Rain measure by a heated rain gauge when temp below freezing times 10 to give estimated snow fall
288 | $snowdaysthismonth = '0'; // Days with snow this month
289 | $snowdaysthisyear = '0'; // Days with snow this year
290 | //
291 | // tags needed for trends-inc.php
292 | //
293 | $temp0minuteago = '42.8'; // ****this one is needed for all the others to work
294 | $wind0minuteago = '3.5';
295 | $gust0minuteago = '6.9';
296 | $dir0minuteago = 'SSW';
297 | $hum0minuteago = '46';
298 | $dew0minuteago = '23.4';
299 | $baro0minuteago = '30.229';
300 | $rain0minuteago = '0.00';
301 | $VPsolar0minuteago = '0';
302 | $VPuv0minuteago = '0.0';
303 |
304 | $temp5minuteago = '43.0';
305 | $wind5minuteago = '3.5';
306 | $gust5minuteago = '4.6';
307 | $dir5minuteago = 'SSW';
308 | $hum5minuteago = '45';
309 | $dew5minuteago = '23.1';
310 | $baro5minuteago = '30.231';
311 | $rain5minuteago = '0.00';
312 | $VPsolar5minuteago = '0';
313 | $VPuv5minuteago = '0.0';
314 |
315 | $temp10minuteago = '43.3';
316 | $wind10minuteago = '2.3';
317 | $gust10minuteago = '5.8';
318 | $dir10minuteago = ' S ';
319 | $hum10minuteago = '44';
320 | $dew10minuteago = '22.8';
321 | $baro10minuteago = '30.231';
322 | $rain10minuteago = '0.00';
323 | $VPsolar10minuteago = '0';
324 | $VPuv10minuteago = '0.0';
325 |
326 | $temp15minuteago = '43.4';
327 | $wind15minuteago = '4.6';
328 | $gust15minuteago = '8.1';
329 | $dir15minuteago = ' S ';
330 | $hum15minuteago = '43';
331 | $dew15minuteago = '22.4';
332 | $baro15minuteago = '30.230';
333 | $rain15minuteago = '0.00';
334 | $VPsolar15minuteago = '0';
335 | $VPuv15minuteago = '0.0';
336 |
337 | $temp20minuteago = '43.7';
338 | $wind20minuteago = '3.5';
339 | $gust20minuteago = '5.8';
340 | $dir20minuteago = 'SSW';
341 | $hum20minuteago = '43';
342 | $dew20minuteago = '22.6';
343 | $baro20minuteago = '30.230';
344 | $rain20minuteago = '0.00';
345 | $VPsolar20minuteago = '0';
346 | $VPuv20minuteago = '0.0';
347 |
348 | $temp30minuteago = '44.2';
349 | $wind30minuteago = '4.6';
350 | $gust30minuteago = '6.9';
351 | $dir30minuteago = 'SSW';
352 | $hum30minuteago = '41';
353 | $dew30minuteago = '22.0';
354 | $baro30minuteago = '30.231';
355 | $rain30minuteago = '0.00';
356 | $VPsolar30minuteago = '0';
357 | $VPuv30minuteago = '0.0';
358 |
359 | $temp45minuteago = '44.8';
360 | $wind45minuteago = '5.8';
361 | $gust45minuteago = '9.2';
362 | $dir45minuteago = 'SW';
363 | $hum45minuteago = '38';
364 | $dew45minuteago = '20.7';
365 | $baro45minuteago = '30.233';
366 | $rain45minuteago = '0.00';
367 | $VPsolar45minuteago = '0';
368 | $VPuv45minuteago = '0.0';
369 |
370 | $temp60minuteago = '45.6';
371 | $wind60minuteago = '4.6';
372 | $gust60minuteago = '9.2';
373 | $dir60minuteago = ' S ';
374 | $hum60minuteago = '38';
375 | $dew60minuteago = '21.4';
376 | $baro60minuteago = '30.233';
377 | $rain60minuteago = '0.00';
378 | $VPsolar60minuteago = '0';
379 | $VPuv60minuteago = '0.0';
380 |
381 | $temp75minuteago = '46.4';
382 | $wind75minuteago = '8.1';
383 | $gust75minuteago = '9.2';
384 | $dir75minuteago = 'SW';
385 | $hum75minuteago = '36';
386 | $dew75minuteago = '20.9';
387 | $baro75minuteago = '30.231';
388 | $rain75minuteago = '0.00';
389 | $VPsolar75minuteago = '0';
390 | $VPuv75minuteago = '0.0';
391 |
392 | $temp90minuteago = '47.5';
393 | $wind90minuteago = '3.5';
394 | $gust90minuteago = '4.6';
395 | $dir90minuteago = 'SSW';
396 | $hum90minuteago = '33';
397 | $dew90minuteago = '19.8';
398 | $baro90minuteago = '30.230';
399 | $rain90minuteago = '0.00';
400 | $VPsolar90minuteago = '0';
401 | $VPuv90minuteago = '0.0';
402 |
403 | $temp105minuteago = '48.0';
404 | $wind105minuteago = '3.5';
405 | $gust105minuteago = '3.5';
406 | $dir105minuteago = 'SSW';
407 | $hum105minuteago = '33';
408 | $dew105minuteago = '20.2';
409 | $baro105minuteago = '30.233';
410 | $rain105minuteago = '0.00';
411 | $VPsolar105minuteago = '0';
412 | $VPuv105minuteago = '0.0';
413 |
414 | $temp120minuteago = '48.6';
415 | $wind120minuteago = '4.6';
416 | $gust120minuteago = '4.6';
417 | $dir120minuteago = 'SW';
418 | $hum120minuteago = '31';
419 | $dew120minuteago = '19.3';
420 | $baro120minuteago = '30.235';
421 | $rain120minuteago = '0.00';
422 | $VPsolar120minuteago = '0';
423 | $VPuv120minuteago = '0.0';
424 |
425 | $VPet = '0.00';
426 | $VPetmonth = '0.00';
427 | $dateoflastrainalways = '3/18/2023';
428 | $highbaro = '30.324';
429 | $highbarot = '9:21 AM';
430 | $highsolaryest = '0.0';
431 | $highsolaryesttime = '12:00 AM';
432 | $hourrn = '0.00';
433 | $maxaverageyest = '10.0';
434 | $maxaverageyestt = '3:24 PM';
435 | $maxavgdirectionletter = ' SW';
436 | $maxavgspd = '9.8';
437 | $maxavgspdt = '3:57 PM';
438 | $maxbaroyest = '30.181';
439 | $maxbaroyestt = '11:58 PM';
440 | $maxgstdirectionletter = ' S';
441 | $maxgustyest = '19.6 mph W';
442 | $maxgustyestt = '3:23 PM';
443 | $mcoldestdayonrecord = '35.7F on: Mar 14 2023';
444 | $mcoldestnightonrecord = '32.9F on: Mar 08 2023';
445 | $minchillyest = '24.9';
446 | $minchillyestt = '9:34 AM';
447 | $minwindch = '30.2';
448 | $minwindcht = '7:55 AM';
449 | $mrecordhighavwindday = '15';
450 | $mrecordhighavwindmonth = '3';
451 | $mrecordhighavwindyear = '2023';
452 | $mrecordhighbaro = '30.324';
453 | $mrecordhighbaroday = '20';
454 | $mrecordhighbaromonth = '3';
455 | $mrecordhighbaroyear = '2023';
456 | $mrecordhighgustmonth = '3';
457 | $mrecordhighgustyear = '2023';
458 | $mrecordhightemp = '57.4';
459 | $mrecordhightempday = '17';
460 | $mrecordhightempmonth = '3';
461 | $mrecordhightempyear = '2023';
462 | $mrecordlowchill = '24.9';
463 | $mrecordlowchillday = '19';
464 | $mrecordlowchillmonth = '3';
465 | $mrecordlowchillyear = '2023';
466 | $mrecordlowtemp = '29.9';
467 | $mrecordlowtempday = '8';
468 | $mrecordlowtempmonth = '3';
469 | $mrecordlowtempyear = '2023';
470 | $mrecordwindspeed = '13.0';
471 | $mwarmestdayonrecord = '50.6F on: Mar 17 2023';
472 | $mwarmestnightonrecord = '50.5F on: Mar 18 2023';
473 | $raincurrentweek = '2.16';
474 | $raintodatemonthago = '0.00';
475 | $raintodateyearago = '0.00';
476 | $timeoflastrainalways = ' 2:58 AM';
477 | $windruntodatethismonth = '1143.08 miles';
478 | $windruntodatethisyear = '3716.07 miles';
479 | $windruntoday = '49.39';
480 | $yesterdaydaviset = '0.000';
481 | $yrecordhighavwindday = '15';
482 | $yrecordhighavwindmonth = '2';
483 | $yrecordhighavwindyear = '2023';
484 | $yrecordhighbaro = '30.659';
485 | $yrecordhighbaroday = '4';
486 | $yrecordhighbaromonth = '2';
487 | $yrecordhighbaroyear = '2023';
488 | $yrecordhighgustday = '15';
489 | $yrecordhighgustmonth = '2';
490 | $yrecordhighgustyear = '2023';
491 | $yrecordhightemp = '71.6';
492 | $yrecordhightempday = '16';
493 | $yrecordhightempmonth = '2';
494 | $yrecordhightempyear = '2023';
495 | $yrecordlowchill = '-5.6';
496 | $yrecordlowchillday = '4';
497 | $yrecordlowchillmonth = '2';
498 | $yrecordlowchillyear = '2023';
499 | $yrecordlowtemp = '4.2';
500 | $yrecordlowtempday = '4';
501 | $yrecordlowtempmonth = '2';
502 | $yrecordlowtempyear = '2023';
503 | $yrecordwindgust = '25.3';
504 | $yrecordwindspeed = '16.9';
505 | $daysTmaxGT30C = '0';
506 | $daysTmaxGT25C = '0';
507 | $daysTminLT0C = '5';
508 | $daysTminLTm15C = '0';
509 |
510 | // end of trends-inc.php variables
511 |
512 | //
513 | // CURRENT CONDITIONS ICONS FOR clientraw.txt
514 | // create array for icons. There are 35 possible values in clientraw.txt
515 | // It would be simpler to do this with array() but to make it easier to
516 | // modify each element is defined individually. Each index [#] corresponds
517 | // to the value provided in clientraw.txt
518 | $icon_array[0] = 'day_clear.gif'; // imagesunny.visible
519 | $icon_array[1] = 'night_clear.gif'; // imageclearnight.visible
520 | $icon_array[2] = 'day_partly_cloudy.gif'; // imagecloudy.visible
521 | $icon_array[3] = 'day_partly_cloudy.gif'; // imagecloudy2.visible
522 | $icon_array[4] = 'night_partly_cloudy.gif'; // imagecloudynight.visible
523 | $icon_array[5] = 'day_partly_cloudy.gif'; // imagedry.visible
524 | $icon_array[6] = 'fog.gif'; // imagefog.visible
525 | $icon_array[7] = 'haze.gif'; // imagehaze.visible
526 | $icon_array[8] = 'day_heavy_rain.gif'; // imageheavyrain.visible
527 | $icon_array[9] = 'day_mostly_sunny.gif'; // imagemainlyfine.visible
528 | $icon_array[10] = 'mist.gif'; // imagemist.visible
529 | $icon_array[11] = 'fog.gif'; // imagenightfog.visible
530 | $icon_array[12] = 'night_heavy_rain.gif'; // imagenightheavyrain.visible
531 | $icon_array[13] = 'night_cloudy.gif'; // imagenightovercast.visible
532 | $icon_array[14] = 'night_rain.gif'; // imagenightrain.visible
533 | $icon_array[15] = 'night_light_rain.gif'; // imagenightshowers.visible
534 | $icon_array[16] = 'night_snow.gif'; // imagenightsnow.visible
535 | $icon_array[17] = 'night_tstorm.gif'; // imagenightthunder.visible
536 | $icon_array[18] = 'day_cloudy.gif'; // imageovercast.visible
537 | $icon_array[19] = 'day_partly_cloudy.gif'; // imagepartlycloudy.visible
538 | $icon_array[20] = 'day_rain.gif'; // imagerain.visible
539 | $icon_array[21] = 'day_rain.gif'; // imagerain2.visible
540 | $icon_array[22] = 'day_light_rain.gif'; // imageshowers2.visible
541 | $icon_array[23] = 'sleet.gif'; // imagesleet.visible
542 | $icon_array[24] = 'sleet.gif'; // imagesleetshowers.visible
543 | $icon_array[25] = 'snow.gif'; // imagesnow.visible
544 | $icon_array[26] = 'snow.gif'; // imagesnowmelt.visible
545 | $icon_array[27] = 'snow.gif'; // imagesnowshowers2.visible
546 | $icon_array[28] = 'day_clear.gif.gif'; // imagesunny.visible
547 | $icon_array[29] = 'day_tstorm.gif'; // imagethundershowers.visible
548 | $icon_array[30] = 'day_tstorm.gif'; // imagethundershowers2.visible
549 | $icon_array[31] = 'day_tstorm.gif'; // imagethunderstorms.visible
550 | $icon_array[32] = 'tornado.gif'; // imagetornado.visible
551 | $icon_array[33] = 'windy.gif'; // imagewindy.visible
552 | $icon_array[34] = 'day_partly_cloudy.gif'; // stopped raining
553 | $icon_array[35] = 'windyrain.gif'; // Wind+rain
554 | $iconnumber = '0'; // icon number
555 |
556 | $current_icon = $icon_array[0]; // name of our condition icon
557 | // ----------------------------------------------------------------------------------
558 | // $current_summary = 'Dry' . '<br />' . 'Dry ';
559 | $weathercond = 'Dry';
560 | $Currentsolardescription = 'Dry ';
561 | $current_summary = $Currentsolardescription;
562 | $current_summary = preg_replace('|^/[^/]+/|','',$current_summary);
563 | $current_summary = preg_replace('|\\\\|',', ',$current_summary);
564 | $current_summary = preg_replace('|/|',', ',$current_summary);
565 | //
566 | //
567 | $cloudheightfeet = '4633'; // Estimated cloud base height, feet, (based on dew point, and you height above sea level...enter
568 | $cloudheightmeters = '1412'; // Estimated cloud base height, metres, (based on dew point, and you height above sea
569 |
570 | // end of stock testtags.txt
571 |
572 | // ----------------------------------------------------------------------------------------------------
573 | // begin mchallis tags added to testtags.txt for printable flyer
574 | $maxgsthrtime = '18:13'; // time that the max gust last prior 1 hour occured
575 | $minbaroyest = '29.787';
576 | $minbaroyestt = '12:09 AM';
577 | $mrecordlowbaro = '29.265';
578 | $mrecordlowbaroday = '4';
579 | $mrecordlowbaromonth = '3';
580 | $mrecordlowbaroyear = '2023';
581 | $yrecordlowbaro = '29.265';
582 | $yrecordlowbaroday = '4';
583 | $yrecordlowbaromonth = '3';
584 | $yrecordlowbaroyear = '2023';
585 | // end mchallis tags added to testtags.txt for printable flyer
586 | // ----------------------------------------------------------------------------------------------------
587 | // New WebsterWeatherLive VER 4.10 tags
588 | //----------------------------------------------
589 | $lighteningbearing = '0';
590 | $lighteningdistance = '0';
591 | $lighteningcountlasthournextstorm = '0';
592 | $lighteningcountlastminutenextstorm = '0';
593 | $lighteningcountlast12hournextstorm = '0';
594 | $lighteningcountlast30minutesnextstorm = '0';
595 | $timeofdaygreeting = 'Evening';
596 | $avwindlastimediate60 = '5.0'; // average wind speed
597 | $avwindlastimediate120 = '5.3'; // average wind speed
598 | $currentmonthaveragerain = '---'; // average rain for current month
599 | //
600 | // version 5.00+
601 | $avwindlastimediate15 = '3.5'; // average wind speed
602 | $avwindlastimediate30 = '4.0'; // average wind speed
603 | $todayhihumidex = '45.4'; //daily high humidex
604 | $todaylohumidex = '23.2'; //Daily low Humidex
605 | //Version 5.02
606 | $dayornight = 'Day'; // Day or night flag
607 |
608 | //Version 6.20
609 | $tempchangelasthourfaren = '-2.8'; //For snow prediction
610 | $abshum = '4.06'; //For snow prediction
611 | $maxtemp4today = '---'; // max from station's records
612 | $mintemp4today = '---'; // min from station's records
613 | $maxtemp4todayyr = '2023'; // max year from station's records
614 | $mintemp4todayyr = '2023'; // min year from station's records
615 | $avsnowjan = '---'; //Average snow for jan from your inputted snow data (cm)
616 | $avsnowfeb = '0.0'; //Average snow for feb from your inputted snow data (cm)
617 | $avsnowmar = '0.0'; //Average snow for mar from your inputted snow data (cm)
618 | $avsnowapr = '---'; //Average snow for apr from your inputted snow data (cm)
619 | $avsnowmay = '---'; //Average snow for may from your inputted snow data (cm)
620 | $avsnowjun = '---'; //Average snow for may from your inputted snow data (cm)
621 | $avsnowjul = '---'; //Average snow for jul from your inputted snow data (cm)
622 | $avsnowaug = '---'; //Average snow for aug from your inputted snow data (cm)
623 | $avsnowsep = '---'; //Average snow for sep from your inputted snow data (cm)
624 | $avsnowoct = '---'; //Average snow for oct from your inputted snow data (cm)
625 | $avsnownov = '---'; //Average snow for nov from your inputted snow data (cm)
626 | $avsnowdec = '---'; //Average snow for dec from your inputted snow data (cm)
627 | $avsnowjannow = '---';
628 | $avsnowfebnow = '0.0';
629 | $avsnowmarnow = '0.0';
630 | $avsnowaprnow = '---';
631 | $avsnowmaynow = '---';
632 | $avsnowjunnow = '---';
633 | $avsnowjulnow = '---';
634 | $avsnowaugnow = '---';
635 | $avsnowsepnow = '---';
636 | $avsnowoctnow = '---';
637 | $avsnownovnow = '---';
638 | $avsnowdecnow = '---';
639 | // end of websterweather additions
640 | // ----------------------------------------------------------------------------------------------------
641 | // relayweather wxglobalwarming
642 | // For Temperature Trend Chart, you Need to add the following to your testtags file if they don't yet exist:
643 |
644 | $avtempjannow = '40.8';
645 | $avtempfebnow = '39.5';
646 | $avtempmarnow = '41.1';
647 | $avtempaprnow = '32.0';
648 | $avtempmaynow = '32.0';
649 | $avtempjunnow = '32.0';
650 | $avtempjulnow = '32.0';
651 | $avtempaugnow = '32.0';
652 | $avtempsepnow = '32.0';
653 | $avtempoctnow = '32.0';
654 | $avtempnovnow = '32.0';
655 | $avtempdecnow = '32.0';
656 | $avtempjan = '40.8';//Average temperature for january from your data
657 | $avtempfeb = '39.5';//Average temperature for february from your data
658 | $avtempmar = '41.1';//Average temperature for march from your data
659 | $avtempapr = '32.0';//Average temperature for april from your data
660 | $avtempmay = '32.0';//Average temperature for may from your data
661 | $avtempjun = '32.0';//Average temperature for june from your data
662 | $avtempjul = '32.0';//Average temperature for july from your data
663 | $avtempaug = '32.0';//Average temperature for august from your data
664 | $avtempsep = '32.0';//Average temperature for september from your data
665 | $avtempoct = '32.0';//Average temperature for october from your data
666 | $avtempnov = '32.0';//Average temperature for november from your data
667 | $avtempdec = '32.0';//Average temperature for december from your data
668 |
669 | //For the Rain Trending Chart, you Need to add the following to your testtags file if they don't yet exist:
670 |
671 | //Start Rain Trending
672 | $avrainjan = '3.32';
673 | $avrainfeb = '1.54';
674 | $avrainmar = '0.00';
675 | $avrainapr = '0.00';
676 | $avrainmay = '0.00';
677 | $avrainjun = '0.00';
678 | $avrainjul = '0.00';
679 | $avrainaug = '0.00';
680 | $avrainsep = '0.00';
681 | $avrainoct = '0.00';
682 | $avrainnov = '0.00';
683 | $avraindec = '0.00';
684 |
685 | $avrainjannow = '3.32';
686 | $avrainfebnow = '1.54';
687 | $avrainmarnow = '4.22';
688 | $avrainaprnow = '---';
689 | $avrainmaynow = '---';
690 | $avrainjunnow = '---';
691 | $avrainjulnow = '---';
692 | $avrainaugnow = '---';
693 | $avrainsepnow = '---';
694 | $avrainoctnow = '---';
695 | $avrainnovnow = '---';
696 | $avraindecnow = '---';
697 | //End Rain Trending
698 | // end of relayweather tags
699 | // ----------------------------------------------------------------------------------------------------
700 | // eastmasonville wxrecord.php tags
701 | $recordhightemp = '71.6';
702 | $recordlowtemp = '4.2';
703 | $recordhighheatindex = '77.3';
704 | $recordlowchill = '-5.6';
705 | $warmestdayonrecord = '63.1 F on: Feb 16 2023';
706 | $warmestnightonrecord = '55.8F on: Feb 16 2023';
707 | $coldestdayonrecord = '12.9F on: Feb 04 2023';
708 | $coldestnightonrecord = '9.3F on: Feb 04 2023';
709 | $recordwindgust = '25.3';
710 | $recordwindspeed = '16.9';
711 | $recordhighwindrun = '118.2';
712 | $recorddailyrain = '1.17';
713 | $recordhighrainmth = '4.2';
714 | $recordrainrate = '0.114';
715 | $recorddayswithrain = '5';
716 | $recorddaysnorain = '5';
717 | $recordhighdew = '54.9';
718 | $recordlowdew = '-18.2';
719 | $recordhighhum = '87';
720 | $recordlowhum = '18';
721 | $recordhighbaro = '30.659';
722 | $recordlowbaro = '29.265';
723 | $recordhighsolar = '0.0';
724 | $recordhightempmonth = '2';
725 | $recordhightempday = '16';
726 | $recordhightempyear = '2023';
727 | $recordlowtempmonth = '2';
728 | $recordlowtempday = '4';
729 | $recordlowtempyear = '2023';
730 | $recordhighheatindexmonth = '2';
731 | $recordhighheatindexday = '16';
732 | $recordhighheatindexyear = '2023';
733 | $recordlowchillmonth = '2';
734 | $recordlowchillday = '4';
735 | $recordlowchillyear = '2023';
736 | $recordhighgustmonth = '2';
737 | $recordhighgustday = '15';
738 | $recordhighgustyear = '2023';
739 | $recordhighavwindmonth = '2';
740 | $recordhighavwindday = '15';
741 | $recordhighavwindyear = '2023';
742 | $recordhighwindrunmth = '2';
743 | $recordhighwindrunday = '15';
744 | $recordhighwindrunyr = '2023';
745 | $recorddailyrainmonth = '3';
746 | $recorddailyrainday = '13';
747 | $recorddailyrainyear = '2023';
748 | $recordhighrainmthmth = '3';
749 | $recordhighrainmthyr = '2023';
750 | $recordrainratemonth = '1';
751 | $recordrainrateday = '19';
752 | $recordrainrateyear = '2023';
753 | $recorddayswithrainmonth = '3';
754 | $recorddayswithrainday = '4';
755 | $recorddayswithrainyear = '2023';
756 | $recorddaysnorainmonth = '1';
757 | $recorddaysnorainday = '19';
758 | $recorddaysnorainyear = '2023';
759 | $recordhighdewmonth = '2';
760 | $recordhighdewday = '17';
761 | $recordhighdewyear = '2023';
762 | $recordlowdewmonth = '2';
763 | $recordlowdewday = '4';
764 | $recordlowdewyear = '2023';
765 | $recordhighhummonth = '1';
766 | $recordhighhumday = '25';
767 | $recordhighhumyear = '2023';
768 | $recordlowhummonth = '3';
769 | $recordlowhumday = '6';
770 | $recordlowhumyear = '2023';
771 | $recordhighbaromonth = '2';
772 | $recordhighbaroday = '4';
773 | $recordhighbaroyear = '2023';
774 | $recordlowbaromonth = '3';
775 | $recordlowbaroday = '4';
776 | $recordlowbaroyear = '2023';
777 | $recordhighsolarmonth = '1';
778 | $recordhighsolarday = '8';
779 | $recordhighsolaryear = '2023';
780 | $recordhighuv = '0.0';
781 | $recordhighuvmonth = '1';
782 | $recordhighuvday = '8';
783 | $recordhighuvyear = '2023';
784 |
785 | $yrecordhighheatindex = '77.3';
786 | $yrecordhighheatindexmonth = '2';
787 | $yrecordhighheatindexday = '16';
788 | $yrecordhighheatindexyear = '2023';
789 | $ywarmestdayonrecord = '63.1F on: Feb 16 2023';
790 | $ywarmestnightonrecord = '55.8F on: Feb 16 2023';
791 | $ycoldestdayonrecord = '12.9F on: Feb 04 2023';
792 | $ycoldestnightonrecord = '9.3F on: Feb 04 2023';
793 | $yrecordhighwindrun = '118.2';
794 | $yrecordhighwindrunmth = '2';
795 | $yrecordhighwindrunday = '15';
796 | $yrecordhighwindrunyr = '2023';
797 | $yrecorddailyrain = '1.17';
798 | $yrecordhighrainmth = '4.2';
799 | $yrecordrainrate = '0.114';
800 | $yrecorddayswithrain = '5';
801 | $yrecorddaysnorain = '5';
802 | $yrecordhighdew = '54.9';
803 | $yrecordlowdew = '-18.2';
804 | $yrecordhighhum = '87';
805 | $yrecordlowhum = '18';
806 | $yrecorddailyrainmonth = '3';
807 | $yrecorddailyrainday = '13';
808 | $yrecorddailyrainyear = '2023';
809 | $yrecordhighrainmthmth = '3';
810 | $yrecordhighrainmthyr = '2023';
811 | $yrecordrainratemonth = '1';
812 | $yrecordrainrateday = '19';
813 | $yrecordrainrateyear = '2023';
814 | $yrecorddayswithrainmonth = '3';
815 | $yrecorddayswithrainday = '4';
816 | $yrecorddaysnorainmonth = '1';
817 | $yrecorddaysnorainday = '19';
818 | $yrecordhighdewmonth = '2';
819 | $yrecordhighdewday = '17';
820 | $yrecordhighdewyear = '2023';
821 | $yrecordlowdewmonth = '2';
822 | $yrecordlowdewday = '4';
823 | $yrecordlowdewyear = '2023';
824 | $yrecordhighhummonth = '1';
825 | $yrecordhighhumday = '25';
826 | $yrecordhighhumyear = '2023';
827 | $yrecordlowhummonth = '3';
828 | $yrecordlowhumday = '6';
829 | $yrecordlowhumyear = '2023';
830 | $yrecordhighsolar = '0.0';
831 | $yrecordhighsolarmonth = '1';
832 | $yrecordhighsolarday = '8';
833 | $yrecordhighsolaryear = '2023';
834 | $yrecordhighuv = '0.0';
835 | $yrecordhighuvmonth = '1';
836 | $yrecordhighuvday = '8';
837 | $yrecordhighuvyear = '2023';
838 |
839 | $mrecordhighheatindex = '57.4';
840 | $mrecordhighheatindexmonth = '3';
841 | $mrecordhighheatindexday = '17';
842 | $mrecordhighheatindexyear = '2023';
843 | $mrecordhighwindrun = '110.1';
844 | $mrecordhighwindrunmth = '3';
845 | $mrecordhighwindrunday = '15';
846 | $mrecordhighwindrunyr = '2023';
847 | $mrecorddailyrain = '1.17';
848 | $mrecordhighrainmth = '4.2';
849 | $mrecordrainrate = '0.026';
850 | $mrecorddayswithrain = '5';
851 | $mrecorddaysnorain = '3';
852 | $mrecordhighdew = '43.8';
853 | $mrecordlowdew = '0.6';
854 | $mrecordhighhum = '87';
855 | $mrecordlowhum = '18';
856 | $mrecorddailyrainmonth = '3';
857 | $mrecorddailyrainday = '13';
858 | $mrecorddailyrainyear = '2023';
859 | $mrecordhighrainmthmth = '3';
860 | $mrecordhighrainmthyr = '2023';
861 | $mrecordrainratemonth = '3';
862 | $mrecordrainrateday = '14';
863 | $mrecordrainrateyear = '2023';
864 | $mrecorddayswithrainmonth = '3';
865 | $mrecorddayswithrainday = '4';
866 | $mrecorddaysnorainmonth = '3';
867 | $mrecorddaysnorainday = '18';
868 | $mrecordhighdewmonth = '3';
869 | $mrecordhighdewday = '2';
870 | $mrecordhighdewyear = '2023';
871 | $mrecordlowdewmonth = '3';
872 | $mrecordlowdewday = '19';
873 | $mrecordlowdewyear = '2023';
874 | $mrecordhighhummonth = '3';
875 | $mrecordhighhumday = '2';
876 | $mrecordhighhumyear = '2023';
877 | $mrecordlowhummonth = '3';
878 | $mrecordlowhumday = '6';
879 | $mrecordlowhumyear = '2023';
880 | $myrecordhighbaromonth = '3';
881 | $mrecordhighsolar = '0.0';
882 | $mrecordhighsolarmonth = '1';
883 | $mrecordhighsolarday = '8';
884 | $mrecordhighsolaryear = '2023';
885 | $mrecordhighuv = '0.0';
886 | $mrecordhighuvmonth = '1';
887 | $mrecordhighuvday = '8';
888 | $mrecordhighuvyear = '2023';
889 | // end of eastmasonville wxrecord.php tags
890 | // ----------------------------------------------------------------------------------------------------
891 | // other addons
892 | $vpissstatus = 'Ok'; // VP ISS Status
893 | $vpreception2 = '100%'; // VP Current reception % *** NEW IN V1.01
894 | $vpconsolebattery = '4.6'; // VP Console Battery Volts *** NEW IN V1.01
895 | $firewi = '4.5'; // Fire Weather Index
896 | $avtempweek = '41.5'; // Average Weekly Temp
897 | $hddday = '23.3'; // Heating Degree for day
898 | $hddmonth = '475.9'; // Heating Degree for month to date
899 | $hddyear = '1767.2'; // Heating Degree for year to date
900 | $cddday = '0.0'; // Cooling Degree for day
901 | $cddmonth = '0.0'; // Cooling Degree for month to date
902 | $cddyear = '0.0'; // Cooling Degree for year to date
903 | $minchillweek = '25.7'; // Minimum Wind Chill over past 7 days
904 | $maxheatweek = '57.4'; // Maximum Heat Index for the Week *** NEW IN V2.00
905 | $airdensity = '1.28'; //air density
906 | $solarnoon = '13:00'; // Solar noon
907 | $changeinday = '00:02:44'; // change in day length since yesterday
908 | $etcurrentweek = '0.000'; // ET total for the last 7 days
909 | $sunshinehourstodateday = '00:00';
910 | $sunshinehourstodatemonth = '00:00';
911 | $maxsolarfortime = '0';
912 | $wetbulb = '36.1';
913 | $lighteningcountlasthour = '0';
914 | $lighteningcountlastminute = '0';
915 | $lighteningcountlast5minutes = '0';
916 | $lighteningcountlast12hour = '0';
917 | $lighteningcountlast30minutes = '0';
918 | $lighteningcountlasttime = '';
919 | $lighteningcountmonth = '0';
920 | $lighteningcountyear = '0';
921 | $chandler = '20.5';
922 | $maxdew = '23.5';
923 | $maxdewt = '6:57 PM';
924 | $mindew = '9.1';
925 | $mindewt = '1:42 AM';
926 | $maxdewyest = '16.5';
927 | $maxdewyestt = '1:57 AM';
928 | $mindewyest = '0.6';
929 | $mindewyestt = '7:19 AM';
930 | $stationname = 'mystation';
931 | $raindifffromav = '---';
932 | $raindifffromavyear = '9.120';
933 | $gddmonth = '45.0';
934 | $gddyear = '105.9';
935 | $maxheat = '51.7';
936 | $maxheatt = '3:41 PM';
937 | $maxheatyest = '41.6';
938 | $yeartodateavtemp = '40.4';
939 | $monthtodateavtemp = '41.1';
940 | $maxchillyest = '41.6';
941 | $monthtodatemaxgust = '23.0';
942 | $monthtodateavspeed = '2.4'; // MTD average wind speed
943 | $monthtodateavgust = '4.5'; //MTD average wind gust
944 | $yeartodateavwind = '2.2'; // YTD average wind speed
945 | $yeartodategstwind = '4.1'; // YTD avg wind gust
946 | $lowbaro = '30.181';
947 | $lowbarot = '12:00 AM';
948 | $monthtodatemaxbaro = '30.324'; // MTD average wind speed
949 | $monthtodateminbaro = '29.265'; //MTD average wind gust
950 | $sunshinehourstodateyear = '00:00';
951 | $sunshineyesterday = '00:00';
952 | $avtempsincemidnight = '39.4';
953 | $yesterdayavtemp = '36.3';
954 | $avgspeedsincereset = '2.6';
955 | $maxheatyestt = '12:00 AM';
956 | $windrunyesterday = '70.67';
957 | $currentwdet = '0.000';
958 | $yesterdaywdet = '0.000';
959 | $highhum = '48';
960 | $highhumt = '7:08 AM';
961 | $lowhum = '19';
962 | $lowhumt = '2:27 PM';
963 | $maxhumyest = '43';
964 | $maxhumyestt = '5:58 AM';
965 | $minhumyest = '22';
966 | $minhumyestt = '3:29 PM';
967 | $recordhightempjan = '57.9';
968 | $recordlowtempjan = '30.4';
969 | $recordhightempfeb = '71.6';
970 | $recordlowtempfeb = '4.3';
971 | $recordhightempmar = '34.5';
972 | $recordlowtempmar = '34.3';
973 | $recordhightempapr = '---';
974 | $recordlowtempapr = '---';
975 | $recordhightempmay = '---';
976 | $recordlowtempmay = '---';
977 | $recordhightempjun = '---';
978 | $recordlowtempjun = '---';
979 | $recordhightempjul = '---';
980 | $recordlowtempjul = '---';
981 | $recordhightempaug = '---';
982 | $recordlowtempaug = '---';
983 | $recordhightempsep = '---';
984 | $recordlowtempsep = '---';
985 | $recordhightempoct = '---';
986 | $recordlowtempoct = '---';
987 | $recordhightempnov = '---';
988 | $recordlowtempnov = '---';
989 | $recordhightempdec = '---';
990 | $recordlowtempdec = '---';
991 |
992 | // average temp and rain by month (V1.08 addition)
993 |
994 | $avtempjannow = '40.8';
995 | $avtempfebnow = '39.5';
996 | $avtempmarnow = '41.1';
997 | $avtempaprnow = '32.0';
998 | $avtempmaynow = '32.0';
999 | $avtempjunnow = '32.0';
1000 | $avtempjulnow = '32.0';
1001 | $avtempaugnow = '32.0';
1002 | $avtempsepnow = '32.0';
1003 | $avtempoctnow = '32.0';
1004 | $avtempnovnow = '32.0';
1005 | $avtempdecnow = '32.0';
1006 |
1007 | $avrainjannow = '3.32';
1008 | $avrainfebnow = '1.54';
1009 | $avrainmarnow = '4.22';
1010 | $avrainaprnow = '---';
1011 | $avrainmaynow = '---';
1012 | $avrainjunnow = '---';
1013 | $avrainjulnow = '---';
1014 | $avrainaugnow = '---';
1015 | $avrainsepnow = '---';
1016 | $avrainoctnow = '---';
1017 | $avrainnovnow = '---';
1018 | $avraindecnow = '---';
1019 |
1020 | // end of other addons
1021 | // end of testtags.txt/testtags.php
1022 | ?>