-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1278 lines (804 loc) · 96 KB
/
index.html
File metadata and controls
1278 lines (804 loc) · 96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<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_c69521d648f68f400364bbd167bdbfd6 {
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>
</head>
<body>
<div class="folium-map" id="map_c69521d648f68f400364bbd167bdbfd6" ></div>
</body>
<script>
var map_c69521d648f68f400364bbd167bdbfd6 = L.map(
"map_c69521d648f68f400364bbd167bdbfd6",
{
center: [35.0778087812196, -87.7095748754507],
crs: L.CRS.EPSG3857,
...{
"zoom": 4.5,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_6abbe2ecca6cde38e7002ce467da8204 = 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_6abbe2ecca6cde38e7002ce467da8204.addTo(map_c69521d648f68f400364bbd167bdbfd6);
var tile_layer_5f97029301baaf7763929c47c1c8f0bb = 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_5f97029301baaf7763929c47c1c8f0bb.addTo(map_c69521d648f68f400364bbd167bdbfd6);
var tile_layer_a6b6441bbb7d1036b7babc38f2ebae2c = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{
"minZoom": 0,
"maxZoom": 20,
"maxNativeZoom": 20,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e",
"subdomains": "abcd",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_a6b6441bbb7d1036b7babc38f2ebae2c.addTo(map_c69521d648f68f400364bbd167bdbfd6);
var tile_layer_14292d3878ab3ccdd53be7196a35ba18 = L.tileLayer(
"https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",
{
"minZoom": 0,
"maxZoom": 18,
"maxNativeZoom": 18,
"noWrap": false,
"attribution": "Tiles \u00a9 Esri",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_14292d3878ab3ccdd53be7196a35ba18.addTo(map_c69521d648f68f400364bbd167bdbfd6);
var feature_group_5389b0342c24bedc1a003d6402a01794 = L.featureGroup(
{
}
);
function geo_json_d05543e5b7bccd1048d216e26ba0849c_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_d05543e5b7bccd1048d216e26ba0849c_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_d05543e5b7bccd1048d216e26ba0849c = L.geoJson(null, {
onEachFeature: geo_json_d05543e5b7bccd1048d216e26ba0849c_onEachFeature,
style: geo_json_d05543e5b7bccd1048d216e26ba0849c_styler,
...{
}
});
function geo_json_d05543e5b7bccd1048d216e26ba0849c_add (data) {
geo_json_d05543e5b7bccd1048d216e26ba0849c
.addData(data);
}
geo_json_d05543e5b7bccd1048d216e26ba0849c_add({"features": [{"geometry": {"coordinates": [[[-91.4345676696888, 35.12810393481435], [-91.38840975492727, 35.895398875950946], [-92.83329572704041, 35.942653477957286], [-92.86501754341133, 35.1749165334664], [-91.4345676696888, 35.12810393481435]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 14168, "Date of the Flood": "500", "Description": "BLE Dataset of 10m resolution for HUC 11010014", "Extent": "{ \"xmin\": -92.865017543411327, \"ymin\": 35.128069104235905, \"xmax\": -91.388427035877484, \"ymax\": 35.942653477957286 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-92.1267222896444, 35.53536129109659)", "Projection": "EPSG:4326", "River Name": "Little Red River", "Rows": 7816, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset of 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_26a14e5959a3a95b47b57d4f739139d0 = L.popup({
"maxWidth": 400,
});
var html_dc83ee37e809bd40ec42bd99c8eacb11 = $(`<div id="html_dc83ee37e809bd40ec42bd99c8eacb11" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -92.865017543411327, "ymin": 35.128069104235905, "xmax": -91.388427035877484, "ymax": 35.942653477957286 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>7816</td></tr><tr><th style='text-align:left'>Columns</th><td>14168</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset of 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Dataset of 10m resolution for HUC 11010014</td></tr><tr><th style='text-align:left'>River Name</th><td>Little Red River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-92.1267222896444, 35.53536129109659)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>500</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_26a14e5959a3a95b47b57d4f739139d0.setContent(html_dc83ee37e809bd40ec42bd99c8eacb11);
geo_json_d05543e5b7bccd1048d216e26ba0849c.bindPopup(popup_26a14e5959a3a95b47b57d4f739139d0)
;
geo_json_d05543e5b7bccd1048d216e26ba0849c.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_ffeea94668aee415bf60abebaa7530a9_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_ffeea94668aee415bf60abebaa7530a9_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_ffeea94668aee415bf60abebaa7530a9 = L.geoJson(null, {
onEachFeature: geo_json_ffeea94668aee415bf60abebaa7530a9_onEachFeature,
style: geo_json_ffeea94668aee415bf60abebaa7530a9_styler,
...{
}
});
function geo_json_ffeea94668aee415bf60abebaa7530a9_add (data) {
geo_json_ffeea94668aee415bf60abebaa7530a9
.addData(data);
}
geo_json_ffeea94668aee415bf60abebaa7530a9_add({"features": [{"geometry": {"coordinates": [[[-96.26103339106774, 35.79222613238477], [-96.26272357861143, 36.2813051506397], [-97.51091942597242, 36.272047897821516], [-97.50120075545718, 35.78302517544885], [-96.26103339106774, 35.79222613238477]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 11565, "Date of the Flood": "100", "Description": "BLE Dataset of 10m resolution of HUC 11050003", "Extent": "{ \"xmin\": -97.510919425972418, \"ymin\": 35.783066215789667, \"xmax\": -96.260998974445158, \"ymax\": 36.281305150639703 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-96.88595920020879, 36.032185683214685)", "Projection": "EPSG:4326", "River Name": "Cimarron River", "Rows": 4610, "Source": "SDML Lab, University of Alabama", "State": "Oklahoma", "Title": "BLE Dataset of 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_71f9434d41c26e70a04a68210bcb2254 = L.popup({
"maxWidth": 400,
});
var html_7858f68e24a7a608d239a1df4a8edee4 = $(`<div id="html_7858f68e24a7a608d239a1df4a8edee4" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -97.510919425972418, "ymin": 35.783066215789667, "xmax": -96.260998974445158, "ymax": 36.281305150639703 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>4610</td></tr><tr><th style='text-align:left'>Columns</th><td>11565</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset of 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Oklahoma</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Dataset of 10m resolution of HUC 11050003</td></tr><tr><th style='text-align:left'>River Name</th><td>Cimarron River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-96.88595920020879, 36.032185683214685)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>100</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_71f9434d41c26e70a04a68210bcb2254.setContent(html_7858f68e24a7a608d239a1df4a8edee4);
geo_json_ffeea94668aee415bf60abebaa7530a9.bindPopup(popup_71f9434d41c26e70a04a68210bcb2254)
;
geo_json_ffeea94668aee415bf60abebaa7530a9.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_65dd8c38f701b5373c5fb26627d9f7d7_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_65dd8c38f701b5373c5fb26627d9f7d7_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_65dd8c38f701b5373c5fb26627d9f7d7 = L.geoJson(null, {
onEachFeature: geo_json_65dd8c38f701b5373c5fb26627d9f7d7_onEachFeature,
style: geo_json_65dd8c38f701b5373c5fb26627d9f7d7_styler,
...{
}
});
function geo_json_65dd8c38f701b5373c5fb26627d9f7d7_add (data) {
geo_json_65dd8c38f701b5373c5fb26627d9f7d7
.addData(data);
}
geo_json_65dd8c38f701b5373c5fb26627d9f7d7_add({"features": [{"geometry": {"coordinates": [[[-91.3234237649812, 35.53381850161981], [-91.27250842566241, 36.354764219880735], [-92.45635982736304, 36.39567727459544], [-92.49455218882072, 35.57431569130994], [-91.3234237649812, 35.53381850161981]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 12009, "Date of the Flood": "500", "Description": "BLE DATASET for 10m resolution for HUC 11010004", "Extent": "{ \"xmin\": -92.49455218882072, \"ymin\": 35.533856548102897, \"xmax\": -91.272494672650097, \"ymax\": 36.395677274595442 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-91.88352343073541, 35.96476691134917)", "Projection": "EPSG:4326", "River Name": "White River", "Rows": 8469, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_fa49076b3641c976e753afd3bfae0297 = L.popup({
"maxWidth": 400,
});
var html_7906a9fd6a5584b6258e2c51573c8c6b = $(`<div id="html_7906a9fd6a5584b6258e2c51573c8c6b" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -92.49455218882072, "ymin": 35.533856548102897, "xmax": -91.272494672650097, "ymax": 36.395677274595442 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>8469</td></tr><tr><th style='text-align:left'>Columns</th><td>12009</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE DATASET for 10m resolution for HUC 11010004</td></tr><tr><th style='text-align:left'>River Name</th><td>White River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-91.88352343073541, 35.96476691134917)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>500</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_fa49076b3641c976e753afd3bfae0297.setContent(html_7906a9fd6a5584b6258e2c51573c8c6b);
geo_json_65dd8c38f701b5373c5fb26627d9f7d7.bindPopup(popup_fa49076b3641c976e753afd3bfae0297)
;
geo_json_65dd8c38f701b5373c5fb26627d9f7d7.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_7e5579379342c34d1ac9d9bc7276acaf_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_7e5579379342c34d1ac9d9bc7276acaf_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_7e5579379342c34d1ac9d9bc7276acaf = L.geoJson(null, {
onEachFeature: geo_json_7e5579379342c34d1ac9d9bc7276acaf_onEachFeature,
style: geo_json_7e5579379342c34d1ac9d9bc7276acaf_styler,
...{
}
});
function geo_json_7e5579379342c34d1ac9d9bc7276acaf_add (data) {
geo_json_7e5579379342c34d1ac9d9bc7276acaf
.addData(data);
}
geo_json_7e5579379342c34d1ac9d9bc7276acaf_add({"features": [{"geometry": {"coordinates": [[[-92.79110275254789, 34.50526270813173], [-92.7798384960102, 34.77593368350476], [-93.09484609088283, 34.784174900173966], [-93.10500987834128, 34.51347755187583], [-92.79110275254789, 34.50526270813173]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 3285, "Date of the Flood": "100 year Return period Flow", "Description": "BLE Benchmark Daset of 10m spatial resolution with HUCID 08040203", "Extent": "{ \"xmin\": -93.105009878341278, \"ymin\": 34.50527073004821, \"xmax\": -92.77988560621101, \"ymax\": 34.784174900173966 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-92.94244774227614, 34.64472281511109)", "Projection": "EPSG:4326", "River Name": "South Fork Saline River", "Rows": 2818, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_ecd27c6062c20c947444bd685898d4b4 = L.popup({
"maxWidth": 400,
});
var html_845e1f16ef707b87ca260d189d753beb = $(`<div id="html_845e1f16ef707b87ca260d189d753beb" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -93.105009878341278, "ymin": 34.50527073004821, "xmax": -92.77988560621101, "ymax": 34.784174900173966 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>2818</td></tr><tr><th style='text-align:left'>Columns</th><td>3285</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Benchmark Daset of 10m spatial resolution with HUCID 08040203</td></tr><tr><th style='text-align:left'>River Name</th><td>South Fork Saline River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-92.94244774227614, 34.64472281511109)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>100 year Return period Flow</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_ecd27c6062c20c947444bd685898d4b4.setContent(html_845e1f16ef707b87ca260d189d753beb);
geo_json_7e5579379342c34d1ac9d9bc7276acaf.bindPopup(popup_ecd27c6062c20c947444bd685898d4b4)
;
geo_json_7e5579379342c34d1ac9d9bc7276acaf.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_fff56689f30c6055dd99282b02296d2b_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_fff56689f30c6055dd99282b02296d2b_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_fff56689f30c6055dd99282b02296d2b = L.geoJson(null, {
onEachFeature: geo_json_fff56689f30c6055dd99282b02296d2b_onEachFeature,
style: geo_json_fff56689f30c6055dd99282b02296d2b_styler,
...{
}
});
function geo_json_fff56689f30c6055dd99282b02296d2b_add (data) {
geo_json_fff56689f30c6055dd99282b02296d2b
.addData(data);
}
geo_json_fff56689f30c6055dd99282b02296d2b_add({"features": [{"geometry": {"coordinates": [[[-90.72228418152959, 35.58696365732108], [-90.64710768497343, 36.656355818049306], [-91.56408458492783, 36.693714341324466], [-91.62642343144132, 35.623825079825636], [-90.72228418152959, 35.58696365732108]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 10205, "Date of the Flood": "100", "Description": "BLE Dataser with 10m resolution for HUC 11010009", "Extent": "{ \"xmin\": -91.626423431441324, \"ymin\": 35.58701053987982, \"xmax\": -90.647154178537249, \"ymax\": 36.693714341324466 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-91.1367888049893, 36.140362440602146)", "Projection": "EPSG:4326", "River Name": "Black River", "Rows": 11533, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_e261a38ae6b0e385defe441d2fac1561 = L.popup({
"maxWidth": 400,
});
var html_12df001a630d43fa260e04b767c4d727 = $(`<div id="html_12df001a630d43fa260e04b767c4d727" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -91.626423431441324, "ymin": 35.58701053987982, "xmax": -90.647154178537249, "ymax": 36.693714341324466 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>11533</td></tr><tr><th style='text-align:left'>Columns</th><td>10205</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Dataser with 10m resolution for HUC 11010009</td></tr><tr><th style='text-align:left'>River Name</th><td>Black River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-91.1367888049893, 36.140362440602146)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>100</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_e261a38ae6b0e385defe441d2fac1561.setContent(html_12df001a630d43fa260e04b767c4d727);
geo_json_fff56689f30c6055dd99282b02296d2b.bindPopup(popup_e261a38ae6b0e385defe441d2fac1561)
;
geo_json_fff56689f30c6055dd99282b02296d2b.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_fbf6ed480eb325408fdc7d0819e4dd9c_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_fbf6ed480eb325408fdc7d0819e4dd9c_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_fbf6ed480eb325408fdc7d0819e4dd9c = L.geoJson(null, {
onEachFeature: geo_json_fbf6ed480eb325408fdc7d0819e4dd9c_onEachFeature,
style: geo_json_fbf6ed480eb325408fdc7d0819e4dd9c_styler,
...{
}
});
function geo_json_fbf6ed480eb325408fdc7d0819e4dd9c_add (data) {
geo_json_fbf6ed480eb325408fdc7d0819e4dd9c
.addData(data);
}
geo_json_fbf6ed480eb325408fdc7d0819e4dd9c_add({"features": [{"geometry": {"coordinates": [[[-91.32330901399203, 35.54070088498102], [-91.27281838269275, 36.35477647026323], [-92.45554570191824, 36.395653174496154], [-92.49343064833101, 35.58116550118425], [-91.32330901399203, 35.54070088498102]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 11985, "Date of the Flood": "100 year flood", "Description": "BLE Dataset with 10m resolution for HUC 11010004", "Extent": "{ \"xmin\": -92.493430648331014, \"ymin\": 35.540751637124401, \"xmax\": -91.272797466844182, \"ymax\": 36.395653174496154 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-91.88311405758759, 35.968202405810274)", "Projection": "EPSG:4326", "River Name": "White River", "Rows": 8394, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_cf7370b1cfe6e5527fce93c7ef8c234f = L.popup({
"maxWidth": 400,
});
var html_152d554c2330c5773a599c584322eba4 = $(`<div id="html_152d554c2330c5773a599c584322eba4" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -92.493430648331014, "ymin": 35.540751637124401, "xmax": -91.272797466844182, "ymax": 36.395653174496154 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>8394</td></tr><tr><th style='text-align:left'>Columns</th><td>11985</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Dataset with 10m resolution for HUC 11010004</td></tr><tr><th style='text-align:left'>River Name</th><td>White River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-91.88311405758759, 35.968202405810274)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>100 year flood</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_cf7370b1cfe6e5527fce93c7ef8c234f.setContent(html_152d554c2330c5773a599c584322eba4);
geo_json_fbf6ed480eb325408fdc7d0819e4dd9c.bindPopup(popup_cf7370b1cfe6e5527fce93c7ef8c234f)
;
geo_json_fbf6ed480eb325408fdc7d0819e4dd9c.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_094bc09483a1e10101bf4afcce990862_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_094bc09483a1e10101bf4afcce990862_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_094bc09483a1e10101bf4afcce990862 = L.geoJson(null, {
onEachFeature: geo_json_094bc09483a1e10101bf4afcce990862_onEachFeature,
style: geo_json_094bc09483a1e10101bf4afcce990862_styler,
...{
}
});
function geo_json_094bc09483a1e10101bf4afcce990862_add (data) {
geo_json_094bc09483a1e10101bf4afcce990862
.addData(data);
}
geo_json_094bc09483a1e10101bf4afcce990862_add({"features": [{"geometry": {"coordinates": [[[-91.43460195137341, 35.12814671981711], [-91.3884552009448, 35.89526324352882], [-92.83322682760776, 35.94251433880932], [-92.86494197202265, 35.17495594763773], [-91.43460195137341, 35.12814671981711]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 14167, "Date of the Flood": "100", "Description": "BLE Dataset with 10m resolution for HUC 11010014", "Extent": "{ \"xmin\": -92.864941972022649, \"ymin\": 35.128127596683917, \"xmax\": -91.388436088263944, \"ymax\": 35.942514338809318 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-92.1266890301433, 35.535320967746614)", "Projection": "EPSG:4326", "River Name": "Little Red River", "Rows": 7814, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_8c60890872f51f30b4c5c2b464cbab64 = L.popup({
"maxWidth": 400,
});
var html_887362d0d49f07f11ed2573aff43664d = $(`<div id="html_887362d0d49f07f11ed2573aff43664d" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -92.864941972022649, "ymin": 35.128127596683917, "xmax": -91.388436088263944, "ymax": 35.942514338809318 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>7814</td></tr><tr><th style='text-align:left'>Columns</th><td>14167</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Dataset with 10m resolution for HUC 11010014</td></tr><tr><th style='text-align:left'>River Name</th><td>Little Red River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-92.1266890301433, 35.535320967746614)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>100</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_8c60890872f51f30b4c5c2b464cbab64.setContent(html_887362d0d49f07f11ed2573aff43664d);
geo_json_094bc09483a1e10101bf4afcce990862.bindPopup(popup_8c60890872f51f30b4c5c2b464cbab64)
;
geo_json_094bc09483a1e10101bf4afcce990862.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_7b08c92e2cde91e86d435a3768ca58d9_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_7b08c92e2cde91e86d435a3768ca58d9_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_7b08c92e2cde91e86d435a3768ca58d9 = L.geoJson(null, {
onEachFeature: geo_json_7b08c92e2cde91e86d435a3768ca58d9_onEachFeature,
style: geo_json_7b08c92e2cde91e86d435a3768ca58d9_styler,
...{
}
});
function geo_json_7b08c92e2cde91e86d435a3768ca58d9_add (data) {
geo_json_7b08c92e2cde91e86d435a3768ca58d9
.addData(data);
}
geo_json_7b08c92e2cde91e86d435a3768ca58d9_add({"features": [{"geometry": {"coordinates": [[[-96.26103339106774, 35.79222613238477], [-96.26272357861143, 36.2813051506397], [-97.51091942597242, 36.272047897821516], [-97.50120075545718, 35.78302517544885], [-96.26103339106774, 35.79222613238477]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 11565, "Date of the Flood": "500", "Description": "BLE Dataset with 10m resolution for HUC 11050003", "Extent": "{ \"xmin\": -97.510919425972418, \"ymin\": 35.783066215789667, \"xmax\": -96.260998974445158, \"ymax\": 36.281305150639703 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-96.88595920020879, 36.032185683214685)", "Projection": "EPSG:4326", "River Name": "Cimarron River", "Rows": 4610, "Source": "SDML Lab, University of Alabama", "State": "Oklahoma", "Title": "BLE Dataset with 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_139296ce47eedc15284ed0fc2c619682 = L.popup({
"maxWidth": 400,
});
var html_b16258335738b112f0de7f683a426aed = $(`<div id="html_b16258335738b112f0de7f683a426aed" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -97.510919425972418, "ymin": 35.783066215789667, "xmax": -96.260998974445158, "ymax": 36.281305150639703 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>4610</td></tr><tr><th style='text-align:left'>Columns</th><td>11565</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Oklahoma</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Dataset with 10m resolution for HUC 11050003</td></tr><tr><th style='text-align:left'>River Name</th><td>Cimarron River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-96.88595920020879, 36.032185683214685)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>500</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_139296ce47eedc15284ed0fc2c619682.setContent(html_b16258335738b112f0de7f683a426aed);
geo_json_7b08c92e2cde91e86d435a3768ca58d9.bindPopup(popup_139296ce47eedc15284ed0fc2c619682)
;
geo_json_7b08c92e2cde91e86d435a3768ca58d9.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_eefe6ee36a4fc83c74212f329343fe2f_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_eefe6ee36a4fc83c74212f329343fe2f_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_eefe6ee36a4fc83c74212f329343fe2f = L.geoJson(null, {
onEachFeature: geo_json_eefe6ee36a4fc83c74212f329343fe2f_onEachFeature,
style: geo_json_eefe6ee36a4fc83c74212f329343fe2f_styler,
...{
}
});
function geo_json_eefe6ee36a4fc83c74212f329343fe2f_add (data) {
geo_json_eefe6ee36a4fc83c74212f329343fe2f
.addData(data);
}
geo_json_eefe6ee36a4fc83c74212f329343fe2f_add({"features": [{"geometry": {"coordinates": [[[-92.84490541360778, 34.31359062351197], [-92.82320349384139, 34.843541312651475], [-94.32653870062208, 34.874646550644655], [-94.33797685201591, 34.344501611227756], [-92.84490541360778, 34.31359062351197]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 14218, "Date of the Flood": "500 year return period", "Description": "BLE Benchmark Daset of 10m spatial resolution with HUCID 08040101 for 500 year return period flow.", "Extent": "{ \"xmin\": -94.337976852015913, \"ymin\": 34.313607521809423, \"xmax\": -92.823192782137568, \"ymax\": 34.874646550644655 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-93.58058481707674, 34.594127036227036)", "Projection": "EPSG:4326", "River Name": "Ouachita River", "Rows": 5266, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution "}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_a4c414ad96febea4ab2eb569ec8e4abc = L.popup({
"maxWidth": 400,
});
var html_445a22f5a6c580309cc6e411e8c1acda = $(`<div id="html_445a22f5a6c580309cc6e411e8c1acda" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -94.337976852015913, "ymin": 34.313607521809423, "xmax": -92.823192782137568, "ymax": 34.874646550644655 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>5266</td></tr><tr><th style='text-align:left'>Columns</th><td>14218</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution </td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Benchmark Daset of 10m spatial resolution with HUCID 08040101 for 500 year return period flow.</td></tr><tr><th style='text-align:left'>River Name</th><td>Ouachita River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-93.58058481707674, 34.594127036227036)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>500 year return period</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_a4c414ad96febea4ab2eb569ec8e4abc.setContent(html_445a22f5a6c580309cc6e411e8c1acda);
geo_json_eefe6ee36a4fc83c74212f329343fe2f.bindPopup(popup_a4c414ad96febea4ab2eb569ec8e4abc)
;
geo_json_eefe6ee36a4fc83c74212f329343fe2f.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_63319fd4554fa8caae9c6278771ffdc0_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_63319fd4554fa8caae9c6278771ffdc0_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_63319fd4554fa8caae9c6278771ffdc0 = L.geoJson(null, {
onEachFeature: geo_json_63319fd4554fa8caae9c6278771ffdc0_onEachFeature,
style: geo_json_63319fd4554fa8caae9c6278771ffdc0_styler,
...{
}
});
function geo_json_63319fd4554fa8caae9c6278771ffdc0_add (data) {
geo_json_63319fd4554fa8caae9c6278771ffdc0
.addData(data);
}
geo_json_63319fd4554fa8caae9c6278771ffdc0_add({"features": [{"geometry": {"coordinates": [[[-92.79106796099876, 34.50522017732792], [-92.77979612478846, 34.77606985498989], [-93.09491438737838, 34.7843139161155], [-93.10508464158367, 34.513437838987244], [-92.79106796099876, 34.50522017732792]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 3287, "Date of the Flood": "500 year return period flow", "Description": "BLE Benchmark Daset of 10m spatial resolution with HUCID 08040203", "Extent": "{ \"xmin\": -93.105084641583673, \"ymin\": 34.505220689814223, \"xmax\": -92.779772785253073, \"ymax\": 34.784313916115501 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-92.94242871341837, 34.644767302964866)", "Projection": "EPSG:4326", "River Name": "South Fork Saline River", "Rows": 2820, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_e26db0898e374735a3df9244017e01db = L.popup({
"maxWidth": 400,
});
var html_9c0db5773a661ef1220b76321db26707 = $(`<div id="html_9c0db5773a661ef1220b76321db26707" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -93.105084641583673, "ymin": 34.505220689814223, "xmax": -92.779772785253073, "ymax": 34.784313916115501 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>2820</td></tr><tr><th style='text-align:left'>Columns</th><td>3287</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Benchmark Daset of 10m spatial resolution with HUCID 08040203</td></tr><tr><th style='text-align:left'>River Name</th><td>South Fork Saline River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-92.94242871341837, 34.644767302964866)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>500 year return period flow</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_e26db0898e374735a3df9244017e01db.setContent(html_9c0db5773a661ef1220b76321db26707);
geo_json_63319fd4554fa8caae9c6278771ffdc0.bindPopup(popup_e26db0898e374735a3df9244017e01db)
;
geo_json_63319fd4554fa8caae9c6278771ffdc0.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
function geo_json_21b852e691520ecb5b9b6e4847d3c53d_styler(feature) {
switch(feature.properties.Format) {
default:
return {"color": "#ec7014", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_21b852e691520ecb5b9b6e4847d3c53d_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_21b852e691520ecb5b9b6e4847d3c53d = L.geoJson(null, {
onEachFeature: geo_json_21b852e691520ecb5b9b6e4847d3c53d_onEachFeature,
style: geo_json_21b852e691520ecb5b9b6e4847d3c53d_styler,
...{
}
});
function geo_json_21b852e691520ecb5b9b6e4847d3c53d_add (data) {
geo_json_21b852e691520ecb5b9b6e4847d3c53d
.addData(data);
}
geo_json_21b852e691520ecb5b9b6e4847d3c53d_add({"features": [{"geometry": {"coordinates": [[[-92.84498303633313, 34.31355073296568], [-92.82328903100321, 34.84332277722516], [-94.32639943824707, 34.87442380462092], [-94.33783467687387, 34.34445760261317], [-92.84498303633313, 34.31355073296568]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 14216, "Date of the Flood": "100 year return period flow", "Description": "BLE Benchmark Daset of 10m spatial resolution with HUCID 08040101", "Extent": "{ \"xmin\": -94.337834676873868, \"ymin\": 34.31359332748724, \"xmax\": -92.823251458231709, \"ymax\": 34.874423804620918 }", "Format": "GTiff", "Level": "Level_4", "Location of the centroid of the flood map": "(-93.58054306755278, 34.59400856605408)", "Projection": "EPSG:4326", "River Name": "Ouachita River", "Rows": 5264, "Source": "SDML Lab, University of Alabama", "State": "Arkansas", "Title": "BLE Dataset with 10m resolution "}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_b01520ec507903f20f18a29a8ea39cde = L.popup({
"maxWidth": 400,
});
var html_b908f87eef2f68dcec21b713b6aed7b2 = $(`<div id="html_b908f87eef2f68dcec21b713b6aed7b2" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -94.337834676873868, "ymin": 34.31359332748724, "xmax": -92.823251458231709, "ymax": 34.874423804620918 }</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>5264</td></tr><tr><th style='text-align:left'>Columns</th><td>14216</td></tr><tr><th style='text-align:left'>Title</th><td>BLE Dataset with 10m resolution </td></tr><tr><th style='text-align:left'>State</th><td>Arkansas</td></tr><tr><th style='text-align:left'>Description</th><td>BLE Benchmark Daset of 10m spatial resolution with HUCID 08040101</td></tr><tr><th style='text-align:left'>River Name</th><td>Ouachita River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-93.58054306755278, 34.59400856605408)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>100 year return period flow</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_4</td></tr><tr><td colspan='2' style='color:red;'>File info missing</td></tr></table></div>`)[0];
popup_b01520ec507903f20f18a29a8ea39cde.setContent(html_b908f87eef2f68dcec21b713b6aed7b2);
geo_json_21b852e691520ecb5b9b6e4847d3c53d.bindPopup(popup_b01520ec507903f20f18a29a8ea39cde)
;
geo_json_21b852e691520ecb5b9b6e4847d3c53d.addTo(feature_group_5389b0342c24bedc1a003d6402a01794);
feature_group_5389b0342c24bedc1a003d6402a01794.addTo(map_c69521d648f68f400364bbd167bdbfd6);
var feature_group_806eb0b86a279319ecff59d01926d812 = L.featureGroup(
{
}
);
function geo_json_ea1e8819560d01b848bbc2b9b1ccd323_styler(feature) {
switch(feature.properties.File_Name) {
default:
return {"color": "#238b45", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_ea1e8819560d01b848bbc2b9b1ccd323_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_ea1e8819560d01b848bbc2b9b1ccd323 = L.geoJson(null, {
onEachFeature: geo_json_ea1e8819560d01b848bbc2b9b1ccd323_onEachFeature,
style: geo_json_ea1e8819560d01b848bbc2b9b1ccd323_styler,
...{
}
});
function geo_json_ea1e8819560d01b848bbc2b9b1ccd323_add (data) {
geo_json_ea1e8819560d01b848bbc2b9b1ccd323
.addData(data);
}
geo_json_ea1e8819560d01b848bbc2b9b1ccd323_add({"features": [{"geometry": {"coordinates": [[[-77.95073280596819, 35.25535395611853], [-77.90823032492897, 35.433142849982616], [-78.09555508937027, 35.462011080534594], [-78.13763856472778, 35.284159815038585], [-77.95073280596819, 35.25535395611853]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 1569, "DMS_Code_centroid": "780123W352131N", "Date of the Flood": "20161014", "Description": "FIM generated from Planet\u2019s Imagery of 2016 Hurricane Matthew with a spatial resolution of 10m.", "Extent": "{ \"xmin\": -78.101761307687099, \"ymin\": 35.277766833357035, \"xmax\": -77.944499684713904, \"ymax\": 35.439639058405923 }", "File_Name": "PSS_10_2m_20161014_780123W352131N_BM.tif", "Format": "GTiff", "Level": "Level_2", "Location of the centroid of the flood map": "(-78.02313049620051, 35.358702945881475)", "Projection": "EPSG:4326", "Resolution": 10.2, "River Name": "Neuse River", "Rows": 1615, "Source": "SDML Lab, The University of Alabama, Tuscaloosa, USA", "State": "North Carolina, USA"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_c342bf8d85beccb84f9da4604a6984b7 = L.popup({
"maxWidth": 400,
});
var html_ccd52d74c3583cb23c0cee04e8b41843 = $(`<div id="html_ccd52d74c3583cb23c0cee04e8b41843" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>File_Name</th><td>PSS_10_2m_20161014_780123W352131N_BM.tif</td></tr><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Resolution</th><td>10.2</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -78.101761307687099, "ymin": 35.277766833357035, "xmax": -77.944499684713904, "ymax": 35.439639058405923 }</td></tr><tr><th style='text-align:left'>DMS_Code_centroid</th><td>780123W352131N</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>1615</td></tr><tr><th style='text-align:left'>Columns</th><td>1569</td></tr><tr><th style='text-align:left'>State</th><td>North Carolina, USA</td></tr><tr><th style='text-align:left'>Description</th><td>FIM generated from Planet’s Imagery of 2016 Hurricane Matthew with a spatial resolution of 10m.</td></tr><tr><th style='text-align:left'>River Name</th><td>Neuse River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, The University of Alabama, Tuscaloosa, USA</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-78.02313049620051, 35.358702945881475)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>20161014</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_2</td></tr><tr><td colspan='2'><a href='https://sdmlab.s3.amazonaws.com/FIM_Database/Level_2/20161014_780123W352131N/PSS_10_2m_20161014_780123W352131N_BM.tif' target='_blank' download>⬇ Download TIFF</a></td></tr></table></div>`)[0];
popup_c342bf8d85beccb84f9da4604a6984b7.setContent(html_ccd52d74c3583cb23c0cee04e8b41843);
geo_json_ea1e8819560d01b848bbc2b9b1ccd323.bindPopup(popup_c342bf8d85beccb84f9da4604a6984b7)
;
geo_json_ea1e8819560d01b848bbc2b9b1ccd323.addTo(feature_group_806eb0b86a279319ecff59d01926d812);
feature_group_806eb0b86a279319ecff59d01926d812.addTo(map_c69521d648f68f400364bbd167bdbfd6);
var feature_group_a1a0174e1a387d48095e8856e711de3c = L.featureGroup(
{
}
);
function geo_json_293d79323262d693fa4fea6596083bd6_styler(feature) {
switch(feature.properties.File_Name) {
default:
return {"color": "#6a51a3", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_293d79323262d693fa4fea6596083bd6_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_293d79323262d693fa4fea6596083bd6 = L.geoJson(null, {
onEachFeature: geo_json_293d79323262d693fa4fea6596083bd6_onEachFeature,
style: geo_json_293d79323262d693fa4fea6596083bd6_styler,
...{
}
});
function geo_json_293d79323262d693fa4fea6596083bd6_add (data) {
geo_json_293d79323262d693fa4fea6596083bd6
.addData(data);
}
geo_json_293d79323262d693fa4fea6596083bd6_add({"features": [{"geometry": {"coordinates": [[[-95.26461314894892, 30.828012332617956], [-95.26017978832722, 31.316544894521243], [-95.7936589362061, 31.31880836758613], [-95.79489547734443, 30.830264432993538], [-95.26461314894892, 30.828012332617956]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 5714, "DMS_Code_centroid": "953144W310424N", "Date of the Flood": "20190527T00265", "Description": "FIM generated from Sentinel-1 flood map.", "Extent": "{ \"xmin\": -95.793664628037178, \"ymin\": 30.830277777158123, \"xmax\": -95.264590553393944, \"ymax\": 31.316574073977559 }", "File_Name": "S1A_9_5m_20190527T00265_953144W310424N_BM.tif", "Format": "GTiff", "Level": "Level_3", "Location of the centroid of the flood map": "(-95.52912759071556, 31.07342592556784)", "Projection": "EPSG:4326", "Resolution": 9.5, "River Name": "Trinity River", "Rows": 5252, "Source": "SDML Lab, University of Alabama", "State": "Texas, USA"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_a10281fe9e851474a4be3de2bdbe11ef = L.popup({
"maxWidth": 400,
});
var html_0f8b4b26a82a634ea663f1f52bebf5f0 = $(`<div id="html_0f8b4b26a82a634ea663f1f52bebf5f0" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>File_Name</th><td>S1A_9_5m_20190527T00265_953144W310424N_BM.tif</td></tr><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Resolution</th><td>9.5</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -95.793664628037178, "ymin": 30.830277777158123, "xmax": -95.264590553393944, "ymax": 31.316574073977559 }</td></tr><tr><th style='text-align:left'>DMS_Code_centroid</th><td>953144W310424N</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>5252</td></tr><tr><th style='text-align:left'>Columns</th><td>5714</td></tr><tr><th style='text-align:left'>State</th><td>Texas, USA</td></tr><tr><th style='text-align:left'>Description</th><td>FIM generated from Sentinel-1 flood map.</td></tr><tr><th style='text-align:left'>River Name</th><td>Trinity River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-95.52912759071556, 31.07342592556784)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>20190527T00265</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_3</td></tr><tr><td colspan='2'><a href='https://sdmlab.s3.amazonaws.com/FIM_Database/Level_3/20190527T00265_953144W310424N/S1A_9_5m_20190527T00265_953144W310424N_BM.tif' target='_blank' download>⬇ Download TIFF</a></td></tr></table></div>`)[0];
popup_a10281fe9e851474a4be3de2bdbe11ef.setContent(html_0f8b4b26a82a634ea663f1f52bebf5f0);
geo_json_293d79323262d693fa4fea6596083bd6.bindPopup(popup_a10281fe9e851474a4be3de2bdbe11ef)
;
geo_json_293d79323262d693fa4fea6596083bd6.addTo(feature_group_a1a0174e1a387d48095e8856e711de3c);
function geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82_styler(feature) {
switch(feature.properties.File_Name) {
default:
return {"color": "#6a51a3", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82 = L.geoJson(null, {
onEachFeature: geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82_onEachFeature,
style: geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82_styler,
...{
}
});
function geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82_add (data) {
geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82
.addData(data);
}
geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82_add({"features": [{"geometry": {"coordinates": [[[-96.5073055802748, 29.729030222705813], [-96.51033508703517, 30.22064405118357], [-97.1181690078283, 30.216134769783412], [-97.11153169180409, 29.72454275248974], [-96.5073055802748, 29.729030222705813]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 6494, "DMS_Code_centroid": "964839W295821N", "Date of the Flood": "20170829T00264", "Description": "FIM generated from Sentinel-1 flood map", "Extent": "{ \"xmin\": -97.111591206643197, \"ymin\": 29.728979245219591, \"xmax\": -96.51029476170855, \"ymax\": 30.21620158788145 }", "File_Name": "S1A_9_5m_20170829T00264_964839W295821N_BM.tif", "Format": "GTiff", "Level": "Level_3", "Location of the centroid of the flood map": "(-96.81094298417588, 29.97259041655052)", "Projection": "EPSG:4326", "Resolution": 9.5, "River Name": "Colorado River", "Rows": 5262, "Source": "SDML Lab, University of Alabama", "State": "Texas, USA"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_ec68a0dc12f0575c4049b6e7881dc436 = L.popup({
"maxWidth": 400,
});
var html_5a508c5e6b0a2fdbe7d3b1c30aa5e15d = $(`<div id="html_5a508c5e6b0a2fdbe7d3b1c30aa5e15d" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>File_Name</th><td>S1A_9_5m_20170829T00264_964839W295821N_BM.tif</td></tr><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Resolution</th><td>9.5</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -97.111591206643197, "ymin": 29.728979245219591, "xmax": -96.51029476170855, "ymax": 30.21620158788145 }</td></tr><tr><th style='text-align:left'>DMS_Code_centroid</th><td>964839W295821N</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>5262</td></tr><tr><th style='text-align:left'>Columns</th><td>6494</td></tr><tr><th style='text-align:left'>State</th><td>Texas, USA</td></tr><tr><th style='text-align:left'>Description</th><td>FIM generated from Sentinel-1 flood map</td></tr><tr><th style='text-align:left'>River Name</th><td>Colorado River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-96.81094298417588, 29.97259041655052)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>20170829T00264</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_3</td></tr><tr><td colspan='2'><a href='https://sdmlab.s3.amazonaws.com/FIM_Database/Level_3/20170829T00264_964839W295821N/S1A_9_5m_20170829T00264_964839W295821N_BM.tif' target='_blank' download>⬇ Download TIFF</a></td></tr></table></div>`)[0];
popup_ec68a0dc12f0575c4049b6e7881dc436.setContent(html_5a508c5e6b0a2fdbe7d3b1c30aa5e15d);
geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82.bindPopup(popup_ec68a0dc12f0575c4049b6e7881dc436)
;
geo_json_69ec8d66a0b9a8cfec53cf7dd84fbf82.addTo(feature_group_a1a0174e1a387d48095e8856e711de3c);
function geo_json_845782c6af47052881ecaf252299f665_styler(feature) {
switch(feature.properties.File_Name) {
default:
return {"color": "#6a51a3", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_845782c6af47052881ecaf252299f665_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_845782c6af47052881ecaf252299f665 = L.geoJson(null, {
onEachFeature: geo_json_845782c6af47052881ecaf252299f665_onEachFeature,
style: geo_json_845782c6af47052881ecaf252299f665_styler,
...{
}
});
function geo_json_845782c6af47052881ecaf252299f665_add (data) {
geo_json_845782c6af47052881ecaf252299f665
.addData(data);
}
geo_json_845782c6af47052881ecaf252299f665_add({"features": [{"geometry": {"coordinates": [[[-94.11815053664043, 40.12555278163748], [-94.11027315828657, 40.42422320312933], [-94.64462988016099, 40.43107480994946], [-94.65028049659773, 40.13237465850468], [-94.11815053664043, 40.12555278163748]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 5689, "DMS_Code_centroid": "942252W401641N", "Date of the Flood": "20190529T00130", "Description": "FIM generated from Sentinel-1 flood map.", "Extent": "{ \"xmin\": -94.644757826683644, \"ymin\": 40.132301306403633, \"xmax\": -94.117998566857707, \"ymax\": 40.42433834375484 }", "File_Name": "S1A_8_5m_20190529T00130_942252W401641N_BM.tif", "Format": "GTiff", "Level": "Level_3", "Location of the centroid of the flood map": "(-94.38137819677067, 40.27831982507924)", "Projection": "EPSG:4326", "Resolution": 8.5, "River Name": "Grand River", "Rows": 3154, "Source": "SDML Lab, University of Alabama", "State": "Missouri, USA"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_15a12a429795e66711c8307e402580a9 = L.popup({
"maxWidth": 400,
});
var html_9feee231ee13a04d6e61a9a1adc3c6bc = $(`<div id="html_9feee231ee13a04d6e61a9a1adc3c6bc" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>File_Name</th><td>S1A_8_5m_20190529T00130_942252W401641N_BM.tif</td></tr><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Resolution</th><td>8.5</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -94.644757826683644, "ymin": 40.132301306403633, "xmax": -94.117998566857707, "ymax": 40.42433834375484 }</td></tr><tr><th style='text-align:left'>DMS_Code_centroid</th><td>942252W401641N</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>3154</td></tr><tr><th style='text-align:left'>Columns</th><td>5689</td></tr><tr><th style='text-align:left'>State</th><td>Missouri, USA</td></tr><tr><th style='text-align:left'>Description</th><td>FIM generated from Sentinel-1 flood map.</td></tr><tr><th style='text-align:left'>River Name</th><td>Grand River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, University of Alabama</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-94.38137819677067, 40.27831982507924)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>20190529T00130</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_3</td></tr><tr><td colspan='2'><a href='https://sdmlab.s3.amazonaws.com/FIM_Database/Level_3/20190529T00130_942252W401641N/S1A_8_5m_20190529T00130_942252W401641N_BM.tif' target='_blank' download>⬇ Download TIFF</a></td></tr></table></div>`)[0];
popup_15a12a429795e66711c8307e402580a9.setContent(html_9feee231ee13a04d6e61a9a1adc3c6bc);
geo_json_845782c6af47052881ecaf252299f665.bindPopup(popup_15a12a429795e66711c8307e402580a9)
;
geo_json_845782c6af47052881ecaf252299f665.addTo(feature_group_a1a0174e1a387d48095e8856e711de3c);
feature_group_a1a0174e1a387d48095e8856e711de3c.addTo(map_c69521d648f68f400364bbd167bdbfd6);
var feature_group_d75611b8d906de17fdb6312d3ccb4a50 = L.featureGroup(
{
}
);
function geo_json_ead09e9c223bd247440ee09d503ef71b_styler(feature) {
switch(feature.properties.File_Name) {
default:
return {"color": "#08306b", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_ead09e9c223bd247440ee09d503ef71b_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_ead09e9c223bd247440ee09d503ef71b = L.geoJson(null, {
onEachFeature: geo_json_ead09e9c223bd247440ee09d503ef71b_onEachFeature,
style: geo_json_ead09e9c223bd247440ee09d503ef71b_styler,
...{
}
});
function geo_json_ead09e9c223bd247440ee09d503ef71b_add (data) {
geo_json_ead09e9c223bd247440ee09d503ef71b
.addData(data);
}
geo_json_ead09e9c223bd247440ee09d503ef71b_add({"features": [{"geometry": {"coordinates": [[[-91.65093074788564, 34.13142875357467], [-91.63025328047438, 34.4993651748844], [-92.17419112515978, 34.51848318777316], [-92.19230061937668, 34.15046464148919], [-91.65093074788564, 34.13142875357467]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 116940, "DMS_Code_centroid": "915444W341929N", "Date of the Flood": "20160103", "Description": "FIM generated from NOAA Emergency Response Aerial Imagery with a spatial resolution of 0.4m.", "Extent": "{ \"xmin\": -92.1751, \"ymin\": 34.149898680000007, \"xmax\": -91.649899071999997, \"ymax\": 34.50010000000001 }", "File_Name": "AI_0_4m_20160103_915444W341929N_BM.tif", "Format": "GTiff", "Level": "Level_1", "Location of the centroid of the flood map": "(-91.912499536, 34.324999340000005)", "Projection": "EPSG:4326", "Resolution": 0.4, "River Name": "Arkansas River", "Rows": 77975, "Source": "SDML Lab, The University of Alabama, Tuscaloosa, USA", "State": "Arkansas,USA"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_dd0bd19787957e70643bf5b95c157964 = L.popup({
"maxWidth": 400,
});
var html_a861ecb01296dda4abf549eeb3535e1e = $(`<div id="html_a861ecb01296dda4abf549eeb3535e1e" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>File_Name</th><td>AI_0_4m_20160103_915444W341929N_BM.tif</td></tr><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Resolution</th><td>0.4</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -92.1751, "ymin": 34.149898680000007, "xmax": -91.649899071999997, "ymax": 34.50010000000001 }</td></tr><tr><th style='text-align:left'>DMS_Code_centroid</th><td>915444W341929N</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>77975</td></tr><tr><th style='text-align:left'>Columns</th><td>116940</td></tr><tr><th style='text-align:left'>State</th><td>Arkansas,USA</td></tr><tr><th style='text-align:left'>Description</th><td>FIM generated from NOAA Emergency Response Aerial Imagery with a spatial resolution of 0.4m.</td></tr><tr><th style='text-align:left'>River Name</th><td>Arkansas River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, The University of Alabama, Tuscaloosa, USA</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-91.912499536, 34.324999340000005)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>20160103</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_1</td></tr><tr><td colspan='2'><a href='https://sdmlab.s3.amazonaws.com/FIM_Database/Level_1/20160103_915444W341929N/AI_0_4m_20160103_915444W341929N_BM.tif' target='_blank' download>⬇ Download TIFF</a></td></tr></table></div>`)[0];
popup_dd0bd19787957e70643bf5b95c157964.setContent(html_a861ecb01296dda4abf549eeb3535e1e);
geo_json_ead09e9c223bd247440ee09d503ef71b.bindPopup(popup_dd0bd19787957e70643bf5b95c157964)
;
geo_json_ead09e9c223bd247440ee09d503ef71b.addTo(feature_group_d75611b8d906de17fdb6312d3ccb4a50);
function geo_json_ce33eecd8f40309adf542e8791d09c71_styler(feature) {
switch(feature.properties.File_Name) {
default:
return {"color": "#08306b", "fillOpacity": 0.5, "weight": 1.5};
}
}
function geo_json_ce33eecd8f40309adf542e8791d09c71_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_ce33eecd8f40309adf542e8791d09c71 = L.geoJson(null, {
onEachFeature: geo_json_ce33eecd8f40309adf542e8791d09c71_onEachFeature,
style: geo_json_ce33eecd8f40309adf542e8791d09c71_styler,
...{
}
});
function geo_json_ce33eecd8f40309adf542e8791d09c71_add (data) {
geo_json_ce33eecd8f40309adf542e8791d09c71
.addData(data);
}
geo_json_ce33eecd8f40309adf542e8791d09c71_add({"features": [{"geometry": {"coordinates": [[[-90.12930281393459, 39.69341738649147], [-90.08794142384487, 40.19704133157932], [-90.67018048969209, 40.22300735847905], [-90.70748632223786, 39.719195842740056], [-90.12930281393459, 39.69341738649147]]], "type": "Polygon"}, "properties": {"Access_Rights": "Public", "Bands": 1, "Columns": 121272, "DMS_Code_centroid": "902358W395729N", "Date of the Flood": "20160104", "Description": "FIM generated from NOAA Emergency Response Imagery of 2016 Midwest Flood with a spatial resolution of 0.4m.", "Extent": "{ \"xmin\": -90.671978616000004, \"ymin\": 39.717691225599999, \"xmax\": -90.127321809600005, \"ymax\": 40.1988828848 }", "File_Name": "AI_0_4m_20160104_902358W395729N_BM.tif", "Format": "GTiff", "Level": "Level_1", "Location of the centroid of the flood map": "(-90.3996502128, 39.9582870552)", "Projection": "EPSG:4326", "Resolution": 0.4, "River Name": "Illinois River", "Rows": 107141, "Source": "SDML Lab, The University of Alabama, Tuscaloosa, USA", "State": "Illinois,USA"}, "type": "Feature"}], "type": "FeatureCollection"});
var popup_6355f1a2145d1ae2dd52995bd218450a = L.popup({
"maxWidth": 400,
});
var html_ef2b36d0445cf6391efa983d3a90c56d = $(`<div id="html_ef2b36d0445cf6391efa983d3a90c56d" style="width: 100.0%; height: 100.0%;"><table style='width:100%; font-size:12px;'><tr><th style='text-align:left'>File_Name</th><td>AI_0_4m_20160104_902358W395729N_BM.tif</td></tr><tr><th style='text-align:left'>Format</th><td>GTiff</td></tr><tr><th style='text-align:left'>Resolution</th><td>0.4</td></tr><tr><th style='text-align:left'>Extent</th><td>{ "xmin": -90.671978616000004, "ymin": 39.717691225599999, "xmax": -90.127321809600005, "ymax": 40.1988828848 }</td></tr><tr><th style='text-align:left'>DMS_Code_centroid</th><td>902358W395729N</td></tr><tr><th style='text-align:left'>Projection</th><td>EPSG:4326</td></tr><tr><th style='text-align:left'>Bands</th><td>1</td></tr><tr><th style='text-align:left'>Rows</th><td>107141</td></tr><tr><th style='text-align:left'>Columns</th><td>121272</td></tr><tr><th style='text-align:left'>State</th><td>Illinois,USA</td></tr><tr><th style='text-align:left'>Description</th><td>FIM generated from NOAA Emergency Response Imagery of 2016 Midwest Flood with a spatial resolution of 0.4m.</td></tr><tr><th style='text-align:left'>River Name</th><td>Illinois River</td></tr><tr><th style='text-align:left'>Source</th><td>SDML Lab, The University of Alabama, Tuscaloosa, USA</td></tr><tr><th style='text-align:left'>Location of the centroid of the flood map</th><td>(-90.3996502128, 39.9582870552)</td></tr><tr><th style='text-align:left'>Date of the Flood</th><td>20160104</td></tr><tr><th style='text-align:left'>Access_Rights</th><td>Public</td></tr><tr><th style='text-align:left'>Level</th><td>Level_1</td></tr><tr><td colspan='2'><a href='https://sdmlab.s3.amazonaws.com/FIM_Database/Level_1/20160104_902358W395729N/AI_0_4m_20160104_902358W395729N_BM.tif' target='_blank' download>⬇ Download TIFF</a></td></tr></table></div>`)[0];
popup_6355f1a2145d1ae2dd52995bd218450a.setContent(html_ef2b36d0445cf6391efa983d3a90c56d);