Notice: Undefined offset: 1 in /home/portan24/public_html/weather28/metar/wsMetarTxt.php on line 81

Notice: Undefined offset: 1 in /home/portan24/public_html/weather28/metar/wsMetarTxt.php on line 87

Notice: Array to string conversion in /home/portan24/public_html/weather28/metar/wsMetarTxt.php on line 92

Northport NY Webcam more information Northport NY Webcam


Visit our other weather sites:

Template documentation
and downloads

And another site



Display key values and files

../testtags.php - dated: Mar 28 2024 7:55 am


Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /home/portan24/public_html/weather28/printSite.php on line 134
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
1020
1021
1022
<?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 '&deg;C', '&deg;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 =  '07:55 AM';    // current time
$date =  '3/28/2024';    // current date
$sunrise =  '6:42 am';    // sun rise time (make sure you have the correct lat/lon
//                     in view/sun moon)
$time_minute =  '55';    // Current minute
$time_hour =  '07';    // Current hour
$date_day =  '28';    // Current day
$date_month =  '03';    // Current month
$date_year =  '2024';    // Current year
$monthname =  'March';    // Current month name
$dayname =  'Thursday';    // Current day name
$sunset =  '7:14 pm';    // sunset time
$moonrisedate =  '03/27/24';    // moon rise date
$moonrise =  '9:54 pm';    // moon rise time
$moonsetdate =  '03/28/24';    // moon set date
$moonset =  '8:02 am';    // moon set time
$moonage =  'Moon age: 17 days,15 hours,48 minutes,91%';    // current age of the moon (days since new moon)
$moonphase =  '91%';    // Moon phase %
$moonphasename 'Waning Gibbous 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 =  '20:50 UTC July 4 2024';    // Next moon perihel date
$moonperigee =  '17:44 UTC April 7 2024';    // Next moon perigee date
$moonapogee =  '02:10 UTC April 20 2024';    // Next moon apogee date
$newmoon =  '09:01 UTC March 10 2024';    // Date/time of the next/last new moon
$nextnewmoon =  '18:21 UTC April 8 2024';    // Date/time of the next new moon for next month
$firstquarter =  '04:11 UTC March 17 2024';    // Date/time of the next/last first quarter moon
$lastquarter =  '03:15 UTC April 2 2024';    // Date/time of the next/last last quarter moon
$fullmoon =  '07:01 UTC March 25 2024';    // Date/time of the next/last full moon
$fullmoondate =  'March 25 2024';    // Date of the next/last full moon (date only)
$suneclipse =  'March 29 2025 05:14:27 81%';    // Next sun eclipse
$mooneclipse =  'September 17 2024 21:45:10 8%';    // Next moon eclipse date
$easterdate =  '31 March 2024';    // Next easter date
$chinesenewyear =  '9 February 2024 ()';    // Chinese new year
$hoursofpossibledaylight =  '12:32';    // Total hours/minutes of possible daylight for today
//
$weatherreport =  'overcast -  mist';    // current weather conditions from selected METAR
$stationaltitude =  '200';    // Station altitude, feet, as set in the units setup
// this under setup)
$stationlatitude =  '040:53:17';    // Latitude (from the sun moon rise/set setup)
$stationlongitude =  '0073:17:12';    // Longtitude (from the sun moon rise/set setup)
$windowsuptime '10 Days 20 Hours 36 Minutes 44 Seconds'// uptime for windows on weather pc
$freememory '13.78GB'// amount of free memory on the pc
$Startimedate '8:01:09 PM 3/17/2024'// Time/date WD was started

/*
$NOAAEvent = 'NO CURRENT ADVISORIES'; // NOAA Watch/Warning/Advisory
$noaawarningraw = '
'; // NOAA RAW watch/warning/advisory
*/

