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