-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFawkes06132021.html
1774 lines (1518 loc) · 106 KB
/
Fawkes06132021.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<title>Fawkes House Weather Forecast Lancaster, Pennsylvania</title>
<script src="https://cdnres.willyweather.com/widget/warning/loadView.html?id=126547"
type="application/javascript"></script>
<style>
/* -------------------------------------
GLOBAL RESETS
------------------------------------- */
/*All the styling goes here*/
img {
border: none;
-ms-interpolation-mode: bicubic;
max-width: 100%;
}
body {
background-color: #f6f6f6;
font-family: sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 14px;
line-height: 1.4;
margin: 0;
padding: 0;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
table {
border-collapse: separate;
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
width: 100%; }
table td {
font-family: sans-serif;
font-size: 14px;
vertical-align: top;
}
/* -------------------------------------
BODY & CONTAINER
------------------------------------- */
.body {
background-color: #f6f6f6;
width: 100%;
}
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
.container {
display: block;
margin: 0 auto !important;
/* makes it centered */
max-width: 580px;
padding: 10px;
width: 580px;
}
/* This should also be a block element, so that it will fill 100% of the .container */
.content {
box-sizing: border-box;
display: block;
margin: 0 auto;
max-width: 580px;
padding: 10px;
}
/* -------------------------------------
HEADER, FOOTER, MAIN
------------------------------------- */
.main {
background: #ffffff;
border-radius: 3px;
width: 100%;
}
.wrapper {
box-sizing: border-box;
padding: 20px;
}
.content-block {
padding-bottom: 10px;
padding-top: 10px;
}
.footer {
clear: both;
margin-top: 10px;
text-align: center;
width: 100%;
}
.footer td,
.footer p,
.footer span,
.footer a {
color: #999999;
font-size: 12px;
text-align: center;
}
/* -------------------------------------
TYPOGRAPHY
------------------------------------- */
h1,
h2,
h3,
h4 {
color: #000000;
font-family: sans-serif;
font-weight: 400;
line-height: 1.4;
margin: 0;
margin-bottom: 30px;
}
h1 {
font-size: 35px;
font-weight: 300;
text-align: center;
text-transform: capitalize;
}
p,
ul,
ol {
font-family: sans-serif;
font-size: 14px;
font-weight: normal;
margin: 0;
margin-bottom: 15px;
}
p li,
ul li,
ol li {
list-style-position: inside;
margin-left: 5px;
}
a {
color: #0000cd;
text-decoration: underline;
}
/* -------------------------------------
BUTTONS
------------------------------------- */
.btn {
box-sizing: border-box;
width: 100%; }
.btn > tbody > tr > td {
padding-bottom: 15px; }
.btn table {
width: auto;
}
.btn table td {
background-color: #ffffff;
border-radius: 5px;
text-align: center;
}
.btn a {
background-color: #ffffff;
border: solid 1px #0000cd;
border-radius: 5px;
box-sizing: border-box;
color: #3498db;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: bold;
margin: 0;
padding: 12px 25px;
text-decoration: none;
text-transform: capitalize;
}
.btn-primary table td {
background-color: #3498db;
}
.btn-primary a {
background-color: #34495e;
border-color: #3498db;
color: #ffffff;
}
/* -------------------------------------
OTHER STYLES THAT MIGHT BE USEFUL
------------------------------------- */
.last {
margin-bottom: 0;
}
.first {
margin-top: 0;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
.align-left {
text-align: left;
}
.clear {
clear: both;
}
.mt0 {
margin-top: 0;
}
.mb0 {
margin-bottom: 0;
}
.preheader {
color: transparent;
display: none;
height: 0;
max-height: 0;
max-width: 0;
opacity: 0;
overflow: hidden;
mso-hide: all;
visibility: hidden;
width: 0;
}
.powered-by a {
text-decoration: none;
}
hr {
border: 0;
border-bottom: 1px solid #f6f6f6;
margin: 20px 0;
}
/* -------------------------------------
RESPONSIVE AND MOBILE FRIENDLY STYLES
------------------------------------- */
@media only screen and (max-width: 620px) {
table[class=body] h1 {
font-size: 28px !important;
margin-bottom: 10px !important;
}
table[class=body] p,
table[class=body] ul,
table[class=body] ol,
table[class=body] td,
table[class=body] span,
table[class=body] a {
font-size: 16px !important;
}
table[class=body] .wrapper,
table[class=body] .article {
padding: 10px !important;
}
table[class=body] .content {
padding: 0 !important;
}
table[class=body] .container {
padding: 0 !important;
width: 100% !important;
}
table[class=body] .main {
border-left-width: 0 !important;
border-radius: 0 !important;
border-right-width: 0 !important;
}
table[class=body] .btn table {
width: 100% !important;
}
table[class=body] .btn a {
width: 100% !important;
}
table[class=body] .img-responsive {
height: auto !important;
max-width: 100% !important;
width: auto !important;
}
}
/* -------------------------------------
PRESERVE THESE STYLES IN THE HEAD
------------------------------------- */
@media all {
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
.apple-link a {
color: inherit !important;
font-family: inherit !important;
font-size: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
text-decoration: none !important;
}
#MessageViewBody a {
color: inherit;
text-decoration: none;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
}
.btn-primary table td:hover {
background-color: #34495e !important;
}
.btn-primary a:hover {
background-color: #34495e !important;
border-color: #34495e !important;
}
}
</style>
</head>
<body class="">
<table role="presentation" class="body" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td> </td>
<td class="container">
<div class="content">
<!-- START CENTERED WHITE CONTAINER -->
<table role="presentation" class="main">
<!-- START MAIN CONTENT AREA -->
<tbody>
<tr>
<td class="wrapper">
<table role="presentation" cellspacing="0" cellpadding="0"
border="0">
<tbody>
<tr>
<td>
<h2 style="color: black; font-family: sans-serif; font-weight: 400; line-height: 1.4; margin: 0px 0px 30px; text-align: center;"><strong><img
alt="Apex Wx Banner" src="https://raw.githubusercontent.com/ApexWx/ApexWx.github.io/master/Apex%20banner.jpg">Fawkes
House, Lancaster, Pennsylvania<br>
Weather Information</strong></h2>
<div style="text-align: center;">
<div> <label id="lblGreetings"></label><br>
<div>
<div style="text-align: center;"> <iframe src="https://freesecure.timeanddate.com/clock/i7aykgoq/n23/ftb/tt0/ts1/ta1"
height="19" frameborder="0" width="343">&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;em&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;/em&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;lt;br&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;gt;</iframe>
</div>
</div>
</div>
<div> <em>Forecast Updated at 12:00 pm Sun.
June 13, 2021</em><em></em></div>
<div> <em><br>
</em> </div>
<div style="text-align: center;"> <em>Optimized
for tablets and mobile devices.<br>
</em><span style="color: red;"><span style="color: black;"><em>Always
consult your local NWS office in making
weather-related decisions.</em></span></span>
<em><br>
Apex Wx is a private weather information
service unaffiliated with NOAA/NWS.</em> <em></em>
</div>
<div style="text-align: center;">
<div style="text-align: center;"><br>
</div>
<div style="text-align: center;"> <strong>Official
Government Forecasts<em></em></strong><em><br>
<br>
</em> <a href="https://forecast.weather.gov/MapClick.php?x=302&y=230&site=ctp&zmx=&zmy=&map_x=302&map_y=230"
title="NWS State College Lancaster, PA Forecast">NWS
State College Lancaster, PA Forecast<br>
</a>
<p> </p>
<div style="text-align: center;"> <span style="color: red;"><strong><span
style="color: black;"><br>
</span></strong></span> </div>
<div style="text-align: center;"> <span style="color: red;"><strong><span
style="color: black;">Go To<br>
</span></strong></span> </div>
<div style="text-align: center;"> <span style="color: red;"><span
style="color: black;"><a href="#Short"
title="Short Term Forecasts">Short-Term
Forecast</a> | <a href="#Medium" title="Medium-Range Forecast">Medium-Range
Forecast</a> | <a href="#Long" title="Long-Range Trends">Long-Range
Trends</a></span></span> </div>
<div style="text-align: center;"> <span style="color: red;"><span
style="color: black;"><br>
</span></span> </div>
<div style="text-align: center;"> <span
style="color: red;"><span style="color: black;"><a
href="#Outlooks" title="National Outlooks">National
Outlooks</a> | <a href="#Maps" title="Maps & Charts">Maps
& Charts</a></span></span> </div>
<div style="text-align: center;"> <strong></strong>
</div>
<div style="text-align: center;">
<div> <span style="color: red;"><strong><br>
</strong></span> </div>
</div>
<div style="text-align: center;"> <strong><br>
Current Conditions in Lancaster,
Pennsylvania<br>
<br>
</strong> </div>
<div style="text-align: center;"> <strong></strong><a
href="https://ambientweather.net/dashboard/f2d6a870a62ed991d4ac0bf1d0482a3f"
title="Ambient Weather Station Dashboard">AMLoR
Weather (PWS)<br>
</a> </div>
<div style="text-align: center;"> <br>
</div>
<strong></strong><strong></strong>
<div style="text-align: center;"><strong>
Other Regional Resources<br>
<br>
</strong> </div>
<div style="text-align: center;">
<div style="text-align: center;"> <a href="https://www.511pa.com/"
title="Pennsylvania Road Conditions">Pennsylvania
Road Conditions</a><em> </em> <em></em>|<em> </em>
<a href="https://water.weather.gov/ahps/region.php?state=pa"
title="Pennsylvania River Forecast Center">Pennsylvania
River Forecast Center</a><em><br>
</em> </div>
<div style="text-align: center;"> <a href="https://www.timeanddate.com/astronomy/usa/lancaster-pa"
title="Lancaster Sun and Moon Times"><br>
</a> </div>
<div style="text-align: center;"> <a href="https://www.timeanddate.com/astronomy/usa/lancaster-pa"
title="Lancaster Sun and Moon Times">Lancaster
Sun and Moon Times</a> </div>
<div style="text-align: left;"> </div>
<div style="text-align: left;"> </div>
<div style="text-align: left;">
<div style="text-align: left;">
<div style="text-align: left;">
<div style="text-align: left;"> <u><strong><a
id="Short" name="Short"></a>Short-Term
Outlook: Sunday </strong><strong>-
Tuesday<br>
</strong></u></div>
</div>
<div style="text-align: left;"><br>
</div>
<div style="text-align: left;">An area
of low pressure and associated
trough will slowly move across
Pennsylvania from the west today
through Monday night. Showers are
likely as are scattered
thunderstorms with isolated strong
to severe storms possible for
Lancaster and vicinity. Showers and
thunderstorms diminish in frequency
after midnight with a slight chance
for showers Monday morning.</div>
<div style="text-align: left;"><br>
</div>
<div style="text-align: left;">Showers
and thunderstorms increase in
frequency Monday afternoon with
isolated strong to severe storms
possible once again. A diminishing
chances for showers and
thunderstorms continue Monday night
into Tuesday. High pressure builds
down from the Great Lakes Tuesday
with overall drier conditions and
only a slight chance for isolated
showers and afternoon thunderstorms.
Mostly clear skies and dry
conditions are expected Tuesday
night into Wednesday.</div>
</div>
</div>
<div style="text-align: left;"><br>
<div style="text-align: left;">
<div style="text-align: left;">
<div>
<div>
<div>
<div>
<div>
<div><strong>Today &
Tonight</strong>
<div>
<div>
<div>
<div><strong></strong>Cloudy
with a 60%
chance for
afternoon
showers and
thunderstorms.
Rainfall totals
in the 1/10 to
1/4-inch range
with higher
amounts possible
in
thunderstorms.
Isolated strong
to severe storms
possible. High
around 79° with
south-southeast
winds 5 to 10
mph. </div>
<div><br>
<strong></strong></div>
<div>Tonight,
mostly cloudy
with a 60%
chance for
showers and
thunderstorms.
Low near 64°
with south winds
0 to 5 mph. </div>
<div><strong><br>
</strong></div>
<div><strong>Monday,
June 14</strong></div>
<div>Partly cloudy
with a 60%
chance for
showers and
thunderstorms,
especially in
the afternoon.
Isolated strong
to severe storms
possible.
Rainfall amounts
in the 1/10 to
1/4-inch range
with higher
amounts possible
in
thunderstorms.
High around 84°
with west winds
5 to 10 mph.</div>
<div><br>
</div>
<div>Monday night,
partly cloudy
with a 40%
chance for
scattered
showers and
thunderstorms
tapering off
after midnight.
Rainfall totals
between 1/100
and 1/10-inch
with higher
totals possible
in any storms.
Low near 61°
with west winds
0 to 5 mph
becoming
northwest after
midnight.<br>
<div><strong><br>
Tuesday, June
15<br>
</strong>Partly
cloudy to
mostly sunny
with a 20%
chance for
isolated
afternoon
showers and
thunderstorms.
High around
82° with
northwest
winds 5 to 10
mph.</div>
<br>
Tuesday night,
mostly clear
with a 5% chance
for showers. Low
near 58° with
northwest winds
0 to 5 mph.</div>
</div>
</div>
<strong></strong></div>
<br>
<strong></strong><u><strong><a
name="Medium" id="Medium"></a>Medium
Range Outlook:
Wednesday - Saturday<br>
<br>
</strong></u></div>
</div>
</div>
</div>
</div>
Mostly clear skies are expected
Wednesday through Friday morning
with partly cloudy skies
developing Friday afternoon as a
warm front lifts across the
Lancaster region. A cold front
moves across the Commonwealth
Saturday into Sunday with a chance
for scattered afternoon showers
and thunderstorms.</div>
<div><br>
<strong>Wednesday, June 16</strong></div>
<div>Mostly sunny with a high near
79°. 10% chance for showers.
Northwest winds 5 to 10 mph.</div>
<div><br>
</div>
<div>Wednesday night, mostly clear
with a low near 52°. 5% chance for
precipitation. North winds 0 to 5
mph.</div>
<div><br>
<strong>Thursday, June 17<br>
</strong>Mostly sunny with a high
around 79°. 5% chance for showers.
Northwest winds 5 to 10 mph.</div>
<div><br>
Thursday night, mostly clear with
a low around 55°. Southwest winds
0 to 5 mph.</div>
<div><br>
<strong>Friday, June 18</strong></div>
<div>Mostly sunny with a 5% chance
for showers. High near 84° with
southwest winds 5 to 10 mph.</div>
<div><br>
</div>
<div>Friday night, partly cloudy
with a 20% chance for showers. Low
around 64° with southwest winds 0
to 5 mph.</div>
<div><br>
</div>
<div><strong>Saturday, June 19</strong></div>
<div>Partly cloudy with a 30% chance
for scattered afternoon showers
and thunderstorms. High near 86°
with southwest winds 5 to 10 mph.</div>
<div><br>
</div>
<div>Saturday night, partly cloudy
with a 30% chance for scattered
showers and thunderstorms. Low
around 64° with west winds 0 to 5
mph.</div>
<div><br>
</div>
<div><br>
</div>
<div><br>
<strong> </strong></div>
<div><u><strong><a name="Long" id="Long"></a>Long-Range
Trends: Sun</strong></u><u><strong>
June 20 - Sat. June 26</strong></u><u><strong><br>
<br>
</strong></u>Near normal
temperatures / Above
normal precipitation</div>
<div><br>
</div>
<div style="text-align: left;">
<div>------------------------------------------------------------------------------------------------------------</div>
<div><br>
</div>
<div><strong> <a name="Outlooks"></a>NWS
National Weather Outlook</strong><br>
<a href="https://www.weather.gov/">https://www.weather.gov/</a></div>
<div style="text-align: left;"><em><strong><br>
</strong></em><em><strong>Mid-Atlantic
Severe Storms; Western Heat
and Fire Weather Threats</strong></em><br>
A frontal system will produce a
line of strong to severe
thunderstorms with potential for
damaging winds, hail, and
locally heavy rain in the
Mid-Atlantic and into the
Northeast. Isolated storms may
develop in the High Plains and
Upper Midwest. Dangerous heat
and critical fire weather
threats will develop across the
Southwest and Great Basin.
Record highs will be possible
into the High Plains.
<div style="text-align: left;"><br>
<div><a href="https://www.wpc.ncep.noaa.gov/discussions/hpcdiscussions.php?disc=pmdspd"
title="Short Range Discussion">Short
Range National Forecast
Discussion</a> (Day ½ -
2½)</div>
<div><a href="https://www.wpc.ncep.noaa.gov/discussions/hpcdiscussions.php?disc=pmdepd"
title="Medium Range Discussion">Medium
Range National Forecast
Discussion</a> (Day 3 - 7)</div>
<div><br>
</div>
<div>---------------------------</div>
<div><br>
</div>
<div><strong>SPC National
Thunderstorm/Severe
Weather Outlook</strong><br>
<a href="https://www.spc.noaa.gov/">
https://www.spc.noaa.gov/</a></div>
</div>
<div style="text-align: left;"><br>
</div>
<div style="text-align: left;">Damaging
winds will be possible this
afternoon/evening across the
central Appalachians. Damaging
winds and isolated large hail
will also be possible this
evening into early tonight
across parts of the central
High Plains.<br>
<br>
<div>---------------------------
</div> <br>
<div><strong>National
Hurricane Center Atlantic
Tropical Weather Outlook<br>
</strong></div>
<a href="https://www.nhc.noaa.gov/">https://www.nhc.noaa.gov/</a><br>
<br>
<div><em>The Atlantic
hurricane season runs from
June 1st through November
30th.</em></div>
<div><em>See more graphics on
the <a href="https://apexwx.github.io/trop.html">Apex
Wx Tropical Wall</a>
accessed via the website
menu.</em><br>
</div>
<br>
<div><a href="https://www.nhc.noaa.gov/gtwo.php?basin=atlc&fdays=2"
title="Atlantic 2-Day Graphical Tropical
Weather Outlook"
style="color: rgb(0, 0,
128); text-decoration: underline;">Atlantic
2-Day Graphical Tropical
Weather Outlook</a></div>
<div><strong><a href="https://www.nhc.noaa.gov/gtwo.php?basin=atlc&fdays=5"
title="Atlantic 5-Day Graphical
Tropical Weather Outlook">
</a></strong><a href="https://www.nhc.noaa.gov/gtwo.php?basin=atlc&fdays=5"
title="Atlantic 5-Day Graphical Tropical Weather
Outlook">Atlantic
5-Day Graphical Tropical
Weather Outlook</a></div>
<strong>
<div style="text-align: left;"><a
href="https://www.nhc.noaa.gov/gtwo.php?basin=atlc&fdays=5"
title="Atlantic 5-Day Graphical
Tropical Weather Outlook"><br>
</a></div>
</strong>
<div>
---------------------------</div>
<div><br>
</div>
<div><strong>National High and
Low Temperatures</strong><br>
(excluding Alaska and
Hawaii)</div>
</div>
<div style="text-align: left;">
<div style="text-align: left;"><br>
<em>High Temperature for
Saturday, June 12, 2021</em><br>
112 at Rio Grande Village,
TX<br>
112 at Death Valley, CA<br>
112 at Sabino Canyon, AZ<br>
112 at 2 miles southwest of
Cibola, AZ<br>
<br>
<em>Low Temperature for
Saturday, June 12, 2021</em><br>
20 at Peter Sinks, UT</div>
</div>
<br>
<br>
</div>
</div>
</div>
</div>
</div>
<div>
<table style="width: 90%; text-align: center; margin-left: auto; margin-right: auto;"
border="0">
<tbody>
<tr>
<td style="text-align: center; width: 153px;"><a
href="https://www.weather.gov/SKYWARN"
title="NWS Skywarn Storm Spotters"
style="color: #1855d9; text-decoration: underline;"><img
src="https://raw.githubusercontent.com/ApexWx/ApexWx.github.io/master/SkywarnLogoTxtOutln2.png"
alt="Skywarn Storm Spotters"
style="border: none; -ms-interpolation-mode: bicubic; max-width: 100%; width: 70px; height: 97px; padding: 10px;"
height="97" width="70"></a></td>
<td style="text-align: center; width: 201px;"><a
href="https://www.weather.gov/safety/flood-turn-around-dont-drown"
title="NWS Flood Safety"><img
src="https://raw.githubusercontent.com/ApexWx/ApexWx.github.io/master/TADDHighRes-sm.gif"
alt="Turn Around Dont' Drown"
style="border: none; -ms-interpolation-mode: bicubic; max-width: 100%; width: 97px; height: 97px; padding: 10px;"
height="97" width="97"></a></td>
<td style="text-align: center; width: 147px;"><a
href="https://www.weather.gov/learning"
title="NWS Educational Resources"
style="color: #1855d9; text-decoration: underline;"><img
src="https://raw.githubusercontent.com/ApexWx/ApexWx.github.io/master/learning-thumbnail.png"
alt="NWS Educational Resources"
style="border: none; -ms-interpolation-mode: bicubic; max-width: 100%; width: 95px; height: 95px; padding: 10px;"
height="95" width="95"></a></td>
</tr>
</tbody>
</table>
<div> <br>
<br>
<div style="text-align: center; font-size: 24px;"><a
name="Maps" id="Maps"></a><strong>Maps
& Charts</strong></div>
<br>
<div style="text-align: left;"> Click
maps and charts for larger versions,
loops, etc. Most graphics update
automatically--check timestamps for
currency. During updates,
maintenance, network outages, etc.,
graphics may be temporarily
unavailable. Graphic sources include
NOAA, NWS, University of Wisconsin,
and various other organizations. All
products produced by the US
government or affiliated
organizations are public domain
unless otherwise labeled. </div>
</div>
<div style="text-align: left;"> <br>
<u>Note</u>: For US Eastern Time on
maps and charts, subtract 4 hours
(Daylight Saving Time) or 5 hours
(Standard Time) from UTC / Z*
timestamp on the maps and charts.
Visit <a title="timeanddate.com" href="https://www.timeanddate.com/">timeanddate.com</a>
for more time zone conversion
information and additional
time-related data. <br>
<br>
<div align="left;"> *UTC / Z / GMT =
Coordinated Universal Time / Zulu
Time / Greenwich Mean Time -- Time
is based on 0° longitude running
through the Royal Observatory in
Greenwich, London, UK. It is the
same all year round and is not
affected by Daylight Saving Time
(aka Summer Time) clock changes.
Using UTC allows weather services
and others to avoid time zone
conversions. </div>
<br>
<table style="width: 90%; text-align: center; margin-left: auto; margin-right: auto;"
border="0">
<tbody>
<tr align="center">
<td rowspan="1" colspan="3"><strong>Current
Time US Eastern and UTC / Z</strong></td>
</tr>
<tr>
<td style="text-align: center;"><strong>ET
12-Hour</strong></td>
<td style="text-align: center;"><strong>ET
24-Hour</strong></td>
<td style="text-align: center;"><strong>UTC
/ Z</strong></td>
</tr>
<tr>
<td style="text-align: center; width: 181px;"><br>
<iframe src="https://freesecure.timeanddate.com/clock/i7b14drd/n5278/ts1/ta1"
height="19" frameborder="0"
width="126"></iframe><br>
<br>
</td>
<td style="text-align: center; width: 146px;"><br>
<iframe src="https://freesecure.timeanddate.com/clock/i7athxrb/n5278/th1/ts1/ta1"
height="19" frameborder="0"
width="69"></iframe> <br>
</td>
<td style="text-align: center; width: 167px;"><br>
<iframe src="https://freesecure.timeanddate.com/clock/i7allsch/th1/ts1/ta1"
height="19" frameborder="0"
width="70"></iframe> <br>
</td>
</tr>
</tbody>
</table>
<br>
<strong><br>
In Maps & Charts Go To:</strong>
<div style="text-align: left;"><strong><a
href="#Regional">Regional
Weather<br>
</a></strong> </div>
<div style="text-align: left;"><strong><a
href="#National">National
Weather<br>
</a></strong> </div>
<div style="text-align: left;"> <span
style="color: #3333ff;"><strong><a
href="#Tropical">Atlantic
Tropical Weather</a></strong></span>
</div>
<div style="text-align: left;"> Visit
<a href="https://apexwx.github.io/">Apex
Wx</a> for more maps & charts.</div>
<br>
<div style="text-align: center;"><strong
style="font-size: 24px;"><a id="Regional"
name="Regional"></a>Regional<br>
</strong> <span style="color: #3333ff;"><strong></strong></span>
<div style="text-align: center;">
<div style="text-align: left;">
<div style="text-align: center;">
<strong><br>
Northeast Weather Chart</strong>
</div>
<div style="text-align: center;">
<strong><a href="https://www.wpc.ncep.noaa.gov/sfc/namnesfcwbg.gif"
title="Click for larger image"><img
alt="Northeast Weather Chart"
src="https://www.wpc.ncep.noaa.gov/sfc/namnesfcwbg.gif"
style="border-style: solid; border-width: 1px; max-width: 525px;"></a></strong><br>
</div>
<div style="text-align: center;">
<a href="https://www.wpc.ncep.noaa.gov/html/sfc-zoom.php"
title="Full Resolution North America Weather Chart">Full
Resolution</a> North America
Weather Chart </div>
<div style="text-align: center;">
<br>
<br>
</div>
<div style="text-align: center;">
<strong>Pennsylvania
Thunderstorm / Severe
Weather Outlook<br>
</strong>
<div style="text-align: center;">
<a href="https://www.spc.noaa.gov/public/state/images/PA_swody1.png"
title="Click for larger image"><img
alt="Today's Severe Weather Outlook"
src="https://www.spc.noaa.gov/public/state/images/PA_swody1.png"
style="max-width: 525px;"></a><br>
<br>
<br>
<br>
<strong> NWS State College
Doppler Radar</strong><br>
<a href="https://radar.weather.gov/ridge/lite/KCCX_loop.gif"
title="Click for larger image"><img
src="https://radar.weather.gov/ridge/lite/KCCX_loop.gif"
alt="Regional Doppler Radar"
style="border-width: 1px; border-style: solid; max-width: 525px;"></a><br>
<br>