$wdversion '10.37S' '-(b' '149' ')';    // Weather Display version number you are running
$wdversiononly '10.37S';
$wdbuild   '149';       // Weather Display build number you are running
$noaacityname =  '---';    // City name,from the noaa setup (in the av/ext setup)
// 
$timeofnextupdate =  '---';    // 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 =  '47.7';    // temperature
$tempnodp '48'// temperature, no decimal place
$humidity =  '87';    // humidity
$dewpt =  '44.0';    // dew point
$maxtemp =  '47.9';    // today's maximum temperature
$maxtempt =  '1:15 AM';    // time this occurred
$mintemp =  '47.0';    // today's minimum temperature
$mintempt =  '3:49 AM';    // time this occurred
$feelslike =  '48';    // Shows heat index or humidex or windchill (if less than 16oC)

$heati =  '47.8';    // current heat index
$heatinodp =  '48';    // current heat index,no decimal place
$windch =  '47.7';    // current wind-chill
$windchnodp =  '48';    // current wind-chill, no decimal place
$humidexfaren =  '47.5';    // Humidex value in oF
$humidexcelsius =  '8.6';    // Humidex value in oC

$apparenttemp =  '47.0';    // Apparent temperature
$apparentsolartemp =  '47.0';    // Apparent temperature in the sun (you need a solar sensor)
$apparenttempc =  '8.3';    // Apparent temperature, °C
$apparentsolartempc =  '8.3';    // Apparent temperature in the sun, °C (you need a solar sensor)
$apparenttempf =  '47.0';    // Apparent temperature, °F
$apparentsolartempf =  '47.0';    // 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.7';    // Temperature change in the last hour
$maxtempyest =  '53.9';    // Yesterday's max temperature
$maxtempyestt =  '3:17 PM';    // Time of yesterday's max temperature
$mintempyest =  '40.1';    // Yesterday's min temperature
$mintempyestt =  '1:47 AM';    // Time of yesterday's min temperature
// 
// 
// Trends:
// -------
$temp24hoursago =  '41.5';    // The temperature 24 hours ago
$humchangelasthour =  '+1';    // Humidity change last hour
$dewchangelasthour =  '+0.9';    // Dew point change last hour
$barochangelasthour =  '+0.017';    // Baro change last hour
// 
// Wind
// ====
// Current:
// --------
// 
$avgspd =  '0.0';    // average wind speed (current)
$gstspd =  '0.0';    // current/gust wind speed
$maxgst =  '4.0';    // today's maximum wind speed
$maxgstt =  '3:56 AM';    // time this occurred
$maxgsthr =  '4.0 mph WNW';    // maximum gust last hour
$dirdeg =  '331';    // wind direction (degrees)
$dirlabel =  'NNW';    // wind direction (NNE etc)
//$maxgustlastimediatehourtime =  '7:03';    // 7:03  time that the max gust last prior 1 hour occured
$avwindlastimediate10 =  '0.0';    // Average wind for the last immediate 10 minute period
// $avdir10minute =  '331';    // 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 '29.984';  // current barometer
$baroinusa2dp =  '29.98 inches';    // Current barometer reading in inches, 2 decimal places only.
$trend =  '+0.028';    // amount of change in the last hour
$pressuretrendname =  'Rising slowly';    // pressure trend (i.e. 'falling'), last hour
$pressuretrendname3hour =  'Falling slowly';    // pressure trend (i.e. 'falling'), last 3 hours

$vpforecasttext 'mostly cloudy and cooler, precipitation continuing.';    // Forecast text from the Davis VP
// 
// 
// Rain
// ====
// Current:
// --------
$dayrn =  '0.78';    // today's rain
$monthrn =  '10.68';    // rain so far this month
$yearrn =  '17.14';    // rain so far this year
$dayswithnorain =  '0';    // Consecutative days with no rain
$dayswithrain =  '11';    // Days with rain for the month
$dayswithrainyear =  '38';    // Days with rain for the year
$currentrainratehr =  '0.019';    // Current rain rate, mm/hr (or in./hr)
$maxrainrate =  '0.009';    // Max rain rate,for the day, mm/min (or in./min)
$maxrainratehr =  '0.529';    // Max rain rate,for the day, mm/hr (or in.mm)
$maxrainratetime =  '2:34 AM';    // Time that occurred
// Yesterday:
// ----------
$yesterdayrain =  '0.02 ';    // Yesterday rain
//
$vpstormrainstart '3/27/2024';  //Davis VP Storm rain start date
$vpstormrain '0.80';           //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 =  '0.0';    // Yesterday's high UV
$highuvyesttime =  '12:00 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 =  '23.0';    // All time record high wind gust
$mrecordhighgustday =  '11';    // 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 '604';    // Estimated height snow will fall at
$snowheightnew '3006';    // 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 '47.8';  // ****this one is needed for all the others to work
$wind0minuteago '0.0';
$gust0minuteago '0.0';
$dir0minuteago 'NNW';
$hum0minuteago '87';
$dew0minuteago '44.1';
$baro0minuteago '29.985';
$rain0minuteago '0.78';
$VPsolar0minuteago '0';
$VPuv0minuteago '0.0';

