forked from UC-Berkeley-I-School/mids-261-team-3-1-spring24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeographic_heatmap.html
9311 lines (4833 loc) · 444 KB
/
geographic_heatmap.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_fdb95c2e3696851cf5bf21a4fd720fa7 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_fdb95c2e3696851cf5bf21a4fd720fa7" ></div>
</body>
<script>
var map_fdb95c2e3696851cf5bf21a4fd720fa7 = L.map(
"map_fdb95c2e3696851cf5bf21a4fd720fa7",
{
center: [38.27312, -98.5821872],
crs: L.CRS.EPSG3857,
zoom: 5,
zoomControl: true,
preferCanvas: false,
scrollWheelZoom: false,
}
);
var tile_layer_4a9a9c7ca61f9f01e8e524f0cfcec87d = 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_4a9a9c7ca61f9f01e8e524f0cfcec87d.addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var heat_map_0748eeaff06d63769c85e5eac7bfacc7 = L.heatLayer(
[[42.2068, -75.98, 0.20738308702563563], [59.05, -158.5167, 0.24366106167689014], [48.5614, -93.3981, 0.5126537940767559], [29.99691, -90.27751, 2.0388462083991414], [47.6216, -117.528, 0.6826072679311342], [34.20056, -118.3575, 0.7318613670901041], [33.68, -117.86639, 1.2283875447704298], [44.4794, -88.1366, 0.3946128267132294], [47.4733, -111.3822, 0.3359368705067993], [43.519, -112.0639, 0.3359368705067993], [42.8825, -85.52389, 1.0070339096894505], [37.15221, -94.49527, 0.21752418375591953], [44.1278, -123.2206, 0.3814073748868385], [56.8055, -132.9372, 0.5479690297113684], [36.0969, -79.9432, 0.7046103716387623], [33.68333, -78.93333, 1.2017343807852614], [41.7225, -71.4325, 0.9050827600410921], [37.72139, -122.22083, 1.9430206043299694], [45.9647, -112.5006, 0.21515210781959235], [44.51667, -109.01667, 0.3382679443254861], [46.9253, -96.8111, 0.5298747782868393], [35.333, -94.3625, 0.2807908182978799], [46.35, -87.4, 0.21314708948216005], [43.1405, -89.3452, 1.03712936859761], [70.1917, -148.4772, 0.35641743084731864], [45.73333, -87.08333, 0.20738308702563563], [38.8472, -77.03454, 3.1625198061575475], [41.8833, -91.7166, 0.5944561767059254], [33.45, -88.58333, 0.2132666345419603], [46.3747, -117.0156, 0.21515210781959235], [32.5155, -92.0405, 0.33567955088581225], [31.46667, -89.33333, 0.2947372121013041], [56.4732, -132.3874, 0.5429486017924954], [46.25, -84.46667, 0.20738308702563563], [46.6056, -111.9636, 0.3359368705067993], [43.10833, -78.93806, 0.25866941315363373], [38.0408, -84.6058, 0.6168624466472439], [44.2558, -121.1392, 0.3814073748868385], [46.9258, -98.6691, 0.33466519976848386], [36.9033, -76.1922, 0.9978907147776427], [40.85, -77.85, 0.3337968110497561], [38.0441, -87.5205, 0.40132099480567573], [55.35667, -131.71167, 0.7502926190275856], [38.3794, -81.59, 0.4585664085689876], [44.78333, -89.66667, 0.2739631051456333], [37.92722, -100.72472, 0.21752418375591953], [32.13133, -81.20237, 0.6989784866978235], [60.4888, -145.4511, 0.4614245503656383], [36.47967, -82.39898, 0.2132666345419603], [39.9907, -82.877, 1.6291148701284992], [51.88333, -176.65, 0.24366106167689014], [40.9181, -81.4435, 0.6837634073387924], [32.35417, -95.4025, 0.2724129163438519], [38.13861, -78.45306, 0.32814977128476897], [30.68833, -88.24556, 0.44370613189720015], [46.7994, -102.7972, 0.27078476268720686], [30.47806, -87.18694, 0.6340568310721075], [41.78028, -124.23667, 0.2056984117189267], [21.98389, -159.34056, 0.7290706133783519], [29.98, -95.36, 7.449048121953776], [21.324, -157.9294, 1.6046060407687182], [42.0803, -80.1824, 0.2705301765077957], [58.4111, -135.7089, 0.31332453844348823], [32.4472, -93.8244, 0.3956482979095459], [39.0444, -84.6724, 2.241673256678135], [37.3591, -121.924, 1.5102449788765853], [41.5871, -83.8055, 0.21314708948216005], [42.9408, -78.7358, 1.06770950626695], [40.7792, -73.88, 4.033821468750123], [30.39306, -84.35333, 0.3300953582058749], [37.7086, -113.0944, 0.21515210781959235], [31.61889, -97.22833, 0.21752418375591953], [41.06694, -73.7075, 0.6247892067227728], [40.5175, -122.2986, 0.2056984117189267], [30.1831, -97.6799, 2.312738169941782], [44.33944, -105.54194, 0.3833036328409245], [41.46528, -90.52333, 0.5221057574928826], [44.26667, -88.51667, 0.3946128267132294], [31.3167, -85.45, 0.2132666345419603], [35.4319, -82.5375, 0.32481569449495473], [39.1342, -108.54, 0.44909174023003723], [33.8116, -118.1463, 0.7580849549353357], [35.4344, -119.0542, 0.37211386037345195], [38.75, -109.76278, 0.21515210781959235], [47.9428, -97.1839, 0.21081601566347322], [39.4838, -119.7711, 0.8685896275078356], [27.40139, -82.55861, 0.5300076238126724], [47.5, -94.93333, 0.21081601566347322], [24.5571, -81.7554, 0.31430722171060377], [41.7072, -86.3163, 0.4430147971840636], [40.27679, -74.81594, 1.1634393662428186], [43.6, -110.73333, 0.8882262020138234], [43.9041, -92.4916, 0.3946128267132294], [32.89943, -80.04075, 1.1226431348977515], [26.22806, -97.65417, 0.3011947444178721], [26.53611, -81.755, 2.1918565140021466], [36.1994, -95.8872, 1.0704648755300967], [35.2295, -101.7042, 0.42596451582618206], [40.7939, -73.1017, 0.43886220378910085], [42.3606, -71.0097, 3.318950360338641], [31.9475, -102.2086, 0.4733829925507524], [28.1011, -80.6439, 0.2132666345419603], [40.6825, -74.1694, 4.7365776351282], [46.7825, -100.7572, 0.40145603592528667], [36.0719, -115.1634, 4.242940169442387], [64.8039, -147.8761, 0.5327521474329091], [19.7191, -155.053, 0.3125695299667858], [32.3205, -90.0777, 0.3988266403679724], [45.81833, -88.11444, 0.36631648421757945], [36.28333, -94.3, 0.7323740299386479], [46.8369, -92.1833, 0.3180470853595268], [41.66861, -70.28, 0.19984464264344876], [39.8328, -104.6575, 9.678298672045656], [35.0677, -77.048, 0.2132666345419603], [45.6314, -89.4823, 0.36631648421757945], [37.1, -113.6, 0.27512085484332605], [42.74722, -73.79912, 0.8817534954144433], [42.89779, -106.47371, 0.27512085484332605], [40.9611, -98.3136, 0.21752418375591953], [40.8508, -96.7475, 0.4412824669252207], [64.5111, -165.44, 0.42560459029706516], [43.5666, -116.2405, 0.909672691299185], [38.93486, -77.44728, 3.7544066393652793], [33.8222, -116.5043, 0.832178469668314], [34.4258, -119.8425, 0.47080569771578734], [32.6933, -103.2125, 0.2048887325879323], [41.3167, -105.6833, 0.2099687470237336], [32.3347, -88.7442, 0.3440755835897143], [46.40472, -94.13083, 0.3570125865646664], [25.9141, -97.423, 0.2724129163438519], [37.14306, -107.76028, 0.32905089982251245], [40.48333, -88.95, 0.570405390153413], [41.59466, -109.05296, 0.3833036328409245], [47.4444, -122.3138, 4.176280896945509], [40.03972, -88.27778, 0.2806712732380796], [42.7761, -84.5997, 0.3946128267132294], [40.44278, -109.51278, 0.21515210781959235], [27.53333, -99.46667, 0.2724129163438519], [44.65, -73.46667, 0.25866941315363373], [38.85, -99.26667, 0.2099687470237336], [30.7825, -83.27667, 0.2132666345419603], [39.2972, -94.7306, 2.0906726801126103], [35.1441, -111.6663, 0.20155796904285922], [31.06667, -97.83333, 0.33567955088581225], [36.11889, -86.68917, 2.491530246897114], [30.58917, -96.36472, 0.2724129163438519], [35.2236, -80.9552, 3.7187666817851484], [44.74083, -85.5825, 0.49475084444471223], [29.95917, -81.33972, 0.25124427315669706], [48.79389, -122.53722, 0.36144272976202707], [46.26667, -119.11667, 0.3916352822257261], [42.2706, -71.8731, 0.24722927761314892], [35.0419, -106.6155, 1.3629047113168118], [26.6847, -80.0994, 1.423100826706745], [38.1811, -85.7391, 1.1054586013021757], [40.97806, -124.10861, 0.2056984117189267], [34.5584, -98.4172, 0.21752418375591953], [41.9375, -72.6819, 1.284898091166619], [32.8519, -96.8555, 2.8312859907103585], [36.58806, -121.84528, 0.30784448908637163], [42.48333, -76.46667, 0.20738308702563563], [42.39778, -90.70361, 0.21314708948216005], [41.4057, -81.852, 1.9589609298829778], [41.25306, -70.06083, 0.29417345136094764], [45.5958, -122.6093, 2.741224823009408], [39.6744, -75.60567, 0.24620220860933326], [42.3811, -122.8722, 0.33081926656225275], [25.7881, -80.3169, 2.9520724071412476], [42.48194, -114.48694, 0.21515210781959235], [39.1733, -76.684, 3.5558090405880036], [27.96194, -82.5403, 3.2607717070756927], [45.0716, -83.5644, 0.20738308702563563], [47.16861, -88.48889, 0.21314708948216005], [35.3889, -97.6006, 1.272942825878743], [37.3169, -79.9741, 0.3229716705654193], [71.2834, -156.7815, 0.39599256524715526], [43.41333, -124.24361, 0.26566715874266034], [38.69556, -121.58972, 1.6014739655279508], [39.8447, -89.6839, 0.2806712732380796], [32.4105, -99.6822, 0.21752418375591953], [42.15944, -76.89194, 0.3337968110497561], [43.53306, -84.07972, 0.3946128267132294], [45.4433, -98.413, 0.21081601566347322], [48.11667, -98.9, 0.2911232475219174], [48.3042, -114.2636, 0.4623505945309198], [33.4277, -112.0038, 4.647253279334524], [31.53556, -84.19444, 0.2132666345419603], [60.785, -161.8293, 0.24366106167689014], [43.64222, -70.30444, 0.7189973767017347], [38.7525, -90.3736, 2.5502639169181553], [40.64985, -75.44771, 0.3337968110497561], [32.8978, -97.0189, 11.494956947190323], [42.9328, -71.4358, 0.7176538696814869], [33.4536, -94.0074, 0.21752418375591953], [34.8842, -82.2209, 0.7899223153789005], [43.8788, -91.2527, 0.2739631051456333], [37.63333, -118.85, 0.26566715874266034], [34.99139, -78.88028, 0.2132666345419603], [17.6997, -64.8125, 0.3098913000785314], [40.48111, -107.2175, 0.7124134358873089], [38.53333, -106.93333, 0.39552875284974565], [40.8288, -115.7886, 0.21515210781959235], [33.6656, -101.8231, 0.47485205093155164], [27.7742, -97.5122, 0.3198313930684222], [39.65, -106.91667, 0.7177506644020432], [43.5778, -96.7539, 0.46472267046724686], [41.5, -74.1, 0.3046123646387846], [31.25889, -81.46611, 0.2132666345419603], [32.5161, -84.9422, 0.2132666345419603], [43.5, -114.3, 0.33081926656225275], [37.6197, -122.3647, 5.146100665273081], [35.0564, -89.9865, 1.3122288658176657], [35.61694, -106.08889, 0.3280810391042389], [31.81111, -106.37583, 0.7987487503282248], [33.56556, -86.745, 0.9459200900369117], [33.6301, -84.4418, 12.230721332436785], [26.07875, -80.16217, 3.2835670154935404], [42.9666, -83.7494, 0.5742228941002169], [42.9202, -112.5711, 0.21515210781959235], [58.6829, -156.6563, 0.24366106167689014], [37.51151, -77.32344, 0.9512763041999612], [39.9064, -84.2185, 0.8109743948205961], [37.13194, -76.49306, 0.3187403367041278], [41.3102, -95.8991, 1.185877723760881], [31.35167, -100.495, 0.21752418375591953], [30.12472, -93.22833, 0.2724129163438519], [45.5433, -94.0513, 0.21314708948216005], [29.95056, -94.02056, 0.21752418375591953], [39.1346, -96.6788, 0.2806712732380796], [30.48333, -86.51667, 0.33567955088581225], [34.7273, -92.2389, 0.8045528338378725], [41.39306, -70.615, 0.24607279503143356], [33.9419, -81.1181, 0.5469687983685612], [30.349, -85.788, 0.4988844518787227], [36.78, -119.7194, 0.6502688858438055], [37.6475, -97.43, 0.7093093900511896], [41.3336, -75.7269, 0.3821987815205904], [41.995, -87.9336, 11.692970764862231], [40.28333, -79.4, 0.5128391926028188], [44.4683, -73.1499, 0.5303374179659865], [38.8169, -92.2183, 0.2806712732380796], [43.17111, -86.23667, 0.21314708948216005], [31.33472, -92.55861, 0.33567955088581225], [45.8069, -108.5422, 0.39908395998895946], [33.9786, -98.4928, 0.21752418375591953], [34.2675, -77.8997, 0.31232280743118496], [38.2901, -104.4983, 0.2099687470237336], [34.8994, -120.4486, 0.2562865200435124], [40.6675, -89.6839, 0.5769944900808149], [18.4977, -67.1294, 0.345475890727432], [35.8923, -78.7819, 1.8373038480875787], [47.38639, -92.83889, 0.3570125865646664], [26.18389, -98.25389, 0.2724129163438519], [42.955, -87.9044, 1.646961384971653], [48.1738, -103.6366, 0.3256734952751392], [43.1111, -76.1038, 0.7348738482480808], [34.64389, -86.78611, 0.6108370772881547], [30.205, -91.9875, 0.3956482979095459], [39.45202, -74.56699, 0.6826564709822589], [38.50583, -107.89889, 0.665041846948912], [40.4846, -80.2144, 1.6872870924953929], [33.3075, -104.5083, 0.21752418375591953], [32.1313, -110.9552, 0.9850040810120294], [42.23472, -85.55194, 0.3946128267132294], [41.78611, -87.75222, 3.6708237651679463], [45.5644, -84.7927, 0.20738308702563563], [38.81, -104.6884, 0.7443621873249163], [34.83333, -77.61667, 0.2132666345419603], [58.3566, -134.564, 1.3233118376837445], [42.5544, -92.4011, 0.21314708948216005], [39.72517, -86.28168, 1.6633013869660989], [44.8665, -91.4879, 0.21314708948216005], [19.73556, -156.04889, 0.8227316750552421], [30.4119, -89.0808, 0.33567955088581225], [32.2997, -86.4075, 0.2807908182978799], [35.03362, -85.20044, 0.40132099480567573], [42.2313, -83.3308, 7.266631946164587], [29.63806, -95.28194, 2.6688117922335466], [35.8181, -83.9858, 0.6628744386901235], [57.75111, -152.48556, 0.24366106167689014], [32.65, -114.61667, 0.20155796904285922], [40.9705, -85.2063, 0.46213701046914896], [40.1962, -76.7724, 0.48938531636259625], [34.05611, -117.60028, 0.9132233015452956], [30.495, -81.6936, 1.290819391815012], [33.938, -118.3888, 4.735307382426093], [48.2552, -101.2733, 0.27078476268720686], [44.8831, -93.2289, 8.331716887848076], [44.7978, -68.8185, 0.25911913428628414], [30.5372, -91.1469, 0.38378020721532635], [57.0481, -135.3647, 0.5255853978812829], [33.3644, -81.9633, 0.3198914143905412], [28.4339, -81.325, 4.072813953656195], [66.86667, -162.63333, 0.42560459029706516], [43.1167, -77.6767, 0.8261732585257958], [37.23985, -93.39007, 0.40390665480377363], [44.68333, -111.11667, 0.21515210781959235], [32.7336, -117.1831, 2.5392423418378427], [45.788, -111.1608, 0.8266563264995296], [32.38472, -94.71167, 0.21752418375591953], [59.512, -139.6712, 0.512075603068608], [61.169, -150.0278, 3.3163829660591464], [29.1828, -81.0483, 0.2605867601705364], [40.6386, -73.7622, 3.6213075314097627], [37.0563, -88.7744, 0.21314708948216005], [42.3913, -96.3791, 0.21314708948216005], [29.6919, -82.2755, 0.2625711744499552], [46.9208, -114.0925, 0.5193780168083862], [20.89972, -156.42861, 1.2258784340663709], [39.87327, -75.22678, 2.307474352723853], [41.5338, -93.653, 0.8347232603067988], [29.5443, -98.4839, 1.7077840658402756], [40.7781, -111.9694, 6.686166712510969], [18.3363, -64.98, 0.7144054991639928], [39.23, -106.87056, 0.6258979230986917], [33.12806, -117.27944, 0.20058810832458568], [44.0433, -103.0536, 0.5847635108747716], [35.23722, -120.64139, 0.30784448908637163]],
{"blur": 15, "maxZoom": 18, "minOpacity": 0.5, "radius": 25}
);
heat_map_0748eeaff06d63769c85e5eac7bfacc7.addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var circle_e4f6ddd8f1a3a0f651239e4506859d3d = L.circle(
[42.2068, -75.98],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_eb8f3b4a491fa2269c3721b6535a0d01 = L.popup({"maxWidth": 150});
var html_5f899cacf7b3e0c36732e931dd8e47b8 = $(`<div id="html_5f899cacf7b3e0c36732e931dd8e47b8" style="width: 100.0%; height: 100.0%;"> <p>Greater Binghamton/Edwin A Link field</p> <ul> <li>2015 Delays: 169</li> <li>PageRank: 0.207</li> </ul> </p> </div>`)[0];
popup_eb8f3b4a491fa2269c3721b6535a0d01.setContent(html_5f899cacf7b3e0c36732e931dd8e47b8);
circle_e4f6ddd8f1a3a0f651239e4506859d3d.bindPopup(popup_eb8f3b4a491fa2269c3721b6535a0d01)
;
circle_e4f6ddd8f1a3a0f651239e4506859d3d.bindTooltip(
`<div>
BGM
</div>`,
{"sticky": true}
);
var circle_9a4e473b85e8508849c83ebe33de8d9f = L.circle(
[59.05, -158.5167],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_40884f71ae2d30f804a70d0e11dbace7 = L.popup({"maxWidth": 150});
var html_cac1396b8c432818ea812f34448bdb37 = $(`<div id="html_cac1396b8c432818ea812f34448bdb37" style="width: 100.0%; height: 100.0%;"> <p>Dillingham Airport</p> <ul> <li>2015 Delays: 77</li> <li>PageRank: 0.244</li> </ul> </p> </div>`)[0];
popup_40884f71ae2d30f804a70d0e11dbace7.setContent(html_cac1396b8c432818ea812f34448bdb37);
circle_9a4e473b85e8508849c83ebe33de8d9f.bindPopup(popup_40884f71ae2d30f804a70d0e11dbace7)
;
circle_9a4e473b85e8508849c83ebe33de8d9f.bindTooltip(
`<div>
DLG
</div>`,
{"sticky": true}
);
var circle_f1f24c7adc7bd03f1095602e64fff5e1 = L.circle(
[48.5614, -93.3981],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_6438fadca2da9b4233bdad4979d287a9 = L.popup({"maxWidth": 150});
var html_681e6aee2567a1f3c9756ee139c0ac6b = $(`<div id="html_681e6aee2567a1f3c9756ee139c0ac6b" style="width: 100.0%; height: 100.0%;"> <p>Falls International Airport</p> <ul> <li>2015 Delays: 403</li> <li>PageRank: 0.513</li> </ul> </p> </div>`)[0];
popup_6438fadca2da9b4233bdad4979d287a9.setContent(html_681e6aee2567a1f3c9756ee139c0ac6b);
circle_f1f24c7adc7bd03f1095602e64fff5e1.bindPopup(popup_6438fadca2da9b4233bdad4979d287a9)
;
circle_f1f24c7adc7bd03f1095602e64fff5e1.bindTooltip(
`<div>
INL
</div>`,
{"sticky": true}
);
var circle_dc852d73d0ac0434ae48afb2a9240ac8 = L.circle(
[29.99691, -90.27751],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_fedd8ee12f2533fb6c30d54132dc6967 = L.popup({"maxWidth": 150});
var html_020761f61d76f74eec4669556ec1fcec = $(`<div id="html_020761f61d76f74eec4669556ec1fcec" style="width: 100.0%; height: 100.0%;"> <p>Louis Armstrong New Orleans International Airport</p> <ul> <li>2015 Delays: 28,031</li> <li>PageRank: 2.039</li> </ul> </p> </div>`)[0];
popup_fedd8ee12f2533fb6c30d54132dc6967.setContent(html_020761f61d76f74eec4669556ec1fcec);
circle_dc852d73d0ac0434ae48afb2a9240ac8.bindPopup(popup_fedd8ee12f2533fb6c30d54132dc6967)
;
circle_dc852d73d0ac0434ae48afb2a9240ac8.bindTooltip(
`<div>
MSY
</div>`,
{"sticky": true}
);
var circle_7854ddc7cdac8182451c15657f3ff4bf = L.circle(
[47.6216, -117.528],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_b8c5d795c492ba13a0107aad052f80cd = L.popup({"maxWidth": 150});
var html_3c242e5df901c1f929a5a52a79b3fbd9 = $(`<div id="html_3c242e5df901c1f929a5a52a79b3fbd9" style="width: 100.0%; height: 100.0%;"> <p>Spokane International Airport</p> <ul> <li>2015 Delays: 6,921</li> <li>PageRank: 0.683</li> </ul> </p> </div>`)[0];
popup_b8c5d795c492ba13a0107aad052f80cd.setContent(html_3c242e5df901c1f929a5a52a79b3fbd9);
circle_7854ddc7cdac8182451c15657f3ff4bf.bindPopup(popup_b8c5d795c492ba13a0107aad052f80cd)
;
circle_7854ddc7cdac8182451c15657f3ff4bf.bindTooltip(
`<div>
GEG
</div>`,
{"sticky": true}
);
var circle_69ed220c5fad15833117b14ba849211b = L.circle(
[34.20056, -118.3575],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_321f1e3425cc5541a6891464a8b5fbba = L.popup({"maxWidth": 150});
var html_8e7cafbbe18ad5aa51174a273b749d14 = $(`<div id="html_8e7cafbbe18ad5aa51174a273b749d14" style="width: 100.0%; height: 100.0%;"> <p>Bob Hope Airport</p> <ul> <li>2015 Delays: 13,452</li> <li>PageRank: 0.732</li> </ul> </p> </div>`)[0];
popup_321f1e3425cc5541a6891464a8b5fbba.setContent(html_8e7cafbbe18ad5aa51174a273b749d14);
circle_69ed220c5fad15833117b14ba849211b.bindPopup(popup_321f1e3425cc5541a6891464a8b5fbba)
;
circle_69ed220c5fad15833117b14ba849211b.bindTooltip(
`<div>
BUR
</div>`,
{"sticky": true}
);
var circle_dc2c1ce10d06c7937536738c325cde5e = L.circle(
[33.68, -117.86639],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_ddd33edc2baada9df28307b1490f9f5f = L.popup({"maxWidth": 150});
var html_795a70ec9d9ac6e1675a12a2da03714a = $(`<div id="html_795a70ec9d9ac6e1675a12a2da03714a" style="width: 100.0%; height: 100.0%;"> <p>John Wayne Airport-Orange County Airport</p> <ul> <li>2015 Delays: 26,363</li> <li>PageRank: 1.228</li> </ul> </p> </div>`)[0];
popup_ddd33edc2baada9df28307b1490f9f5f.setContent(html_795a70ec9d9ac6e1675a12a2da03714a);
circle_dc2c1ce10d06c7937536738c325cde5e.bindPopup(popup_ddd33edc2baada9df28307b1490f9f5f)
;
circle_dc2c1ce10d06c7937536738c325cde5e.bindTooltip(
`<div>
SNA
</div>`,
{"sticky": true}
);
var circle_edbccd5b6d74e8d1d833e6a50c42844a = L.circle(
[44.4794, -88.1366],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_f3503834fd2317ec5c07be08ede115a8 = L.popup({"maxWidth": 150});
var html_a13cb74938e130eb3a0e8cdd692853a8 = $(`<div id="html_a13cb74938e130eb3a0e8cdd692853a8" style="width: 100.0%; height: 100.0%;"> <p>Austin Straubel International Airport</p> <ul> <li>2015 Delays: 3,479</li> <li>PageRank: 0.395</li> </ul> </p> </div>`)[0];
popup_f3503834fd2317ec5c07be08ede115a8.setContent(html_a13cb74938e130eb3a0e8cdd692853a8);
circle_edbccd5b6d74e8d1d833e6a50c42844a.bindPopup(popup_f3503834fd2317ec5c07be08ede115a8)
;
circle_edbccd5b6d74e8d1d833e6a50c42844a.bindTooltip(
`<div>
GRB
</div>`,
{"sticky": true}
);
var circle_2fca4f5766c336b325d8e04e22730194 = L.circle(
[47.4733, -111.3822],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_569cea2b0dd069a394987e2a2e53592e = L.popup({"maxWidth": 150});
var html_26ff882726a865f19f06a1648a8f1cae = $(`<div id="html_26ff882726a865f19f06a1648a8f1cae" style="width: 100.0%; height: 100.0%;"> <p>Great Falls International Airport</p> <ul> <li>2015 Delays: 1,430</li> <li>PageRank: 0.336</li> </ul> </p> </div>`)[0];
popup_569cea2b0dd069a394987e2a2e53592e.setContent(html_26ff882726a865f19f06a1648a8f1cae);
circle_2fca4f5766c336b325d8e04e22730194.bindPopup(popup_569cea2b0dd069a394987e2a2e53592e)
;
circle_2fca4f5766c336b325d8e04e22730194.bindTooltip(
`<div>
GTF
</div>`,
{"sticky": true}
);
var circle_85352e38c99fd04301c8a09c73dfab60 = L.circle(
[43.519, -112.0639],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_c1d318d480c778944f3c29d7bab50c36 = L.popup({"maxWidth": 150});
var html_186aa0563ba9290474879e4939cd933c = $(`<div id="html_186aa0563ba9290474879e4939cd933c" style="width: 100.0%; height: 100.0%;"> <p>Idaho Falls Regional Airport</p> <ul> <li>2015 Delays: 1,631</li> <li>PageRank: 0.336</li> </ul> </p> </div>`)[0];
popup_c1d318d480c778944f3c29d7bab50c36.setContent(html_186aa0563ba9290474879e4939cd933c);
circle_85352e38c99fd04301c8a09c73dfab60.bindPopup(popup_c1d318d480c778944f3c29d7bab50c36)
;
circle_85352e38c99fd04301c8a09c73dfab60.bindTooltip(
`<div>
IDA
</div>`,
{"sticky": true}
);
var circle_84565fa0b14dcb3cb984fd1bea9b0e63 = L.circle(
[42.8825, -85.52389],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_6dfaf3f23df3b8be67c600b3e8762da7 = L.popup({"maxWidth": 150});
var html_2439b5e5610449ef2a9e3c96e17fd047 = $(`<div id="html_2439b5e5610449ef2a9e3c96e17fd047" style="width: 100.0%; height: 100.0%;"> <p>Gerald R. Ford International Airport</p> <ul> <li>2015 Delays: 7,902</li> <li>PageRank: 1.007</li> </ul> </p> </div>`)[0];
popup_6dfaf3f23df3b8be67c600b3e8762da7.setContent(html_2439b5e5610449ef2a9e3c96e17fd047);
circle_84565fa0b14dcb3cb984fd1bea9b0e63.bindPopup(popup_6dfaf3f23df3b8be67c600b3e8762da7)
;
circle_84565fa0b14dcb3cb984fd1bea9b0e63.bindTooltip(
`<div>
GRR
</div>`,
{"sticky": true}
);
var circle_d504242c0330ad8f529d17994ec05345 = L.circle(
[37.15221, -94.49527],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_77220b14dd15fa84dc1fd3e8a87f1148 = L.popup({"maxWidth": 150});
var html_ba872d3f1150ea576f29889ceb5046ab = $(`<div id="html_ba872d3f1150ea576f29889ceb5046ab" style="width: 100.0%; height: 100.0%;"> <p>Joplin Regional Airport</p> <ul> <li>2015 Delays: 453</li> <li>PageRank: 0.218</li> </ul> </p> </div>`)[0];
popup_77220b14dd15fa84dc1fd3e8a87f1148.setContent(html_ba872d3f1150ea576f29889ceb5046ab);
circle_d504242c0330ad8f529d17994ec05345.bindPopup(popup_77220b14dd15fa84dc1fd3e8a87f1148)
;
circle_d504242c0330ad8f529d17994ec05345.bindTooltip(
`<div>
JLN
</div>`,
{"sticky": true}
);
var circle_0f3f0ddf50e7bae3ab43245b6d0646c6 = L.circle(
[44.1278, -123.2206],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_8c2c7b615751c017547811d3763d734c = L.popup({"maxWidth": 150});
var html_d75aba8a31d5c56019c7c87b5349902c = $(`<div id="html_d75aba8a31d5c56019c7c87b5349902c" style="width: 100.0%; height: 100.0%;"> <p>Mahlon Sweet Field</p> <ul> <li>2015 Delays: 2,656</li> <li>PageRank: 0.381</li> </ul> </p> </div>`)[0];
popup_8c2c7b615751c017547811d3763d734c.setContent(html_d75aba8a31d5c56019c7c87b5349902c);
circle_0f3f0ddf50e7bae3ab43245b6d0646c6.bindPopup(popup_8c2c7b615751c017547811d3763d734c)
;
circle_0f3f0ddf50e7bae3ab43245b6d0646c6.bindTooltip(
`<div>
EUG
</div>`,
{"sticky": true}
);
var circle_541837e1f17227ffe12fb30b4c872bc9 = L.circle(
[56.8055, -132.9372],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_3027e8cf07ba9745b545bc32f7f8951a = L.popup({"maxWidth": 150});
var html_c493b2e2ebc8397c61b693b450e9ec83 = $(`<div id="html_c493b2e2ebc8397c61b693b450e9ec83" style="width: 100.0%; height: 100.0%;"> <p>Petersburg James A Johnson Airport</p> <ul> <li>2015 Delays: 471</li> <li>PageRank: 0.548</li> </ul> </p> </div>`)[0];
popup_3027e8cf07ba9745b545bc32f7f8951a.setContent(html_c493b2e2ebc8397c61b693b450e9ec83);
circle_541837e1f17227ffe12fb30b4c872bc9.bindPopup(popup_3027e8cf07ba9745b545bc32f7f8951a)
;
circle_541837e1f17227ffe12fb30b4c872bc9.bindTooltip(
`<div>
PSG
</div>`,
{"sticky": true}
);
var circle_c6d97ef360e096012d796c6903dc64af = L.circle(
[36.0969, -79.9432],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_74f5eed11576c4b072a2eab0bc7f50a1 = L.popup({"maxWidth": 150});
var html_ea81b4946d57c5dc1ac47fa7a099429a = $(`<div id="html_ea81b4946d57c5dc1ac47fa7a099429a" style="width: 100.0%; height: 100.0%;"> <p>Piedmont Triad International Airport</p> <ul> <li>2015 Delays: 4,865</li> <li>PageRank: 0.705</li> </ul> </p> </div>`)[0];
popup_74f5eed11576c4b072a2eab0bc7f50a1.setContent(html_ea81b4946d57c5dc1ac47fa7a099429a);
circle_c6d97ef360e096012d796c6903dc64af.bindPopup(popup_74f5eed11576c4b072a2eab0bc7f50a1)
;
circle_c6d97ef360e096012d796c6903dc64af.bindTooltip(
`<div>
GSO
</div>`,
{"sticky": true}
);
var circle_570c81d9ddd135fd7df9a7d44e4bec9b = L.circle(
[33.68333, -78.93333],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_d384472d299870fb02a1331c9961f665 = L.popup({"maxWidth": 150});
var html_6a12becaa96a6a42de17a06eee26c7e9 = $(`<div id="html_6a12becaa96a6a42de17a06eee26c7e9" style="width: 100.0%; height: 100.0%;"> <p>Myrtle Beach International Airport</p> <ul> <li>2015 Delays: 3,658</li> <li>PageRank: 1.202</li> </ul> </p> </div>`)[0];
popup_d384472d299870fb02a1331c9961f665.setContent(html_6a12becaa96a6a42de17a06eee26c7e9);
circle_570c81d9ddd135fd7df9a7d44e4bec9b.bindPopup(popup_d384472d299870fb02a1331c9961f665)
;
circle_570c81d9ddd135fd7df9a7d44e4bec9b.bindTooltip(
`<div>
MYR
</div>`,
{"sticky": true}
);
var circle_99d8e76a64b220bb09babe2b9a267e12 = L.circle(
[41.7225, -71.4325],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_4472c622095a095351fa55402e331b72 = L.popup({"maxWidth": 150});
var html_f188e969e0d643f5e10f1982018ff57d = $(`<div id="html_f188e969e0d643f5e10f1982018ff57d" style="width: 100.0%; height: 100.0%;"> <p>Theodore Francis Green State Airport</p> <ul> <li>2015 Delays: 7,580</li> <li>PageRank: 0.905</li> </ul> </p> </div>`)[0];
popup_4472c622095a095351fa55402e331b72.setContent(html_f188e969e0d643f5e10f1982018ff57d);
circle_99d8e76a64b220bb09babe2b9a267e12.bindPopup(popup_4472c622095a095351fa55402e331b72)
;
circle_99d8e76a64b220bb09babe2b9a267e12.bindTooltip(
`<div>
PVD
</div>`,
{"sticky": true}
);
var circle_1eb68e273401e83fa829e543fa4d823c = L.circle(
[37.72139, -122.22083],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_26f5db8dd58b7915a3682395b6d4c148 = L.popup({"maxWidth": 150});
var html_8d69287aba428d603da9fa1573380013 = $(`<div id="html_8d69287aba428d603da9fa1573380013" style="width: 100.0%; height: 100.0%;"> <p>Metropolitan Oakland International Airport</p> <ul> <li>2015 Delays: 30,122</li> <li>PageRank: 1.943</li> </ul> </p> </div>`)[0];
popup_26f5db8dd58b7915a3682395b6d4c148.setContent(html_8d69287aba428d603da9fa1573380013);
circle_1eb68e273401e83fa829e543fa4d823c.bindPopup(popup_26f5db8dd58b7915a3682395b6d4c148)
;
circle_1eb68e273401e83fa829e543fa4d823c.bindTooltip(
`<div>
OAK
</div>`,
{"sticky": true}
);
var circle_5f3250dd3d2e136246132352c231dfcd = L.circle(
[45.9647, -112.5006],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_a3dae943b62b881ad16e1654d8983a10 = L.popup({"maxWidth": 150});
var html_f637f57372de035a6020523814144e97 = $(`<div id="html_f637f57372de035a6020523814144e97" style="width: 100.0%; height: 100.0%;"> <p>Bert Mooney Airport</p> <ul> <li>2015 Delays: 474</li> <li>PageRank: 0.215</li> </ul> </p> </div>`)[0];
popup_a3dae943b62b881ad16e1654d8983a10.setContent(html_f637f57372de035a6020523814144e97);
circle_5f3250dd3d2e136246132352c231dfcd.bindPopup(popup_a3dae943b62b881ad16e1654d8983a10)
;
circle_5f3250dd3d2e136246132352c231dfcd.bindTooltip(
`<div>
BTM
</div>`,
{"sticky": true}
);
var circle_24ca6d8d9a1e716e99008be9adadba3a = L.circle(
[44.51667, -109.01667],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_267972d9577868c5e1ca17bf7b9b2b32 = L.popup({"maxWidth": 150});
var html_31feff8ddf6a0e7f8886ff8ad903b2fd = $(`<div id="html_31feff8ddf6a0e7f8886ff8ad903b2fd" style="width: 100.0%; height: 100.0%;"> <p>Yellowstone Regional Airport</p> <ul> <li>2015 Delays: 548</li> <li>PageRank: 0.338</li> </ul> </p> </div>`)[0];
popup_267972d9577868c5e1ca17bf7b9b2b32.setContent(html_31feff8ddf6a0e7f8886ff8ad903b2fd);
circle_24ca6d8d9a1e716e99008be9adadba3a.bindPopup(popup_267972d9577868c5e1ca17bf7b9b2b32)
;
circle_24ca6d8d9a1e716e99008be9adadba3a.bindTooltip(
`<div>
COD
</div>`,
{"sticky": true}
);
var circle_e964d9120202c4e92b69b63c868355d4 = L.circle(
[46.9253, -96.8111],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_89f90c50dfdb72c840debce066d83237 = L.popup({"maxWidth": 150});
var html_8b09e3b5393e21b9af0a2cb86af1f888 = $(`<div id="html_8b09e3b5393e21b9af0a2cb86af1f888" style="width: 100.0%; height: 100.0%;"> <p>Hector International Airport</p> <ul> <li>2015 Delays: 4,111</li> <li>PageRank: 0.53</li> </ul> </p> </div>`)[0];
popup_89f90c50dfdb72c840debce066d83237.setContent(html_8b09e3b5393e21b9af0a2cb86af1f888);
circle_e964d9120202c4e92b69b63c868355d4.bindPopup(popup_89f90c50dfdb72c840debce066d83237)
;
circle_e964d9120202c4e92b69b63c868355d4.bindTooltip(
`<div>
FAR
</div>`,
{"sticky": true}
);
var circle_97a567c900a13781547cb00ff9ff5478 = L.circle(
[35.333, -94.3625],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_2dd3a34229a07ceca73887604a56e4ea = L.popup({"maxWidth": 150});
var html_dcb035d2178446b94a337e9c2caa921d = $(`<div id="html_dcb035d2178446b94a337e9c2caa921d" style="width: 100.0%; height: 100.0%;"> <p>Fort Smith Regional Airport</p> <ul> <li>2015 Delays: 1,400</li> <li>PageRank: 0.281</li> </ul> </p> </div>`)[0];
popup_2dd3a34229a07ceca73887604a56e4ea.setContent(html_dcb035d2178446b94a337e9c2caa921d);
circle_97a567c900a13781547cb00ff9ff5478.bindPopup(popup_2dd3a34229a07ceca73887604a56e4ea)
;
circle_97a567c900a13781547cb00ff9ff5478.bindTooltip(
`<div>
FSM
</div>`,
{"sticky": true}
);
var circle_89fb8e807bea9e65fa08ec2ae7dc6c42 = L.circle(
[46.35, -87.4],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_476d4f017f61352819235d8986f1fe8d = L.popup({"maxWidth": 150});
var html_4128299c4938ec920316d1899d8f1eae = $(`<div id="html_4128299c4938ec920316d1899d8f1eae" style="width: 100.0%; height: 100.0%;"> <p>Sawyer International Airport</p> <ul> <li>2015 Delays: 199</li> <li>PageRank: 0.213</li> </ul> </p> </div>`)[0];
popup_476d4f017f61352819235d8986f1fe8d.setContent(html_4128299c4938ec920316d1899d8f1eae);
circle_89fb8e807bea9e65fa08ec2ae7dc6c42.bindPopup(popup_476d4f017f61352819235d8986f1fe8d)
;
circle_89fb8e807bea9e65fa08ec2ae7dc6c42.bindTooltip(
`<div>
MQT
</div>`,
{"sticky": true}
);
var circle_3884102e6381f0610810a462f537022a = L.circle(
[43.1405, -89.3452],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_d42cf10278bb724b7b7c4f5ff790907f = L.popup({"maxWidth": 150});
var html_df79143ba3a019739249519f0a097f24 = $(`<div id="html_df79143ba3a019739249519f0a097f24" style="width: 100.0%; height: 100.0%;"> <p>Dane County Regional Truax Field</p> <ul> <li>2015 Delays: 6,547</li> <li>PageRank: 1.037</li> </ul> </p> </div>`)[0];
popup_d42cf10278bb724b7b7c4f5ff790907f.setContent(html_df79143ba3a019739249519f0a097f24);
circle_3884102e6381f0610810a462f537022a.bindPopup(popup_d42cf10278bb724b7b7c4f5ff790907f)
;
circle_3884102e6381f0610810a462f537022a.bindTooltip(
`<div>
MSN
</div>`,
{"sticky": true}
);
var circle_477fd52222eea5fab268fbd4c676c2c5 = L.circle(
[70.1917, -148.4772],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_d75b10f96270d77cc4630bcfde5008eb = L.popup({"maxWidth": 150});
var html_f2a3ed6b9474fc5a17c091272f54a145 = $(`<div id="html_f2a3ed6b9474fc5a17c091272f54a145" style="width: 100.0%; height: 100.0%;"> <p>Deadhorse Airport</p> <ul> <li>2015 Delays: 588</li> <li>PageRank: 0.356</li> </ul> </p> </div>`)[0];
popup_d75b10f96270d77cc4630bcfde5008eb.setContent(html_f2a3ed6b9474fc5a17c091272f54a145);
circle_477fd52222eea5fab268fbd4c676c2c5.bindPopup(popup_d75b10f96270d77cc4630bcfde5008eb)
;
circle_477fd52222eea5fab268fbd4c676c2c5.bindTooltip(
`<div>
SCC
</div>`,
{"sticky": true}
);
var circle_975a9654ecd9f8356db378d9b2edfc9f = L.circle(
[45.73333, -87.08333],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_b7cf54e77324aa26920dac82cc937f18 = L.popup({"maxWidth": 150});
var html_3031e171f69aa32d8ab1b6909e4e5f24 = $(`<div id="html_3031e171f69aa32d8ab1b6909e4e5f24" style="width: 100.0%; height: 100.0%;"> <p>Delta County Airport</p> <ul> <li>2015 Delays: 395</li> <li>PageRank: 0.207</li> </ul> </p> </div>`)[0];
popup_b7cf54e77324aa26920dac82cc937f18.setContent(html_3031e171f69aa32d8ab1b6909e4e5f24);
circle_975a9654ecd9f8356db378d9b2edfc9f.bindPopup(popup_b7cf54e77324aa26920dac82cc937f18)
;
circle_975a9654ecd9f8356db378d9b2edfc9f.bindTooltip(
`<div>
ESC
</div>`,
{"sticky": true}
);
var circle_421005346681ca0f375d61d2c2bd64d8 = L.circle(
[38.8472, -77.03454],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_39f42a47d84b739a3ed7e054834c4a01 = L.popup({"maxWidth": 150});
var html_64a633ef71ad3583d37e2875d7406866 = $(`<div id="html_64a633ef71ad3583d37e2875d7406866" style="width: 100.0%; height: 100.0%;"> <p>Ronald Reagan Washington National Airport</p> <ul> <li>2015 Delays: 52,060</li> <li>PageRank: 3.163</li> </ul> </p> </div>`)[0];
popup_39f42a47d84b739a3ed7e054834c4a01.setContent(html_64a633ef71ad3583d37e2875d7406866);
circle_421005346681ca0f375d61d2c2bd64d8.bindPopup(popup_39f42a47d84b739a3ed7e054834c4a01)
;
circle_421005346681ca0f375d61d2c2bd64d8.bindTooltip(
`<div>
DCA
</div>`,
{"sticky": true}
);
var circle_f5608180455d642850991ee67544d550 = L.circle(
[41.8833, -91.7166],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_308e1312bf1e3851ecaaa4fb7e49d022 = L.popup({"maxWidth": 150});
var html_3c43a3c32920933545aa44da03ec0067 = $(`<div id="html_3c43a3c32920933545aa44da03ec0067" style="width: 100.0%; height: 100.0%;"> <p>The Eastern Iowa Airport</p> <ul> <li>2015 Delays: 5,105</li> <li>PageRank: 0.594</li> </ul> </p> </div>`)[0];
popup_308e1312bf1e3851ecaaa4fb7e49d022.setContent(html_3c43a3c32920933545aa44da03ec0067);
circle_f5608180455d642850991ee67544d550.bindPopup(popup_308e1312bf1e3851ecaaa4fb7e49d022)
;
circle_f5608180455d642850991ee67544d550.bindTooltip(
`<div>
CID
</div>`,
{"sticky": true}
);
var circle_b722fcf86150a4895afe4c2485aa9224 = L.circle(
[33.45, -88.58333],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_85632851da1b55b17bc47f57aa007baf = L.popup({"maxWidth": 150});
var html_b682c98acc7538a2d88060520582d8ca = $(`<div id="html_b682c98acc7538a2d88060520582d8ca" style="width: 100.0%; height: 100.0%;"> <p>Golden Triangle Regional Airport</p> <ul> <li>2015 Delays: 658</li> <li>PageRank: 0.213</li> </ul> </p> </div>`)[0];
popup_85632851da1b55b17bc47f57aa007baf.setContent(html_b682c98acc7538a2d88060520582d8ca);
circle_b722fcf86150a4895afe4c2485aa9224.bindPopup(popup_85632851da1b55b17bc47f57aa007baf)
;
circle_b722fcf86150a4895afe4c2485aa9224.bindTooltip(
`<div>
GTR
</div>`,
{"sticky": true}
);
var circle_0c95f7b707f78a7a7fb116a576767575 = L.circle(
[46.3747, -117.0156],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_1311910d1d80dc70f209d4cf3ffc35e9 = L.popup({"maxWidth": 150});
var html_f93661264090296106f5c759f878d42c = $(`<div id="html_f93661264090296106f5c759f878d42c" style="width: 100.0%; height: 100.0%;"> <p>Lewiston Nez Perce County Airport</p> <ul> <li>2015 Delays: 422</li> <li>PageRank: 0.215</li> </ul> </p> </div>`)[0];
popup_1311910d1d80dc70f209d4cf3ffc35e9.setContent(html_f93661264090296106f5c759f878d42c);
circle_0c95f7b707f78a7a7fb116a576767575.bindPopup(popup_1311910d1d80dc70f209d4cf3ffc35e9)
;
circle_0c95f7b707f78a7a7fb116a576767575.bindTooltip(
`<div>
LWS
</div>`,
{"sticky": true}
);
var circle_7ad557d346f937d3c6e0a0183e1fb67c = L.circle(
[32.5155, -92.0405],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_322e82a53df9e3686243277baff8278a = L.popup({"maxWidth": 150});
var html_0381587719d9e04dd8d78b34c117b297 = $(`<div id="html_0381587719d9e04dd8d78b34c117b297" style="width: 100.0%; height: 100.0%;"> <p>Monroe Regional Airport</p> <ul> <li>2015 Delays: 2,091</li> <li>PageRank: 0.336</li> </ul> </p> </div>`)[0];
popup_322e82a53df9e3686243277baff8278a.setContent(html_0381587719d9e04dd8d78b34c117b297);
circle_7ad557d346f937d3c6e0a0183e1fb67c.bindPopup(popup_322e82a53df9e3686243277baff8278a)
;
circle_7ad557d346f937d3c6e0a0183e1fb67c.bindTooltip(
`<div>
MLU
</div>`,
{"sticky": true}
);
var circle_b5f55af7fe755783e42fa2ae78f1d7c8 = L.circle(
[31.46667, -89.33333],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": null, "fillOpacity": 0.25, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 17500, "stroke": true, "weight": 3}
).addTo(map_fdb95c2e3696851cf5bf21a4fd720fa7);
var popup_157d152c882e775f87ce36b262b5026b = L.popup({"maxWidth": 150});
var html_b9bcc96aff26f927067a39960204bb6a = $(`<div id="html_b9bcc96aff26f927067a39960204bb6a" style="width: 100.0%; height: 100.0%;"> <p>Hattiesburg Laurel Regional Airport</p> <ul> <li>2015 Delays: 402</li> <li>PageRank: 0.295</li> </ul> </p> </div>`)[0];
popup_157d152c882e775f87ce36b262b5026b.setContent(html_b9bcc96aff26f927067a39960204bb6a);
circle_b5f55af7fe755783e42fa2ae78f1d7c8.bindPopup(popup_157d152c882e775f87ce36b262b5026b)
;