-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interactive Map 20240327 1400.html
3421 lines (1799 loc) · 198 KB
/
Interactive Map 20240327 1400.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" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_78a903fc25e14fb352067c9e2efc7836 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<h2 style="text-align:center; color:red; font-weight:bold;">Experimental! Not for decision making.</h4>
<h3 style="text-align:center;">Snowpack Runoff Situational Awareness</h3>
<p style="text-align:center;">Updated: 27-Mar-2024 15:25 local</p>
<div style="
position: fixed;
bottom: 50px; left: 20px; width: 200px; height: 220px;
border:2px solid grey; z-index:9999;
background-color:white;
opacity: .85;
font-size:14px;
font-weight: bold;
">
TWI Potential <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="white" stroke="black" stroke-width="2" /></svg> 0: None <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="#C2E2FB" stroke="black" stroke-width="2" /></svg> 1: Very Low <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="#76B5E6" stroke="black" stroke-width="2"/></svg> 2: Low <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="#2478B7" stroke="black" stroke-width="2"/></svg> 3: Moderate <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="#045084" stroke="black" stroke-width="2"/></svg> 4: High <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="#10264C" stroke="black" stroke-width="2"/></svg> 5: Very High <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="darkgrey" stroke="black" stroke-width="2" /></svg> 6: No Snow <br>
<svg height="20" width="20"><circle cx="10" cy="10" r="8" fill="wheat" stroke="black" stroke-width="2"/></svg> 7: Density Error <br>
</div>
<div class="folium-map" id="map_78a903fc25e14fb352067c9e2efc7836" ></div>
</body>
<script>
var map_78a903fc25e14fb352067c9e2efc7836 = L.map(
"map_78a903fc25e14fb352067c9e2efc7836",
{
center: [38.5, -119.5],
crs: L.CRS.EPSG3857,
zoom: 7,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_a3fe147b8a9e918be66dbcd0aef34609 = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}
);
tile_layer_a3fe147b8a9e918be66dbcd0aef34609.addTo(map_78a903fc25e14fb352067c9e2efc7836);
var tile_layer_cf03ece7d5a812cc26a260e8a28c7aa7 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_cf03ece7d5a812cc26a260e8a28c7aa7.addTo(map_78a903fc25e14fb352067c9e2efc7836);
var tile_layer_74f4741da632171aeea7a971f46317a0 = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}
);
tile_layer_74f4741da632171aeea7a971f46317a0.addTo(map_78a903fc25e14fb352067c9e2efc7836);
var tile_layer_2ebf6e0349a912aab7d9df83317edc0c = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
var layer_control_a116981d5451c99d237c411199d482fc_layers = {
base_layers : {
"cartodbvoyager" : tile_layer_a3fe147b8a9e918be66dbcd0aef34609,
"openstreetmap" : tile_layer_2ebf6e0349a912aab7d9df83317edc0c,
"cartodbpositron" : tile_layer_74f4741da632171aeea7a971f46317a0,
},
overlays : {
},
};
let layer_control_a116981d5451c99d237c411199d482fc = L.control.layers(
layer_control_a116981d5451c99d237c411199d482fc_layers.base_layers,
layer_control_a116981d5451c99d237c411199d482fc_layers.overlays,
{"autoZIndex": true, "collapsed": true, "position": "topright"}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var circle_marker_437f9603e72c423990054aef3fcd07e5 = L.circleMarker(
[41.23583, -120.79192],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#C2E2FB", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_85fcca6a8bcfac09c48bc35caca072a4 = L.popup({"maxWidth": "100%"});
var html_4f08ac937d217cf9d112f8b66bdcd73d = $(`<div id="html_4f08ac937d217cf9d112f8b66bdcd73d" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Adin Mtn (301)</h4><p>TWI Potential 1: Very Low</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/301:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_85fcca6a8bcfac09c48bc35caca072a4.setContent(html_4f08ac937d217cf9d112f8b66bdcd73d);
circle_marker_437f9603e72c423990054aef3fcd07e5.bindPopup(popup_85fcca6a8bcfac09c48bc35caca072a4)
;
circle_marker_437f9603e72c423990054aef3fcd07e5.bindTooltip(
`<div>
<h4>Adin Mtn (301)</h4><p>TWI Potential 1: Very Low</p>
</div>`,
{"sticky": true}
);
var circle_marker_abc8545b059739a4fe919c12dcd15f0c = L.circleMarker(
[41.23583, -120.79192],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#C2E2FB", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_153657761320a1eb29d16443a6ec923b = L.popup({"maxWidth": "100%"});
var html_2a0cbea857f5f588ca5702e37a7cb87d = $(`<div id="html_2a0cbea857f5f588ca5702e37a7cb87d" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Adin Mtn (301)</h4><p>TWI Potential 1: Very Low</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/301:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_153657761320a1eb29d16443a6ec923b.setContent(html_2a0cbea857f5f588ca5702e37a7cb87d);
circle_marker_abc8545b059739a4fe919c12dcd15f0c.bindPopup(popup_153657761320a1eb29d16443a6ec923b)
;
circle_marker_abc8545b059739a4fe919c12dcd15f0c.bindTooltip(
`<div>
<h4>Adin Mtn (301)</h4><p>TWI Potential 1: Very Low</p>
</div>`,
{"sticky": true}
);
var circle_marker_856cd9debe6b45d9aec08792a13baf3a = L.circleMarker(
[41.83384, -115.45278],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_992e0e813c91d79de05bedf8256dea3a = L.popup({"maxWidth": "100%"});
var html_11dfe3e7f69c4a78520be3523637cf19 = $(`<div id="html_11dfe3e7f69c4a78520be3523637cf19" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Bear Creek (321)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/321:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_992e0e813c91d79de05bedf8256dea3a.setContent(html_11dfe3e7f69c4a78520be3523637cf19);
circle_marker_856cd9debe6b45d9aec08792a13baf3a.bindPopup(popup_992e0e813c91d79de05bedf8256dea3a)
;
circle_marker_856cd9debe6b45d9aec08792a13baf3a.bindTooltip(
`<div>
<h4>Bear Creek (321)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_1a85b3ab079d621aafb9830e979c8813 = L.circleMarker(
[39.31917, -114.62278],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#C2E2FB", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_8d3feba981a6b1f3e94f53a998ee5f01 = L.popup({"maxWidth": "100%"});
var html_261306976b237a0e5382754104bd2c8e = $(`<div id="html_261306976b237a0e5382754104bd2c8e" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Berry Creek (334)</h4><p>TWI Potential 1: Very Low</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/334:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_8d3feba981a6b1f3e94f53a998ee5f01.setContent(html_261306976b237a0e5382754104bd2c8e);
circle_marker_1a85b3ab079d621aafb9830e979c8813.bindPopup(popup_8d3feba981a6b1f3e94f53a998ee5f01)
;
circle_marker_1a85b3ab079d621aafb9830e979c8813.bindTooltip(
`<div>
<h4>Berry Creek (334)</h4><p>TWI Potential 1: Very Low</p>
</div>`,
{"sticky": true}
);
var circle_marker_51a42d3143d45bcb324c96f51a2e3f24 = L.circleMarker(
[41.76168, -115.6931],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_efa2ca052ab8c680c6599857926f0471 = L.popup({"maxWidth": "100%"});
var html_6ecee5b117b430706183075d7d011b0b = $(`<div id="html_6ecee5b117b430706183075d7d011b0b" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Big Bend (336)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/336:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_efa2ca052ab8c680c6599857926f0471.setContent(html_6ecee5b117b430706183075d7d011b0b);
circle_marker_51a42d3143d45bcb324c96f51a2e3f24.bindPopup(popup_efa2ca052ab8c680c6599857926f0471)
;
circle_marker_51a42d3143d45bcb324c96f51a2e3f24.bindTooltip(
`<div>
<h4>Big Bend (336)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_5fd878fb0ab7bace463cf7d5f842d714 = L.circleMarker(
[39.29148, -117.11506],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#C2E2FB", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_805170ba67706f56f9b716dfa7173531 = L.popup({"maxWidth": "100%"});
var html_e0ec8515687e6c7ebe4e31aff7064246 = $(`<div id="html_e0ec8515687e6c7ebe4e31aff7064246" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Big Creek Sum (337)</h4><p>TWI Potential 1: Very Low</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/337:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_805170ba67706f56f9b716dfa7173531.setContent(html_e0ec8515687e6c7ebe4e31aff7064246);
circle_marker_5fd878fb0ab7bace463cf7d5f842d714.bindPopup(popup_805170ba67706f56f9b716dfa7173531)
;
circle_marker_5fd878fb0ab7bace463cf7d5f842d714.bindTooltip(
`<div>
<h4>Big Creek Sum (337)</h4><p>TWI Potential 1: Very Low</p>
</div>`,
{"sticky": true}
);
var circle_marker_451aa271453fd9ee4138b290a7000615 = L.circleMarker(
[39.455, -119.9422],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_653d2ad7a6c30ecff6bf518c3981fe3c = L.popup({"maxWidth": "100%"});
var html_be282078cfd554d6cbb6e8abf09c38bb = $(`<div id="html_be282078cfd554d6cbb6e8abf09c38bb" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Big Meadow (340)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/340:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_653d2ad7a6c30ecff6bf518c3981fe3c.setContent(html_be282078cfd554d6cbb6e8abf09c38bb);
circle_marker_451aa271453fd9ee4138b290a7000615.bindPopup(popup_653d2ad7a6c30ecff6bf518c3981fe3c)
;
circle_marker_451aa271453fd9ee4138b290a7000615.bindTooltip(
`<div>
<h4>Big Meadow (340)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_77b1ce1e14b09ced72f6b3d9804b7795 = L.circleMarker(
[39.455, -119.9422],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_2c6027a1016bc2f04647cb5580bff94b = L.popup({"maxWidth": "100%"});
var html_864e9879be944038ca833ef958c8a17b = $(`<div id="html_864e9879be944038ca833ef958c8a17b" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Big Meadow (340)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/340:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_2c6027a1016bc2f04647cb5580bff94b.setContent(html_864e9879be944038ca833ef958c8a17b);
circle_marker_77b1ce1e14b09ced72f6b3d9804b7795.bindPopup(popup_2c6027a1016bc2f04647cb5580bff94b)
;
circle_marker_77b1ce1e14b09ced72f6b3d9804b7795.bindTooltip(
`<div>
<h4>Big Meadow (340)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_ef35338792f877ef55b8dfdd46e64d4f = L.circleMarker(
[39.46138, -114.64863],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_d1ac417f0eee50afd93b7f5ada1a9517 = L.popup({"maxWidth": "100%"});
var html_c0c02612da115b66989c69b604022d7b = $(`<div id="html_c0c02612da115b66989c69b604022d7b" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Bird Creek (1155)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1155:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_d1ac417f0eee50afd93b7f5ada1a9517.setContent(html_c0c02612da115b66989c69b604022d7b);
circle_marker_ef35338792f877ef55b8dfdd46e64d4f.bindPopup(popup_d1ac417f0eee50afd93b7f5ada1a9517)
;
circle_marker_ef35338792f877ef55b8dfdd46e64d4f.bindTooltip(
`<div>
<h4>Bird Creek (1155)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_b7b1231417b6ab732ca9f49d1f85856a = L.circleMarker(
[38.60801, -119.92455],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_7f057adcd034759594b28e15a96d5ba9 = L.popup({"maxWidth": "100%"});
var html_dac4caa3481e2d4468cb6e8079e52b99 = $(`<div id="html_dac4caa3481e2d4468cb6e8079e52b99" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Blue Lakes (356)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/356:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_7f057adcd034759594b28e15a96d5ba9.setContent(html_dac4caa3481e2d4468cb6e8079e52b99);
circle_marker_b7b1231417b6ab732ca9f49d1f85856a.bindPopup(popup_7f057adcd034759594b28e15a96d5ba9)
;
circle_marker_b7b1231417b6ab732ca9f49d1f85856a.bindTooltip(
`<div>
<h4>Blue Lakes (356)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_3007d2a9ca51e0f2488238082c6f7623 = L.circleMarker(
[38.60801, -119.92455],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_f7e8346bd8f0b4f17b3ea283c2cca7aa = L.popup({"maxWidth": "100%"});
var html_fd136f87ff66ecb5a2336d8db8e65cf4 = $(`<div id="html_fd136f87ff66ecb5a2336d8db8e65cf4" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Blue Lakes (356)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/356:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_f7e8346bd8f0b4f17b3ea283c2cca7aa.setContent(html_fd136f87ff66ecb5a2336d8db8e65cf4);
circle_marker_3007d2a9ca51e0f2488238082c6f7623.bindPopup(popup_f7e8346bd8f0b4f17b3ea283c2cca7aa)
;
circle_marker_3007d2a9ca51e0f2488238082c6f7623.bindTooltip(
`<div>
<h4>Blue Lakes (356)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_012153d32e70afd7f964a53697844c55 = L.circleMarker(
[36.31575, -115.69543],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_f7ef4d98f831833e6a0c2e2af310a93b = L.popup({"maxWidth": "100%"});
var html_87990af41bbd293fe97bdf7388ee2f9a = $(`<div id="html_87990af41bbd293fe97bdf7388ee2f9a" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Bristlecone Trail (1111)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1111:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_f7ef4d98f831833e6a0c2e2af310a93b.setContent(html_87990af41bbd293fe97bdf7388ee2f9a);
circle_marker_012153d32e70afd7f964a53697844c55.bindPopup(popup_f7ef4d98f831833e6a0c2e2af310a93b)
;
circle_marker_012153d32e70afd7f964a53697844c55.bindTooltip(
`<div>
<h4>Bristlecone Trail (1111)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_dc024d0b1c9575e8550934f629153bff = L.circleMarker(
[36.31575, -115.69543],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_d428c40dedafd4f74a2e2a8334ef6f3a = L.popup({"maxWidth": "100%"});
var html_2dda6695d9a8b65d326eaacee60fcb01 = $(`<div id="html_2dda6695d9a8b65d326eaacee60fcb01" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Bristlecone Trail (1111)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1111:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_d428c40dedafd4f74a2e2a8334ef6f3a.setContent(html_2dda6695d9a8b65d326eaacee60fcb01);
circle_marker_dc024d0b1c9575e8550934f629153bff.bindPopup(popup_d428c40dedafd4f74a2e2a8334ef6f3a)
;
circle_marker_dc024d0b1c9575e8550934f629153bff.bindTooltip(
`<div>
<h4>Bristlecone Trail (1111)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_226f11a61012731aed4da6a3aa216f33 = L.circleMarker(
[41.75067, -117.53182],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#C2E2FB", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_d89b9591b24f3a81a8ce3100f52a4257 = L.popup({"maxWidth": "100%"});
var html_25bdc5e2226d9147a01ac8601cba0532 = $(`<div id="html_25bdc5e2226d9147a01ac8601cba0532" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Buckskin Lower (373)</h4><p>TWI Potential 1: Very Low</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/373:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_d89b9591b24f3a81a8ce3100f52a4257.setContent(html_25bdc5e2226d9147a01ac8601cba0532);
circle_marker_226f11a61012731aed4da6a3aa216f33.bindPopup(popup_d89b9591b24f3a81a8ce3100f52a4257)
;
circle_marker_226f11a61012731aed4da6a3aa216f33.bindTooltip(
`<div>
<h4>Buckskin Lower (373)</h4><p>TWI Potential 1: Very Low</p>
</div>`,
{"sticky": true}
);
var circle_marker_7cba590377c9d55bccd55fd90453bdab = L.circleMarker(
[38.71943, -119.8942],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#C2E2FB", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_ca9e160215bc82735b623ec3c43a9caa = L.popup({"maxWidth": "100%"});
var html_27b2780dc1d401bef131be759f0948c8 = $(`<div id="html_27b2780dc1d401bef131be759f0948c8" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Burnside Lake (1051)</h4><p>TWI Potential 1: Very Low</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1051:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_ca9e160215bc82735b623ec3c43a9caa.setContent(html_27b2780dc1d401bef131be759f0948c8);
circle_marker_7cba590377c9d55bccd55fd90453bdab.bindPopup(popup_ca9e160215bc82735b623ec3c43a9caa)
;
circle_marker_7cba590377c9d55bccd55fd90453bdab.bindTooltip(
`<div>
<h4>Burnside Lake (1051)</h4><p>TWI Potential 1: Very Low</p>
</div>`,
{"sticky": true}
);
var circle_marker_2bc5af522a7c8b787cf1b208549d00cc = L.circleMarker(
[38.71943, -119.8942],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#C2E2FB", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_d6c7016a391480af13b6268eddd6d2ff = L.popup({"maxWidth": "100%"});
var html_233f8bea709985855ba0674708fb8229 = $(`<div id="html_233f8bea709985855ba0674708fb8229" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Burnside Lake (1051)</h4><p>TWI Potential 1: Very Low</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1051:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_d6c7016a391480af13b6268eddd6d2ff.setContent(html_233f8bea709985855ba0674708fb8229);
circle_marker_2bc5af522a7c8b787cf1b208549d00cc.bindPopup(popup_d6c7016a391480af13b6268eddd6d2ff)
;
circle_marker_2bc5af522a7c8b787cf1b208549d00cc.bindTooltip(
`<div>
<h4>Burnside Lake (1051)</h4><p>TWI Potential 1: Very Low</p>
</div>`,
{"sticky": true}
);
var circle_marker_428a4841e7084a29d004739cc8111620 = L.circleMarker(
[38.6927, -120.0022],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_41c028924a41b3be1ca32d832d2ceb3a = L.popup({"maxWidth": "100%"});
var html_f785f856bff29adad90324ffb78feb49 = $(`<div id="html_f785f856bff29adad90324ffb78feb49" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Carson Pass (1067)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1067:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_41c028924a41b3be1ca32d832d2ceb3a.setContent(html_f785f856bff29adad90324ffb78feb49);
circle_marker_428a4841e7084a29d004739cc8111620.bindPopup(popup_41c028924a41b3be1ca32d832d2ceb3a)
;
circle_marker_428a4841e7084a29d004739cc8111620.bindTooltip(
`<div>
<h4>Carson Pass (1067)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_2a5120bab0470f361ff9fe01a37290c5 = L.circleMarker(
[38.6927, -120.0022],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_6b412e72f8243928a9bebc43ad1a14e2 = L.popup({"maxWidth": "100%"});
var html_37f0deea87f10924d3d7d6dad1d37f74 = $(`<div id="html_37f0deea87f10924d3d7d6dad1d37f74" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Carson Pass (1067)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1067:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_6b412e72f8243928a9bebc43ad1a14e2.setContent(html_37f0deea87f10924d3d7d6dad1d37f74);
circle_marker_2a5120bab0470f361ff9fe01a37290c5.bindPopup(popup_6b412e72f8243928a9bebc43ad1a14e2)
;
circle_marker_2a5120bab0470f361ff9fe01a37290c5.bindTooltip(
`<div>
<h4>Carson Pass (1067)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_cc9d1f064a2432db51e180301d3ba464 = L.circleMarker(
[39.16337, -114.6133],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_14d9e3d12329ab612601106a63fc7fa0 = L.popup({"maxWidth": "100%"});
var html_9886aae89c82b4527f96c6e2029a17fd = $(`<div id="html_9886aae89c82b4527f96c6e2029a17fd" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Cave Mountain (1152)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/1152:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_14d9e3d12329ab612601106a63fc7fa0.setContent(html_9886aae89c82b4527f96c6e2029a17fd);
circle_marker_cc9d1f064a2432db51e180301d3ba464.bindPopup(popup_14d9e3d12329ab612601106a63fc7fa0)
;
circle_marker_cc9d1f064a2432db51e180301d3ba464.bindTooltip(
`<div>
<h4>Cave Mountain (1152)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_17e0d360ceea0a20fe3e9f8a1219fc00 = L.circleMarker(
[41.58233, -120.3025],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_b8d73bf4232d5fab79f9a0d3968f00a0 = L.popup({"maxWidth": "100%"});
var html_293b5e88e3797164d32d7a72708b253f = $(`<div id="html_293b5e88e3797164d32d7a72708b253f" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Cedar Pass (391)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/391:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_b8d73bf4232d5fab79f9a0d3968f00a0.setContent(html_293b5e88e3797164d32d7a72708b253f);
circle_marker_17e0d360ceea0a20fe3e9f8a1219fc00.bindPopup(popup_b8d73bf4232d5fab79f9a0d3968f00a0)
;
circle_marker_17e0d360ceea0a20fe3e9f8a1219fc00.bindTooltip(
`<div>
<h4>Cedar Pass (391)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_1c0f2afa95a28e157291f9e8c1688d50 = L.circleMarker(
[41.58233, -120.3025],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_118bfc0fbf39bead94b14917dd7ee8d1 = L.popup({"maxWidth": "100%"});
var html_a8c17525839ff79d47aa78594ffcbc60 = $(`<div id="html_a8c17525839ff79d47aa78594ffcbc60" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Cedar Pass (391)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/391:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_118bfc0fbf39bead94b14917dd7ee8d1.setContent(html_a8c17525839ff79d47aa78594ffcbc60);
circle_marker_1c0f2afa95a28e157291f9e8c1688d50.bindPopup(popup_118bfc0fbf39bead94b14917dd7ee8d1)
;
circle_marker_1c0f2afa95a28e157291f9e8c1688d50.bindTooltip(
`<div>
<h4>Cedar Pass (391)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_f9a48bd0ac27f74a0913f5a0256c89b3 = L.circleMarker(
[40.27551, -115.54017],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_63632a15b7ff0323b252cce57f889f6c = L.popup({"maxWidth": "100%"});
var html_5cbe9a8ce0d4a2420027e3d08b426cc9 = $(`<div id="html_5cbe9a8ce0d4a2420027e3d08b426cc9" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Corral Canyon (417)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/417:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_63632a15b7ff0323b252cce57f889f6c.setContent(html_5cbe9a8ce0d4a2420027e3d08b426cc9);
circle_marker_f9a48bd0ac27f74a0913f5a0256c89b3.bindPopup(popup_63632a15b7ff0323b252cce57f889f6c)
;
circle_marker_f9a48bd0ac27f74a0913f5a0256c89b3.bindTooltip(
`<div>
<h4>Corral Canyon (417)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_feade000251888010bca090106ba8eac = L.circleMarker(
[41.89318, -120.75202],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "darkgrey", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_324543dde051aba2f6f6c57374ec7513 = L.popup({"maxWidth": "100%"});
var html_842d15f983976cda8720f6d16def7618 = $(`<div id="html_842d15f983976cda8720f6d16def7618" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Crowder Flat (977)</h4><p>TWI Potential 6: No Snow</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/977:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_324543dde051aba2f6f6c57374ec7513.setContent(html_842d15f983976cda8720f6d16def7618);
circle_marker_feade000251888010bca090106ba8eac.bindPopup(popup_324543dde051aba2f6f6c57374ec7513)
;
circle_marker_feade000251888010bca090106ba8eac.bindTooltip(
`<div>
<h4>Crowder Flat (977)</h4><p>TWI Potential 6: No Snow</p>
</div>`,
{"sticky": true}
);
var circle_marker_be148aa388b48fb8650f571b3c6e09cd = L.circleMarker(
[41.89318, -120.75202],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "darkgrey", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_08d8b514aa582aeb84b1b54f85b6ea71 = L.popup({"maxWidth": "100%"});
var html_71c59323c1a03b872e4c938fcd0046ef = $(`<div id="html_71c59323c1a03b872e4c938fcd0046ef" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Crowder Flat (977)</h4><p>TWI Potential 6: No Snow</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/977:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_08d8b514aa582aeb84b1b54f85b6ea71.setContent(html_71c59323c1a03b872e4c938fcd0046ef);
circle_marker_be148aa388b48fb8650f571b3c6e09cd.bindPopup(popup_08d8b514aa582aeb84b1b54f85b6ea71)
;
circle_marker_be148aa388b48fb8650f571b3c6e09cd.bindTooltip(
`<div>
<h4>Crowder Flat (977)</h4><p>TWI Potential 6: No Snow</p>
</div>`,
{"sticky": true}
);
var circle_marker_137eb350b5666235c63db39cee2dce63 = L.circleMarker(
[39.32565, -120.36807],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_41818eb1be1a7a3efc68ee8cd8757a2c = L.popup({"maxWidth": "100%"});
var html_5a36d0c6a7051b49a7d530b5f26a877d = $(`<div id="html_5a36d0c6a7051b49a7d530b5f26a877d" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Css Lab (428)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/428:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_41818eb1be1a7a3efc68ee8cd8757a2c.setContent(html_5a36d0c6a7051b49a7d530b5f26a877d);
circle_marker_137eb350b5666235c63db39cee2dce63.bindPopup(popup_41818eb1be1a7a3efc68ee8cd8757a2c)
;
circle_marker_137eb350b5666235c63db39cee2dce63.bindTooltip(
`<div>
<h4>Css Lab (428)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_e257fd893ea4d2755195f09756142f9a = L.circleMarker(
[39.32565, -120.36807],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_aa3e8d2028c0e6fe57b07b38f409e472 = L.popup({"maxWidth": "100%"});
var html_b12d4fdf783688a68c2fd4dbd35b7ffd = $(`<div id="html_b12d4fdf783688a68c2fd4dbd35b7ffd" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Css Lab (428)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/428:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_aa3e8d2028c0e6fe57b07b38f409e472.setContent(html_b12d4fdf783688a68c2fd4dbd35b7ffd);
circle_marker_e257fd893ea4d2755195f09756142f9a.bindPopup(popup_aa3e8d2028c0e6fe57b07b38f409e472)
;
circle_marker_e257fd893ea4d2755195f09756142f9a.bindTooltip(
`<div>
<h4>Css Lab (428)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_da756b8a5e6cfea22abda3aace1ce758 = L.circleMarker(
[39.56361, -115.84421],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_ea901e5d2cc4525824195e0d2c799e78 = L.popup({"maxWidth": "100%"});
var html_6217a8e42406e884b63e960c2bb14614 = $(`<div id="html_6217a8e42406e884b63e960c2bb14614" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Diamond Peak (443)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/443:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_ea901e5d2cc4525824195e0d2c799e78.setContent(html_6217a8e42406e884b63e960c2bb14614);
circle_marker_da756b8a5e6cfea22abda3aace1ce758.bindPopup(popup_ea901e5d2cc4525824195e0d2c799e78)
;
circle_marker_da756b8a5e6cfea22abda3aace1ce758.bindTooltip(
`<div>
<h4>Diamond Peak (443)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_27599ac53ea6c6582335df31ef6c5270 = L.circleMarker(
[41.96737, -118.18934],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_cba5240c622a201263ce8d423051a66e = L.popup({"maxWidth": "100%"});
var html_b6e06b70a20933fb87e585d51e45f127 = $(`<div id="html_b6e06b70a20933fb87e585d51e45f127" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Disaster Peak (445)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/445:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_cba5240c622a201263ce8d423051a66e.setContent(html_b6e06b70a20933fb87e585d51e45f127);
circle_marker_27599ac53ea6c6582335df31ef6c5270.bindPopup(popup_cba5240c622a201263ce8d423051a66e)
;
circle_marker_27599ac53ea6c6582335df31ef6c5270.bindTooltip(
`<div>
<h4>Disaster Peak (445)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_d51dd366060c67068243c134aa7a76c9 = L.circleMarker(
[41.99127, -120.18033],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_c695bf9f0a97efa2900e77d815ba4117 = L.popup({"maxWidth": "100%"});
var html_01d39c87db7e6c3a3b05554398d63d7e = $(`<div id="html_01d39c87db7e6c3a3b05554398d63d7e" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Dismal Swamp (446)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/446:CA:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_c695bf9f0a97efa2900e77d815ba4117.setContent(html_01d39c87db7e6c3a3b05554398d63d7e);
circle_marker_d51dd366060c67068243c134aa7a76c9.bindPopup(popup_c695bf9f0a97efa2900e77d815ba4117)
;
circle_marker_d51dd366060c67068243c134aa7a76c9.bindTooltip(
`<div>
<h4>Dismal Swamp (446)</h4><p>TWI Potential 0: None</p>
</div>`,
{"sticky": true}
);
var circle_marker_5d90bedc57a92bd0e18bb9511942f15c = L.circleMarker(
[40.89343, -115.21104],
{"bubblingMouseEvents": true, "color": "black", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "white", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 2}
).addTo(map_78a903fc25e14fb352067c9e2efc7836);
var popup_641989ec85fa59a08d50ded4c89aae19 = L.popup({"maxWidth": "100%"});
var html_8f7366703741b327266d3a66bacb53db = $(`<div id="html_8f7366703741b327266d3a66bacb53db" style="width: 100.0%; height: 100.0%;"><div style='width: 250px; height: 100px; overflow-y: auto;'><h4>Dorsey Basin (453)</h4><p>TWI Potential 0: None</p><a href="https://wcc.sc.egov.usda.gov/reportGenerator/view/customChartReport/hourly/start_of_period/453:NV:SNTL%7Cid=%22%22%7Cname/-167,0/PREC::value,WTEQ::value,TOBS::value,SNDN::value,SMS:-2:value,SMS:-8:value,SMS:-20:value,STO:-2:value,STO:-8:value,STO:-20:value?fitToScreen=true&useLogScale=false" target="_blank">Click here for more info</a></div>`)[0];
popup_641989ec85fa59a08d50ded4c89aae19.setContent(html_8f7366703741b327266d3a66bacb53db);
circle_marker_5d90bedc57a92bd0e18bb9511942f15c.bindPopup(popup_641989ec85fa59a08d50ded4c89aae19)