$temp5minuteago '47.7';  
$wind5minuteago '0.0';
$gust5minuteago '0.0';
$dir5minuteago 'NNW';
$hum5minuteago '86';
$dew5minuteago '43.7';
$baro5minuteago '29.985';
$rain5minuteago '0.78';
$VPsolar5minuteago '0';
$VPuv5minuteago '0.0';

$temp10minuteago '47.6';  
$wind10minuteago '0.0';
$gust10minuteago '0.0';
$dir10minuteago 'NNW';
$hum10minuteago '86';
$dew10minuteago '43.6';
$baro10minuteago '29.978';
$rain10minuteago '0.78';
$VPsolar10minuteago '0';
$VPuv10minuteago '0.0';

$temp15minuteago '47.5';  
$wind15minuteago '0.0';
$gust15minuteago '0.0';
$dir15minuteago 'NNW';
$hum15minuteago '86';
$dew15minuteago '43.5';
$baro15minuteago '29.970';
$rain15minuteago '0.78';
$VPsolar15minuteago '0';
$VPuv15minuteago '0.0';

$temp20minuteago '47.4';  
$wind20minuteago '0.0';
$gust20minuteago '0.0';
$dir20minuteago ' N ';
$hum20minuteago '86';
$dew20minuteago '43.4';
$baro20minuteago '29.963';
$rain20minuteago '0.78';
$VPsolar20minuteago '0';
$VPuv20minuteago '0.0';

$temp30minuteago '47.3';  
$wind30minuteago '0.0';
$gust30minuteago '0.0';
$dir30minuteago 'NNW';
$hum30minuteago '86';
$dew30minuteago '43.3';
$baro30minuteago '29.982';
$rain30minuteago '0.78';
$VPsolar30minuteago '0';
$VPuv30minuteago '0.0';

$temp45minuteago '47.1';  
$wind45minuteago '1.2';
$gust45minuteago '1.2';
$dir45minuteago ' N ';
$hum45minuteago '86';
$dew45minuteago '43.1';
$baro45minuteago '29.968';
$rain45minuteago '0.77';
$VPsolar45minuteago '0';
$VPuv45minuteago '0.0';

$temp60minuteago '47.2';  
$wind60minuteago '1.2';
$gust60minuteago '2.3';
$dir60minuteago 'NNW';
$hum60minuteago '86';
$dew60minuteago '43.2';
$baro60minuteago '29.961';
$rain60minuteago '0.76';
$VPsolar60minuteago '0';
$VPuv60minuteago '0.0';

$temp75minuteago '47.1';  
$wind75minuteago '0.0';
$gust75minuteago '1.2';
$dir75minuteago ' SE';
$hum75minuteago '86';
$dew75minuteago '43.1';
$baro75minuteago '29.960';
$rain75minuteago '0.76';
$VPsolar75minuteago '0';
$VPuv75minuteago '0.0';

$temp90minuteago '47.2';  
$wind90minuteago '0.0';
$gust90minuteago '1.2';
$dir90minuteago 'ESE';
$hum90minuteago '86';
$dew90minuteago '43.3';
$baro90minuteago '29.972';
$rain90minuteago '0.76';
$VPsolar90minuteago '0';
$VPuv90minuteago '0.0';

$temp105minuteago '47.3';  
$wind105minuteago '0.0';
$gust105minuteago '0.0';
$dir105minuteago 'ENE';
$hum105minuteago '86';
$dew105minuteago '43.3';
$baro105minuteago '29.973';
$rain105minuteago '0.76';
$VPsolar105minuteago '0';
$VPuv105minuteago '0.0';

