-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2547 lines (2163 loc) · 128 KB
/
index.html
File metadata and controls
2547 lines (2163 loc) · 128 KB
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 lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<script defer="defer" src="https://cdnres.willyweather.com/widget/warning/loadView.html?id=157826"></script>
<title>Apex Wx Weather Information Fort Kent, Maine</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: url('https://github.com/ApexWx/ApexWx.github.io/blob/master/seamless-background-simply-sky.jpg?raw=true') repeat;
}
header, footer {
text-align: center;
padding: 1rem;
background: inherit;
}
.container {
display: grid;
grid-template-columns: 25% 50% 25%;
min-height: 80vh; /* adjust as needed */
}
.column {
padding: 1rem;
background: inherit;
}
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
}
}
/* Responsive images container */
.inline-images {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.inline-images img {
max-width: 100%;
height: auto;
}
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
}
.inline-images {
justify-content: center;
}
}
.sun-info {
display: flex;
flex-wrap: wrap;
gap: 6px; /* smaller space between items */
font-size: 1rem;
justify-content: flex-start; /* aligns items to the left horizontally */
}
.sun-info > div {
flex: 0 0 auto;
white-space: nowrap;
}
@media (max-width: 600px) {
.sun-info {
flex-direction: column;
gap: 2px;
}
}
#weather-widget {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 1em;
background: transparent; /* Transparent background for widget */
color: #333;
}
.fw-container h2 {
font-size: 1.5rem;
text-align: center;
margin-bottom: 1rem;
}
.fw-forecast {
background: transparent; /* Transparent background for forecast */
padding: 1em;
border-radius: 8px;
}
.fw-forecast .fw-item {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 1.5em;
}
.fw-forecast img {
width: 48px;
height: 48px;
flex-shrink: 0;
}
.fw-text {
font-size: 1rem;
}
.fw-day {
font-weight: bold; /* Bold day names */
}
@media (max-width: 600px) {
.fw-forecast .fw-item {
flex-direction: column;
align-items: center;
text-align: center;
}
.fw-forecast img {
margin-bottom: 0.5em;
}
}
#season-display {
font-size: 16px;
font-weight: bold;
margin-top: 10px;
}
/* Text color for each season */
.winter {
color: #0277bd; /* Cool blue */
}
.spring {
color: #2e7d32; /* Fresh green */
}
.summer {
color: #ef6c00; /* Warm orange */
}
.fall {
color: #d84315; /* Earthy red-orange */
}
.alert-container {
margin-top: 1em;
font-family: sans-serif;
}
.alert-box {
border-left: 5px solid;
padding: 12px 15px;
border-radius: 4px;
font-size: 1rem;
line-height: 1.4;
background-color: #f9f9f9;
}
.alert-minor {
border-color: #ffcc00;
background-color: #fff8e1;
}
.alert-moderate {
border-color: #ffa726;
background-color: #fff3e0;
}
.alert-severe {
border-color: #ef5350;
background-color: #fdecea;
}
.alert-extreme {
border-color: #b71c1c;
background-color: #fce4e4;
}
.alert-box strong {
display: block;
margin-bottom: 5px;
}
.alert-box a {
color: #0056b3;
text-decoration: underline;
}
.alert-close {
background: transparent;
border: none;
font-size: 1.2rem;
font-weight: bold;
color: #444;
float: right;
cursor: pointer;
margin: -5px -8px 5px 8px;
}
.alert-close:hover {
color: #000;
}
@media (max-width: 600px) {
.alert-box {
font-size: 0.95rem;
padding: 10px 12px;
}
}
/* Responsive fixes */
div[style*="width: 810px"],
div[style*="width: 830px"],
div[style*="width: 800px"] {
max-width: 100%;
width: 100% !important;
box-sizing: border-box;
}
img {
max-width: 100% !important;
height: auto !important;
}
@media (max-width: 768px) {
#tswothersidecol, #tswsidecol {
float: none !important;
width: 100% !important;
display: block;
}
}
iframe {
max-width: 100%;
}
div, span, p {
word-wrap: break-word;
overflow-wrap: break-word;
}
.alert-toggle {
background: none;
border: none;
color: #0056b3;
text-decoration: underline;
cursor: pointer;
font-size: 0.9rem;
margin-top: 6px;
padding: 0;
}
.alert-toggle:hover {
color: #003d80;
}
.responsive-table {
width: 100%;
border-collapse: collapse;
background-color: transparent;
}
.responsive-table td, .responsive-table th {
padding: 10px;
border: none;
text-align: left;
vertical-align: top;
}
@media screen and (max-width: 600px) {
.responsive-table td, .responsive-table th {
display: block;
width: 100%;
}
}
.responsive-table tr {
display: block;
margin-bottom: 15px;
}
.responsive-menu {
padding: 10px;
font-family: Arial, sans-serif;
}
.responsive-menu .menu-toggle {
background-color: #444;
color: white;
padding: 10px 15px;
font-size: 16px;
border: none;
cursor: pointer;
display: none;
}
.responsive-menu .menu-links a {
color: #1E3A8A; /* Tailwind dark blue */
font-weight: bold; /* Bold before hover */
padding: 8px 12px;
text-decoration: none;
display: inline-block;
}
.responsive-menu .menu-links a:hover {
background-color: #555;
color: white; /* White on hover */
}
@media (max-width: 768px) {
.responsive-menu .menu-toggle {
display: block;
}
.responsive-menu .menu-links {
display: none;
flex-direction: column;
}
.responsive-menu .menu-links a {
display: block;
border-top: 1px solid #444;
}
.responsive-menu .menu-links.show {
display: flex;
}
}
body, div, span, p {
word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-word;
}
.column {
min-width: 0;
}
* {
box-sizing: border-box;
}
.text-center { text-align: center; }
.mt-sm { margin-top: 0.5rem; }
.font-sm { font-size: 12px; }
</style> </head>
<body>
<div class="text-center"><img alt="Apex Wx Banner" src="https://raw.githubusercontent.com/ApexWx/ApexWx.github.io/master/Apex%20banner.jpg"
style="border: medium none; max-width: 100%;"></div>
<header id="page-header">
<!-- Insert this in your HTML body where you want the menu -->
<nav class="responsive-menu"> <button class="menu-toggle" onclick="toggleMenu()">☰
Menu</button>
<div class="menu-links" id="menuLinks"> <a href="https://apexwx.github.io/reg.html">Regional
Weather</a> <a href="https://apexwx.github.io/nat.html">National
Weather</a> <a href="https://apexwx.github.io/trop.html">Tropical
Weather</a> <a href="https://apexwx.github.io/for.html">Forecast
Weather</a> <a href="https://apexwx.github.io/space.html">Space
Weather/Aurora</a> <a href="https://ambientweather.net/dashboard/16e0681b266993eb92230c42d89f3fd5">Live
Weather Station Dashboard</a> <a href="https://www.wunderground.com/dashboard/pws/KMEFORTK7">Apex
Wx on WU</a> <a href="https://apexwx.github.io/dis.html">Disclaimer</a>
</div>
<div><strong style="font-size: 18px;"><br>
</strong></div>
<div><strong style="font-size: 18px;">Current Conditions</strong><span style="color: #757575;"><em><span
style="font-size: 12px;"><br>
</span></em><span style="font-size: 12px;">Updates hourly</span></span>
<div class="text-center">
<div class="text-center"><a href="https://www.weather.gov/images/car/obs/CurrentT.png"><img
alt="Current Temperatures" src="https://www.weather.gov/images/car/obs/CurrentT.png"
style="width: 250px; margin: 8px; height: 210px;" title="Current Temperatures--Click for larger image"
height="210" width="250"></a><a href="https://www.weather.gov/images/car/obs/CurrentDewPt.png"><img
alt="Current Dew Point" src="https://www.weather.gov/images/car/obs/CurrentDewPt.png"
style="width: 250px; margin: 8px;" title="Current Dew Points -- Click for larger image"
width="250"></a><a href="https://www.weather.gov/images/car/obs/CurrentRH.png"><img
alt="Current Relative Humidity" src="https://www.weather.gov/images/car/obs/CurrentRH.png"
style="width: 250px; margin: 8px;" title="Current Relative Humidity--Click for larger image"
width="250"></a> <a href="https://www.weather.gov/images/car/obs/CurrentGusts.png"><img
alt="Current Wind Gusts-" src="https://www.weather.gov/images/car/obs/CurrentGusts.png"
style="width: 250px; margin: 8px; height: 210px;" title="Current Wind Gusts--Click for larger image"
height="210" width="250"></a></div>
</div>
</div>
</nav>
</header>
<div class="container" id="main-container">
<div class="column left" id="left-column" style="font-size: 16px;">
<div class="text-center">
<div class="text-center"><strong style="font-size: 14px;"> <a href="https://www.airnow.gov/?city=Fort%20Kent&state=ME&country=USA">
Fort Kent Air Quality Index</a></strong><br>
</div>
<div style="font-size: 12px; text-align: center;">
<div><strong><u><iframe src="https://widget.airnow.gov/aq-dial-widget/?city=Fort%20Kent&state=ME&country=USA"
style="border: none; border-radius: 25px;" title="Example 3"
height="230" width="230"> </iframe></u></strong></div>
<br>
</div>
</div>
<div class="text-center"><span style="font-size: 13px;"><strong><br>
</strong></span></div>
<div class="text-center"><span style="font-size: 13px;"><strong>NWS
Caribou Watches & Advisories</strong></span><em style="font-size: 13px;"><strong></strong></em><br>
<em style="font-size: 13px;"><strong></strong></em></div>
<div class="text-center">
<div><em style="font-size: 13px;"><strong> </strong></em><a href="https://www.weather.gov/car/"><img
alt="NWS Caribou Watches, Warnings, and Advisories" src="https://www.weather.gov/wwamap/png/car.png"
style="border-width: 1px; border-style: solid; width: 251px; height: 195px;"
title="Clidk for more information" height="195" width="1"></a></div>
</div>
<div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
<strong></strong></div>
<div class="text-center"><strong> </strong><span style="font-size: 14px;"><strong>NE
Weather Chart</strong></span><span style="font-size: 14px;"></span></div>
<div class="text-center"><span style="font-size: 11px;"></span><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="width: 251px; border-width: 1px; border-style: solid; height: 194px;"
title="Click for larger image" height="194" width="251"></a><em
style="font-size: 11px;"><br>
</em></div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
</div>
<div style="font-size: 14px; text-align: center;"><strong>Regional
Radar from NWS Caribou </strong><strong></strong><em><strong><br>
</strong></em> <a href="https://radar.weather.gov/?settings=v1_eyJhZ2VuZGEiOnsiaWQiOiJsb2NhbCIsImNlbnRlciI6Wy02Ni4wMTEsNDUuMjRdLCJsb2NhdGlvbiI6bnVsbCwiem9vbSI6NywiZmlsdGVyIjoiV1NSLTg4RCIsImxheWVyIjoiYnJlZl9yYXciLCJzdGF0aW9uIjoiS0NCVyJ9LCJhbmltYXRpbmciOmZhbHNlLCJiYXNlIjoic3RhbmRhcmQiLCJhcnRjYyI6ZmFsc2UsImNvdW50eSI6ZmFsc2UsImN3YSI6ZmFsc2UsInJmYyI6ZmFsc2UsInN0YXRlIjpmYWxzZSwibWVudSI6dHJ1ZSwic2hvcnRGdXNlZE9ubHkiOnRydWUsIm9wYWNpdHkiOnsiYWxlcnRzIjowLjgsImxvY2FsIjowLjYsImxvY2FsU3RhdGlvbnMiOjAuOCwibmF0aW9uYWwiOjAuNn19#/"
title="Current Local Radar"><img alt="Local Radar" src="https://radar.weather.gov/ridge/standard/KCBW_loop.gif"
style="width: 251px; height: 228px; border-width: 1px; border-style: solid;"
title="Click for larger image" height="228" width="251"></a><br>
<strong></strong> </div>
<div style="width: 100%; text-align: center;"><strong><br>
</strong></div>
<div style="width: 100%; text-align: center;"><br>
<strong style="font-size: 14px;">Today's High</strong><br>
<a href="https://www.weather.gov/images/car/winter/MaxT_1.png"><img
alt="Today's High" src="https://www.weather.gov/images/car/winter/MaxT_1.png"
style="width: 251px; height: 186px;" title="Click for larger image"
height="186" width="251"></a></div>
<div style="width: 100%; text-align: center;"><strong style="font-size: 14px;"><br>
</strong></div>
<div style="width: 100%; text-align: center;"><strong style="font-size: 14px;"><br>
</strong></div>
<div style="width: 100%; text-align: center;"><strong style="font-size: 14px;">Today's
Heat Index ("Feels Like")</strong><br>
<a href="https://www.weather.gov/images/car/heat/MaxApparentT_Day1.png"><img
alt="Heat Index" src="https://www.weather.gov/images/car/heat/MaxApparentT_Day1.png"
style="width: 251px; height: 186px;" title="Click for larger image"
height="186" width="251"></a><span style="font-size: 12px;"><a href="https://www.weather.gov/car/heat"><em><br>
</em></a></span></div>
<div style="width: 100%; text-align: center;"><span style="font-size: 12px;"><a
href="https://www.weather.gov/car/heat"><em>Excessive Heat
Information</em></a></span><br>
<span style="font-size: 12px;"></span></div>
<div style="width: 100%; text-align: center;"><span style="font-size: 12px;"><br>
</span></div>
<div style="width: 100%; text-align: center;"><strong><br>
</strong></div>
<div style="width: 100%; text-align: center;"><strong style="font-size: 14px;">Tonight's
Low</strong><br>
<a href="https://www.weather.gov/images/car/winter/MinT_2.png"><img
alt="Tonight's Lows" src="https://www.weather.gov/images/car/winter/MinT_2.png"
style="width: 251px; height: 186px;" title="Click for larger image"
height="186" width="251"><br>
</a></div>
<div style="width: 100%; text-align: center;"><br>
</div>
<div style="width: 100%; text-align: center;"><br>
</div>
<div style="width: 100%; text-align: center;"><strong style="font-size: 14px;">Tonight's
Wind Chill ("Feels Like")</strong><br>
<a href="https://www.weather.gov/images/car/winter/MinWindChill_1.png"><img
alt="Wind Chill" src="https://www.weather.gov/images/car/winter/MinWindChill_1.png"
style="width: 251px; height: 186px;" title="Click for larger image"
height="186" width="251"></a></div>
<div style="width: 100%; text-align: center;"><br>
</div>
<div style="width: 100%; text-align: center;"><br>
</div>
<div style="width: 100%; text-align: center;"><strong style="font-size: 14px;">Today's
Probability of Precipitation</strong><br>
<strong></strong>
<div>
<div><strong> </strong><a href="https://www.weather.gov/images/car/winter/PoP_Day1.png"
title="Click for larger image"><img alt="Probability of Precipitation"
src="https://www.weather.gov/images/car/winter/PoP_Day1.png"
style="width: 251px; height: 187px;" height="187" width="251"></a></div>
</div>
</div>
<div style="width: 100%; text-align: center;"><br>
<a href="https://graphical.weather.gov/GraphicalNDFD.php?width=515&timezone=EDT&sector=CAR&element=mint&n=1"></a></div>
<div style="width: 100%; text-align: center;"><strong><br>
</strong></div>
<div class="text-center"><strong style="font-size: 14px;">Tonight's
Probability of Precipitation</strong><br>
<strong></strong></div>
<div>
<div class="text-center"><strong> </strong><a href="https://www.weather.gov/images/car/winter/PoP_Night2.png"
title="Click for larger image"><img alt="Tonight's Probability of Precipitation"
src="https://www.weather.gov/images/car/winter/PoP_Night2.png"
style="width: 251px; height: 187px;" height="187" width="251"></a></div>
<div class="text-center"><em style="font-size: 14px;"><strong> </strong></em><strong
style="font-size: 14px;"><br>
</strong></div>
<div class="text-center"> <strong><br>
</strong></div>
<div style="text-align: center; font-size: 14px;"><strong>3-Day
Precipitation Totals<br>
<a href="https://www.weather.gov/images/car/winter/QPF_72hr.png"><img
alt="72-Hour Precipitation Totals" src="https://www.weather.gov/images/car/winter/QPF_72hr.png"
style="width: 251px;" width="251"></a></strong></div>
<div class="text-center"><em style="font-size: 14px;"><strong><br>
</strong></em></div>
<div class="text-center"><em style="font-size: 14px;"><strong><br>
</strong></em></div>
<div class="text-center"><span style="font-size: 14px;"><strong>Winter
Storm Severity Index (WSSI)</strong></span></div>
<div class="text-center"><a href="https://www.wpc.ncep.noaa.gov/wwd/wssi/images/WSSI_Overall_Day1_CAR_Day1.png"><img
alt="Day 1 Winter Storm Severity Index (WSSI)" src="https://www.wpc.ncep.noaa.gov/wwd/wssi/images/WSSI_Overall_Day1_CAR_Day1.png"
style="width: 251px;" title="Click for larger image" width="251"></a></div>
<div class="text-center"><span style="font-size: 14px;"><strong style="font-size: 12px;"><br>
</strong></span></div>
<div class="text-center"><em style="font-size: 14px;"><strong><br>
</strong></em></div>
<div class="text-center"><span style="font-size: 14px;"><strong>Snowfall
Outlook</strong><br>
</span></div>
<div class="text-center"><a href="https://www.wpc.ncep.noaa.gov/Prob_Precip/idss-map/mapgen.php?office=CAR&summary=true&pointpreferences=CAR&ptype=prob_sn&product=expected"
title="Click for larger image"><img alt="Snowfall Outlook" src="https://www.wpc.ncep.noaa.gov/Prob_Precip/idss-map/mapgen.php?office=CAR&summary=true&pointpreferences=CAR&ptype=prob_sn&product=expected"
style="width: 251px; height: 186.681px;" width="251"></a><em style="font-size: 14px;"><strong></strong></em><br>
<em style="font-size: 14px;"><strong></strong></em></div>
</div>
<div><br>
<div class="text-center"><em style="font-size: 14px;"><strong><br>
</strong></em></div>
<div class="text-center"><span style="font-size: 14px;"><strong>Ice
Accumulation Outlook<br>
</strong></span></div>
<div class="text-center"><a href="https://www.wpc.ncep.noaa.gov/Prob_Precip/idss-map/mapgen.php?office=CAR&summary=true&pointpreferences=CAR&ptype=prob_ice&product=expected"
title="Click for larger image"><img alt="Ice Accumulation Outlook"
src="https://www.wpc.ncep.noaa.gov/Prob_Precip/idss-map/mapgen.php?office=CAR&summary=true&pointpreferences=CAR&ptype=prob_ice&product=expected"
style="width: 251px; height: 186.681px;" width="251"></a></div>
</div>
<div>
<div class="text-center"><br>
</div>
<div class="text-center"><em style="font-size: 14px;"><strong><br>
</strong></em></div>
<div class="text-center"><span style="font-size: 14px;"><strong>3-Day
Maximum Wind Gust<br>
</strong></span></div>
<div class="text-center"><a href="https://www.weather.gov/images/car/winter/MaxGust_Day1.png"
title="Click for larger image"><img alt="72-Hour Maximum Wind Gust"
src="https://www.weather.gov/images/car/winter/MaxGust_Next72.png"
style="width: 251px; height: 186.681px;" width="251"></a></div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
</div>
<div class="text-center"><strong> Today's Severe Weather Outlook</strong><em></em><br>
<em> <strong></strong></em></div>
<div class="text-center"><em><strong> </strong> </em><a href="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1.png"
style="width: 50%;" title="Click for larger image"><img alt="Maine Thunderstorm/Severe Weather Outlook"
src="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 251px; height: 187px;" title="Click for larger image"
height="187" width="251"><br>
</a></div>
<div class="text-center"><em style="font-size: 14px;"><span style="font-size: 12px;"><a
href="https://www.spc.noaa.gov/new/images/SPC_outlook_final_updated.png">Severe
Thunderstorm</a></span></em><em style="font-size: 14px;"><span
style="font-size: 12px;"><a href="https://www.spc.noaa.gov/new/images/SPC_outlook_final_updated.png">
Outlook Categories</a></span></em><br>
</div>
<div class="text-center"><span style="color: #0000ee;"><br>
</span></div>
<div class="text-center"><span style="color: #0000ee;"><br>
</span></div>
<div class="text-center"><br>
<strong>Today's Tornado Outlook</strong><em><br>
<strong></strong></em>
<div><em><strong> </strong> </em><a href="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1_TORN.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 50%;" title="Click for larger image"><img alt="Maine Tornado Outlook"
src="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1_TORN.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 251px; height: 187px;" title="Click for larger image"
height="187" width="251"></a></div>
</div>
<div class="text-center"><span style="color: #0000ee;"><br>
</span></div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
<strong>Today's Severe Wind Outlook</strong><em><br>
<strong></strong></em>
<div><em><strong> </strong> </em><a href="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1_WIND.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 50%;" title="Click for larger image"><img alt="Maine Severe Wind Outlook"
src="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1_WIND.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 251px; height: 187px;" title="Click for larger image"
height="187" width="251"></a></div>
</div>
<div class="text-center"><span style="color: #0000ee;"><br>
</span></div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
<strong>Today's Severe Hail Outlook</strong><em><br>
<strong></strong></em>
<div><em><strong> </strong> </em><a href="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1_HAIL.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 50%;" title="Click for larger image"><img alt="Maine Severe Hail Outlook"
src="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_swody1_HAIL.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 251px; height: 187px;" title="Click for larger image"
height="187" width="251"></a></div>
</div>
<div class="text-center"><span style="color: #0000ee;"><br>
</span></div>
<div class="text-center"><span style="color: #0000ee;"><br>
</span></div>
<div style="font-size: 14px; text-align: center;"><strong><br>
</strong></div>
<div style="font-size: 14px; text-align: center;"><strong> Today's
Fire Weather Outlook<br>
<a href="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_fwody1.png?1751871752"><img
alt="Today's Maine Fire Weather Outlook" src="https://www.spc.noaa.gov/partners/outlooks/state/images/ME_fwody1.png?t=$%7BDate.now%28%29%7D%60;"
style="width: 251px;" width="251"></a></strong></div>
<div style="font-size: 14px; text-align: center;"><br>
<br>
</div>
<div style="font-size: 14px;">
<div class="text-center"><br>
<a href="https://www.fortkentoc.org/"><strong>Fort Kent Outdoor
Center</strong></a><br>
<strong><em> </em></strong></div>
<div class="text-center"><a href="https://webcam.fortkentoc.org/webcam/image.jpg"><img
alt="Fort Kent Outdoor Center" src="https://webcam.fortkentoc.org/webcam/image.jpg"
style="width: 251px; height: 203.202px;" width="251"></a><em></em><em
style="font-size: 12px;"><br>
</em></div>
<div class="text-center"><em style="font-size: 12px;">47°23'N /
68°59'W / Altitude 663 ft <br>
1 mi / 1.5 km SW of Apex Wx station in Fort Kent<br>
</em></div>
<div class="text-center"><em style="font-size: 12px;"><br>
</em></div>
<div class="text-center"><strong><em style="font-size: 12px;"><br>
</em></strong></div>
<div class="text-center"><strong><em style="font-size: 12px;"><br>
</em></strong></div>
<strong> </strong>
<div class="text-center"><strong><a href="https://www.fourseasonstrail.org/">Four
Seasons Trail Cam</a><br>
</strong></div>
<div class="text-center"><a href="https://www.fourseasonstrail.org/web-cam-weather"
title="Four Seasons Trail Cam"><img alt="Four Seasons Trail Cam Madawaska, ME"
src="https://www.mediamaine.org/Madawaska/fourseasonstrail/WebCam/camera1.jpg"
style="width: 251px; height: 144px;" height="144" width="251"></a></div>
<div class="text-center"><em><span style="font-size: 12px;">Madawaska,
ME</span><span style="font-size: 12px;"> -- </span><span style="font-size: 12px;">28
mi/45 km ENE of Fort Kent</span><span style="font-size: 12px;"></span></em><strong
style="font-size: 12px;"><br>
</strong></div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
<strong style="font-size: 12px;"></strong></div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong>St. John River @ Dickey Bridge,
Allagash<br>
</strong>
<div class="text-center"><a href="https://www1.maine.gov/mdot/maps/cameras/dickey_Public.jpg"
title="St. John River at Dickey"><img alt="St. John River at Dickey, ME"
src="https://www1.maine.gov/mdot/maps/cameras/dickey_Public.jpg"
style="width: 251px; height: 144px;" height="144" width="251"></a></div>
<div class="text-center"><em><span style="font-size: 12px;">Approx.
32 mi / 51 km WSW of Fort Kent</span></em><strong style="font-size: 12px;"><br>
</strong></div>
<div class="text-center"><strong style="font-size: 12px;"><br>
</strong></div>
<div class="text-center"><strong style="font-size: 12px;"><br>
</strong></div>
<div style="text-align: left;"><span style="color: #0000ee;"><span
style="color: black;"></span></span>
<div class="text-center"><br>
<strong>ME Route 11 @ Soucy Hill<br>
</strong>
<div class="text-center"><a href="https://newengland511.org/map/Cctv/2311?t=1775930228"
title="St. John River at Dickey"><img alt="ME Route 11 @ Soucy Hill"
src="https://newengland511.org/map/Cctv/2311?t=1775930228"
style="width: 251px; height: 144px;" height="144" width="251"></a></div>
<div class="text-center"><em><span style="font-size: 12px;">Approx.
25 mi / 38 km S of Fort Kent</span></em><strong style="font-size: 12px;"><br>
</strong></div>
<div class="text-center"><strong style="font-size: 12px;"></strong><br>
</div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong></strong><br>
<strong>US Route 1 @ Van Buren, ME<br>
</strong>
<div class="text-center"><a href="https://newengland511.org/map/Cctv/2253?t=1775931089"
title="St. John River at Dickey"><img alt="US 1 @ Van Buren, ME"
src="https://newengland511.org/map/Cctv/2253?t=1775931089"
style="width: 251px; height: 144px;" height="144" width="251"></a></div>
<div class="text-center"><em><span style="font-size: 12px;">Approx.
32 mi / 51 km SE of Fort Kent, ME</span></em><strong
style="font-size: 12px;"></strong></div>
</div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong>Bird Migration Forecast Map</strong><em><strong></strong></em><strong>
</strong></div>
<div class="text-center"><a href="https://birdcast.org/migration-tools/migration-forecast-maps/"
title="Click for more information"><img alt="Bird Migration Forecast Map"
src="https://s3.amazonaws.com/is-birdcast-predicted-prod/images/day1.jpg"
style="height: 250px; width: 251px;" height="250" width="251"><br>
</a></div>
<div class="text-center"><em style="font-size: 12px;">Migration
Forecasts Updated<br>
March 1 to June 15 & Aug. 1 to Nov. 15</em><br>
<a href="https://graphical.weather.gov/GraphicalNDFD.php?width=2000&timezone=EDT&sector=CONUS&element=mint&n=1"
title="Click for HD image"></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="column center" id="center-column">
<h2 class="text-center">Apex Wx</h2>
<h2 class="text-center">Fort Kent & the Saint John Valley, Maine<br>
Weather Information</h2>
<div>
<div class="text-center">
<div class="inline-images">
<div class="text-center"><a href="https://en.wikipedia.org/wiki/Maine"
title="Flag of Maine -- Click for more"><img alt="Maine State Flag"
class="img-center" src="https://apexwx.github.io/me.png" style="width: 132px; height: 88px; left: 5px; right: 5px; padding: 5px;"
height="88" width="132"></a><a href="https://en.wikipedia.org/wiki/Acadia"
title="Flag of Acadia -- Click for more"><img alt="Flag of Acadia"
class="img-center" src="https://apexwx.github.io/Flag_of_Acadia.svg.png"
style="width: 132px; height: 87.9px; padding: 5px;" width="132"></a><br>
</div>
</div>
<div class="text-center"><a href="https://en.wikipedia.org/wiki/Acadia"
title="Flag of Acadia -- Click for more"> </a></div>
</div>
<div class="text-center"><span style="font-size: 12px;">Weather
information for Fort Kent & the Saint John Valley since 2009</span><br>
<span style="font-size: 12px;">Member <a href="https://madis.ncep.noaa.gov/snow_project.shtml">APRSWXNET/CWOP</a>
& <a href="https://weather.gladstonefamily.net/site/E0429">CWOP
</a>Programs</span></div>
<span style="font-size: 12px;"> </span><br>
<div class="text-center"><strong><a href="https://apexwx-github-io.translate.goog/?_x_tr_sl=auto&_x_tr_tl=fr&_x_tr_hl=en&_x_tr_pto=wapp"
title="Translate this website into French">Traduire en français</a>
/ </strong><a href="https://apexwx-github-io.translate.goog/?_x_tr_sl=en&_x_tr_tl=es&_x_tr_hl=en&_x_tr_pto=wapp"
title="Translate into Spanish"><strong>Traducir al español</strong></a></div>
</div>
<div style="text-align: center; font-size: 12px;">via Google Translate</div>
<div class="text-center"><u><strong><br>
</strong></u></div>
<div class="text-center"><u><strong><br>
</strong></u></div>
<div class="text-center"><label id="lblGreetings"><b>Good Afternoon!</b></label>
<div style="font-size: 14px;">
<div id="localTime" style="font-weight:bold; text-align:center; font-size:14px;"></div>
<div style="font-size: 12px;"><u><strong><br>
</strong></u></div>
<u> </u>
<div style="font-size: 14px;"><u><strong>Current Time (24-Hour)</strong></u>
</div>
<div id="dualTime" style="font-weight:bold; text-align:center; font-size:14px; line-height:1.8;"></div>
<div style="font-size: 12px;"></div>
<div style="font-size: 12px;"></div>
<div style="font-size: 12px;">EST -5 hours / EDT -4 hours from UTC</div>
<div style="text-align: center; font-size: 12px;">Many weather
graphic timestamps are in UTC / Z Time</div>
<div class="text-center"><br>
</div>
<div class="text-center"><br>
<div style="text-align: center; font-size: 12px;"><a href="https://www.buymeacoffee.com/MaineApexWx"
target="_blank"><img alt="Buy Me A Coffee" src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"
style="height: 60px !important; width: 217px !important;" height="60"
width="217"></a><br>
<div class="text-center"> <span style="font-size: 12px;">Contributions
help support this weather information service.</span></div>
</div>
</div>
<div>
<div class="text-center">
<hr> </div>
</div>
</div>
</div>
<div class="text-center"><strong>📅 </strong><b>Fort Kent Weather
Almanac</b> <strong>📅</strong><u><strong></strong></u><strong></strong></div>
<div>
<div class="text-center"><span style="font-size: 12px;"><em>Non-metric
units unless otherwise indicated; times US Eastern<br>
</em></span></div>
<div class="text-center"><span style="font-size: 12px;"><em><a href="https://mesowest.utah.edu/cgi-bin/droman/meso_base_dyn.cgi?stn=E0429&unit=0&timetype=LOCAL">MesoWest</a>
has live and archived Apex Wx data (Station EW0429 Fort Kent).<br>
</em></span></div>
</div>
<div>
<div><em style="font-size: 12px;"><em style="font-size: 12px;"><br>
</em></em></div>
<u><strong></strong></u><u><strong></strong></u><em style="font-size: 12px;"></em><em
style="font-size: 12px;"></em><u><strong></strong></u>
<div><u><strong>Sunday, April 26</strong></u>
<div>
<div><b>High</b>: 66° at 4:29 pm | <b>Low</b>: 29° at 5:18 am
<div><b>Precipitation: </b>0.00" | <strong>Snow</strong>: 0.0"</div>
<div><b>Avg. Daily Wind:</b> NW @ 1 mph |<strong> Max.
Gust</strong>: 15 mph @ 2:18 pm</div>
</div>
</div>
<div>
<div>
<div>
<div>
<div>
<div> <em style="font-size: 12px;"><em style="font-size: 12px;">Data
source: </em></em><em style="font-size: 12px;"><em
style="font-size: 12px;">Davis Instruments <a href="https://www.davisinstruments.com/collections/vantage-pro2/products/vantage-pro2-groweather-wireless-integrated-sensor-suite">Vantage
Pro 2</a> Personal Weather Station | Rain gauge
not heated in winter.</em></em></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div><u><strong><br>
</strong></u></div>
<div><u><strong>Monday, April 27</strong></u>
<div> </div>
<div style="width: 810px;"><strong>Normal High: </strong>52° |<strong>
Record High</strong>: 76° (1937)<br>
<strong> Normal Low: </strong>31° | <strong>Record
Low: </strong>16<strong>°</strong> (1966)<br>
<strong>Normal Daily Precipitation: </strong>0.11"<strong> </strong>|<strong>
Record Precipitation</strong>: 0.97" (2018)</div>
<div style="width: 810px;"><strong>Normal Daily Snowfall:</strong>
0.1" | <strong>Record Snowfall</strong>:2.0" (2010)</div>
<div style="width: 810px;"><em style="font-size: 12px;">Source: </em><em
style="font-size: 12px;"><em style="font-size: 12px;"><a href="https://scacis.rcc-acis.org/">NOAA
SC-ACIS</a> </em>NWS Caribou climate data / Records since
1893<br>
</em></div>
<div style="width: 810px;"><br>
</div>
<u><strong>Precipitation 2026</strong></u><br>
<strong></strong>
<div style="width: 810px;"><strong>Rain</strong><strong>: </strong>10.73"
| <u>normal</u>: 10.69" (+0.04")<span style="color: #009900;"></span><br>
<strong>Snow 25-26</strong><strong>: </strong>78.3" | <u>normal</u>:
99.0" (<span style="color: red;">-20.7"</span>)</div>
<div style="width: 810px;"><strong>Snow 24-25:</strong> 73.2" | <u>normal</u>:
99.3" (<span style="color: red;">-26.1"</span>)</div>
<span style="color: red;"><span style="color: black;"></span></span> <span
style="color: red;"> </span>
<div class="precip-note"><span style="font-size: 12px;">❄️</span><em style="font-size: 12px;">
</em><span style="font-size: 12px;">Annual snowfall measured from
July 1 - June 30</span><em style="font-size: 12px;"> </em><span style="font-size: 12px;">❄️</span><em
style="font-size: 12px;"><br>
</em><em style="font-size: 12px;">Data source: </em><em style="font-size: 12px;"><em
style="font-size: 12px;"><a href="https://scacis.rcc-acis.org/">NOAA
SC-ACIS</a> </em>NWS Caribou climate data<br>
</em></div>
<div class="precip-note"><em style="font-size: 12px;"><br>
</em></div>
<div class="precip-note"><a href="https://www.wpc.ncep.noaa.gov/discussions/hpcdiscussions.php?disc=nathilo&version=0&fmt=reg">US
National High/Low Temperatures</a>
<div style="font-size: 12px;"><em>Source: NOAA Weather Prediction
Center</em></div>
</div>
</div>
<div>
<div>
<div>
<div id="season-display" style="text-align: left;">Loading
season...</div>
<br>
</div>
<div style="text-align: left;"><strong> <a href="https://www.timeanddate.com/astronomy/@4964627">Fort
Kent, Maine, USA</a> — Sun & Moon Today</strong><br>
</div>
<div><br>
<div id="sunriseSunset" style="text-align: left; font-size: 16px;">Loading
sunrise/sunset...</div>
</div>
<div><strong><br>
</strong><strong><a href="https://www.timeanddate.com/moon/phases/@4964627">Moon
Phase</a>:</strong> 🌔 Waxing Gibbous → 🌕 Full "Flower" Moon
@ 1:23 PM Fri. 1 May 26</div>
<div><br>
</div>
<div><a href="https://www.timeanddate.com/moon/@4964627">Moon Times
for Fort Kent, Maine</a></div>
<div><br>
<span style="color: #0000ee;"><a href="apexsunmoon.html" title="Fort Kent Sun & Moon Tracker">Fort
Kent Sun & Moon Tracker</a><br>
</span></div>
<div style="font-size: 12px;"><em>experimental</em></div>
<div><br>
<em></em><span style="color: #999999;"></span></div>
</div>
<div> </div>
<div>
<div>
<div>
<hr style="margin-left: 0px; margin-right: auto;">
<div class="text-center"><strong><span style="font-variant: small-caps;">
The Week Ahead for Fort Kent & the Saint John Valley
of Maine</span></strong></div>
<span style="font-size: 12px;"><em style="color: #666666;"></em></span>
<div><span style="font-size: 12px;"><em style="color: #666666;"></em></span>
<div style="text-align: left;">
<div class="text-center" style="font-size: 12px;"><em style="color: #666666;">Outlooks
updated 7-9 AM ET Weekdays / 8-10 AM Weekends &
Holidays</em></div>
<div class="text-center"><strong><br>
</strong></div>
<div class="text-center"><strong>⚠️ <a href="https://forecast.weather.gov/showsigwx.php?warnzone=MEZ001&warncounty=MEC003&firewxzone=MEZ001&local_place1=Fort%20Kent%20ME&product1=Winter+Weather+Advisory&lat=47.2632&lon=-68.5774#.YbS2er1Ki3A">Regional
Hazardous Weather Outlook</a></strong> <strong>⚠️</strong></div>
<div class="text-center"><br>
</div>
<div class="text-center">
<div class="alert-container" id="weatherAlert"></div>
<br>
</div>
</div>
</div>
</div>
</div>
<div> <strong><em style="font-size: 12px;"></em></strong> <strong>
</strong></div>
<strong></strong></div>
<div> </div>
</div>
<div> <strong><em style="font-size: 12px;"></em></strong> <strong> </strong>
<strong></strong></div>
<div><u><strong><br>
</strong></u></div>
<div><u><strong><br>
</strong></u><u><strong><br>
</strong></u></div>
<div><strong></strong><u><strong><br>
</strong></u></div>
<div><u><strong>7-Day Outlook: Mon. Apr. 27 – Sun. May 3</strong></u>
<div>
<div><span style="color: #666666;"><em><span style="font-size: 12px;">Updated
April 27 at 8:00 AM </span><span style="font-size: 12px;"></span><span
style="font-size: 12px;"> EDT<br>
</span></em></span></div>
<div><span style="color: #666666;"><em><span style="font-size: 12px;"><br>
</span></em></span></div>
<div><strong>Today – Wednesday<br>
</strong></div>
Warm conditions will persist through today and Tuesday under mostly
sunny skies with high pressure centered over the Valley. Light winds
and strong April sunshine will allow temperatures to rise into the
mid- to upper-60s this afternoon. Skies remain mostly clear tonight
with calm winds, and overnight lows will fall back into the
upper-30s.<br>
<br>
On Tuesday, a shift to southerly winds will bring slightly cooler
air to coastal and Downeast areas, where highs will generally remain
in the low- to mid-60s despite continued sunshine, while inland
locations again reach the mid- to upper-60s. Winds will increase to
around 5 to 10 mph with occasional higher gusts. Dry conditions, low