-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheatmap.html
More file actions
725 lines (507 loc) · 66.1 KB
/
heatmap.html
File metadata and controls
725 lines (507 loc) · 66.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/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/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/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_14ed9589f5d266e78142f5f19de2b50a {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<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>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
</head>
<body>
<style>
.leaflet-control.leaflet-control-colormap {
display: flex !important;
flex-direction: column !important;
}
.leaflet-control.leaflet-control-colormap .caption {
order: 2 !important;
font-size: 14px !important;
font-weight: 900 !important;
margin-top: 8px !important;
}
.caption {
font-weight: 900 !important;
}
.leaflet-control.leaflet-control-colormap img {
order: 1 !important;
}
</style>
<div class="folium-map" id="map_14ed9589f5d266e78142f5f19de2b50a" ></div>
</body>
<script>
var map_14ed9589f5d266e78142f5f19de2b50a = L.map(
"map_14ed9589f5d266e78142f5f19de2b50a",
{
center: [38.61605786869502, -43.89495432356746],
crs: L.CRS.EPSG3857,
...{
"zoom": 2,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_441e1cfbe294b177c611a1c02f3adef5 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
"minZoom": 0,
"maxZoom": 19,
"maxNativeZoom": 19,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_441e1cfbe294b177c611a1c02f3adef5.addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_80a6ae7107cdc9331a1c23a587f81628 = L.circleMarker(
[37.6922361, -97.3375448],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#dafa30ff", "fillOpacity": 0.6494505494505495, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_f4ba56322c93db43b9d244aae032df83 = L.circleMarker(
[32.77288, -96.807952],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#dafa30ff", "fillOpacity": 0.6494505494505495, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_7619eebf91e07274d7f9b76c3261cb1f = L.circleMarker(
[28.5421109, -81.3790304],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_7cb37bccfc9367c6dfe907a00ccd4d8e = L.circleMarker(
[25.774173, -80.19362],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#7add7aff", "fillOpacity": 0.732967032967033, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_148e9882edf45d2a0b7b60770c08f194 = L.circleMarker(
[39.739236, -104.984862],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#6ad16aff", "fillOpacity": 0.7549450549450549, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_b6b56b03ddb12dbd25d0b36144e873eb = L.circleMarker(
[47.6038321, -122.330062],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_3ca8a7e9b2f5adb49dd20d19d3cb5cad = L.circleMarker(
[39.100105, -94.5781416],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff8600ff", "fillOpacity": 0.5527472527472528, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_9d949fdb86582c3ba45ebf19ed99ea00 = L.circleMarker(
[30.2711286, -97.7436995],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3d00ff", "fillOpacity": 0.5263736263736264, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_2e1f544762cead59ab67f4fbe4eb905c = L.circleMarker(
[30.3321838, -81.655651],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_49012d1a99cda3e02bd35d983668aa56 = L.circleMarker(
[33.7489924, -84.3902644],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_a8348047d8fe21285c48ab5a65361a77 = L.circleMarker(
[-12.0621065, -77.0365256],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3d00ff", "fillOpacity": 0.5263736263736264, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_4745dfb158f811b67d2fbfa15b90b995 = L.circleMarker(
[-3.749365, -73.2444145],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_cfa0bcd050046e203c2be4f6d280f6bf = L.circleMarker(
[-13.5170887, -71.9785356],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_a792b57ec82000f5b17322af8fbfd32f = L.circleMarker(
[40.735657, -74.172367],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffbd00ff", "fillOpacity": 0.5791208791208791, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_32b619880aded4d0ac648fc38a9ab54e = L.circleMarker(
[52.3730796, 4.8924534],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_75527f0359b9fc0fcd47faf266f19a53 = L.circleMarker(
[38.8950368, -77.0365427],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_475fde72eca60ef94d88a96c8ca16e8a = L.circleMarker(
[37.779259, -122.419329],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#008000ff", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_06f31132fd9cdc81f5e620ba304470bb = L.circleMarker(
[33.804451, -118.0154714],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3d00ff", "fillOpacity": 0.5263736263736264, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_c66824affcb4db7d78bef111508df5eb = L.circleMarker(
[1.357107, 103.8194992],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_cd98c2bf53f730ecdc7460b710c5a80c = L.circleMarker(
[12.9767936, 77.590082],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_f01430ce564031cab27c048b6ab8227f = L.circleMarker(
[15.3004543, 74.0855134],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_6195d7a006450d25b248ba889116e564 = L.circleMarker(
[39.9057136, 116.3912972],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_50851837b71fa823f6be4b5d2331cec7 = L.circleMarker(
[30.5951051, 114.2999353],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_d3f588b3938e6bc8115961ea1145f003 = L.circleMarker(
[43.419754, 87.319461],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_f3484f217ec28a406063d72a4e38ad04 = L.circleMarker(
[23.3920026, 113.3011824],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_e07abbb700854af954b5ced240368b59 = L.circleMarker(
[21.1618955, -86.8514988],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_c152a4da5dab5fdc89a74dcde2650bce = L.circleMarker(
[38.6280278, -90.1910154],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6e00ff", "fillOpacity": 0.5439560439560439, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_e8bc55cd81e1b76a07897f5a20c82e6f = L.circleMarker(
[20.4320599, -86.9206906],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff1800ff", "fillOpacity": 0.5131868131868131, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_1bb9c5ca55b7f9d51f278bc9096f9256 = L.circleMarker(
[36.1672559, -115.148516],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3100ff", "fillOpacity": 0.521978021978022, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_3678a5945470f8e50684db5ade44fb7b = L.circleMarker(
[40.7127281, -74.0060152],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff5500ff", "fillOpacity": 0.5351648351648352, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_a07cee6bd8f971ae94ce28aa1e603ff3 = L.circleMarker(
[44.9773, -93.265469],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_908233349873d7fb7ffa53c3e49e9a3e = L.circleMarker(
[50.110644, 8.682092],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f3fe10ff", "fillOpacity": 0.6318681318681318, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_37002954753ef99132f900b619749d74 = L.circleMarker(
[50.846557, 4.351697],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6e00ff", "fillOpacity": 0.5439560439560439, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_e3bbd24d098e93934dde4d3cc49f077c = L.circleMarker(
[52.37308, 4.892453],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffbd00ff", "fillOpacity": 0.5791208791208791, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_c6820750f2991dff6c2d92539a9d4342 = L.circleMarker(
[52.517037, 13.38886],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0c8a0cff", "fillOpacity": 0.8824175824175824, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_626dcb8945b3c93d4457cf9fb77bd7d0 = L.circleMarker(
[50.087465, 14.421254],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3d00ff", "fillOpacity": 0.5263736263736264, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_8fe3ff839588ef776f7ebe75a5cb055b = L.circleMarker(
[48.85889, 2.320041],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff5500ff", "fillOpacity": 0.5351648351648352, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_e7417f2488d55ac0f3290c9db6f795e2 = L.circleMarker(
[43.653482, -79.383935],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_2ccbe132f78f1931aa516d50e6c65cc5 = L.circleMarker(
[36.167256, -115.148516],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_b7bca6efeb62ad9b00fc012cc738492c = L.circleMarker(
[29.758938, -95.367697],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6e00ff", "fillOpacity": 0.5439560439560439, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_b09ab61f45d98f374339d197b7fe75cf = L.circleMarker(
[41.875562, -87.624421],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffb600ff", "fillOpacity": 0.5747252747252747, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_d58033b144d5c0ed371ad59f7502910b = L.circleMarker(
[39.739236, 104.984862],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_2ec26010f4b424be6195fddea78bea7e = L.circleMarker(
[41.006381, 28.975872],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fff200ff", "fillOpacity": 0.6142857142857143, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_fcd0d5aa5b1ccda1738cbc235a24bf28 = L.circleMarker(
[51.507446, -0.127765],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#96ef88ff", "fillOpacity": 0.6978021978021978, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_68874240c9d46bdabdb9da962b9d1986 = L.circleMarker(
[43.604462, 1.444247],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_dacc386143c4d615627702a8742e9b80 = L.circleMarker(
[38.707751, -9.136592],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff5500ff", "fillOpacity": 0.5351648351648352, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_d8e56179d51c4951fd4505969c2f94aa = L.circleMarker(
[42.355433, -71.060511],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_3f5541a8eb51e313bb69d54b85db1a22 = L.circleMarker(
[47.603832, -122.330062],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_5b687027f30cccc19e4903b27ee50f5b = L.circleMarker(
[42.331551, -83.04664],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_9c3137230bedd4fae48ff03b6e2efa3c = L.circleMarker(
[40.712728, -74.006015],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3d00ff", "fillOpacity": 0.5263736263736264, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_1ccb1ebe1ce17cfa5a85140bd7628fa5 = L.circleMarker(
[38.895037, -77.036543],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_e50b03d22c83891122b7984cc3ec6fde = L.circleMarker(
[48.137108, 11.575382],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6e00ff", "fillOpacity": 0.5439560439560439, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_da70b06543a04b35de4d83527305c268 = L.circleMarker(
[47.374449, 8.541042],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6e00ff", "fillOpacity": 0.5439560439560439, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_5372ba6e02470f90ac316d7af46e8699 = L.circleMarker(
[45.464194, 9.189635],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_39d2f5bdf7b502fe7764a577a12de2a3 = L.circleMarker(
[41.89332, 12.482932],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_612b94c190c81ed2fd320af4c20860dd = L.circleMarker(
[41.382894, 2.177432],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_61c070b5a26d2cde95b30985ba142bac = L.circleMarker(
[39.976758, -7.44606],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_4658d8c39fa0bbdae3c136068aba8b67 = L.circleMarker(
[40.416705, -3.703582],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_1ff3c5ceaad136dc30ef75325d833335 = L.circleMarker(
[64.145981, -21.942237],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_10b9c4d0c2a0f54709721ad408f7b524 = L.circleMarker(
[30.271129, -97.743699],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_1c0d8e488d4e692d723862ec85b6688b = L.circleMarker(
[35.780398, -78.639099],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_8f25a531bd28db9db728b2511f168e42 = L.circleMarker(
[34.053691, -118.242766],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_31d60326bca29d1747d6a9ceb5ab70e4 = L.circleMarker(
[1.357107, 103.819499],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff8600ff", "fillOpacity": 0.5527472527472528, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_7521295b64611af71bf2e38520bffbbc = L.circleMarker(
[-33.869844, 151.208285],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_6c356891f1359c9ab9a7a37cbc9aeadf = L.circleMarker(
[-23.550651, -46.633382],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_c4897c69766474ecf41a06686ac1d004 = L.circleMarker(
[39.952724, -75.163526],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_2dc684f20649f91b1585c884f5387777 = L.circleMarker(
[19.43263, -99.133178],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_c19ddae36a099415c86712e400afb465 = L.circleMarker(
[31.232344, 121.469102],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_aee071749d3e21030fa5dad2e1dd7d92 = L.circleMarker(
[-6.175247, 106.827049],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_a5d9a8de5a9c7f472ea3f28e58a136ff = L.circleMarker(
[22.279328, 114.162813],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_dedebc846e8d3b559bd68a94818391fe = L.circleMarker(
[-37.814245, 144.963173],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_3b0910ef140489478709722a88ff290c = L.circleMarker(
[13.752494, 100.493509],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_44f4d65dc70d095d45efb1981074f086 = L.circleMarker(
[48.208354, 16.372504],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_6c98cb4a90eaaedaa0a573da86244c91 = L.circleMarker(
[59.325117, 18.071094],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_2c68c190895fbf431765d3f360dcb8c4 = L.circleMarker(
[42.648736, 18.09468],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000ff", "fillOpacity": 0.5043956043956044, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_a2d6ecac0a3bef74516cc101d041777e = L.circleMarker(
[52.231958, 21.006725],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_11a9287a14110d2e7d475c187aae2750 = L.circleMarker(
[26.122308, -80.143379],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6200ff", "fillOpacity": 0.5395604395604395, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_40405a5ca537162e3ba21360af4e30c5 = L.circleMarker(
[33.748992, -84.390264],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_5f50afe8aa890341d13b8d5cc71f2c7c = L.circleMarker(
[47.024512, 28.832292],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_600c41bc50c3a1d32522bd9aa75567d7 = L.circleMarker(
[41.693459, 44.80145],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff1800ff", "fillOpacity": 0.5131868131868131, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_2b216f14a7832aed00ddc00235b74b55 = L.circleMarker(
[45.520247, -122.674194],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_5a18ac3eba970233fb774fb6bcc423e7 = L.circleMarker(
[25.7741566, -80.1935973],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3d00ff", "fillOpacity": 0.5263736263736264, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_07637b4c3e7d26f8154341b20b8c1778 = L.circleMarker(
[32.7762719, -96.7968559],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2400ff", "fillOpacity": 0.5175824175824176, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_c807eb9e77d30905b0457db09aef97cd = L.circleMarker(
[31.83688, -102.0103767],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_ca0ffea992237a01478b567e1cf51e95 = L.circleMarker(
[42.6977028, 23.3217359],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff7a00ff", "fillOpacity": 0.5483516483516484, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_3f16b9393e2100fd7e80343ffe3359a6 = L.circleMarker(
[54.68475341796875, 25.289478302001953],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_d0a59a808ad1a39d5a5b27b54f76e625 = L.circleMarker(
[44.9772995, -93.2654692],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_b750d2cf7cd1ab21a614c442445c28dd = L.circleMarker(
[49.8158683, 6.1296751],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_c089d7052e004078da1138e094eb5b34 = L.circleMarker(
[43.7009358, 7.2683912],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_3e23323bce5ce66918c790626bc61361 = L.circleMarker(
[48.8534951, 2.3483915],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0c00ff", "fillOpacity": 0.5087912087912088, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_eff42681708fe6879919882b2707042e = L.circleMarker(
[38.046917, -97.344724],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000ff", "fillOpacity": 0.5043956043956044, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var circle_marker_6b35ce49d915505132f78cc09b2c64a1 = L.circleMarker(
[40.6403167, 22.9352716],
{"bubblingMouseEvents": true, "color": null, "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000ff", "fillOpacity": 0.5043956043956044, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 0}
).addTo(map_14ed9589f5d266e78142f5f19de2b50a);
var color_map_df7e54410450ba631e5ba0a7ff81edbb = {};
color_map_df7e54410450ba631e5ba0a7ff81edbb.color = d3.scale.threshold()
.domain([1.0, 1.1803607214428857, 1.3607214428857715, 1.5410821643286572, 1.7214428857715431, 1.9018036072144289, 2.0821643286573144, 2.2625250501002006, 2.4428857715430863, 2.623246492985972, 2.8036072144288577, 2.9839679358717435, 3.164328657314629, 3.344689378757515, 3.5250501002004007, 3.7054108216432864, 3.8857715430861726, 4.066132264529058, 4.246492985971944, 4.42685370741483, 4.6072144288577155, 4.787575150300601, 4.967935871743487, 5.148296593186373, 5.328657314629258, 5.509018036072145, 5.68937875751503, 5.869739478957916, 6.050100200400801, 6.2304609218436875, 6.410821643286573, 6.591182364729459, 6.771543086172345, 6.95190380761523, 7.132264529058117, 7.312625250501002, 7.492985971943888, 7.673346693386773, 7.8537074148296595, 8.034068136272545, 8.214428857715431, 8.394789579158317, 8.575150300601202, 8.75551102204409, 8.935871743486974, 9.11623246492986, 9.296593186372746, 9.47695390781563, 9.657314629258517, 9.837675350701403, 10.01803607214429, 10.198396793587174, 10.37875751503006, 10.559118236472946, 10.739478957915832, 10.919839679358718, 11.100200400801603, 11.280561122244489, 11.460921843687375, 11.641282565130261, 11.821643286573146, 12.002004008016032, 12.182364729458918, 12.362725450901804, 12.54308617234469, 12.723446893787575, 12.90380761523046, 13.084168336673347, 13.264529058116233, 13.444889779559118, 13.625250501002004, 13.80561122244489, 13.985971943887776, 14.16633266533066, 14.346693386773547, 14.527054108216433, 14.707414829659319, 14.887775551102205, 15.06813627254509, 15.248496993987976, 15.428857715430862, 15.609218436873748, 15.789579158316633, 15.969939879759519, 16.150300601202403, 16.33066132264529, 16.51102204408818, 16.69138276553106, 16.871743486973948, 17.052104208416832, 17.23246492985972, 17.412825651302605, 17.593186372745492, 17.773547094188377, 17.95390781563126, 18.13426853707415, 18.314629258517034, 18.49498997995992, 18.675350701402806, 18.85571142284569, 19.03607214428858, 19.216432865731463, 19.396793587174347, 19.577154308617235, 19.75751503006012, 19.937875751503007, 20.118236472945892, 20.298597194388776, 20.478957915831664, 20.65931863727455, 20.839679358717436, 21.02004008016032, 21.200400801603205, 21.380761523046093, 21.561122244488978, 21.741482965931862, 21.92184368737475, 22.102204408817634, 22.282565130260522, 22.462925851703407, 22.64328657314629, 22.82364729458918, 23.004008016032063, 23.18436873747495, 23.364729458917836, 23.54509018036072, 23.725450901803608, 23.905811623246493, 24.08617234468938, 24.266533066132265, 24.44689378757515, 24.627254509018037, 24.80761523046092, 24.987975951903806, 25.168336673346694, 25.34869739478958, 25.529058116232466, 25.70941883767535, 25.889779559118235, 26.070140280561123, 26.250501002004007, 26.430861723446895, 26.61122244488978, 26.791583166332664, 26.971943887775552, 27.152304609218437, 27.33266533066132, 27.51302605210421, 27.693386773547093, 27.87374749498998, 28.054108216432866, 28.23446893787575, 28.414829659318638, 28.595190380761522, 28.77555110220441, 28.955911823647295, 29.13627254509018, 29.316633266533067, 29.49699398797595, 29.677354709418836, 29.857715430861724, 30.03807615230461, 30.218436873747496, 30.39879759519038, 30.579158316633265, 30.759519038076153, 30.939879759519037, 31.120240480961925, 31.30060120240481, 31.480961923847694, 31.661322645290582, 31.841683366733466, 32.02204408817636, 32.20240480961924, 32.38276553106212, 32.563126252505015, 32.743486973947896, 32.923847695390776, 33.104208416833664, 33.28456913827655, 33.46492985971944, 33.64529058116233, 33.82565130260521, 34.0060120240481, 34.186372745490985, 34.366733466933866, 34.547094188376754, 34.72745490981964, 34.90781563126252, 35.08817635270541, 35.2685370741483, 35.44889779559118, 35.62925851703407, 35.809619238476955, 35.98997995991984, 36.170340681362724, 36.35070140280561, 36.5310621242485, 36.71142284569138, 36.89178356713427, 37.07214428857716, 37.25250501002004, 37.432865731462925, 37.61322645290581, 37.793587174348694, 37.97394789579158, 38.15430861723447, 38.33466933867736, 38.51503006012024, 38.69539078156313, 38.875751503006015, 39.056112224448896, 39.236472945891784, 39.41683366733467, 39.59719438877755, 39.77755511022044, 39.95791583166333, 40.13827655310621, 40.3186372745491, 40.498997995991985, 40.67935871743487, 40.859719438877754, 41.04008016032064, 41.22044088176353, 41.40080160320641, 41.5811623246493, 41.76152304609219, 41.94188376753507, 42.122244488977955, 42.30260521042084, 42.482965931863724, 42.66332665330661, 42.8436873747495, 43.02404809619239, 43.20440881763527, 43.38476953907816, 43.565130260521045, 43.745490981963925, 43.92585170340681, 44.1062124248497, 44.28657314629258, 44.46693386773547, 44.64729458917836, 44.82765531062124, 45.00801603206413, 45.188376753507015, 45.3687374749499, 45.549098196392784, 45.72945891783567, 45.90981963927856, 46.09018036072144, 46.27054108216433, 46.450901803607216, 46.6312625250501, 46.811623246492985, 46.99198396793587, 47.17234468937876, 47.35270541082164, 47.53306613226453, 47.71342685370742, 47.8937875751503, 48.07414829659319, 48.254509018036075, 48.434869739478955, 48.61523046092184, 48.79559118236473, 48.97595190380761, 49.1563126252505, 49.33667334669339, 49.517034068136276, 49.69739478957916, 49.877755511022045, 50.05811623246493, 50.23847695390781, 50.4188376753507, 50.59919839679359, 50.77955911823647, 50.95991983967936, 51.140280561122246, 51.32064128256513, 51.501002004008015, 51.6813627254509, 51.86172344689379, 52.04208416833667, 52.22244488977956, 52.40280561122245, 52.58316633266533, 52.763527054108216, 52.943887775551104, 53.124248496993985, 53.30460921843687, 53.48496993987976, 53.66533066132264, 53.84569138276553, 54.02605210420842, 54.206412825651306, 54.38677354709419, 54.567134268537075, 54.74749498997996, 54.92785571142284, 55.10821643286573, 55.28857715430862, 55.4689378757515, 55.64929859719439, 55.829659318637276, 56.01002004008016, 56.190380761523045, 56.37074148296593, 56.55110220440882, 56.7314629258517, 56.91182364729459, 57.09218436873748, 57.27254509018036, 57.452905811623246, 57.633266533066134, 57.813627254509015, 57.9939879759519, 58.17434869739479, 58.35470941883767, 58.53507014028056, 58.71543086172345, 58.895791583166336, 59.07615230460922, 59.256513026052104, 59.43687374749499, 59.61723446893787, 59.79759519038076, 59.97795591182365, 60.15831663326653, 60.33867735470942, 60.519038076152306, 60.699398797595194, 60.879759519038075, 61.06012024048096, 61.24048096192385, 61.42084168336673, 61.60120240480962, 61.78156312625251, 61.96192384769539, 62.142284569138276, 62.322645290581164, 62.503006012024045, 62.68336673346693, 62.86372745490982, 63.04408817635271, 63.22444889779559, 63.40480961923848, 63.585170340681366, 63.765531062124246, 63.945891783567134, 64.12625250501003, 64.3066132264529, 64.48697394789579, 64.66733466933869, 64.84769539078155, 65.02805611222445, 65.20841683366733, 65.38877755511022, 65.5691382765531, 65.74949899799599, 65.92985971943888, 66.11022044088176, 66.29058116232466, 66.47094188376754, 66.65130260521042, 66.83166332665331, 67.0120240480962, 67.19238476953907, 67.37274549098197, 67.55310621242485, 67.73346693386773, 67.91382765531063, 68.09418837675351, 68.27454909819639, 68.45490981963928, 68.63527054108216, 68.81563126252505, 68.99599198396794, 69.17635270541082, 69.3567134268537, 69.5370741482966, 69.71743486973948, 69.89779559118236, 70.07815631262525, 70.25851703406813, 70.43887775551102, 70.61923847695391, 70.79959919839679, 70.97995991983969, 71.16032064128257, 71.34068136272545, 71.52104208416834, 71.70140280561122, 71.8817635270541, 72.062124248497, 72.24248496993988, 72.42284569138276, 72.60320641282566, 72.78356713426854, 72.96392785571142, 73.14428857715431, 73.3246492985972, 73.50501002004007, 73.68537074148297, 73.86573146292585, 74.04609218436873, 74.22645290581163, 74.40681362725451, 74.58717434869739, 74.76753507014028, 74.94789579158316, 75.12825651302605, 75.30861723446894, 75.48897795591182, 75.66933867735472, 75.8496993987976, 76.03006012024048, 76.21042084168337, 76.39078156312625, 76.57114228456913, 76.75150300601203, 76.93186372745491, 77.11222444889779, 77.29258517034069, 77.47294589178357, 77.65330661322645, 77.83366733466934, 78.01402805611222, 78.1943887775551, 78.374749498998, 78.55511022044088, 78.73547094188376, 78.91583166332666, 79.09619238476954, 79.27655310621242, 79.45691382765531, 79.6372745490982, 79.81763527054109, 79.99799599198397, 80.17835671342685, 80.35871743486975, 80.53907815631263, 80.71943887775551, 80.8997995991984, 81.08016032064128, 81.26052104208416, 81.44088176352706, 81.62124248496994, 81.80160320641282, 81.98196392785572, 82.1623246492986, 82.34268537074148, 82.52304609218437, 82.70340681362725, 82.88376753507013, 83.06412825651303, 83.24448897795591, 83.42484969939879, 83.60521042084169, 83.78557114228457, 83.96593186372745, 84.14629258517034, 84.32665330661322, 84.50701402805612, 84.687374749499, 84.86773547094188, 85.04809619238478, 85.22845691382766, 85.40881763527054, 85.58917835671343, 85.76953907815631, 85.9498997995992, 86.13026052104209, 86.31062124248497, 86.49098196392785, 86.67134268537075, 86.85170340681363, 87.03206412825651, 87.2124248496994, 87.39278557114228, 87.57314629258516, 87.75350701402806, 87.93386773547094, 88.11422845691382, 88.29458917835672, 88.4749498997996, 88.65531062124248, 88.83567134268537, 89.01603206412825, 89.19639278557115, 89.37675350701403, 89.55711422845691, 89.7374749498998, 89.91783567134269, 90.09819639278557, 90.27855711422846, 90.45891783567134, 90.63927855711422, 90.81963927855712, 91.0])
.range(['#ff0000ff', '#ff0200ff', '#ff0400ff', '#ff0600ff', '#ff0800ff', '#ff0b00ff', '#ff0d00ff', '#ff0f00ff', '#ff1100ff', '#ff1300ff', '#ff1600ff', '#ff1800ff', '#ff1a00ff', '#ff1c00ff', '#ff1e00ff', '#ff2100ff', '#ff2300ff', '#ff2500ff', '#ff2700ff', '#ff2a00ff', '#ff2c00ff', '#ff2e00ff', '#ff3000ff', '#ff3200ff', '#ff3500ff', '#ff3700ff', '#ff3900ff', '#ff3b00ff', '#ff3d00ff', '#ff4000ff', '#ff4200ff', '#ff4400ff', '#ff4600ff', '#ff4900ff', '#ff4b00ff', '#ff4d00ff', '#ff4f00ff', '#ff5100ff', '#ff5400ff', '#ff5600ff', '#ff5800ff', '#ff5a00ff', '#ff5c00ff', '#ff5f00ff', '#ff6100ff', '#ff6300ff', '#ff6500ff', '#ff6800ff', '#ff6a00ff', '#ff6c00ff', '#ff6e00ff', '#ff7000ff', '#ff7300ff', '#ff7500ff', '#ff7700ff', '#ff7900ff', '#ff7b00ff', '#ff7e00ff', '#ff8000ff', '#ff8200ff', '#ff8400ff', '#ff8600ff', '#ff8900ff', '#ff8b00ff', '#ff8d00ff', '#ff8f00ff', '#ff9200ff', '#ff9400ff', '#ff9600ff', '#ff9800ff', '#ff9a00ff', '#ff9d00ff', '#ff9f00ff', '#ffa100ff', '#ffa300ff', '#ffa500ff', '#ffa700ff', '#ffa800ff', '#ffa900ff', '#ffaa00ff', '#ffab00ff', '#ffad00ff', '#ffae00ff', '#ffaf00ff', '#ffb000ff', '#ffb100ff', '#ffb300ff', '#ffb400ff', '#ffb500ff', '#ffb600ff', '#ffb700ff', '#ffb900ff', '#ffba00ff', '#ffbb00ff', '#ffbc00ff', '#ffbd00ff', '#ffbf00ff', '#ffc000ff', '#ffc100ff', '#ffc200ff', '#ffc400ff', '#ffc500ff', '#ffc600ff', '#ffc700ff', '#ffc800ff', '#ffca00ff', '#ffcb00ff', '#ffcc00ff', '#ffcd00ff', '#ffce00ff', '#ffd000ff', '#ffd100ff', '#ffd200ff', '#ffd300ff', '#ffd400ff', '#ffd600ff', '#ffd700ff', '#ffd800ff', '#ffd900ff', '#ffda00ff', '#ffdc00ff', '#ffdd00ff', '#ffde00ff', '#ffdf00ff', '#ffe000ff', '#ffe200ff', '#ffe300ff', '#ffe400ff', '#ffe500ff', '#ffe700ff', '#ffe800ff', '#ffe900ff', '#ffea00ff', '#ffeb00ff', '#ffed00ff', '#ffee00ff', '#ffef00ff', '#fff000ff', '#fff100ff', '#fff300ff', '#fff400ff', '#fff500ff', '#fff600ff', '#fff700ff', '#fff900ff', '#fffa00ff', '#fffb00ff', '#fffc00ff', '#fffd00ff', '#ffff00ff', '#ffff00ff', '#feff01ff', '#fdff03ff', '#fcff04ff', '#fbff06ff', '#faff07ff', '#f8fe09ff', '#f7fe0aff', '#f6fe0cff', '#f5fe0dff', '#f4fe0eff', '#f3fe10ff', '#f2fd11ff', '#f1fd13ff', '#f0fd14ff', '#eefd16ff', '#edfd17ff', '#ecfd19ff', '#ebfc1aff', '#eafc1bff', '#e9fc1dff', '#e8fc1eff', '#e7fc20ff', '#e5fc21ff', '#e4fb23ff', '#e3fb24ff', '#e2fb26ff', '#e1fb27ff', '#e0fb28ff', '#dffa2aff', '#defa2bff', '#ddfa2dff', '#dbfa2eff', '#dafa30ff', '#d9fa31ff', '#d8f933ff', '#d7f934ff', '#d6f936ff', '#d5f937ff', '#d4f938ff', '#d3f93aff', '#d1f83bff', '#d0f83dff', '#cff83eff', '#cef840ff', '#cdf841ff', '#ccf843ff', '#cbf744ff', '#caf745ff', '#c8f747ff', '#c7f748ff', '#c6f74aff', '#c5f74bff', '#c4f64dff', '#c3f64eff', '#c2f650ff', '#c1f651ff', '#c0f653ff', '#bef654ff', '#bdf555ff', '#bcf557ff', '#bbf558ff', '#baf55aff', '#b9f55bff', '#b8f55dff', '#b7f45eff', '#b5f460ff', '#b4f461ff', '#b3f462ff', '#b2f464ff', '#b1f365ff', '#b0f367ff', '#aff368ff', '#aef36aff', '#adf36bff', '#abf36dff', '#aaf26eff', '#a9f26fff', '#a8f271ff', '#a7f272ff', '#a6f274ff', '#a5f275ff', '#a4f177ff', '#a2f178ff', '#a1f17aff', '#a0f17bff', '#9ff17dff', '#9ef17eff', '#9df07fff', '#9cf081ff', '#9bf082ff', '#9af084ff', '#98f085ff', '#97f087ff', '#96ef88ff', '#95ef8aff', '#94ef8bff', '#93ef8cff', '#92ef8eff', '#91ef8fff', '#90ee90ff', '#8fee8fff', '#8fed8fff', '#8eed8eff', '#8dec8dff', '#8dec8dff', '#8cec8cff', '#8ceb8cff', '#8beb8bff', '#8bea8bff', '#8aea8aff', '#89e989ff', '#89e989ff', '#88e888ff', '#88e888ff', '#87e887ff', '#87e787ff', '#86e786ff', '#85e685ff', '#85e685ff', '#84e584ff', '#84e584ff', '#83e483ff', '#82e482ff', '#82e482ff', '#81e381ff', '#81e381ff', '#80e280ff', '#80e280ff', '#7fe17fff', '#7ee17eff', '#7ee07eff', '#7de07dff', '#7de07dff', '#7cdf7cff', '#7bdf7bff', '#7bde7bff', '#7ade7aff', '#7add7aff', '#79dd79ff', '#79dd79ff', '#78dc78ff', '#77dc77ff', '#77db77ff', '#76db76ff', '#76da76ff', '#75da75ff', '#75d975ff', '#74d974ff', '#73d973ff', '#73d873ff', '#72d872ff', '#72d772ff', '#71d771ff', '#70d670ff', '#70d670ff', '#6fd56fff', '#6fd56fff', '#6ed56eff', '#6ed46eff', '#6dd46dff', '#6cd36cff', '#6cd36cff', '#6bd26bff', '#6bd26bff', '#6ad16aff', '#6ad16aff', '#69d169ff', '#68d068ff', '#68d068ff', '#67cf67ff', '#67cf67ff', '#66ce66ff', '#65ce65ff', '#65cd65ff', '#64cd64ff', '#64cd64ff', '#63cc63ff', '#63cc63ff', '#62cb62ff', '#61cb61ff', '#61ca61ff', '#60ca60ff', '#60c960ff', '#5fc95fff', '#5fc95fff', '#5ec85eff', '#5dc85dff', '#5dc75dff', '#5cc75cff', '#5cc65cff', '#5bc65bff', '#5ac55aff', '#5ac55aff', '#59c559ff', '#59c459ff', '#58c458ff', '#58c358ff', '#57c357ff', '#56c256ff', '#56c256ff', '#55c255ff', '#55c155ff', '#54c154ff', '#54c054ff', '#53c053ff', '#52bf52ff', '#52bf52ff', '#51be51ff', '#51be51ff', '#50be50ff', '#4fbd4fff', '#4fbd4fff', '#4ebc4eff', '#4ebc4eff', '#4dbb4dff', '#4dbb4dff', '#4cba4cff', '#4bba4bff', '#4bba4bff', '#4ab94aff', '#4ab94aff', '#49b849ff', '#49b849ff', '#48b748ff', '#47b747ff', '#47b647ff', '#46b646ff', '#46b646ff', '#45b545ff', '#44b544ff', '#44b444ff', '#43b443ff', '#43b343ff', '#42b342ff', '#42b242ff', '#41b241ff', '#40b240ff', '#40b140ff', '#3fb13fff', '#3fb03fff', '#3eb03eff', '#3daf3dff', '#3daf3dff', '#3cae3cff', '#3cae3cff', '#3bae3bff', '#3bad3bff', '#3aad3aff', '#39ac39ff', '#39ac39ff', '#38ab38ff', '#38ab38ff', '#37aa37ff', '#37aa37ff', '#36aa36ff', '#35a935ff', '#35a935ff', '#34a834ff', '#34a834ff', '#33a733ff', '#32a732ff', '#32a732ff', '#31a631ff', '#31a631ff', '#30a530ff', '#30a530ff', '#2fa42fff', '#2ea42eff', '#2ea32eff', '#2da32dff', '#2da32dff', '#2ca22cff', '#2ca22cff', '#2ba12bff', '#2aa12aff', '#2aa02aff', '#29a029ff', '#299f29ff', '#289f28ff', '#279f27ff', '#279e27ff', '#269e26ff', '#269d26ff', '#259d25ff', '#259c25ff', '#249c24ff', '#239b23ff', '#239b23ff', '#229b22ff', '#229a22ff', '#219a21ff', '#219921ff', '#209920ff', '#1f981fff', '#1f981fff', '#1e971eff', '#1e971eff', '#1d971dff', '#1c961cff', '#1c961cff', '#1b951bff', '#1b951bff', '#1a941aff', '#1a941aff', '#199319ff', '#189318ff', '#189318ff', '#179217ff', '#179217ff', '#169116ff', '#169116ff', '#159015ff', '#149014ff', '#148f14ff', '#138f13ff', '#138f13ff', '#128e12ff', '#118e11ff', '#118d11ff', '#108d10ff', '#108c10ff', '#0f8c0fff', '#0f8c0fff', '#0e8b0eff', '#0d8b0dff', '#0d8a0dff', '#0c8a0cff', '#0c890cff', '#0b890bff', '#0b880bff', '#0a880aff', '#098809ff', '#098709ff', '#088708ff', '#088608ff', '#078607ff', '#068506ff', '#068506ff', '#058405ff', '#058405ff', '#048404ff', '#048304ff', '#038303ff', '#028202ff', '#028202ff', '#018101ff', '#018101ff', '#008000ff', '#008000ff']);
color_map_df7e54410450ba631e5ba0a7ff81edbb.x = d3.scale.linear()
.domain([1.0, 91.0])
.range([0, 450 - 50]);
color_map_df7e54410450ba631e5ba0a7ff81edbb.legend = L.control({position: 'topright'});
color_map_df7e54410450ba631e5ba0a7ff81edbb.legend.onAdd = function (map) {var div = L.DomUtil.create('div', 'legend'); return div};
color_map_df7e54410450ba631e5ba0a7ff81edbb.legend.addTo(map_14ed9589f5d266e78142f5f19de2b50a);
color_map_df7e54410450ba631e5ba0a7ff81edbb.xAxis = d3.svg.axis()
.scale(color_map_df7e54410450ba631e5ba0a7ff81edbb.x)
.orient("top")
.tickSize(1)
.tickValues([1.0, 14.5, 28.0, 46.0, 91.0]);
color_map_df7e54410450ba631e5ba0a7ff81edbb.svg = d3.select(".legend.leaflet-control").append("svg")
.attr("id", 'legend')
.attr("width", 450)
.attr("height", 40);
color_map_df7e54410450ba631e5ba0a7ff81edbb.g = color_map_df7e54410450ba631e5ba0a7ff81edbb.svg.append("g")
.attr("class", "key")
.attr("fill", "black")
.attr("transform", "translate(25,16)");
color_map_df7e54410450ba631e5ba0a7ff81edbb.g.selectAll("rect")
.data(color_map_df7e54410450ba631e5ba0a7ff81edbb.color.range().map(function(d, i) {
return {
x0: i ? color_map_df7e54410450ba631e5ba0a7ff81edbb.x(color_map_df7e54410450ba631e5ba0a7ff81edbb.color.domain()[i - 1]) : color_map_df7e54410450ba631e5ba0a7ff81edbb.x.range()[0],
x1: i < color_map_df7e54410450ba631e5ba0a7ff81edbb.color.domain().length ? color_map_df7e54410450ba631e5ba0a7ff81edbb.x(color_map_df7e54410450ba631e5ba0a7ff81edbb.color.domain()[i]) : color_map_df7e54410450ba631e5ba0a7ff81edbb.x.range()[1],
z: d
};
}))
.enter().append("rect")
.attr("height", 40 - 30)
.attr("x", function(d) { return d.x0; })
.attr("width", function(d) { return d.x1 - d.x0; })
.style("fill", function(d) { return d.z; });
color_map_df7e54410450ba631e5ba0a7ff81edbb.g.call(color_map_df7e54410450ba631e5ba0a7ff81edbb.xAxis).append("text")
.attr("class", "caption")
.attr("y", 21)
.attr("fill", "black")
.text("Count of Flights");
</script>
</html>