$temp120minuteago '47.5';  
$wind120minuteago '0.0';
$gust120minuteago '0.0';
$dir120minuteago 'NNW';
$hum120minuteago '86';
$dew120minuteago '43.5';
$baro120minuteago '29.991';
$rain120minuteago '0.75';
$VPsolar120minuteago '0';
$VPuv120minuteago '0.0';

$VPet '0.00';
$VPetmonth '0.00';
$dateoflastrainalways '3/28/2024';
$highbaro '30.064';
$highbarot '2:14 AM';
$highsolaryest '0.0';
$highsolaryesttime '12:00 AM';
$hourrn '0.02';
$maxaverageyest '4.9';
$maxaverageyestt '7:34 PM';
$maxavgdirectionletter ' NW';
$maxavgspd '2.5';
$maxavgspdt '7:04 AM';
$maxbaroyest '30.144';
$maxbaroyestt '12:00 AM';
$maxgstdirectionletter '  N';
$maxgustyest '8.1 mph WNW';
$maxgustyestt '7:33 PM';
$mcoldestdayonrecord '35.4F  on: Mar 25 2024';
$mcoldestnightonrecord '32.5F  on: Mar 22 2024';
$minchillyest '39.2';
$minchillyestt '1:34 AM';
$minwindch '46.9';
$minwindcht '7:04 AM';
$mrecordhighavwindday '11';
$mrecordhighavwindmonth '3';
$mrecordhighavwindyear '2024';
$mrecordhighbaro '30.655';
$mrecordhighbaroday '1';
$mrecordhighbaromonth '3';
$mrecordhighbaroyear '2024';
$mrecordhighgustmonth '3';
$mrecordhighgustyear '2024';
$mrecordhightemp '73.2';
$mrecordhightempday '15';
$mrecordhightempmonth '3';
$mrecordhightempyear '2024';
$mrecordlowchill '24.4';
$mrecordlowchillday '24';
$mrecordlowchillmonth '3';
$mrecordlowchillyear '2024';
$mrecordlowtemp '27.9';
$mrecordlowtempday '1';
$mrecordlowtempmonth '3';
$mrecordlowtempyear '2024';
$mrecordwindspeed '11.7';
$mwarmestdayonrecord '62.6F  on: Mar 15 2024';
$mwarmestnightonrecord '53.1F  on: Mar 15 2024';
$raincurrentweek '3.92';
$raintodatemonthago '0.00';
$raintodateyearago '0.00';
$timeoflastrainalways ' 7:23 AM';
$windruntodatethismonth '1332.06 miles';
$windruntodatethisyear '3587.56 miles';
$windruntoday '2.89';
$yesterdaydaviset '0.000';
$yrecordhighavwindday '9';
$yrecordhighavwindmonth '1';
$yrecordhighavwindyear '2024';
$yrecordhighbaro '30.655';
$yrecordhighbaroday '1';
$yrecordhighbaromonth '3';
$yrecordhighbaroyear '2024';
$yrecordhighgustday '9';
$yrecordhighgustmonth '1';
$yrecordhighgustyear '2024';
$yrecordhightemp '73.2';
$yrecordhightempday '15';
$yrecordhightempmonth '3';
$yrecordhightempyear '2024';
$yrecordlowchill '11.5';
$yrecordlowchillday '20';
$yrecordlowchillmonth '1';
$yrecordlowchillyear '2024';
$yrecordlowtemp '17.4';
$yrecordlowtempday '20';
$yrecordlowtempmonth '1';
$yrecordlowtempyear '2024';
$yrecordwindgust '31.1';
$yrecordwindspeed '19.1';
$daysTmaxGT30C '0';
$daysTmaxGT25C '0';
$daysTminLT0C '4';
$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 '5';                // icon number

   
$current_icon $icon_array[5]; // name of our condition icon
// ----------------------------------------------------------------------------------
//   $current_summary = 'Stopped raining' . '<br />' . 'Day time ';
   
$weathercond 'Stopped raining';
   
$Currentsolardescription 'Day time ';
   
$current_summary $Currentsolardescription;
   
$current_summary preg_replace('|^/[^/]+/|','',$current_summary);
   
$current_summary preg_replace('|\\\\|',', ',$current_summary);
   
$current_summary preg_replace('|/|',', ',$current_summary);
//  
//  
$cloudheightfeet =  '1042';    // Estimated cloud base height, feet, (based on dew point, and you height above sea  level...enter
$cloudheightmeters =  '318';    // 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 '7:03';        // time that the max gust last prior 1 hour occured
$minbaroyest  '30.014';
$minbaroyestt '7:11 PM';
$mrecordlowbaro '29.306';
$mrecordlowbaroday '10';
$mrecordlowbaromonth '3';
$mrecordlowbaroyear '2024';
$yrecordlowbaro '28.981';
$yrecordlowbaroday '10';
$yrecordlowbaromonth '1';
$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 'Morning';
$avwindlastimediate60 '0.6'// average wind speed
$avwindlastimediate120 '0.2'// average wind speed
$currentmonthaveragerain '---'// average rain for current month
//
// version 5.00+ 
$avwindlastimediate15 '0.0'// average wind speed
$avwindlastimediate30 '0.0'// average wind speed
$todayhihumidex '47.6'//daily high humidex
$todaylohumidex '45.5'//Daily low Humidex
//Version 5.02
$dayornight 'Day'// Day or night flag

//Version 6.20
$tempchangelasthourfaren '+0.6'//For snow prediction
$abshum '5.77'//For snow prediction
$maxtemp4today '51.3'// max from station's records
$mintemp4today '41.0'// min from station's records
$maxtemp4todayyr '2023'// max year from station's records
$mintemp4todayyr '2023'// 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 '36.5';
$avtempfebnow '37.9';
$avtempmarnow '45.3';
$avtempaprnow '55.5';
$avtempmaynow '60.8';
$avtempjunnow '67.9';
$avtempjulnow '77.4';
$avtempaugnow '73.1';
$avtempsepnow '68.4';
$avtempoctnow '58.8';
$avtempnovnow '45.7';
$avtempdecnow '43.6';
$avtempjan '38.3';//Average temperature for january from your data
$avtempfeb '38.7';//Average temperature for february from your data
$avtempmar '44.1';//Average temperature for march from your data
$avtempapr '55.5';//Average temperature for april from your data
$avtempmay '60.8';//Average temperature for may from your data
$avtempjun '67.9';//Average temperature for june from your data
$avtempjul '77.4';//Average temperature for july from your data
$avtempaug '73.1';//Average temperature for august from your data
$avtempsep '68.4';//Average temperature for september from your data
$avtempoct '58.8';//Average temperature for october from your data
$avtempnov '45.7';//Average temperature for november from your data
$avtempdec '43.6';//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 '4.08';
$avrainfeb '1.55';
$avrainmar '4.75';
$avrainapr '3.98';
$avrainmay '2.02';
$avrainjun '1.42';
$avrainjul '1.92';
$avrainaug '4.02';
$avrainsep '8.93';
$avrainoct '2.11';
$avrainnov '2.02';
$avraindec '6.33';

$avrainjannow '4.85';
$avrainfebnow '1.56';
$avrainmarnow '10.68';
$avrainaprnow '3.98';
$avrainmaynow '2.02';
$avrainjunnow '1.42';
$avrainjulnow '1.92';
$avrainaugnow '4.02';
$avrainsepnow '8.93';
$avrainoctnow '2.11';
$avrainnovnow '2.02';
$avraindecnow '6.33';
//End Rain Trending
// end of relayweather tags
// ----------------------------------------------------------------------------------------------------
// eastmasonville wxrecord.php tags
$recordhightemp '95.0';
$recordlowtemp '4.3';
$recordhighheatindex '108.3';
$recordlowchill '-5.6';
$warmestdayonrecord '91.6 F  on: Jul 28 2023';
$warmestnightonrecord '80.2F  on: Jul 29 2023';
$coldestdayonrecord '12.9F  on: Feb 04 2023';
$coldestnightonrecord '9.3F  on: Feb 04 2023';
$recordwindgust '31.1';
$recordwindspeed '19.1';
$recordhighwindrun '164.1';
$recorddailyrain '4.32';
$recordhighrainmth '10.7';
$recordrainrate '0.394';
$recorddayswithrain '9';
$recorddaysnorain '11';
$recordhighdew '78.4';
$recordlowdew '-18.2';
$recordhighhum '89';
$recordlowhum '6';
$recordhighbaro '30.688';
$recordlowbaro '28.981';
$recordhighsolar '0.0';
$recordhightempmonth '7';
$recordhightempday '28';
$recordhightempyear '2023';
$recordlowtempmonth '2';
$recordlowtempday '4';
$recordlowtempyear '2023';
$recordhighheatindexmonth '7';
$recordhighheatindexday '27';
$recordhighheatindexyear '2023';
$recordlowchillmonth '2';
$recordlowchillday '4';
$recordlowchillyear '2023';
$recordhighgustmonth '1';
$recordhighgustday '9';
$recordhighgustyear '2024';
$recordhighavwindmonth '1';
$recordhighavwindday '9';
$recordhighavwindyear '2024';
$recordhighwindrunmth '2';
$recordhighwindrunday '28';
$recordhighwindrunyr '2024';
$recorddailyrainmonth '9';
$recorddailyrainday '29';
$recorddailyrainyear '2023';
$recordhighrainmthmth '3';
$recordhighrainmthyr '2024';
$recordrainratemonth '8';
$recordrainrateday '18';
$recordrainrateyear '2023';
$recorddayswithrainmonth '7';
$recorddayswithrainday '22';
$recorddayswithrainyear '2023';
$recorddaysnorainmonth '5';
$recorddaysnorainday '20';
$recorddaysnorainyear '2023';
$recordhighdewmonth '7';
$recordhighdewday '2';
$recordhighdewyear '2023';
$recordlowdewmonth '2';
$recordlowdewday '4';
$recordlowdewyear '2023';
$recordhighhummonth '4';
$recordhighhumday '30';
$recordhighhumyear '2023';
$recordlowhummonth '4';
$recordlowhumday '11';
$recordlowhumyear '2023';
$recordhighbaromonth '12';
$recordhighbaroday '14';
$recordhighbaroyear '2023';
$recordlowbaromonth '12';
$recordlowbaroday '18';
$recordlowbaroyear '2023';
$recordhighsolarmonth '1';
$recordhighsolarday '8';
$recordhighsolaryear '2023';
$recordhighuv '0.0';
$recordhighuvmonth '1';
$recordhighuvday '8';
$recordhighuvyear '2023';

$yrecordhighheatindex '73.2';
$yrecordhighheatindexmonth '3';
$yrecordhighheatindexday '15';
$yrecordhighheatindexyear '2024';
$ywarmestdayonrecord '62.6F  on: Mar 15 2024';
$ywarmestnightonrecord '53.8F  on: Jan 10 2024';
$ycoldestdayonrecord '21.7F  on: Jan 17 2024';
$ycoldestnightonrecord '19.9F  on: Jan 21 2024';
$yrecordhighwindrun '164.1';
$yrecordhighwindrunmth '2';
$yrecordhighwindrunday '28';
$yrecordhighwindrunyr '2024';
$yrecorddailyrain '3.90';
$yrecordhighrainmth '10.7';
$yrecordrainrate '0.082';
$yrecorddayswithrain '7';
$yrecorddaysnorain '10';
$yrecordhighdew '54.0';
$yrecordlowdew '0.1';
$yrecordhighhum '88';
$yrecordlowhum '12';
$yrecorddailyrainmonth '3';
$yrecorddailyrainday '23';
$yrecorddailyrainyear '2024';
$yrecordhighrainmthmth '3';
$yrecordhighrainmthyr '2024';
$yrecordrainratemonth '3';
$yrecordrainrateday '23';
$yrecordrainrateyear '2024';
$yrecorddayswithrainmonth '1';
$yrecorddayswithrainday '29';
$yrecorddaysnorainmonth '2';
$yrecorddaysnorainday '13';
$yrecordhighdewmonth '1';
$yrecordhighdewday '13';
$yrecordhighdewyear '2024';
$yrecordlowdewmonth '2';
$yrecordlowdewday '25';
$yrecordlowdewyear '2024';
$yrecordhighhummonth '1';
$yrecordhighhumday '9';
$yrecordhighhumyear '2024';
$yrecordlowhummonth '3';
$yrecordlowhumday '14';
$yrecordlowhumyear '2024';
$yrecordhighsolar '0.0';
$yrecordhighsolarmonth '1';
$yrecordhighsolarday '8';
$yrecordhighsolaryear '2023';
$yrecordhighuv '0.0';
$yrecordhighuvmonth '1';
$yrecordhighuvday '8';
$yrecordhighuvyear '2023';

$mrecordhighheatindex '73.2';
$mrecordhighheatindexmonth '3';
$mrecordhighheatindexday '15';
$mrecordhighheatindexyear '2024';
$mrecordhighwindrun '112.7';
$mrecordhighwindrunmth '3';
$mrecordhighwindrunday '11';
$mrecordhighwindrunyr '2024';
$mrecorddailyrain '3.90';
$mrecordhighrainmth '10.7';
$mrecordrainrate '0.082';
$mrecorddayswithrain '3';
$mrecorddaysnorain '9';
$mrecordhighdew '51.6';
$mrecordlowdew '3.6';
$mrecordhighhum '88';
$mrecordlowhum '12';
$mrecorddailyrainmonth '3';
$mrecorddailyrainday '23';
$mrecorddailyrainyear '2024';
$mrecordhighrainmthmth '3';
$mrecordhighrainmthyr '2024';
$mrecordrainratemonth '3';
$mrecordrainrateday '23';
$mrecordrainrateyear '2024';
$mrecorddayswithrainmonth '3';
$mrecorddayswithrainday '7';
$mrecorddaysnorainmonth '3';
$mrecorddaysnorainday '20';
$mrecordhighdewmonth '3';
$mrecordhighdewday '3';
$mrecordhighdewyear '2024';
$mrecordlowdewmonth '3';
$mrecordlowdewday '21';
$mrecordlowdewyear '2024';
$mrecordhighhummonth '3';
$mrecordhighhumday '3';
$mrecordhighhumyear '2024';
$mrecordlowhummonth '3';
$mrecordlowhumday '14';
$mrecordlowhumyear '2024';
$myrecordhighbaromonth '3';
$mrecordhighsolar '0.0';
$mrecordhighsolarmonth '1';
$mrecordhighsolarday '8';
$mrecordhighsolaryear '2023';
$mrecordhighuv '0.0';
$mrecordhighuvmonth '1';
$mrecordhighuvday '8';
$mrecordhighuvyear '2023';
// end of eastmasonville wxrecord.php tags
// ----------------------------------------------------------------------------------------------------
// other addons
$vpissstatus 'Ok';      // VP ISS Status
$vpreception2 '100%'// VP Current reception %  *** NEW IN V1.01
$vpconsolebattery '4.6'// VP Console Battery Volts *** NEW IN V1.01
$firewi '0.3'// Fire Weather Index
$avtempweek '40.2';    // Average Weekly Temp
$hddday '5.4';        // Heating Degree for day
$hddmonth '538.4';    // Heating Degree for month to date
$hddyear '2204.4';    // Heating Degree for year to date
$cddday '0.0';        // Cooling Degree for day
$cddmonth '0.0';    // Cooling Degree for month to date
$cddyear '0.0';    // Cooling Degree for year to date
$minchillweek '25.3';  // Minimum Wind Chill over past 7 days 
$maxheatweek '54.0';  // Maximum Heat Index for the Week *** NEW IN V2.00
$airdensity '1.25';  //air density
$solarnoon '12:57'// Solar noon
$changeinday '00:02:43';  // change in day length since yesterday
$etcurrentweek '0.000'// ET total for the last 7 days
$sunshinehourstodateday '00:00';
$sunshinehourstodatemonth '00:00';
$maxsolarfortime '0';
$wetbulb '46.0';
$lighteningcountlasthour '0';
$lighteningcountlastminute '0';
$lighteningcountlast5minutes '0';
$lighteningcountlast12hour '0';
$lighteningcountlast30minutes '0';
$lighteningcountlasttime '';
$lighteningcountmonth '0';
$lighteningcountyear '0';
$chandler '-1.2';
$maxdew '44.1';
$maxdewt '7:51 AM';
$mindew '39.7';
$mindewt '12:07 AM';
$maxdewyest '40.2';
$maxdewyestt '11:29 PM';
$mindewyest '32.1';
$mindewyestt '12:00 AM';
$stationname 'mystation';
$raindifffromav '---';
$raindifffromavyear '17.140';
$gddmonth '105.5';
$gddyear '135.6';
$maxheat '47.9';
$maxheatt '1:15 AM'
$maxheatyest '53.9';  
$yeartodateavtemp '39.7'
$monthtodateavtemp '45.3'
$maxchillyest '53.9'
$monthtodatemaxgust '23.0'
$monthtodateavspeed '2.0'// MTD average wind speed
$monthtodateavgust '3.9'//MTD average wind gust
$yeartodateavwind '1.7'// YTD average wind speed
$yeartodategstwind '3.5'// YTD avg wind gust
$lowbaro '29.953';
$lowbarot '6:29 AM';
$monthtodatemaxbaro '30.654'// MTD average wind speed
$monthtodateminbaro '29.306'//MTD average wind gust
$sunshinehourstodateyear '00:00'
$sunshineyesterday '00:00';
$avtempsincemidnight '47.4';
$yesterdayavtemp '45.8';
$avgspeedsincereset '0.4';
$maxheatyestt '3:17 PM';
$windrunyesterday '16.16';
$currentwdet '0.000';
$yesterdaywdet '0.000';
$highhum '87';
$highhumt '7:51 AM';
$lowhum '75';
$lowhumt '12:00 AM';
$maxhumyest '78';
$maxhumyestt '4:57 AM';
$minhumyest '55';
$minhumyestt '2:28 PM';
$recordhightempjan '57.9';
$recordlowtempjan '17.4';
$recordhightempfeb '71.6';
$recordlowtempfeb '22.1';
$recordhightempmar '73.2';
$recordlowtempmar '28.2';
$recordhightempapr '90.1';
$recordlowtempapr '31.8';
$recordhightempmay '88.3';
$recordlowtempmay '41.4';
$recordhightempjun '89.4';
$recordlowtempjun '49.6';
$recordhightempjul '95.0';
$recordlowtempjul '62.2';
$recordhightempaug '86.7';
$recordlowtempaug '60.1';
$recordhightempsep '93.4';
$recordlowtempsep '53.1';
$recordhightempoct '79.7';
$recordlowtempoct '43.3';
$recordhightempnov '66.4';
$recordlowtempnov '28.2';
$recordhightempdec '62.1';
$recordlowtempdec '26.2';

// average temp and rain by month (V1.08 addition)

$avtempjannow '36.5';
$avtempfebnow '37.9';
$avtempmarnow '45.3';
$avtempaprnow '55.5';
$avtempmaynow '60.8';
$avtempjunnow '67.9';
$avtempjulnow '77.4';
$avtempaugnow '73.1';
$avtempsepnow '68.4';
$avtempoctnow '58.8';
$avtempnovnow '45.7';
$avtempdecnow '43.6';

$avrainjannow '4.85';
$avrainfebnow '1.56';
$avrainmarnow '10.68';
$avrainaprnow '3.98';
$avrainmaynow '2.02';
$avrainjunnow '1.42';
$avrainjulnow '1.92';
$avrainaugnow '4.02';
$avrainsepnow '8.93';
$avrainoctnow '2.11';
$avrainnovnow '2.02';
$avraindecnow '6.33';

// end of other addons
// end of testtags.txt/testtags.php
?>

You find our weather info also at:

Weather Underground

AWEKAS

Citizen Weather Observer Program (CWOP)

Equipment we use:

Weather-station
Davis VP2

Davis VP2