-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracing.html
More file actions
909 lines (738 loc) · 531 KB
/
tracing.html
File metadata and controls
909 lines (738 loc) · 531 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
<!DOCTYPE html>
<html>
<head>
<title>SAWGraph - Contaminant Tracing</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<!--Leaflet dependencies-->
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<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"/>
<!--Map Frames styles-->
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=yes" />
<style>
#map_246537f924c98c05df96a0a8a5dd041b {
position: relative;
width: 100.0%;
height: 700px;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>
#map_7ad00ba2c79f3d2e9c35b6fc0989a018 {
position: relative;
width: 100.0%;
height: 700px;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>
.foliumtooltip {
margin: auto;
}
.foliumtooltip table{
margin: auto;
}
.foliumtooltip tr{
text-align: left;
}
.foliumtooltip th{
padding: 2px; padding-right: 8px;
}
</style>
<style>
.foliumpopup {
margin: auto;
}
.foliumpopup table{
margin: auto;
}
.foliumpopup tr{
text-align: left;
}
.foliumpopup th{
padding: 2px; padding-right: 8px;
}
</style>
</head>
<body style="font-family:Verdana, sans-serif;
font-size: 15px;">
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<script src="menu.js"></script>
</div>
</div>
<!-- Header -->
<header class="w3-display-container w3-content w3-wide" style="max-width:1500px;" id="home">
</header>
<!-- Page content -->
<div class="w3-content w3-padding-32" style="max-width:1564px">
<!-- Intro Section -->
<div class="w3-container w3-padding-32 w3-margin-right" id="intro">
<h1 class="w3-xlarge w3-text-black">Tracing: PFAS Downstream of Facilities</h1>
<p>Given a known source of PFAS release or a suspected source based on the facility type, SAWGraph can leverage hydrological features to trace downstream of the contamination.
This use case is particularly relevant for surface water contamination, as PFAS can be transported downstream from industrial facilities via rivers and streams. Visualizing the downstream test results can indicate the extent of the water contamination and also the varying impact on different aquatic species.
By tracing downstream of suspected sources, SAWGraph can help identify areas that may be at risk of contamination and prioritize testing and remediation efforts.</p>
<!-- <div>
<div class="w3-twothird w3-padding-32 w3-large w3-margin-right w3-large">
<p>The third Use Case for SAWGraph aims to support more advanced research questions for PFAS researchers.
It involves connecting observations to known or suspected sources and answering questions like:</p>
<ul>
<li>Where does PFAS in a particular region originate from?</li>
<li>What specific features or types of facilities seem to contribute the most?</li>
<li>What may be the source of the PFAS in this drinking water district? </li>
<li>What potential sources are upstream (surface or subsurface water) from a public
beach?</li>
</ul>
<p>This use case will receive a stronger focus in Year 3 of the Proto-OKN project, however SAWGraph already supports some basic queries that would apply to this use case as demonstrated below. </p>
</div> -->
<!-- Right Card -->
<!-- <div class="w3-container w3-rest w3-card w3-padding-32 w3-pale-green w3-margin-left">
<h3>User Persona - Geeky Georgia</h3>
<p>PFAS Reasearcher from EPA, state agency or academia</p>
<h4>Goals</h4>
<ul><li>Propose and conduct research studies to better understand PFAS sources, accumulation and transport pathways</li>
</ul>
<h4>Responsibilities</h4>
<ul>
<li>Identify gaps in knowledge on PFAS contamination and transport</li>
<li>Develop testable hypothesis</li>
<li>Conduct novel research</li>
</ul>
</div>
</div>
</div> -->
<div>
<!-- Use Case 1-->
<h2 class="w3-border-bottom w3-border-light-grey w3-padding-16">What are the downstream fish tissue and surface water results below Converted Paper Manufacturing Facilities in Maine? </h2>
<!--Left Map-->
<div class="w3-row-padding w3-large">
<div class="folium-map" id="map_246537f924c98c05df96a0a8a5dd041b" style="z-index:0"></div>
<div class="w3-container w3-padding-32">
<p>This example traces downstream of Converted Paper Manufacturing Facilities, to examine the pattern in downstream samples of fish and water.</p>
<div class="w3-container">
<p>This query begins by locating all Converted Paper Manufacturing Facilities from the FIO graph based on the NAICS code (naics:NAICS-IndustryGroup-3222). </p>
<p>Next it gets hyf:HY_FlowPath (stream reaches) that are in the same S2 Cell as the Facilities using the Hydrology graph. From the stream reaches, it finds connected downstream reaches by following the hyf:downstreamWaterbody links in the Hydrology graph</p>
<p> The last step is to find samples that are in the same S2 Cells as the downstream reaches, and get all the sample properties including the test results for each chemical for the sample types of interest.</p>
<p> In Maine only one of the river systems that is downstream from Converted Paper Manufacturing Facilities has had repeated testing of surface water and fish tissue samples. The Kennebec River does demonstrate high PFAS levels that diminish as you move downstream, however it is worth noting that Converted Paper Manufacturing is only one of the sources of PFAS that have contributed to this river system. Nevertheless this type of query demonstrates how researchers could test new hypotheses based on suspected sources of PFAS contamination, and existing test results.</p>
<p>A further demonstration and code for this query is available <a href="https://github.com/SAWGraph/public/blob/main/UseCases/UC3-Tracing/UC3-CQ15/SAWGRAPH_demo_UC3_Q15.ipynb">here</a></p>
</div>
</div></div>
</div></div>
</div>
</div>
</body>
<!--Leaflet scripts-->
<script>
var map_246537f924c98c05df96a0a8a5dd041b = L.map(
"map_246537f924c98c05df96a0a8a5dd041b",
{
center: [45.084205499999996, -69.2668435],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
L.control.scale().addTo(map_246537f924c98c05df96a0a8a5dd041b);
var tile_layer_e8c0bbfb13d3433fc3bc13080cd33fea = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_e8c0bbfb13d3433fc3bc13080cd33fea.addTo(map_246537f924c98c05df96a0a8a5dd041b);
map_246537f924c98c05df96a0a8a5dd041b.fitBounds(
[[43.46834, -70.49212], [46.700071, -68.041567]],
{}
);
function geo_json_077d8ec858699aa1b26f20b06e1ba23c_styler(feature) {
switch(feature.id) {
default:
return {"color": "red", "fillColor": "red", "fillOpacity": 0.5, "weight": 3};
}
}
function geo_json_077d8ec858699aa1b26f20b06e1ba23c_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_077d8ec858699aa1b26f20b06e1ba23c_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3};
let style = geo_json_077d8ec858699aa1b26f20b06e1ba23c_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_077d8ec858699aa1b26f20b06e1ba23c_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_077d8ec858699aa1b26f20b06e1ba23c.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_077d8ec858699aa1b26f20b06e1ba23c_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_077d8ec858699aa1b26f20b06e1ba23c = L.geoJson(null, {
onEachFeature: geo_json_077d8ec858699aa1b26f20b06e1ba23c_onEachFeature,
style: geo_json_077d8ec858699aa1b26f20b06e1ba23c_styler,
pointToLayer: geo_json_077d8ec858699aa1b26f20b06e1ba23c_pointToLayer,
});
function geo_json_077d8ec858699aa1b26f20b06e1ba23c_add (data) {
geo_json_077d8ec858699aa1b26f20b06e1ba23c
.addData(data);
}
geo_json_077d8ec858699aa1b26f20b06e1ba23c_add({"bbox": [-70.49212, 43.46834, -68.041567, 46.700071], "features": [{"bbox": [-70.35708, 43.67662, -70.35708, 43.67662], "geometry": {"coordinates": [-70.35708, 43.67662], "type": "Point"}, "id": "0", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110003553743", "faclabel": "SOUTHERN CONTAINER CORP.", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322211]", "industryLabels": "Corrugated and Solid Fiber Box Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.26326, 44.0383, -70.26326, 44.0383], "geometry": {"coordinates": [-70.26326, 44.0383], "type": "Point"}, "id": "1", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110003555402", "faclabel": "INTERNATIONAL PAPER CONTAINER FACILITY", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322211]", "industryLabels": "Corrugated and Solid Fiber Box Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526595055558590464"}, "type": "Feature"}, {"bbox": [-70.35584, 43.57448, -70.35584, 43.57448], "geometry": {"coordinates": [-70.35584, 43.57448], "type": "Point"}, "id": "2", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110003557179", "faclabel": "R T S PACKAGING LLC", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322211; http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322212]", "industryLabels": "Corrugated and Solid Fiber Box Manufacturing ; Folding Paperboard Box Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-68.59575, 45.21394, -68.59575, 45.21394], "geometry": {"coordinates": [-68.59575, 45.21394], "type": "Point"}, "id": "3", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039664645", "faclabel": "INTERNATIONAL PAPER COMPANY-PASSADUMKEAG", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322211]", "industryLabels": "Corrugated and Solid Fiber Box Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525895869242540032"}, "type": "Feature"}, {"bbox": [-70.49212, 43.46834, -70.49212, 43.46834], "geometry": {"coordinates": [-70.49212, 43.46834], "type": "Point"}, "id": "4", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110058221721", "faclabel": "VOLK PACKAGING CORP", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322211]", "industryLabels": "Corrugated and Solid Fiber Box Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661576012070912"}, "type": "Feature"}, {"bbox": [-70.26342, 44.03363, -70.26342, 44.03363], "geometry": {"coordinates": [-70.26342, 44.03363], "type": "Point"}, "id": "5", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110066957519", "faclabel": "INTERNATIONAL PAPER AUBURN CONTAINER", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322211]", "industryLabels": "Corrugated and Solid Fiber Box Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594677601468416"}, "type": "Feature"}, {"bbox": [-68.041567, 46.700071, -68.041567, 46.700071], "geometry": {"coordinates": [-68.041567, 46.700071], "type": "Point"}, "id": "6", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110037396332", "faclabel": "NORTHEAST PACKAGING CO", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-32222]", "industryLabels": "Paper Bag and Coated and Treated Paper Manufacturing", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529487561413623808"}, "type": "Feature"}, {"bbox": [-70.283247, 44.037875, -70.283247, 44.037875], "geometry": {"coordinates": [-70.283247, 44.037875], "type": "Point"}, "id": "7", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110000865724", "faclabel": "TAMBRANDS INC", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322291]", "industryLabels": "Sanitary Paper Product Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594471443038208"}, "type": "Feature"}, {"bbox": [-69.6098, 44.57774, -69.6098, 44.57774], "geometry": {"coordinates": [-69.6098, 44.57774], "type": "Point"}, "id": "8", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110000865751", "faclabel": "HUHTAMAKI FOOD SERVICES", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322299]", "industryLabels": "All Other Converted Paper Product Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448923591311360"}, "type": "Feature"}, {"bbox": [-70.30185, 43.59737, -70.30185, 43.59737], "geometry": {"coordinates": [-70.30185, 43.59737], "type": "Point"}, "id": "9", "properties": {"__folium_color": "red", "facility": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110070312712", "faclabel": "NEPW LOGISTICS, INC.", "industries": "[http://sawgraph.spatialai.org/v1/fio/naics#NAICS-IndustryCode-322299]", "industryLabels": "All Other Converted Paper Product Manufacturing ", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654772783874048"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_077d8ec858699aa1b26f20b06e1ba23c.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["facility", "faclabel", "industries", "industryLabels", "s2"];
let aliases = ["facility", "faclabel", "industries", "industryLabels", "s2"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_077d8ec858699aa1b26f20b06e1ba23c.addTo(map_246537f924c98c05df96a0a8a5dd041b);
function geo_json_f6b8711ecc192a8102d98d8fe915093b_styler(feature) {
switch(feature.id) {
default:
return {"color": "DarkBlue", "fillColor": "DarkBlue", "fillOpacity": 0.5, "weight": 3};
}
}
function geo_json_f6b8711ecc192a8102d98d8fe915093b_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_f6b8711ecc192a8102d98d8fe915093b_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_f6b8711ecc192a8102d98d8fe915093b_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_f6b8711ecc192a8102d98d8fe915093b_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_f6b8711ecc192a8102d98d8fe915093b.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_f6b8711ecc192a8102d98d8fe915093b_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_f6b8711ecc192a8102d98d8fe915093b = L.geoJson(null, {
onEachFeature: geo_json_f6b8711ecc192a8102d98d8fe915093b_onEachFeature,
style: geo_json_f6b8711ecc192a8102d98d8fe915093b_styler,
pointToLayer: geo_json_f6b8711ecc192a8102d98d8fe915093b_pointToLayer,
});
function geo_json_f6b8711ecc192a8102d98d8fe915093b_add (data) {
geo_json_f6b8711ecc192a8102d98d8fe915093b
.addData(data);
}
geo_json_f6b8711ecc192a8102d98d8fe915093b_add({"bbox": [-70.5013506010078, 43.45213533255361, -69.61239660238766, 44.60967713075689], "features": [{"bbox": [-70.36252286789, 43.682568598862645, -70.35524546790128, 43.691715998848395], "geometry": {"coordinates": [[-70.36252286789, 43.691715998848395, 0.0], [-70.36242846789014, 43.69144153218218, 0.0], [-70.36239720122353, 43.68977233218476, 0.0], [-70.36249166789003, 43.689612132185005, 0.0], [-70.36236566789023, 43.68881179885295, 0.0], [-70.36198766789079, 43.68828593218706, 0.0], [-70.36044360122656, 43.68762273218812, 0.0], [-70.35899440122881, 43.686570598856406, 0.0], [-70.35877380122912, 43.68620473219033, 0.0], [-70.3565054678993, 43.68444393219306, 0.0], [-70.35606446790001, 43.683826398860674, 0.0], [-70.35556060123412, 43.68277453219565, 0.0], [-70.35524546790128, 43.682568598862645, 0.0]], "type": "LineString"}, "id": "0", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/6721463", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.35524546790128, 43.682381798862934, -70.3547300679021, 43.682568598862645], "geometry": {"coordinates": [[-70.35524546790128, 43.682568598862645, 0.0], [-70.3547300679021, 43.682381798862934, 0.0]], "type": "LineString"}, "id": "1", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/6722645", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.3518580679065, 43.68260813219587, -70.35039226790883, 43.68522059885851], "geometry": {"coordinates": [[-70.3518580679065, 43.68260813219587, 0.0], [-70.35185000123988, 43.682608932195876, 0.0], [-70.35039226790883, 43.68522059885851, 0.0]], "type": "LineString"}, "id": "2", "properties": {"__folium_color": "DarkBlue", "name": "Presumpscot River", "reach": "https://geoconnex.us/nhdplusv2/comid/6722643", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.3547300679021, 43.682381798862934, -70.3518580679065, 43.68274533219568], "geometry": {"coordinates": [[-70.3547300679021, 43.682381798862934, 0.0], [-70.35390400123669, 43.68274533219568, 0.0], [-70.35241646790564, 43.68255139886264, 0.0], [-70.3518580679065, 43.68260813219587, 0.0]], "type": "LineString"}, "id": "3", "properties": {"__folium_color": "DarkBlue", "name": "Presumpscot River", "reach": "https://geoconnex.us/nhdplusv2/comid/6722641", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.37954646786358, 43.67767753220352, -70.3547300679021, 43.695952132175194], "geometry": {"coordinates": [[-70.37728700120039, 43.695952132175194, 0.0], [-70.37713900120065, 43.69562919884237, 0.0], [-70.37726120120044, 43.69531099884284, 0.0], [-70.37795866786604, 43.694911532176775, 0.0], [-70.37859286786505, 43.69449953217742, 0.0], [-70.3790726678643, 43.69395879884496, 0.0], [-70.37940426786378, 43.693095198846265, 0.0], [-70.37954646786358, 43.6921939988477, 0.0], [-70.37899366786439, 43.691154598849266, 0.0], [-70.37830126786548, 43.690478798850336, 0.0], [-70.3782340011989, 43.69012293218424, 0.0], [-70.37861806786498, 43.68912299885244, 0.0], [-70.37863786786494, 43.6885399321867, 0.0], [-70.37844686786525, 43.68762133218809, 0.0], [-70.37741286786684, 43.686241598856896, 0.0], [-70.37724320120049, 43.68562079885788, 0.0], [-70.3765426678682, 43.684258532193326, 0.0], [-70.37571740120285, 43.68375193219413, 0.0], [-70.37433026787164, 43.68293793219539, 0.0], [-70.37286246787392, 43.682156798863275, 0.0], [-70.37188526787543, 43.68098399886509, 0.0], [-70.37000220121172, 43.67933739886763, 0.0], [-70.36899006787996, 43.67825553220263, 0.0], [-70.36735460121582, 43.67773453220343, 0.0], [-70.36668800121686, 43.67769973220351, 0.0], [-70.36608466788442, 43.67767753220352, 0.0], [-70.36511306788594, 43.67772893220348, 0.0], [-70.36412806788746, 43.678168932202766, 0.0], [-70.36342400122192, 43.67876273220185, 0.0], [-70.36223220122378, 43.67921039886784, 0.0], [-70.36081180122596, 43.67936813220092, 0.0], [-70.35810800123016, 43.679857532200174, 0.0], [-70.35732586789806, 43.679946532200006, 0.0], [-70.3571122678984, 43.68014859886637, 0.0], [-70.35695500123194, 43.68055759886573, 0.0], [-70.35607206790002, 43.68126253219799, 0.0], [-70.3547300679021, 43.682381798862934, 0.0]], "type": "LineString"}, "id": "4", "properties": {"__folium_color": "DarkBlue", "name": "Presumpscot River", "reach": "https://geoconnex.us/nhdplusv2/comid/6722647", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.37647420120163, 43.58136033235303, -70.35470386790212, 43.601735598988114], "geometry": {"coordinates": [[-70.37647420120163, 43.60082099898949, 0.0], [-70.37449180120473, 43.60054659898992, 0.0], [-70.37395686787221, 43.600500932323314, 0.0], [-70.37301286787368, 43.60070679898968, 0.0], [-70.3719744678753, 43.60072959898963, 0.0], [-70.37165986787579, 43.60056973232321, 0.0], [-70.36939440121262, 43.60018093232384, 0.0], [-70.3690168012132, 43.60043239899011, 0.0], [-70.36823006788114, 43.60052379898997, 0.0], [-70.36769520121527, 43.60047813232336, 0.0], [-70.36687700121655, 43.60068393232308, 0.0], [-70.36502060121944, 43.600843798989445, 0.0], [-70.36461146788673, 43.60100379898921, 0.0], [-70.36373026788812, 43.601644198988254, 0.0], [-70.36319540122224, 43.601735598988114, 0.0], [-70.36278626788959, 43.601529798988395, 0.0], [-70.36278640122288, 43.601369732321984, 0.0], [-70.36209420122395, 43.60125533232218, 0.0], [-70.36061526789291, 43.600294732323675, 0.0], [-70.35992320122733, 43.59967719899129, 0.0], [-70.35853900122947, 43.599471332324924, 0.0], [-70.35812986789682, 43.599242598991964, 0.0], [-70.3578782678972, 43.598876732325834, 0.0], [-70.35712306789839, 43.59841933232656, 0.0], [-70.35690300123201, 43.59796193232728, 0.0], [-70.35668280123235, 43.59782459899418, 0.0], [-70.35599066790013, 43.59702419899537, 0.0], [-70.35570786790055, 43.59633813232978, 0.0], [-70.35548766790089, 43.596132332330114, 0.0], [-70.35548840123425, 43.593159732334755, 0.0], [-70.35536286790108, 43.59201633233653, 0.0], [-70.3551744012347, 43.591353199004175, 0.0], [-70.35492280123509, 43.59103293233801, 0.0], [-70.35489140123514, 43.590415532338966, 0.0], [-70.35508040123489, 43.58952373234035, 0.0], [-70.35495466790172, 43.58931793234069, 0.0], [-70.35498640123501, 43.58838039900883, 0.0], [-70.35470386790212, 43.586207999012174, 0.0], [-70.35520726790133, 43.58559059901313, 0.0], [-70.35558500123409, 43.585270599013654, 0.0], [-70.35571100123389, 43.58476753234777, 0.0], [-70.35561660123403, 43.5844931323482, 0.0], [-70.35549086790087, 43.58435593234839, 0.0], [-70.35549100123421, 43.58410433234877, 0.0], [-70.35593146790023, 43.58366993234944, 0.0], [-70.35593146790023, 43.58328119901671, 0.0], [-70.35546000123429, 43.58261793235107, 0.0], [-70.35536560123444, 43.58188619901887, 0.0], [-70.35517706790137, 43.58136033235303, 0.0]], "type": "LineString"}, "id": "5", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/6721687", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-70.3554808679009, 43.57344759903202, -70.35124786790749, 43.58136033235303], "geometry": {"coordinates": [[-70.35517706790137, 43.58136033235303, 0.0], [-70.35511306790147, 43.581208999019964, 0.0], [-70.3554808679009, 43.57987299902203, 0.0], [-70.35530226790121, 43.57892639902349, 0.0], [-70.35547720123424, 43.577529532358994, 0.0], [-70.35487040123519, 43.576757799026836, 0.0], [-70.35390986790333, 43.57643619902734, 0.0], [-70.3514966679071, 43.57354313236516, 0.0], [-70.35147600124043, 43.573521932365225, 0.0], [-70.35140766790721, 43.57347633236526, 0.0], [-70.35124786790749, 43.57344759903202, 0.0]], "type": "LineString"}, "id": "6", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/6722451", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-70.35206320123956, 43.57964473235569, -70.33446880126684, 43.60113719898902], "geometry": {"coordinates": [[-70.33446880126684, 43.59804833232715, 0.0], [-70.33497206793277, 43.598162798993656, 0.0], [-70.33528666793228, 43.59839159899326, 0.0], [-70.33538080126544, 43.598848998992594, 0.0], [-70.33582086793143, 43.599489532324924, 0.0], [-70.33632426793065, 43.599695532324574, 0.0], [-70.33726820126253, 43.59969573232456, 0.0], [-70.3376772012619, 43.599741532324515, 0.0], [-70.33792880126151, 43.599901598990925, 0.0], [-70.33799166792807, 43.60003879899074, 0.0], [-70.33786560126157, 43.60051899898997, 0.0], [-70.33805426792793, 43.60074779898963, 0.0], [-70.33921840125947, 43.60109113232244, 0.0], [-70.34022520125791, 43.60113719898902, 0.0], [-70.34085460125692, 43.6009543989893, 0.0], [-70.3417672679222, 43.60090893232268, 0.0], [-70.34324626791988, 43.600566198989895, 0.0], [-70.34384440125228, 43.60013199899055, 0.0], [-70.34450520125125, 43.600040532324044, 0.0], [-70.34504026791711, 43.59962913232471, 0.0], [-70.34560666791623, 43.59935479899178, 0.0], [-70.34601586791558, 43.598943332325746, 0.0], [-70.34601620124891, 43.5981885989936, 0.0], [-70.34651966791483, 43.598005932327226, 0.0], [-70.34670860124788, 43.59773139899431, 0.0], [-70.34664586791462, 43.59718279899516, 0.0], [-70.34683480124767, 43.59695413232885, 0.0], [-70.34686646791425, 43.59661113232937, 0.0], [-70.3466462679146, 43.59638239899641, 0.0], [-70.34655200124809, 43.59619953232999, 0.0], [-70.3482834012454, 43.593707332333906, 0.0], [-70.34822060124549, 43.59329559900118, 0.0], [-70.34809486791238, 43.59308979900152, 0.0], [-70.34815780124563, 43.5928839990018, 0.0], [-70.34859846791159, 43.59242679900251, 0.0], [-70.34903920124424, 43.59206099900308, 0.0], [-70.34963700124331, 43.59194679900327, 0.0], [-70.34992020124287, 43.59180959900351, 0.0], [-70.35010900124257, 43.591489532337334, 0.0], [-70.35001486790941, 43.59087213233829, 0.0], [-70.35039246790882, 43.59055199900547, 0.0], [-70.3503926679088, 43.59009473233948, 0.0], [-70.35061300124181, 43.58998039900632, 0.0], [-70.35064460124175, 43.58961453234025, 0.0], [-70.35045586790869, 43.58943153234054, 0.0], [-70.34976380124311, 43.589271332340786, 0.0], [-70.34944926791024, 43.58901973234117, 0.0], [-70.34944940124359, 43.58865393234174, 0.0], [-70.34966966790995, 43.58840239900877, 0.0], [-70.34948126791022, 43.587510532343515, 0.0], [-70.34963866790997, 43.58691613234441, 0.0], [-70.3493872012437, 43.586618799011546, 0.0], [-70.34985920124296, 43.58627579901207, 0.0], [-70.34976520124309, 43.58538399901346, 0.0], [-70.3502374012424, 43.584675199014555, 0.0], [-70.35017446790914, 43.58435499901509, 0.0], [-70.35017466790913, 43.58380633234924, 0.0], [-70.35089826790801, 43.583463399016466, 0.0], [-70.35096140124125, 43.58298319901718, 0.0], [-70.35118166790755, 43.58273159901756, 0.0], [-70.35152780124037, 43.58261739901775, 0.0], [-70.35174820124001, 43.582114332351864, 0.0], [-70.35181126790661, 43.58163413235263, 0.0], [-70.35206320123956, 43.58094819902033, 0.0], [-70.35159146790693, 43.58019353235488, 0.0], [-70.35162306790687, 43.57964473235569, 0.0]], "type": "LineString"}, "id": "7", "properties": {"__folium_color": "DarkBlue", "name": "Mill Brook", "reach": "https://geoconnex.us/nhdplusv2/comid/6721697", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-70.35166760124014, 43.57546533236217, -70.34833186791201, 43.57964473235569], "geometry": {"coordinates": [[-70.35162306790687, 43.57964473235569, 0.0], [-70.35159180124026, 43.57957619902248, 0.0], [-70.35166760124014, 43.57898293235672, 0.0], [-70.35134986790735, 43.57839893235763, 0.0], [-70.35019320124246, 43.5776477990255, 0.0], [-70.34861526791155, 43.57564119902861, 0.0], [-70.34833186791201, 43.57546533236217, 0.0]], "type": "LineString"}, "id": "8", "properties": {"__folium_color": "DarkBlue", "name": "Mill Brook", "reach": "https://geoconnex.us/nhdplusv2/comid/6722441", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-70.3737988012058, 43.576399199027435, -70.35961060122781, 43.59210833233635], "geometry": {"coordinates": [[-70.36011346789371, 43.59210833233635, 0.0], [-70.35989326789405, 43.59178813233689, 0.0], [-70.35986206789408, 43.590713532338555, 0.0], [-70.35967340122772, 43.59039333233903, 0.0], [-70.35961060122781, 43.58975299900669, 0.0], [-70.36001980122717, 43.58913559900765, 0.0], [-70.36017720122697, 43.58828953234229, 0.0], [-70.36036606789332, 43.587832199009654, 0.0], [-70.36039766789327, 43.58732919901047, 0.0], [-70.3602404678935, 43.586803199011285, 0.0], [-70.3605238012264, 43.58577419901286, 0.0], [-70.3603664678933, 43.58540833234679, 0.0], [-70.35998920122722, 43.585088132347266, 0.0], [-70.36008346789379, 43.584836599014295, 0.0], [-70.3604610012265, 43.58453939901477, 0.0], [-70.3605240678931, 43.58392199901573, 0.0], [-70.36033540122668, 43.58364753234952, 0.0], [-70.36027266789347, 43.58216119901846, 0.0], [-70.36005260122715, 43.58188679901889, 0.0], [-70.3600842012271, 43.58145233235291, 0.0], [-70.36061920122626, 43.5799203323553, 0.0], [-70.36099680122567, 43.57950879902256, 0.0], [-70.36238100122353, 43.578685599023856, 0.0], [-70.36398506788771, 43.57813693235806, 0.0], [-70.36451986788688, 43.57786259902514, 0.0], [-70.3650232012194, 43.577679732358774, 0.0], [-70.36593526788465, 43.577588332358914, 0.0], [-70.36615560121766, 43.577313932359345, 0.0], [-70.36669026788348, 43.577062399026374, 0.0], [-70.36675320121674, 43.57683373236006, 0.0], [-70.36703626788295, 43.57665079902705, 0.0], [-70.36779120121514, 43.57658213236044, 0.0], [-70.36782266788174, 43.57649073236058, 0.0], [-70.36820006788116, 43.576399199027435, 0.0], [-70.36845180121412, 43.57651353236059, 0.0], [-70.36832586788097, 43.57683373236006, 0.0], [-70.36835740121427, 43.57701659902648, 0.0], [-70.36766526788199, 43.57793133235839, 0.0], [-70.36753940121554, 43.57836579902437, 0.0], [-70.36757086788214, 43.578754532357095, 0.0], [-70.3676966012153, 43.5788001990237, 0.0], [-70.36797966788151, 43.57937193235614, 0.0], [-70.36873460121365, 43.580195199021546, 0.0], [-70.37021286787802, 43.58120133235332, 0.0], [-70.37065326787734, 43.58120133235332, 0.0], [-70.37103080121011, 43.581064132353504, 0.0], [-70.37153406787598, 43.58069819902073, 0.0], [-70.3719430012087, 43.580515332354366, 0.0], [-70.3730754678736, 43.580515332354366, 0.0], [-70.37367300120599, 43.58012659902164, 0.0], [-70.3737988012058, 43.57976073235551, 0.0], [-70.37364160120603, 43.579349132356185, 0.0]], "type": "LineString"}, "id": "9", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/6721977", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-70.49738286768064, 43.46118939920626, -70.48889406769382, 43.46717139919696], "geometry": {"coordinates": [[-70.48889406769382, 43.46118939920626, 0.0], [-70.48911400102679, 43.461212132539515, 0.0], [-70.48939706769306, 43.4614633992058, 0.0], [-70.4897112010259, 43.461554532539026, 0.0], [-70.49146920102316, 43.461552599205675, 0.0], [-70.49241060102167, 43.46139159920591, 0.0], [-70.492850001021, 43.46136819920599, 0.0], [-70.49366700101973, 43.46182459920527, 0.0], [-70.4940130010192, 43.462121532538106, 0.0], [-70.49401320101919, 43.462212932537966, 0.0], [-70.4942018010189, 43.46237279920439, 0.0], [-70.49432820101873, 43.46266999920397, 0.0], [-70.49414020101904, 43.462852999203676, 0.0], [-70.49404660101914, 43.463173332536485, 0.0], [-70.49417320101895, 43.463630532535774, 0.0], [-70.49445626768517, 43.463927399201964, 0.0], [-70.49495920101776, 43.46417853253496, 0.0], [-70.49527380101728, 43.4644981992011, 0.0], [-70.49552546768354, 43.46479519920064, 0.0], [-70.49568426768326, 43.4656183325327, 0.0], [-70.49606160101604, 43.465915132532245, 0.0], [-70.49659546768186, 43.46598313253213, 0.0], [-70.497161467681, 43.466416999198145, 0.0], [-70.49738186768064, 43.466691199197726, 0.0], [-70.49738286768064, 43.46717139919696, 0.0]], "type": "LineString"}, "id": "10", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/9316829", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661576012070912"}, "type": "Feature"}, {"bbox": [-70.5013506010078, 43.45213533255361, -70.46348340106658, 43.46717139919696], "geometry": {"coordinates": [[-70.46348340106658, 43.45213533255361, 0.0], [-70.46417406773219, 43.45220319922021, 0.0], [-70.46671680106158, 43.45236119921992, 0.0], [-70.46790966772642, 43.45252019921969, 0.0], [-70.46866346772521, 43.45274819921934, 0.0], [-70.46878920105837, 43.45283953255256, 0.0], [-70.46910306772452, 43.45288499921912, 0.0], [-70.46991886772327, 43.4527471325527, 0.0], [-70.47111100105474, 43.45233439921998, 0.0], [-70.47148786772084, 43.45242559921985, 0.0], [-70.47195920105344, 43.4527223992194, 0.0], [-70.47205386771998, 43.45306533255217, 0.0], [-70.47167820105386, 43.45366019921795, 0.0], [-70.47177260105371, 43.453797399217706, 0.0], [-70.4716478677206, 43.45425479921698, 0.0], [-70.47167986772052, 43.45468933254966, 0.0], [-70.47202620105332, 43.45521493254887, 0.0], [-70.4723404677195, 43.45546613254845, 0.0], [-70.47375326771731, 43.455601999214934, 0.0], [-70.47463266771598, 43.455875599214494, 0.0], [-70.47494660104883, 43.455875332547805, 0.0], [-70.47566820104771, 43.45571459921473, 0.0], [-70.47714280104537, 43.45532453254867, 0.0], [-70.4781470677105, 43.45518633254892, 0.0], [-70.47996840104099, 43.45552753254839, 0.0], [-70.4809098677062, 43.45548079921508, 0.0], [-70.48156880103852, 43.4552743992154, 0.0], [-70.48197626770457, 43.4549767325492, 0.0], [-70.48238360103727, 43.45456473254984, 0.0], [-70.48345020103562, 43.45431213255023, 0.0], [-70.48398340103478, 43.45408293255059, 0.0], [-70.48592986769842, 43.454263932550305, 0.0], [-70.48677726769711, 43.454240199217054, 0.0], [-70.48781226769552, 43.45378173255108, 0.0], [-70.48837706769461, 43.45373533255116, 0.0], [-70.48913046769343, 43.4537117325512, 0.0], [-70.49179966768929, 43.45425773255033, 0.0], [-70.49274186768787, 43.45455399921656, 0.0], [-70.49437480101864, 43.45487233254937, 0.0], [-70.49497140101772, 43.45500879921582, 0.0], [-70.49522306768398, 43.45521433254885, 0.0], [-70.49547486768358, 43.455557132548336, 0.0], [-70.49550806768355, 43.456448799213604, 0.0], [-70.49585440101635, 43.4569287325462, 0.0], [-70.49582406768309, 43.45747753254534, 0.0], [-70.49588700101629, 43.45752313254525, 0.0], [-70.49623520101574, 43.45891759920977, 0.0], [-70.49667506768174, 43.4591001325428, 0.0], [-70.49730346768075, 43.45932799920911, 0.0], [-70.49758640101368, 43.45953359920884, 0.0], [-70.49755606768036, 43.46005959920802, 0.0], [-70.49730560101409, 43.460379999207476, 0.0], [-70.49740060101396, 43.46072293254031, 0.0], [-70.49758926768033, 43.46092853253998, 0.0], [-70.49793480101312, 43.461019532539865, 0.0], [-70.49871926767855, 43.4608813992067, 0.0], [-70.49918946767787, 43.4605379325406, 0.0], [-70.49950320101067, 43.46042319920741, 0.0], [-70.49966026767709, 43.46043093254076, 0.0], [-70.49972280101036, 43.460522399207264, 0.0], [-70.49968980101039, 43.46139139920592, 0.0], [-70.49978380101027, 43.46148293253913, 0.0], [-70.50022306767625, 43.46155193253901, 0.0], [-70.50091226767518, 43.46228433253788, 0.0], [-70.5013506010078, 43.462970799203504, 0.0], [-70.5012868676746, 43.46342813253608, 0.0], [-70.50119220100805, 43.46370239920236, 0.0], [-70.501222801008, 43.46409119920173, 0.0], [-70.50112800100817, 43.46441133253455, 0.0], [-70.5008450676753, 43.464593932534285, 0.0], [-70.50021686767627, 43.46473039920073, 0.0], [-70.50002820100985, 43.46493613253375, 0.0], [-70.49987066767676, 43.46518739920003, 0.0], [-70.49983866767684, 43.465507532532854, 0.0], [-70.4996810676771, 43.46580459919909, 0.0], [-70.4995152010107, 43.466002732532104, 0.0], [-70.49788486767989, 43.46705653253048, 0.0], [-70.49766546768024, 43.46717113253027, 0.0], [-70.49738286768064, 43.46717139919696, 0.0]], "type": "LineString"}, "id": "11", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/9316889", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661576012070912"}, "type": "Feature"}, {"bbox": [-70.5005360010091, 43.46717139919696, -70.49227966768859, 43.47899199917862], "geometry": {"coordinates": [[-70.49738286768064, 43.46717139919696, 0.0], [-70.49722640101425, 43.467445999196514, 0.0], [-70.49700680101455, 43.46753759919636, 0.0], [-70.49681926768153, 43.46792659919578, 0.0], [-70.49682206768153, 43.46927579919367, 0.0], [-70.49644606768209, 43.469619199193176, 0.0], [-70.49622660101579, 43.46975659919292, 0.0], [-70.49534740101711, 43.46973473252632, 0.0], [-70.49478300101799, 43.47007833252576, 0.0], [-70.4942514676855, 43.47119939919071, 0.0], [-70.49393806768597, 43.47142839919036, 0.0], [-70.49362520101982, 43.47197759918947, 0.0], [-70.49318586768715, 43.47211519918926, 0.0], [-70.49302906768742, 43.47225259918906, 0.0], [-70.49293640102087, 43.472961599187954, 0.0], [-70.49252880102154, 43.4732365325209, 0.0], [-70.49249800102154, 43.47353373252042, 0.0], [-70.49259260102144, 43.47373939918674, 0.0], [-70.49227966768859, 43.47419713251941, 0.0], [-70.49243700102164, 43.47435699918583, 0.0], [-70.49293966768755, 43.47458519918547, 0.0], [-70.49306606768732, 43.4749051325183, 0.0], [-70.49316126768719, 43.47538533251753, 0.0], [-70.49319486768712, 43.47643713251591, 0.0], [-70.49332080102027, 43.47661993251563, 0.0], [-70.49385540101946, 43.47698519918174, 0.0], [-70.49482906768463, 43.47714419918145, 0.0], [-70.49633640101558, 43.47723393251465, 0.0], [-70.49665060101512, 43.477302199181224, 0.0], [-70.49693386768132, 43.47764493251401, 0.0], [-70.49709200101444, 43.47812493251331, 0.0], [-70.49721806768088, 43.47830773251303, 0.0], [-70.49731240101409, 43.47837619917959, 0.0], [-70.49740700101393, 43.47853613251266, 0.0], [-70.49778420101336, 43.478741532512345, 0.0], [-70.49872666767857, 43.47899199917862, 0.0], [-70.49922900101109, 43.47894573251199, 0.0], [-70.4995114010107, 43.47885393251215, 0.0], [-70.49975040101032, 43.47856453251262, 0.0], [-70.5005360010091, 43.47826799917971, 0.0]], "type": "LineString"}, "id": "12", "properties": {"__folium_color": "DarkBlue", "name": null, "reach": "https://geoconnex.us/nhdplusv2/comid/9316885", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661576012070912"}, "type": "Feature"}, {"bbox": [-70.29702680132499, 44.015167198346376, -70.27334506802839, 44.04046953164044], "geometry": {"coordinates": [[-70.29702680132499, 44.04046953164044, 0.0], [-70.29655206799237, 44.0397833316415, 0.0], [-70.29617206799298, 44.039531398308554, 0.0], [-70.29563340132711, 44.0393711316421, 0.0], [-70.29455586799548, 44.039233131642334, 0.0], [-70.29360546799694, 44.03884373164294, 0.0], [-70.29287660133139, 44.03877473164306, 0.0], [-70.29265560133177, 44.038042931644156, 0.0], [-70.29227580133232, 44.03765379831145, 0.0], [-70.29167420133331, 44.03719613164549, 0.0], [-70.29132580133381, 44.03701293164579, 0.0], [-70.29009006800243, 44.03666899831296, 0.0], [-70.28955186800323, 44.036256998313604, 0.0], [-70.28917226800382, 44.03573079831443, 0.0], [-70.28796920133902, 44.0347925316492, 0.0], [-70.28670246800766, 44.03403699831705, 0.0], [-70.28423346801151, 44.03183999832049, 0.0], [-70.2832214013464, 44.030512998322536, 0.0], [-70.28309520134661, 44.030101398323154, 0.0], [-70.28306446801332, 44.02948393165747, 0.0], [-70.28271646801386, 44.0290721316581, 0.0], [-70.28211680134814, 44.02751673166051, 0.0], [-70.28180026801527, 44.027242131660955, 0.0], [-70.28024780135104, 44.02698919832801, 0.0], [-70.279614001352, 44.02696599832802, 0.0], [-70.27920140135262, 44.027354331660774, 0.0], [-70.27891600135308, 44.027468398327244, 0.0], [-70.27837646802061, 44.0279023983266, 0.0], [-70.27783660135475, 44.028587931658876, 0.0], [-70.27726546802234, 44.02906759832479, 0.0], [-70.27609280135749, 44.02911233165804, 0.0], [-70.27590246802441, 44.0291807983246, 0.0], [-70.27504680135911, 44.02918013165794, 0.0], [-70.27425660136032, 44.02792179832659, 0.0], [-70.27444746802666, 44.02755613166045, 0.0], [-70.27451226802657, 44.02668719832849, 0.0], [-70.27365840136122, 44.025520398330286, 0.0], [-70.27359546802802, 44.02526879833067, 0.0], [-70.27372286802779, 44.02492593166454, 0.0], [-70.27385020136097, 44.02460599833171, 0.0], [-70.27337580136168, 44.024056731665894, 0.0], [-70.27334506802839, 44.023462198333505, 0.0], [-70.2735042013615, 44.0230051316675, 0.0], [-70.27398006802741, 44.02270813166797, 0.0], [-70.27505786802573, 44.02248053166835, 0.0], [-70.27531180135867, 44.022274931668676, 0.0], [-70.27537580135856, 44.02188619833595, 0.0], [-70.275534468025, 44.02172633166953, 0.0], [-70.27569366802476, 44.02124619833694, 0.0], [-70.27613826802406, 44.02072073167108, 0.0], [-70.27674080135648, 44.02037819833828, 0.0], [-70.27686820135625, 44.020012531672194, 0.0], [-70.27661500135667, 44.01980653167249, 0.0], [-70.2766478013566, 44.01914339834019, 0.0], [-70.27642660135695, 44.01875453167412, 0.0], [-70.27630206802382, 44.017382531676276, 0.0], [-70.27589100135776, 44.016878998343714, 0.0], [-70.2758598680245, 44.01653599834424, 0.0], [-70.27595506802436, 44.016421798344425, 0.0], [-70.27772980135495, 44.01624039834468, 0.0], [-70.2779834680212, 44.016126198344864, 0.0], [-70.27801580135446, 44.01578333167873, 0.0], [-70.27814260135426, 44.01569193167887, 0.0], [-70.27871300135342, 44.01569239834555, 0.0], [-70.2793468013524, 44.01557859834571, 0.0], [-70.27947406801889, 44.015167198346376, 0.0]], "type": "LineString"}, "id": "13", "properties": {"__folium_color": "DarkBlue", "name": "Moose Brook", "reach": "https://geoconnex.us/nhdplusv2/comid/6719063", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594471443038208"}, "type": "Feature"}, {"bbox": [-69.6309542690255, 44.57279433081413, -69.61239660238766, 44.60967713075689], "geometry": {"coordinates": [[-69.62215326903919, 44.60967713075689, 0.0], [-69.62269746903831, 44.60894539742469, 0.0], [-69.62292160237132, 44.60846533075875, 0.0], [-69.62407366903619, 44.607070397427606, 0.0], [-69.62448980236888, 44.60677319742808, 0.0], [-69.62548200236733, 44.60574419742966, 0.0], [-69.6266980690321, 44.60398353076573, 0.0], [-69.62695420236508, 44.603343330766734, 0.0], [-69.62701800236493, 44.60203999743544, 0.0], [-69.62727406903122, 44.60165133076936, 0.0], [-69.62737006903109, 44.601605597436105, 0.0], [-69.62737000236439, 44.60146839743629, 0.0], [-69.62785006903033, 44.60107953077022, 0.0], [-69.62941820236125, 44.60059933077099, 0.0], [-69.63057026902612, 44.60037059743803, 0.0], [-69.63089040235894, 44.60007333077181, 0.0], [-69.6309542690255, 44.59950159743937, 0.0], [-69.63076220235916, 44.59872419744056, 0.0], [-69.63044200235964, 44.59826693077463, 0.0], [-69.62983386902727, 44.59767259744217, 0.0], [-69.62976980236067, 44.597420997442555, 0.0], [-69.62967380236086, 44.59703233077653, 0.0], [-69.62932166902806, 44.59568319744528, 0.0], [-69.62852160236264, 44.59520313077934, 0.0], [-69.62663340236554, 44.59355679744857, 0.0], [-69.6255772023672, 44.592505130783536, 0.0], [-69.62471306903518, 44.59191059745115, 0.0], [-69.62464920236863, 44.59170479745143, 0.0], [-69.6248092023684, 44.59092733078597, 0.0], [-69.62551306903396, 44.58905233078889, 0.0], [-69.62554500236723, 44.58861793078955, 0.0], [-69.62532086903428, 44.58768039745769, 0.0], [-69.62446960236889, 44.586750930792505, 0.0], [-69.6241690023694, 44.586422730793004, 0.0], [-69.62404100236961, 44.585530997461035, 0.0], [-69.62359306903693, 44.584913730795336, 0.0], [-69.6234332023705, 44.584479197462656, 0.0], [-69.62320906903756, 44.58429633079629, 0.0], [-69.62279306903821, 44.58340459746432, 0.0], [-69.62276106903823, 44.582695730798775, 0.0], [-69.62317706903758, 44.58214693079964, 0.0], [-69.62333706903735, 44.58166673080035, 0.0], [-69.62333706903735, 44.5809807974681, 0.0], [-69.62317706903758, 44.580317597469104, 0.0], [-69.62260106903847, 44.57912859747097, 0.0], [-69.62237720237215, 44.57899139747121, 0.0], [-69.62141740237365, 44.57915153080427, 0.0], [-69.6211294023741, 44.57899139747121, 0.0], [-69.62116140237407, 44.57864839747174, 0.0], [-69.62157740237342, 44.57800819747274, 0.0], [-69.62154540237344, 44.57764233080661, 0.0], [-69.62128940237386, 44.5774593308069, 0.0], [-69.6175144023797, 44.57741359747365, 0.0], [-69.61588280238226, 44.57702473080758, 0.0], [-69.61524306904988, 44.576567397474946, 0.0], [-69.61495526905037, 44.57622433080883, 0.0], [-69.61482740238387, 44.575835730809445, 0.0], [-69.61473160238404, 44.574463730811544, 0.0], [-69.61431566905134, 44.57412073081207, 0.0], [-69.61364406905238, 44.5738233974792, 0.0], [-69.61239660238766, 44.57279433081413, 0.0]], "type": "LineString"}, "id": "14", "properties": {"__folium_color": "DarkBlue", "name": "Holland Brook", "reach": "https://geoconnex.us/nhdplusv2/comid/3321194", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448923591311360"}, "type": "Feature"}, {"bbox": [-70.3335402012683, 43.57232213236705, -70.30485900131282, 43.61034339897475], "geometry": {"coordinates": [[-70.31693186796076, 43.610321132308115, 0.0], [-70.31630246796169, 43.610252132308176, 0.0], [-70.31589340129568, 43.61034339897475, 0.0], [-70.31542140129642, 43.61016033230834, 0.0], [-70.31482340129736, 43.61020573230826, 0.0], [-70.31422566796493, 43.609953932308656, 0.0], [-70.31340820129952, 43.60919893230982, 0.0], [-70.31325106796646, 43.60890153231031, 0.0], [-70.31296820130024, 43.6086269989774, 0.0], [-70.31290560130032, 43.608215332311374, 0.0], [-70.31315746796662, 43.608032532311654, 0.0], [-70.3131894012999, 43.60757519897902, 0.0], [-70.31271740130063, 43.60752919897908, 0.0], [-70.3121826679681, 43.60727739897948, 0.0], [-70.31196300130176, 43.60668273231374, 0.0], [-70.31199526796843, 43.605836732315026, 0.0], [-70.31202686796837, 43.605722332315224, 0.0], [-70.3120272013017, 43.60537933231575, 0.0], [-70.3111160013031, 43.60400693231787, 0.0], [-70.31020366797117, 43.60380059898489, 0.0], [-70.3100150013048, 43.603640398985135, 0.0], [-70.30992120130497, 43.6031601323192, 0.0], [-70.30922940130603, 43.60254233232018, 0.0], [-70.30838020130733, 43.602221732320686, 0.0], [-70.30797140130801, 43.601855598987925, 0.0], [-70.30772040130836, 43.601169532322274, 0.0], [-70.30753180130864, 43.60096359898927, 0.0], [-70.30671420130994, 43.60048293232336, 0.0], [-70.30665146797668, 43.600231398990445, 0.0], [-70.3063372013105, 43.59995673232419, 0.0], [-70.30627446797729, 43.59970519899122, 0.0], [-70.30602286797767, 43.599636532324666, 0.0], [-70.30545626797857, 43.599818998991054, 0.0], [-70.30485900131282, 43.59936133232509, 0.0], [-70.30485926797951, 43.59913259899213, 0.0], [-70.305394601312, 43.59865273232623, 0.0], [-70.30542660131192, 43.598195398993596, 0.0], [-70.30577300131142, 43.59798993232721, 0.0], [-70.30583606797796, 43.5978069323275, 0.0], [-70.30605720131098, 43.597121132328596, 0.0], [-70.30593186797779, 43.596572198996114, 0.0], [-70.30618366797745, 43.5964349989963, 0.0], [-70.30630966797725, 43.59629793232983, 0.0], [-70.30627860131062, 43.596023532330264, 0.0], [-70.30649900131027, 43.595840732330544, 0.0], [-70.30684520130973, 43.59584093233059, 0.0], [-70.30756840130863, 43.596161532330086, 0.0], [-70.3081346679744, 43.596184732330016, 0.0], [-70.30923646797271, 43.595727998997404, 0.0], [-70.30989720130498, 43.59572833233074, 0.0], [-70.31080926797023, 43.59602613233028, 0.0], [-70.31102960130323, 43.596026198996924, 0.0], [-70.31143886796929, 43.595683398997494, 0.0], [-70.31143940130261, 43.59527179899811, 0.0], [-70.3119432013018, 43.59481473233217, 0.0], [-70.31307606796673, 43.59454093233256, 0.0], [-70.31317066796657, 43.5944495323327, 0.0], [-70.31304500130011, 43.59426639899971, 0.0], [-70.31247866796764, 43.59417473233316, 0.0], [-70.31225866796802, 43.59396879900015, 0.0], [-70.31184966796866, 43.59389999900026, 0.0], [-70.31103166796993, 43.593922332333534, 0.0], [-70.31087460130345, 43.593693599000574, 0.0], [-70.3102144013045, 43.59323593233461, 0.0], [-70.3102460679711, 43.59298439900169, 0.0], [-70.3107812013036, 43.59280179900196, 0.0], [-70.31172500130214, 43.59275659900203, 0.0], [-70.31197700130178, 43.59255079900237, 0.0], [-70.31191440130186, 43.59209353233638, 0.0], [-70.31200886796836, 43.591979132336576, 0.0], [-70.31304706796675, 43.59211693233635, 0.0], [-70.31336146796627, 43.592299999002705, 0.0], [-70.31345580129948, 43.59246019900246, 0.0], [-70.3138016679656, 43.59264333233551, 0.0], [-70.31408480129852, 43.592689132335465, 0.0], [-70.31446266796456, 43.59234633233598, 0.0], [-70.31443200129797, 43.59147733233732, 0.0], [-70.31524986796336, 43.59161493233711, 0.0], [-70.31550186796295, 43.59136353233754, 0.0], [-70.3158168012958, 43.59081493233839, 0.0], [-70.31613146796201, 43.59079219900508, 0.0], [-70.31638306796157, 43.59086093233827, 0.0], [-70.31688640129414, 43.59090679900487, 0.0], [-70.31694986796072, 43.59040393233903, 0.0], [-70.31726460129357, 43.59019819900601, 0.0], [-70.31798860129243, 43.589924132339775, 0.0], [-70.31824040129203, 43.5897185323401, 0.0], [-70.31814620129217, 43.58948973234044, 0.0], [-70.31780020129275, 43.58937519900729, 0.0], [-70.31691920129407, 43.58951199900707, 0.0], [-70.31685646796086, 43.58932913234065, 0.0], [-70.31619620129521, 43.5889627990079, 0.0], [-70.31613326796196, 43.588848532341444, 0.0], [-70.31625920129511, 43.588757132341584, 0.0], [-70.31707700129385, 43.588940399007924, 0.0], [-70.31726580129356, 43.58887193234136, 0.0], [-70.31729780129353, 43.58836879900883, 0.0], [-70.31698346796065, 43.58797993234276, 0.0], [-70.3171724012937, 43.58784279900965, 0.0], [-70.31764426795962, 43.58777439900973, 0.0], [-70.31808500129227, 43.58747733234355, 0.0], [-70.31833686795858, 43.58743179901029, 0.0], [-70.3185568679582, 43.5875919323434, 0.0], [-70.31918600129057, 43.58756939901008, 0.0], [-70.31943806795687, 43.58720359901065, 0.0], [-70.31928100129045, 43.58702059901094, 0.0], [-70.31884066795777, 43.58688319901114, 0.0], [-70.31745626795993, 43.58697399901098, 0.0], [-70.31733106796014, 43.58631073234534, 0.0], [-70.31752020129318, 43.58592213234596, 0.0], [-70.31780366795937, 43.585624932346434, 0.0], [-70.31859006795816, 43.58562533234641, 0.0], [-70.3187160012913, 43.585511132346596, 0.0], [-70.318684667958, 43.585282399013636, 0.0], [-70.3178040679594, 43.58496179901414, 0.0], [-70.31761546795968, 43.58473299901448, 0.0], [-70.31793046795917, 43.58441313234829, 0.0], [-70.31789920129256, 43.58416153234867, 0.0], [-70.31755340129308, 43.58395559901567, 0.0], [-70.31786820129264, 43.583658399016144, 0.0], [-70.31789986795923, 43.58349839901638, 0.0], [-70.31802566795903, 43.58345279901647, 0.0], [-70.31871820129129, 43.58297279901723, 0.0], [-70.31912740129064, 43.58279013235085, 0.0], [-70.31969346795648, 43.58279033235084, 0.0], [-70.31969306795645, 43.583201932350164, 0.0], [-70.32010206795582, 43.583156332350256, 0.0], [-70.32032260128881, 43.582927799017284, 0.0], [-70.3204170679553, 43.582676332351014, 0.0], [-70.31978840128966, 43.582218599018404, 0.0], [-70.31978840128966, 43.582127199018544, 0.0], [-70.3203866679554, 43.58155573235274, 0.0], [-70.3204496679553, 43.58137293235302, 0.0], [-70.32070160128825, 43.581121399020105, 0.0], [-70.32107906795432, 43.58105299902019, 0.0], [-70.32126786795402, 43.58109879902014, 0.0], [-70.32136186795384, 43.581418999019604, 0.0], [-70.32120440128745, 43.58162473235262, 0.0], [-70.32120400128747, 43.58210493235191, 0.0], [-70.32136120128717, 43.58221933235171, 0.0], [-70.32170726795334, 43.582150999018495, 0.0], [-70.32211680128603, 43.58148793235284, 0.0], [-70.32214860128596, 43.581122132353414, 0.0], [-70.32246346795216, 43.58073339902069, 0.0], [-70.32400466794974, 43.58071133235404, 0.0], [-70.32419366794949, 43.580322599021315, 0.0], [-70.32416266794951, 43.579888132355336, 0.0], [-70.3242256679494, 43.579750999022224, 0.0], [-70.32447726794902, 43.579750999022224, 0.0], [-70.32526346794782, 43.57995719902186, 0.0], [-70.3257980012803, 43.580231799021476, 0.0], [-70.32604966794656, 43.58018619902151, 0.0], [-70.3260816012799, 43.579591732355766, 0.0], [-70.32623906794629, 43.57934019902285, 0.0], [-70.3265852012791, 43.579363199022794, 0.0], [-70.32674226794552, 43.5795691323558, 0.0], [-70.32696240127848, 43.57968353235566, 0.0], [-70.3272140679448, 43.5796149990224, 0.0], [-70.3274974012777, 43.57924919902297, 0.0], [-70.32749806794436, 43.57831159902446, 0.0], [-70.32790740127706, 43.57778593235861, 0.0], [-70.32866246794254, 43.57760319902553, 0.0], [-70.32866260127588, 43.57742033235917, 0.0], [-70.32863126794257, 43.57726019902606, 0.0], [-70.32806526794349, 43.57709993235966, 0.0], [-70.32765646794411, 43.57689393235995, 0.0], [-70.32746800127774, 43.576527999027235, 0.0], [-70.32762546794413, 43.576322199027516, 0.0], [-70.32970166794092, 43.57570559902848, 0.0], [-70.33011066794029, 43.57566013236192, 0.0], [-70.33058186793954, 43.576346332360856, 0.0], [-70.33086486793911, 43.576574999027116, 0.0], [-70.33152546793809, 43.57639233236074, 0.0], [-70.33165146793789, 43.57614093236117, 0.0], [-70.33168340127116, 43.57556919902868, 0.0], [-70.33196666793742, 43.5751347990294, 0.0], [-70.3326902679363, 43.57479199902991, 0.0], [-70.3335402012683, 43.573877599031334, 0.0], [-70.33341480126848, 43.57339739903205, 0.0], [-70.33313166793562, 43.57323719903235, 0.0], [-70.3327542679362, 43.57316853236574, 0.0], [-70.33234546793682, 43.573305532365566, 0.0], [-70.33124400127184, 43.5742427323641, 0.0], [-70.33036300127321, 43.57465399903015, 0.0], [-70.32982806794075, 43.57497393236298, 0.0], [-70.32907300127522, 43.575339532362364, 0.0], [-70.3284438679429, 43.57529353236248, 0.0], [-70.32784666794379, 43.574813132363204, 0.0], [-70.32746926794437, 43.5746757323634, 0.0], [-70.3277214012773, 43.57408119903101, 0.0], [-70.32831926794307, 43.573601332365115, 0.0], [-70.32869680127584, 43.5735099990319, 0.0], [-70.3299548679405, 43.573418999032015, 0.0], [-70.33111880127205, 43.573236532365684, 0.0], [-70.33181086793763, 43.572939399032805, 0.0], [-70.33199986793733, 43.572642199033226, 0.0], [-70.33190566793752, 43.57232213236705, 0.0]], "type": "LineString"}, "id": "15", "properties": {"__folium_color": "DarkBlue", "name": "Nonesuch River", "reach": "https://geoconnex.us/nhdplusv2/comid/6721969", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654772783874048"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_f6b8711ecc192a8102d98d8fe915093b.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["s2", "reach", "name"];
let aliases = ["s2", "reach", "name"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
function geo_json_cf4224f40973c7d5f504340a558fe4ed_styler(feature) {
switch(feature.id) {
default:
return {"color": "DodgerBlue", "fillColor": "DodgerBlue", "fillOpacity": 0.5, "weight": 3};
}
}
function geo_json_cf4224f40973c7d5f504340a558fe4ed_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_cf4224f40973c7d5f504340a558fe4ed_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_cf4224f40973c7d5f504340a558fe4ed_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_cf4224f40973c7d5f504340a558fe4ed_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_cf4224f40973c7d5f504340a558fe4ed.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_cf4224f40973c7d5f504340a558fe4ed_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_cf4224f40973c7d5f504340a558fe4ed = L.geoJson(null, {
onEachFeature: geo_json_cf4224f40973c7d5f504340a558fe4ed_onEachFeature,
style: geo_json_cf4224f40973c7d5f504340a558fe4ed_styler,
pointToLayer: geo_json_cf4224f40973c7d5f504340a558fe4ed_pointToLayer,
});
function geo_json_cf4224f40973c7d5f504340a558fe4ed_add (data) {
geo_json_cf4224f40973c7d5f504340a558fe4ed
.addData(data);
}
geo_json_cf4224f40973c7d5f504340a558fe4ed_add({"bbox": [-70.50304460100517, 43.45213533255361, -69.61164826905548, 44.60967713075689], "features": [{"bbox": [-70.36252286789, 43.682568598862645, -70.35524546790128, 43.691715998848395], "geometry": {"coordinates": [[-70.36252286789, 43.691715998848395, 0.0], [-70.36242846789014, 43.69144153218218, 0.0], [-70.36239720122353, 43.68977233218476, 0.0], [-70.36249166789003, 43.689612132185005, 0.0], [-70.36236566789023, 43.68881179885295, 0.0], [-70.36198766789079, 43.68828593218706, 0.0], [-70.36044360122656, 43.68762273218812, 0.0], [-70.35899440122881, 43.686570598856406, 0.0], [-70.35877380122912, 43.68620473219033, 0.0], [-70.3565054678993, 43.68444393219306, 0.0], [-70.35606446790001, 43.683826398860674, 0.0], [-70.35556060123412, 43.68277453219565, 0.0], [-70.35524546790128, 43.682568598862645, 0.0]], "type": "LineString"}, "id": "0", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721463", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.35524546790128, 43.682381798862934, -70.3547300679021, 43.682568598862645], "geometry": {"coordinates": [[-70.35524546790128, 43.682568598862645, 0.0], [-70.3547300679021, 43.682381798862934, 0.0]], "type": "LineString"}, "id": "1", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722645", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3547300679021, 43.682381798862934, -70.3518580679065, 43.68274533219568], "geometry": {"coordinates": [[-70.3547300679021, 43.682381798862934, 0.0], [-70.35390400123669, 43.68274533219568, 0.0], [-70.35241646790564, 43.68255139886264, 0.0], [-70.3518580679065, 43.68260813219587, 0.0]], "type": "LineString"}, "id": "2", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722641", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3518580679065, 43.68260813219587, -70.35039226790883, 43.68522059885851], "geometry": {"coordinates": [[-70.3518580679065, 43.68260813219587, 0.0], [-70.35185000123988, 43.682608932195876, 0.0], [-70.35039226790883, 43.68522059885851, 0.0]], "type": "LineString"}, "id": "3", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722643", "fl_type": "Connector"}, "type": "Feature"}, {"bbox": [-70.35039226790883, 43.68522059885851, -70.32747406794437, 43.70010073216872], "geometry": {"coordinates": [[-70.35039226790883, 43.68522059885851, 0.0], [-70.34875340124466, 43.68643219885661, 0.0], [-70.34783940124612, 43.68691219885585, 0.0], [-70.34664186791463, 43.68707213218897, 0.0], [-70.34538146791658, 43.68714039885555, 0.0], [-70.34371106791917, 43.68768879885465, 0.0], [-70.34282880125386, 43.687848732187774, 0.0], [-70.34194626792191, 43.68826013218711, 0.0], [-70.34144206792269, 43.68837419885358, 0.0], [-70.34052820125743, 43.688282732187076, 0.0], [-70.3386062679271, 43.68789339885433, 0.0], [-70.33756626792871, 43.6879617321876, 0.0], [-70.33715660126268, 43.688098798854014, 0.0], [-70.33662066793016, 43.6884645321868, 0.0], [-70.33649446793038, 43.68869313218647, 0.0], [-70.33665140126345, 43.689813598851345, 0.0], [-70.33639906793053, 43.690110798850924, 0.0], [-70.33614700126424, 43.690270798850634, 0.0], [-70.33488626793286, 43.69049913218362, 0.0], [-70.33394080126766, 43.690933332182965, 0.0], [-70.33315260126892, 43.69161913218193, 0.0], [-70.33160800127132, 43.69207593218118, 0.0], [-70.33082000127251, 43.69251013218053, 0.0], [-70.3304414012731, 43.69292159884657, 0.0], [-70.3299998012738, 43.693653132178724, 0.0], [-70.32977800127412, 43.69548239884256, 0.0], [-70.3298090012741, 43.69630559884132, 0.0], [-70.3299034679406, 43.69639713217447, 0.0], [-70.33006066794036, 43.696968932173604, 0.0], [-70.33002886794043, 43.697449132172835, 0.0], [-70.32964986794099, 43.69850079883787, 0.0], [-70.32923980127498, 43.69916379883688, 0.0], [-70.32864060127588, 43.69955233216956, 0.0], [-70.3276632012774, 43.70005499883547, 0.0], [-70.32747406794437, 43.70010073216872, 0.0]], "type": "LineString"}, "id": "4", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721459", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.32750560127766, 43.70010073216872, -70.32561246794728, 43.70298119883091], "geometry": {"coordinates": [[-70.32747406794437, 43.70010073216872, 0.0], [-70.32750560127766, 43.70026079883513, 0.0], [-70.3265594679458, 43.70115233216711, 0.0], [-70.32561246794728, 43.70298119883091, 0.0]], "type": "LineString"}, "id": "5", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721431", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.32561246794728, 43.70298119883091, -70.32283640128492, 43.71048059881929], "geometry": {"coordinates": [[-70.32561246794728, 43.70298119883091, 0.0], [-70.3252656679478, 43.703209732163884, 0.0], [-70.32447720128238, 43.703849798829594, 0.0], [-70.32337326795073, 43.70469533216158, 0.0], [-70.32290000128484, 43.705312598827334, 0.0], [-70.32283640128492, 43.706112932159385, 0.0], [-70.32318286795106, 43.70643313215891, 0.0], [-70.32406540128301, 43.70668499882521, 0.0], [-70.32497926794827, 43.70686833215825, 0.0], [-70.32538880128095, 43.707371532157424, 0.0], [-70.32538840128097, 43.70798893215647, 0.0], [-70.32497820128157, 43.70846899882241, 0.0], [-70.32381100128339, 43.709588998820664, 0.0], [-70.32368446795027, 43.70997773215339, 0.0], [-70.32327446795091, 43.710297732152924, 0.0], [-70.32321140128431, 43.71048059881929, 0.0]], "type": "LineString"}, "id": "6", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721405", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.32321140128431, 43.71048059881929, -70.3129582679669, 43.719096732139235], "geometry": {"coordinates": [[-70.32321140128431, 43.71048059881929, 0.0], [-70.32292766795143, 43.7105033321526, 0.0], [-70.32157146795356, 43.71125739881808, 0.0], [-70.31907986795738, 43.71276553214909, 0.0], [-70.31819660129213, 43.71349679881462, 0.0], [-70.3176600679596, 43.71420553214682, 0.0], [-70.31743886795994, 43.714822732145876, 0.0], [-70.31727906796021, 43.71740673214185, 0.0], [-70.31699506796065, 43.717772398807995, 0.0], [-70.3164588679615, 43.71797799880767, 0.0], [-70.31541846796307, 43.718000332140946, 0.0], [-70.31497686796376, 43.718068732140864, 0.0], [-70.3140308012986, 43.718456998806914, 0.0], [-70.313557467966, 43.718822598806355, 0.0], [-70.3129582679669, 43.719096732139235, 0.0]], "type": "LineString"}, "id": "7", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721381", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.3129582679669, 43.719096732139235, -70.30835046797404, 43.723736398798735], "geometry": {"coordinates": [[-70.3129582679669, 43.719096732139235, 0.0], [-70.31147600130254, 43.719530532138606, 0.0], [-70.31024560130447, 43.72049019880376, 0.0], [-70.30983506797173, 43.72106173213621, 0.0], [-70.30977046797187, 43.72257093213386, 0.0], [-70.30939146797243, 43.723210998799516, 0.0], [-70.30891826797318, 43.7234851987991, 0.0], [-70.30835046797404, 43.723736398798735, 0.0]], "type": "LineString"}, "id": "8", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721345", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.30835046797404, 43.723736398798735, -70.28921946800375, 43.73101439878741], "geometry": {"coordinates": [[-70.30835046797404, 43.723736398798735, 0.0], [-70.30799500130797, 43.72393313213172, 0.0], [-70.30445126798014, 43.724014798798294, 0.0], [-70.30306166798226, 43.72448553213087, 0.0], [-70.3024054679833, 43.72502153213003, 0.0], [-70.30197280131728, 43.72592539879531, 0.0], [-70.30145640131809, 43.72733799879313, 0.0], [-70.30087866798567, 43.72825339879171, 0.0], [-70.29975406798741, 43.72847373212471, 0.0], [-70.2987972679889, 43.728404332124796, 0.0], [-70.29789260132361, 43.72798139879211, 0.0], [-70.29706166799156, 43.72751259879283, 0.0], [-70.29641366799257, 43.72744399879298, 0.0], [-70.29611706799307, 43.72821339879175, 0.0], [-70.29540446799416, 43.72904133212381, 0.0], [-70.2943066013292, 43.73035813212175, 0.0], [-70.29352860133042, 43.73099113212078, 0.0], [-70.29222686799909, 43.73101439878741, 0.0], [-70.29155406800015, 43.73071859878786, 0.0], [-70.29053746800173, 43.729929932122445, 0.0], [-70.28998800133587, 43.72967879878951, 0.0], [-70.28921946800375, 43.72973653212273, 0.0]], "type": "LineString"}, "id": "9", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724855", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.28921946800375, 43.72395613213172, -70.28195786801501, 43.7297485987894], "geometry": {"coordinates": [[-70.28921946800375, 43.72973653212273, 0.0], [-70.28888980133758, 43.7297485987894, 0.0], [-70.28763066800622, 43.729441932123166, 0.0], [-70.28668040134102, 43.72889619879072, 0.0], [-70.28594086800882, 43.728325798791616, 0.0], [-70.28540166800968, 43.727517132126195, 0.0], [-70.28512826801011, 43.726661198794204, 0.0], [-70.28339606801279, 43.72521393212975, 0.0], [-70.28195786801501, 43.72395613213172, 0.0]], "type": "LineString"}, "id": "10", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724875", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.28195786801501, 43.7188665988063, -70.2702930013665, 43.72395613213172], "geometry": {"coordinates": [[-70.28195786801501, 43.72395613213172, 0.0], [-70.2808104680168, 43.72290093213337, 0.0], [-70.2795406013521, 43.72251393213395, 0.0], [-70.27825506802077, 43.72256119880052, 0.0], [-70.2776190013551, 43.722458532134056, 0.0], [-70.2749736680259, 43.72143239880228, 0.0], [-70.27293486802904, 43.72045439880384, 0.0], [-70.2702930013665, 43.7188665988063, 0.0]], "type": "LineString"}, "id": "11", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724877", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.2702930013665, 43.71844839880691, -70.26968940136743, 43.7188665988063], "geometry": {"coordinates": [[-70.2702930013665, 43.7188665988063, 0.0], [-70.26968940136743, 43.71844839880691, 0.0]], "type": "LineString"}, "id": "12", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724879", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.26968940136743, 43.714795732145944, -70.25232820139433, 43.71844839880691], "geometry": {"coordinates": [[-70.26968940136743, 43.71844839880691, 0.0], [-70.2674172680376, 43.7176597321415, 0.0], [-70.26493186804146, 43.7169269988093, 0.0], [-70.26281126804474, 43.716385198810144, 0.0], [-70.26120686804722, 43.71663653214307, 0.0], [-70.25673826805416, 43.71600033214406, 0.0], [-70.25398860139177, 43.715667932144584, 0.0], [-70.25232820139433, 43.714795732145944, 0.0]], "type": "LineString"}, "id": "13", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724881", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.25232820139433, 43.71342579881474, -70.24617646807059, 43.714795732145944], "geometry": {"coordinates": [[-70.25232820139433, 43.714795732145944, 0.0], [-70.24876726806656, 43.71379399881414, 0.0], [-70.24617646807059, 43.71342579881474, 0.0]], "type": "LineString"}, "id": "14", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724883", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.24908966806606, 43.70107979883386, -70.24617646807059, 43.71342579881474], "geometry": {"coordinates": [[-70.24617646807059, 43.71342579881474, 0.0], [-70.24840366806711, 43.70591699882635, 0.0], [-70.24908966806606, 43.70107979883386, 0.0]], "type": "LineString"}, "id": "15", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724867", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.2497022680651, 43.69131719884905, -70.24471466807285, 43.70107979883386], "geometry": {"coordinates": [[-70.24908966806606, 43.70107979883386, 0.0], [-70.2497022680651, 43.69628319884134, 0.0], [-70.24874960139994, 43.692640932180325, 0.0], [-70.24471466807285, 43.69131719884905, 0.0]], "type": "LineString"}, "id": "16", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724863", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.37954646786358, 43.67767753220352, -70.3547300679021, 43.695952132175194], "geometry": {"coordinates": [[-70.37728700120039, 43.695952132175194, 0.0], [-70.37713900120065, 43.69562919884237, 0.0], [-70.37726120120044, 43.69531099884284, 0.0], [-70.37795866786604, 43.694911532176775, 0.0], [-70.37859286786505, 43.69449953217742, 0.0], [-70.3790726678643, 43.69395879884496, 0.0], [-70.37940426786378, 43.693095198846265, 0.0], [-70.37954646786358, 43.6921939988477, 0.0], [-70.37899366786439, 43.691154598849266, 0.0], [-70.37830126786548, 43.690478798850336, 0.0], [-70.3782340011989, 43.69012293218424, 0.0], [-70.37861806786498, 43.68912299885244, 0.0], [-70.37863786786494, 43.6885399321867, 0.0], [-70.37844686786525, 43.68762133218809, 0.0], [-70.37741286786684, 43.686241598856896, 0.0], [-70.37724320120049, 43.68562079885788, 0.0], [-70.3765426678682, 43.684258532193326, 0.0], [-70.37571740120285, 43.68375193219413, 0.0], [-70.37433026787164, 43.68293793219539, 0.0], [-70.37286246787392, 43.682156798863275, 0.0], [-70.37188526787543, 43.68098399886509, 0.0], [-70.37000220121172, 43.67933739886763, 0.0], [-70.36899006787996, 43.67825553220263, 0.0], [-70.36735460121582, 43.67773453220343, 0.0], [-70.36668800121686, 43.67769973220351, 0.0], [-70.36608466788442, 43.67767753220352, 0.0], [-70.36511306788594, 43.67772893220348, 0.0], [-70.36412806788746, 43.678168932202766, 0.0], [-70.36342400122192, 43.67876273220185, 0.0], [-70.36223220122378, 43.67921039886784, 0.0], [-70.36081180122596, 43.67936813220092, 0.0], [-70.35810800123016, 43.679857532200174, 0.0], [-70.35732586789806, 43.679946532200006, 0.0], [-70.3571122678984, 43.68014859886637, 0.0], [-70.35695500123194, 43.68055759886573, 0.0], [-70.35607206790002, 43.68126253219799, 0.0], [-70.3547300679021, 43.682381798862934, 0.0]], "type": "LineString"}, "id": "17", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722647", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.37647420120163, 43.58136033235303, -70.35470386790212, 43.601735598988114], "geometry": {"coordinates": [[-70.37647420120163, 43.60082099898949, 0.0], [-70.37449180120473, 43.60054659898992, 0.0], [-70.37395686787221, 43.600500932323314, 0.0], [-70.37301286787368, 43.60070679898968, 0.0], [-70.3719744678753, 43.60072959898963, 0.0], [-70.37165986787579, 43.60056973232321, 0.0], [-70.36939440121262, 43.60018093232384, 0.0], [-70.3690168012132, 43.60043239899011, 0.0], [-70.36823006788114, 43.60052379898997, 0.0], [-70.36769520121527, 43.60047813232336, 0.0], [-70.36687700121655, 43.60068393232308, 0.0], [-70.36502060121944, 43.600843798989445, 0.0], [-70.36461146788673, 43.60100379898921, 0.0], [-70.36373026788812, 43.601644198988254, 0.0], [-70.36319540122224, 43.601735598988114, 0.0], [-70.36278626788959, 43.601529798988395, 0.0], [-70.36278640122288, 43.601369732321984, 0.0], [-70.36209420122395, 43.60125533232218, 0.0], [-70.36061526789291, 43.600294732323675, 0.0], [-70.35992320122733, 43.59967719899129, 0.0], [-70.35853900122947, 43.599471332324924, 0.0], [-70.35812986789682, 43.599242598991964, 0.0], [-70.3578782678972, 43.598876732325834, 0.0], [-70.35712306789839, 43.59841933232656, 0.0], [-70.35690300123201, 43.59796193232728, 0.0], [-70.35668280123235, 43.59782459899418, 0.0], [-70.35599066790013, 43.59702419899537, 0.0], [-70.35570786790055, 43.59633813232978, 0.0], [-70.35548766790089, 43.596132332330114, 0.0], [-70.35548840123425, 43.593159732334755, 0.0], [-70.35536286790108, 43.59201633233653, 0.0], [-70.3551744012347, 43.591353199004175, 0.0], [-70.35492280123509, 43.59103293233801, 0.0], [-70.35489140123514, 43.590415532338966, 0.0], [-70.35508040123489, 43.58952373234035, 0.0], [-70.35495466790172, 43.58931793234069, 0.0], [-70.35498640123501, 43.58838039900883, 0.0], [-70.35470386790212, 43.586207999012174, 0.0], [-70.35520726790133, 43.58559059901313, 0.0], [-70.35558500123409, 43.585270599013654, 0.0], [-70.35571100123389, 43.58476753234777, 0.0], [-70.35561660123403, 43.5844931323482, 0.0], [-70.35549086790087, 43.58435593234839, 0.0], [-70.35549100123421, 43.58410433234877, 0.0], [-70.35593146790023, 43.58366993234944, 0.0], [-70.35593146790023, 43.58328119901671, 0.0], [-70.35546000123429, 43.58261793235107, 0.0], [-70.35536560123444, 43.58188619901887, 0.0], [-70.35517706790137, 43.58136033235303, 0.0]], "type": "LineString"}, "id": "18", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721687", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.3554808679009, 43.57344759903202, -70.35124786790749, 43.58136033235303], "geometry": {"coordinates": [[-70.35517706790137, 43.58136033235303, 0.0], [-70.35511306790147, 43.581208999019964, 0.0], [-70.3554808679009, 43.57987299902203, 0.0], [-70.35530226790121, 43.57892639902349, 0.0], [-70.35547720123424, 43.577529532358994, 0.0], [-70.35487040123519, 43.576757799026836, 0.0], [-70.35390986790333, 43.57643619902734, 0.0], [-70.3514966679071, 43.57354313236516, 0.0], [-70.35147600124043, 43.573521932365225, 0.0], [-70.35140766790721, 43.57347633236526, 0.0], [-70.35124786790749, 43.57344759903202, 0.0]], "type": "LineString"}, "id": "19", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722451", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.35124786790749, 43.569719799037784, -70.34879606791128, 43.57344759903202], "geometry": {"coordinates": [[-70.35124786790749, 43.57344759903202, 0.0], [-70.35077620124156, 43.573150199032455, 0.0], [-70.3507762679082, 43.57285299903293, 0.0], [-70.35102800124116, 43.57225853236719, 0.0], [-70.35039906790877, 43.57216693236734, 0.0], [-70.3501476012425, 43.57184679903446, 0.0], [-70.35011640124259, 43.57109213236896, 0.0], [-70.34973920124315, 43.5707489990362, 0.0], [-70.3498650679096, 43.570245999036956, 0.0], [-70.34920466791067, 43.570177332370406, 0.0], [-70.34879606791128, 43.569719799037784, 0.0]], "type": "LineString"}, "id": "20", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721725", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.34879606791128, 43.56567199904407, -70.34593580124908, 43.569719799037784], "geometry": {"coordinates": [[-70.34879606791128, 43.569719799037784, 0.0], [-70.34876466791133, 43.569445399038216, 0.0], [-70.34819886791223, 43.56864499903946, 0.0], [-70.34675280124776, 43.567204132375025, 0.0], [-70.34631260124848, 43.56702113237532, 0.0], [-70.34602966791556, 43.56672373237575, 0.0], [-70.34593580124908, 43.56594619904365, 0.0], [-70.34606160124883, 43.56578613237724, 0.0], [-70.34665926791462, 43.56567199904407, 0.0], [-70.34804286791245, 43.56580939904387, 0.0]], "type": "LineString"}, "id": "21", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721735", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.3502850012423, 43.5578585323895, -70.34701506791407, 43.56580939904387], "geometry": {"coordinates": [[-70.34804286791245, 43.56580939904387, 0.0], [-70.34826206791212, 43.56561533237749, 0.0], [-70.34827826791206, 43.56545519904438, 0.0], [-70.34734660124684, 43.564812132378734, 0.0], [-70.34701506791407, 43.56443573237931, 0.0], [-70.3474018012468, 43.564137132379756, 0.0], [-70.34829500124539, 43.56405393237992, 0.0], [-70.34884200124452, 43.56386893238022, 0.0], [-70.3489912012443, 43.563539332380685, 0.0], [-70.34852226791173, 43.56269453238201, 0.0], [-70.34891020124445, 43.562510532382305, 0.0], [-70.34973486790983, 43.56272393238197, 0.0], [-70.35002246790935, 43.56268333238205, 0.0], [-70.3502850012423, 43.56229459904932, 0.0], [-70.34971926790985, 43.56164279905033, 0.0], [-70.34954020124349, 43.56069253238513, 0.0], [-70.3499500679095, 43.55956559905354, 0.0], [-70.34996900124281, 43.5588669990546, 0.0], [-70.34977366790974, 43.5578585323895, 0.0]], "type": "LineString"}, "id": "22", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724801", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.34977366790974, 43.556014732392384, -70.34492626791729, 43.5578585323895], "geometry": {"coordinates": [[-70.34977366790974, 43.5578585323895, 0.0], [-70.3487270679114, 43.55760453238992, 0.0], [-70.3464306012483, 43.55693813239094, 0.0], [-70.34492626791729, 43.556014732392384, 0.0]], "type": "LineString"}, "id": "23", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724845", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3455002679164, 43.55531293239346, -70.34492626791729, 43.556014732392384], "geometry": {"coordinates": [[-70.34492626791729, 43.556014732392384, 0.0], [-70.3455002679164, 43.55531293239346, 0.0]], "type": "LineString"}, "id": "24", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724803", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.34492626791729, 43.55513359906041, -70.34387906791892, 43.556014732392384], "geometry": {"coordinates": [[-70.34492626791729, 43.556014732392384, 0.0], [-70.34387906791892, 43.55513359906041, 0.0]], "type": "LineString"}, "id": "25", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724847", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3456262679162, 43.55368919906266, -70.34471460125093, 43.55531293239346], "geometry": {"coordinates": [[-70.3455002679164, 43.55531293239346, 0.0], [-70.3456262679162, 43.55480979906093, 0.0], [-70.34553226791633, 43.55389513239567, 0.0], [-70.3451864679169, 43.55368919906266, 0.0], [-70.34480906791748, 43.55398653239553, 0.0], [-70.34471460125093, 43.5541921990619, 0.0]], "type": "LineString"}, "id": "26", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721757", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.34387906791892, 43.553576532396164, -70.34272146792074, 43.55513359906041], "geometry": {"coordinates": [[-70.34387906791892, 43.55513359906041, 0.0], [-70.34304306792023, 43.55461539906122, 0.0], [-70.34272146792074, 43.553576532396164, 0.0]], "type": "LineString"}, "id": "27", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724843", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.34471460125093, 43.5541921990619, -70.34387906791892, 43.55513359906041], "geometry": {"coordinates": [[-70.34471460125093, 43.5541921990619, 0.0], [-70.34457826791783, 43.55462453239454, 0.0], [-70.34432340125159, 43.55492773239405, 0.0], [-70.34387906791892, 43.55513359906041, 0.0]], "type": "LineString"}, "id": "28", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724805", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.34272146792074, 43.55302513239701, -70.3413826012561, 43.553576532396164], "geometry": {"coordinates": [[-70.34272146792074, 43.553576532396164, 0.0], [-70.3413826012561, 43.55302513239701, 0.0]], "type": "LineString"}, "id": "29", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724807", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.34396126791881, 43.54938259906936, -70.34270160125408, 43.553576532396164], "geometry": {"coordinates": [[-70.34272146792074, 43.553576532396164, 0.0], [-70.34333900125307, 43.55253133239779, 0.0], [-70.34396126791881, 43.55091059906698, 0.0], [-70.34270160125408, 43.54938259906936, 0.0]], "type": "LineString"}, "id": "30", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724841", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3413826012561, 43.55167559906579, -70.34003120125823, 43.55302513239701], "geometry": {"coordinates": [[-70.3413826012561, 43.55302513239701, 0.0], [-70.34040826792432, 43.55236179906473, 0.0], [-70.3400938679248, 43.551972932398655, 0.0], [-70.34003120125823, 43.55167559906579, 0.0]], "type": "LineString"}, "id": "31", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721767", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.34270160125408, 43.54938259906936, -70.33987086792513, 43.54939573240267], "geometry": {"coordinates": [[-70.34270160125408, 43.54938259906936, 0.0], [-70.33987086792513, 43.54939573240267, 0.0]], "type": "LineString"}, "id": "32", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724837", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3406128012573, 43.55044619906772, -70.34003120125823, 43.55167559906579], "geometry": {"coordinates": [[-70.34003120125823, 43.55167559906579, 0.0], [-70.3406128012573, 43.55044619906772, 0.0]], "type": "LineString"}, "id": "33", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724809", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.33987086792513, 43.548589332403935, -70.33593086793127, 43.54939573240267], "geometry": {"coordinates": [[-70.33987086792513, 43.54939573240267, 0.0], [-70.33593086793127, 43.548589332403935, 0.0]], "type": "LineString"}, "id": "34", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724835", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3406128012573, 43.54939573240267, -70.33987086792513, 43.55044619906772], "geometry": {"coordinates": [[-70.3406128012573, 43.55044619906772, 0.0], [-70.33987086792513, 43.54939573240267, 0.0]], "type": "LineString"}, "id": "35", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724811", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.33593086793127, 43.54825273240442, -70.33483420126629, 43.548589332403935], "geometry": {"coordinates": [[-70.33593086793127, 43.548589332403935, 0.0], [-70.33483420126629, 43.54825273240442, 0.0]], "type": "LineString"}, "id": "36", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724831", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.33483420126629, 43.54740453240578, -70.33096153460565, 43.54825273240442], "geometry": {"coordinates": [[-70.33483420126629, 43.54825273240442, 0.0], [-70.33096153460565, 43.54740453240578, 0.0]], "type": "LineString"}, "id": "37", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724829", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.33096153460565, 43.54119039908204, -70.32614440127975, 43.54740453240578], "geometry": {"coordinates": [[-70.33096153460565, 43.54740453240578, 0.0], [-70.3291554012751, 43.54642899907395, 0.0], [-70.32658326794575, 43.544856399076366, 0.0], [-70.32614440127975, 43.54377779907804, 0.0], [-70.32708860127832, 43.54119039908204, 0.0]], "type": "LineString"}, "id": "38", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724819", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.35206320123956, 43.57964473235569, -70.33446880126684, 43.60113719898902], "geometry": {"coordinates": [[-70.33446880126684, 43.59804833232715, 0.0], [-70.33497206793277, 43.598162798993656, 0.0], [-70.33528666793228, 43.59839159899326, 0.0], [-70.33538080126544, 43.598848998992594, 0.0], [-70.33582086793143, 43.599489532324924, 0.0], [-70.33632426793065, 43.599695532324574, 0.0], [-70.33726820126253, 43.59969573232456, 0.0], [-70.3376772012619, 43.599741532324515, 0.0], [-70.33792880126151, 43.599901598990925, 0.0], [-70.33799166792807, 43.60003879899074, 0.0], [-70.33786560126157, 43.60051899898997, 0.0], [-70.33805426792793, 43.60074779898963, 0.0], [-70.33921840125947, 43.60109113232244, 0.0], [-70.34022520125791, 43.60113719898902, 0.0], [-70.34085460125692, 43.6009543989893, 0.0], [-70.3417672679222, 43.60090893232268, 0.0], [-70.34324626791988, 43.600566198989895, 0.0], [-70.34384440125228, 43.60013199899055, 0.0], [-70.34450520125125, 43.600040532324044, 0.0], [-70.34504026791711, 43.59962913232471, 0.0], [-70.34560666791623, 43.59935479899178, 0.0], [-70.34601586791558, 43.598943332325746, 0.0], [-70.34601620124891, 43.5981885989936, 0.0], [-70.34651966791483, 43.598005932327226, 0.0], [-70.34670860124788, 43.59773139899431, 0.0], [-70.34664586791462, 43.59718279899516, 0.0], [-70.34683480124767, 43.59695413232885, 0.0], [-70.34686646791425, 43.59661113232937, 0.0], [-70.3466462679146, 43.59638239899641, 0.0], [-70.34655200124809, 43.59619953232999, 0.0], [-70.3482834012454, 43.593707332333906, 0.0], [-70.34822060124549, 43.59329559900118, 0.0], [-70.34809486791238, 43.59308979900152, 0.0], [-70.34815780124563, 43.5928839990018, 0.0], [-70.34859846791159, 43.59242679900251, 0.0], [-70.34903920124424, 43.59206099900308, 0.0], [-70.34963700124331, 43.59194679900327, 0.0], [-70.34992020124287, 43.59180959900351, 0.0], [-70.35010900124257, 43.591489532337334, 0.0], [-70.35001486790941, 43.59087213233829, 0.0], [-70.35039246790882, 43.59055199900547, 0.0], [-70.3503926679088, 43.59009473233948, 0.0], [-70.35061300124181, 43.58998039900632, 0.0], [-70.35064460124175, 43.58961453234025, 0.0], [-70.35045586790869, 43.58943153234054, 0.0], [-70.34976380124311, 43.589271332340786, 0.0], [-70.34944926791024, 43.58901973234117, 0.0], [-70.34944940124359, 43.58865393234174, 0.0], [-70.34966966790995, 43.58840239900877, 0.0], [-70.34948126791022, 43.587510532343515, 0.0], [-70.34963866790997, 43.58691613234441, 0.0], [-70.3493872012437, 43.586618799011546, 0.0], [-70.34985920124296, 43.58627579901207, 0.0], [-70.34976520124309, 43.58538399901346, 0.0], [-70.3502374012424, 43.584675199014555, 0.0], [-70.35017446790914, 43.58435499901509, 0.0], [-70.35017466790913, 43.58380633234924, 0.0], [-70.35089826790801, 43.583463399016466, 0.0], [-70.35096140124125, 43.58298319901718, 0.0], [-70.35118166790755, 43.58273159901756, 0.0], [-70.35152780124037, 43.58261739901775, 0.0], [-70.35174820124001, 43.582114332351864, 0.0], [-70.35181126790661, 43.58163413235263, 0.0], [-70.35206320123956, 43.58094819902033, 0.0], [-70.35159146790693, 43.58019353235488, 0.0], [-70.35162306790687, 43.57964473235569, 0.0]], "type": "LineString"}, "id": "39", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721697", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.35166760124014, 43.57546533236217, -70.34833186791201, 43.57964473235569], "geometry": {"coordinates": [[-70.35162306790687, 43.57964473235569, 0.0], [-70.35159180124026, 43.57957619902248, 0.0], [-70.35166760124014, 43.57898293235672, 0.0], [-70.35134986790735, 43.57839893235763, 0.0], [-70.35019320124246, 43.5776477990255, 0.0], [-70.34861526791155, 43.57564119902861, 0.0], [-70.34833186791201, 43.57546533236217, 0.0]], "type": "LineString"}, "id": "40", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722441", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.34833186791201, 43.57543653236223, -70.34828540124539, 43.57548219902884], "geometry": {"coordinates": [[-70.34833186791201, 43.57546533236217, 0.0], [-70.34828540124539, 43.57543653236223, 0.0], [-70.34829060124542, 43.57548219902884, 0.0]], "type": "LineString"}, "id": "41", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722443", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.34829060124542, 43.57164019903479, -70.34671960124786, 43.57548219902884], "geometry": {"coordinates": [[-70.34829060124542, 43.57548219902884, 0.0], [-70.34807046791241, 43.57518493236262, 0.0], [-70.34803926791244, 43.574658932363434, 0.0], [-70.34781920124612, 43.574567532363574, 0.0], [-70.34778780124617, 43.5742245323641, 0.0], [-70.34763060124641, 43.574087199031, 0.0], [-70.34709586791394, 43.574155799030905, 0.0], [-70.34687580124762, 43.574087132364355, 0.0], [-70.34687580124762, 43.57394993236454, 0.0], [-70.34741080124678, 43.573469799031955, 0.0], [-70.34825986791213, 43.573447132365345, 0.0], [-70.34826006791212, 43.57326413236564, 0.0], [-70.3480400012458, 43.57301253236602, 0.0], [-70.34800880124584, 43.57216639903396, 0.0], [-70.34785160124608, 43.5720979323674, 0.0], [-70.34722266791374, 43.572006199034206, 0.0], [-70.34671960124786, 43.57164019903479, 0.0]], "type": "LineString"}, "id": "42", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721979", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.34879606791128, 43.56873633237262, -70.34671960124786, 43.57164019903479], "geometry": {"coordinates": [[-70.34671960124786, 43.57164019903479, 0.0], [-70.3469714679141, 43.57079419903613, 0.0], [-70.34697160124745, 43.570359799036794, 0.0], [-70.34681446791438, 43.57013099903713, 0.0], [-70.34678320124772, 43.56976513237106, 0.0], [-70.34697206791412, 43.569147732372016, 0.0], [-70.34731820124694, 43.568759132372634, 0.0], [-70.347695667913, 43.56873633237262, 0.0], [-70.34794720124592, 43.56885073237248, 0.0], [-70.34804146791248, 43.56919373237196, 0.0], [-70.34813580124563, 43.569285332371805, 0.0], [-70.34813566791229, 43.569445332371515, 0.0], [-70.34838720124526, 43.56965119903788, 0.0], [-70.34879606791128, 43.569719799037784, 0.0]], "type": "LineString"}, "id": "43", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721727", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.3737988012058, 43.576399199027435, -70.35961060122781, 43.59210833233635], "geometry": {"coordinates": [[-70.36011346789371, 43.59210833233635, 0.0], [-70.35989326789405, 43.59178813233689, 0.0], [-70.35986206789408, 43.590713532338555, 0.0], [-70.35967340122772, 43.59039333233903, 0.0], [-70.35961060122781, 43.58975299900669, 0.0], [-70.36001980122717, 43.58913559900765, 0.0], [-70.36017720122697, 43.58828953234229, 0.0], [-70.36036606789332, 43.587832199009654, 0.0], [-70.36039766789327, 43.58732919901047, 0.0], [-70.3602404678935, 43.586803199011285, 0.0], [-70.3605238012264, 43.58577419901286, 0.0], [-70.3603664678933, 43.58540833234679, 0.0], [-70.35998920122722, 43.585088132347266, 0.0], [-70.36008346789379, 43.584836599014295, 0.0], [-70.3604610012265, 43.58453939901477, 0.0], [-70.3605240678931, 43.58392199901573, 0.0], [-70.36033540122668, 43.58364753234952, 0.0], [-70.36027266789347, 43.58216119901846, 0.0], [-70.36005260122715, 43.58188679901889, 0.0], [-70.3600842012271, 43.58145233235291, 0.0], [-70.36061920122626, 43.5799203323553, 0.0], [-70.36099680122567, 43.57950879902256, 0.0], [-70.36238100122353, 43.578685599023856, 0.0], [-70.36398506788771, 43.57813693235806, 0.0], [-70.36451986788688, 43.57786259902514, 0.0], [-70.3650232012194, 43.577679732358774, 0.0], [-70.36593526788465, 43.577588332358914, 0.0], [-70.36615560121766, 43.577313932359345, 0.0], [-70.36669026788348, 43.577062399026374, 0.0], [-70.36675320121674, 43.57683373236006, 0.0], [-70.36703626788295, 43.57665079902705, 0.0], [-70.36779120121514, 43.57658213236044, 0.0], [-70.36782266788174, 43.57649073236058, 0.0], [-70.36820006788116, 43.576399199027435, 0.0], [-70.36845180121412, 43.57651353236059, 0.0], [-70.36832586788097, 43.57683373236006, 0.0], [-70.36835740121427, 43.57701659902648, 0.0], [-70.36766526788199, 43.57793133235839, 0.0], [-70.36753940121554, 43.57836579902437, 0.0], [-70.36757086788214, 43.578754532357095, 0.0], [-70.3676966012153, 43.5788001990237, 0.0], [-70.36797966788151, 43.57937193235614, 0.0], [-70.36873460121365, 43.580195199021546, 0.0], [-70.37021286787802, 43.58120133235332, 0.0], [-70.37065326787734, 43.58120133235332, 0.0], [-70.37103080121011, 43.581064132353504, 0.0], [-70.37153406787598, 43.58069819902073, 0.0], [-70.3719430012087, 43.580515332354366, 0.0], [-70.3730754678736, 43.580515332354366, 0.0], [-70.37367300120599, 43.58012659902164, 0.0], [-70.3737988012058, 43.57976073235551, 0.0], [-70.37364160120603, 43.579349132356185, 0.0]], "type": "LineString"}, "id": "44", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721977", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.37414486787196, 43.57523313236254, -70.37266646787424, 43.579349132356185], "geometry": {"coordinates": [[-70.37364160120603, 43.579349132356185, 0.0], [-70.37332700120652, 43.57900613235671, 0.0], [-70.37345286787303, 43.57880033235705, 0.0], [-70.3740506012054, 43.578754532357095, 0.0], [-70.37414486787196, 43.57870879902384, 0.0], [-70.37414480120526, 43.57852593235742, 0.0], [-70.37351580120622, 43.57799999902494, 0.0], [-70.37298100120705, 43.577977132358285, 0.0], [-70.37266646787424, 43.57781713235852, 0.0], [-70.37266646787424, 43.57772559902537, 0.0], [-70.37282380120735, 43.57763413235881, 0.0], [-70.37376740120584, 43.57749679902571, 0.0], [-70.37383026787245, 43.57713099902628, 0.0], [-70.37298100120705, 43.576696599026945, 0.0], [-70.37307526787362, 43.57637653236077, 0.0], [-70.37357846787279, 43.576056332361304, 0.0], [-70.37414466787192, 43.575576132362016, 0.0], [-70.37408166787202, 43.57527879902915, 0.0], [-70.37395600120556, 43.57523313236254, 0.0], [-70.37335826787313, 43.575255999029196, 0.0]], "type": "LineString"}, "id": "45", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721973", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.3743960012049, 43.56553753237762, -70.36691126788315, 43.575621799028625], "geometry": {"coordinates": [[-70.37335826787313, 43.575255999029196, 0.0], [-70.37329546787328, 43.575347399029056, 0.0], [-70.3728236012073, 43.575461732362214, 0.0], [-70.37235186787473, 43.574981532362926, 0.0], [-70.37131386787632, 43.574684332363404, 0.0], [-70.37077926787714, 43.57470719903006, 0.0], [-70.37015020121146, 43.57488999902978, 0.0], [-70.36989860121184, 43.575095932362785, 0.0], [-70.36986720121189, 43.575255932362495, 0.0], [-70.36958406787903, 43.57553033236212, 0.0], [-70.36930106787946, 43.575621799028625, 0.0], [-70.3689236012134, 43.57539313236231, 0.0], [-70.36842040121417, 43.57537019902901, 0.0], [-70.36867200121378, 43.57484433236317, 0.0], [-70.36923820121291, 43.57450119903035, 0.0], [-70.37033900121116, 43.574181199030875, 0.0], [-70.37024446787797, 43.574021132364464, 0.0], [-70.36977280121204, 43.57360959903173, 0.0], [-70.36974140121208, 43.57331233236556, 0.0], [-70.36986720121189, 43.57317513236575, 0.0], [-70.36986726787859, 43.57260339903331, 0.0], [-70.3693012012128, 43.57235193236704, 0.0], [-70.36901806787989, 43.57210033236743, 0.0], [-70.36895520121334, 43.571688732368045, 0.0], [-70.36908100121315, 43.57148293236838, 0.0], [-70.3693012012128, 43.57139139903518, 0.0], [-70.36983586787863, 43.57155159903493, 0.0], [-70.37077926787714, 43.57207753236747, 0.0], [-70.37206886787516, 43.57198599903427, 0.0], [-70.37247766787453, 43.572145999034035, 0.0], [-70.37266646787424, 43.572031599034176, 0.0], [-70.3726978678742, 43.57164293236815, 0.0], [-70.37254066787443, 43.57134573236857, 0.0], [-70.37140840120952, 43.570293799036904, 0.0], [-70.37049640121091, 43.570156732370435, 0.0], [-70.3701818012114, 43.56995079903743, 0.0], [-70.37008746787825, 43.569744999037766, 0.0], [-70.37037066787781, 43.56953919903805, 0.0], [-70.37153426787597, 43.56951639903809, 0.0], [-70.37181726787554, 43.56942493237159, 0.0], [-70.3719744678753, 43.56924193237188, 0.0], [-70.37197460120865, 43.56841879903982, 0.0], [-70.37213166787507, 43.5682129990401, 0.0], [-70.37232026787478, 43.56802999904039, 0.0], [-70.37279206787406, 43.56802999904039, 0.0], [-70.37294946787381, 43.569562132371345, 0.0], [-70.37313820120681, 43.569767932371064, 0.0], [-70.37354700120619, 43.569744999037766, 0.0], [-70.37392446787226, 43.569562132371345, 0.0], [-70.37423880120514, 43.56926479903848, 0.0], [-70.37420740120518, 43.56883039903914, 0.0], [-70.37373566787255, 43.56807573237364, 0.0], [-70.37373560120591, 43.56757273237446, 0.0], [-70.37433306787165, 43.56674953237575, 0.0], [-70.3743960012049, 43.56638359904298, 0.0], [-70.37427020120509, 43.56622353237657, 0.0], [-70.37398720120552, 43.566040599043504, 0.0], [-70.37254046787444, 43.56700099904202, 0.0], [-70.3718172012089, 43.56732113237484, 0.0], [-70.37140840120952, 43.56734399904144, 0.0], [-70.37068506787733, 43.566772332375706, 0.0], [-70.37033920121115, 43.565994932376896, 0.0], [-70.3700876012116, 43.56578913237723, 0.0], [-70.36955306787905, 43.56553753237762, 0.0], [-70.3693014012128, 43.56574333237728, 0.0], [-70.36927000121284, 43.566131999043364, 0.0], [-70.3693642012127, 43.56677239904235, 0.0], [-70.36967886787886, 43.567526932374506, 0.0], [-70.36971020121217, 43.56793853237389, 0.0], [-70.36980460121202, 43.56800713237379, 0.0], [-70.36977306787873, 43.568487332373024, 0.0], [-70.36952146787911, 43.56867019903939, 0.0], [-70.36873520121367, 43.568738799039295, 0.0], [-70.36691126788315, 43.56823573237341, 0.0]], "type": "LineString"}, "id": "46", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721733", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.36691126788315, 43.56802939904043, -70.36668306788351, 43.56823573237341], "geometry": {"coordinates": [[-70.36691126788315, 43.56823573237341, 0.0], [-70.36684920121661, 43.56815053237352, 0.0], [-70.36668306788351, 43.56802939904043, 0.0]], "type": "LineString"}, "id": "47", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722709", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36668306788351, 43.56778739904075, -70.36635073455068, 43.56802939904043], "geometry": {"coordinates": [[-70.36668306788351, 43.56802939904043, 0.0], [-70.36635073455068, 43.56778739904075, 0.0]], "type": "LineString"}, "id": "48", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722455", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36668306788351, 43.56802939904043, -70.36662820121694, 43.56832719903997], "geometry": {"coordinates": [[-70.36668306788351, 43.56802939904043, 0.0], [-70.36662820121694, 43.56832719903997, 0.0]], "type": "LineString"}, "id": "49", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722707", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36635073455068, 43.56731413237486, -70.36626146788416, 43.56778739904075], "geometry": {"coordinates": [[-70.36635073455068, 43.56778739904075, 0.0], [-70.36626146788416, 43.56731413237486, 0.0]], "type": "LineString"}, "id": "50", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722459", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36662820121694, 43.56832719903997, -70.36603046788451, 43.569058932372116], "geometry": {"coordinates": [[-70.36662820121694, 43.56832719903997, 0.0], [-70.3666280678836, 43.56876173237259, 0.0], [-70.36640800121728, 43.568967532372255, 0.0], [-70.36603046788451, 43.569058932372116, 0.0]], "type": "LineString"}, "id": "51", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721729", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.37078886787714, 43.562369132382514, -70.36626146788416, 43.56731413237486], "geometry": {"coordinates": [[-70.36626146788416, 43.56731413237486, 0.0], [-70.36661480121694, 43.566863932375554, 0.0], [-70.36651120121712, 43.56619253237659, 0.0], [-70.36683586788325, 43.5653461323779, 0.0], [-70.36821360121445, 43.56457939904578, 0.0], [-70.36914526787967, 43.56450479904589, 0.0], [-70.37000186787839, 43.564154799046435, 0.0], [-70.37061566787742, 43.56349619904745, 0.0], [-70.37078886787714, 43.56280379904854, 0.0], [-70.37075860121053, 43.562555932382224, 0.0], [-70.37072706787723, 43.562369132382514, 0.0]], "type": "LineString"}, "id": "52", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722717", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36603046788451, 43.5679611990405, -70.36552746788533, 43.569058932372116], "geometry": {"coordinates": [[-70.36603046788451, 43.569058932372116, 0.0], [-70.3658418678848, 43.56903599903882, 0.0], [-70.3656216678852, 43.56878439903926, 0.0], [-70.36552746788533, 43.568258599040064, 0.0], [-70.36562180121848, 43.56809839904031, 0.0], [-70.3658734678848, 43.5679611990405, 0.0]], "type": "LineString"}, "id": "53", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721985", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.36603046788451, 43.56672619904242, -70.36254006788994, 43.56990493237083], "geometry": {"coordinates": [[-70.36603046788451, 43.569058932372116, 0.0], [-70.36596760121796, 43.56931053237173, 0.0], [-70.36568446788505, 43.56969913237117, 0.0], [-70.36533860121892, 43.569836332370926, 0.0], [-70.36467820121999, 43.56990493237083, 0.0], [-70.36426926788727, 43.56967619903787, 0.0], [-70.36414346788746, 43.569447532371555, 0.0], [-70.3640808012209, 43.56905873237213, 0.0], [-70.36357766788836, 43.56800679904046, 0.0], [-70.3632946678888, 43.56759519904108, 0.0], [-70.3626658012231, 43.56720639904171, 0.0], [-70.36254006788994, 43.56700059904199, 0.0], [-70.3626658012231, 43.566817732375625, 0.0], [-70.36291746788936, 43.56672619904242, 0.0], [-70.36360926788831, 43.566726332375765, 0.0], [-70.36442700122035, 43.56700079904198, 0.0], [-70.36477286788647, 43.56722939904165, 0.0], [-70.36577920121823, 43.56741239904136, 0.0]], "type": "LineString"}, "id": "54", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721987", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.37072706787723, 43.56192379904991, -70.36908146787982, 43.562369132382514], "geometry": {"coordinates": [[-70.37072706787723, 43.562369132382514, 0.0], [-70.37055266787752, 43.56216813238285, 0.0], [-70.3703756012111, 43.562055532383, 0.0], [-70.37004860121164, 43.561977399049795, 0.0], [-70.36946280121253, 43.56192379904991, 0.0], [-70.36937726787932, 43.56193019904987, 0.0], [-70.36925440121286, 43.5619305323832, 0.0], [-70.36908146787982, 43.561924532383216, 0.0]], "type": "LineString"}, "id": "55", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722461", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36635073455068, 43.56778739904075, -70.3658734678848, 43.5679611990405], "geometry": {"coordinates": [[-70.3658734678848, 43.5679611990405, 0.0], [-70.365927601218, 43.567938732373875, 0.0], [-70.36635073455068, 43.56778739904075, 0.0]], "type": "LineString"}, "id": "56", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722453", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36626146788416, 43.56731413237486, -70.36577920121823, 43.567425399041326], "geometry": {"coordinates": [[-70.36577920121823, 43.56741239904136, 0.0], [-70.36593280121804, 43.567425399041326, 0.0], [-70.36607026788448, 43.56739233237471, 0.0], [-70.36618646788429, 43.567342799041455, 0.0], [-70.36626146788416, 43.56731413237486, 0.0]], "type": "LineString"}, "id": "57", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722457", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.36908146787982, 43.56151279905055, -70.36898726787996, 43.561924532383216], "geometry": {"coordinates": [[-70.36908146787982, 43.561924532383216, 0.0], [-70.36898726787996, 43.56151279905055, 0.0]], "type": "LineString"}, "id": "58", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721739", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.36898726787996, 43.55750999905672, -70.34977366790974, 43.564805999045404], "geometry": {"coordinates": [[-70.36898726787996, 43.56151279905055, 0.0], [-70.36792720121491, 43.561215332384336, 0.0], [-70.36708046788289, 43.56134319905078, 0.0], [-70.36634060121736, 43.561863332383325, 0.0], [-70.36549766788534, 43.56258539904883, 0.0], [-70.3641236012208, 43.56422139904629, 0.0], [-70.36337046788867, 43.56477599904548, 0.0], [-70.36287020122279, 43.564805999045404, 0.0], [-70.36271200122303, 43.564681799045616, 0.0], [-70.36226080122373, 43.563979999046694, 0.0], [-70.36189306789095, 43.56312799904799, 0.0], [-70.36197386789081, 43.56217993238283, 0.0], [-70.36240806789016, 43.5614505990506, 0.0], [-70.3626048012232, 43.560803732384954, 0.0], [-70.36227566789034, 43.56005213238615, 0.0], [-70.36112840122547, 43.5589519990545, 0.0], [-70.35920606789512, 43.55886559905463, 0.0], [-70.35611286789992, 43.55854573238844, 0.0], [-70.35446700123583, 43.5576057323899, 0.0], [-70.35203366790626, 43.55750999905672, 0.0], [-70.34977366790974, 43.5578585323895, 0.0]], "type": "LineString"}, "id": "59", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724851", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.49738286768064, 43.46118939920626, -70.48889406769382, 43.46717139919696], "geometry": {"coordinates": [[-70.48889406769382, 43.46118939920626, 0.0], [-70.48911400102679, 43.461212132539515, 0.0], [-70.48939706769306, 43.4614633992058, 0.0], [-70.4897112010259, 43.461554532539026, 0.0], [-70.49146920102316, 43.461552599205675, 0.0], [-70.49241060102167, 43.46139159920591, 0.0], [-70.492850001021, 43.46136819920599, 0.0], [-70.49366700101973, 43.46182459920527, 0.0], [-70.4940130010192, 43.462121532538106, 0.0], [-70.49401320101919, 43.462212932537966, 0.0], [-70.4942018010189, 43.46237279920439, 0.0], [-70.49432820101873, 43.46266999920397, 0.0], [-70.49414020101904, 43.462852999203676, 0.0], [-70.49404660101914, 43.463173332536485, 0.0], [-70.49417320101895, 43.463630532535774, 0.0], [-70.49445626768517, 43.463927399201964, 0.0], [-70.49495920101776, 43.46417853253496, 0.0], [-70.49527380101728, 43.4644981992011, 0.0], [-70.49552546768354, 43.46479519920064, 0.0], [-70.49568426768326, 43.4656183325327, 0.0], [-70.49606160101604, 43.465915132532245, 0.0], [-70.49659546768186, 43.46598313253213, 0.0], [-70.497161467681, 43.466416999198145, 0.0], [-70.49738186768064, 43.466691199197726, 0.0], [-70.49738286768064, 43.46717139919696, 0.0]], "type": "LineString"}, "id": "60", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316829", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.5005360010091, 43.46717139919696, -70.49227966768859, 43.47899199917862], "geometry": {"coordinates": [[-70.49738286768064, 43.46717139919696, 0.0], [-70.49722640101425, 43.467445999196514, 0.0], [-70.49700680101455, 43.46753759919636, 0.0], [-70.49681926768153, 43.46792659919578, 0.0], [-70.49682206768153, 43.46927579919367, 0.0], [-70.49644606768209, 43.469619199193176, 0.0], [-70.49622660101579, 43.46975659919292, 0.0], [-70.49534740101711, 43.46973473252632, 0.0], [-70.49478300101799, 43.47007833252576, 0.0], [-70.4942514676855, 43.47119939919071, 0.0], [-70.49393806768597, 43.47142839919036, 0.0], [-70.49362520101982, 43.47197759918947, 0.0], [-70.49318586768715, 43.47211519918926, 0.0], [-70.49302906768742, 43.47225259918906, 0.0], [-70.49293640102087, 43.472961599187954, 0.0], [-70.49252880102154, 43.4732365325209, 0.0], [-70.49249800102154, 43.47353373252042, 0.0], [-70.49259260102144, 43.47373939918674, 0.0], [-70.49227966768859, 43.47419713251941, 0.0], [-70.49243700102164, 43.47435699918583, 0.0], [-70.49293966768755, 43.47458519918547, 0.0], [-70.49306606768732, 43.4749051325183, 0.0], [-70.49316126768719, 43.47538533251753, 0.0], [-70.49319486768712, 43.47643713251591, 0.0], [-70.49332080102027, 43.47661993251563, 0.0], [-70.49385540101946, 43.47698519918174, 0.0], [-70.49482906768463, 43.47714419918145, 0.0], [-70.49633640101558, 43.47723393251465, 0.0], [-70.49665060101512, 43.477302199181224, 0.0], [-70.49693386768132, 43.47764493251401, 0.0], [-70.49709200101444, 43.47812493251331, 0.0], [-70.49721806768088, 43.47830773251303, 0.0], [-70.49731240101409, 43.47837619917959, 0.0], [-70.49740700101393, 43.47853613251266, 0.0], [-70.49778420101336, 43.478741532512345, 0.0], [-70.49872666767857, 43.47899199917862, 0.0], [-70.49922900101109, 43.47894573251199, 0.0], [-70.4995114010107, 43.47885393251215, 0.0], [-70.49975040101032, 43.47856453251262, 0.0], [-70.5005360010091, 43.47826799917971, 0.0]], "type": "LineString"}, "id": "61", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316885", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.50304460100517, 43.47826799917971, -70.4751760677151, 43.497264399150254], "geometry": {"coordinates": [[-70.5005360010091, 43.47826799917971, 0.0], [-70.50078686767534, 43.47849693251271, 0.0], [-70.50110066767485, 43.47856579917925, 0.0], [-70.5013516676745, 43.47872613251235, 0.0], [-70.50172760100725, 43.47918393251166, 0.0], [-70.50213540100663, 43.479412799177965, 0.0], [-70.5025746676726, 43.479596332510994, 0.0], [-70.50304460100517, 43.48016839917676, 0.0], [-70.50301260100525, 43.48048853250964, 0.0], [-70.50294940100537, 43.480717132509255, 0.0], [-70.50282346767221, 43.48083133250907, 0.0], [-70.50266600100576, 43.481082732508696, 0.0], [-70.50263400100584, 43.48140279917487, 0.0], [-70.50253940100595, 43.48165433250779, 0.0], [-70.502506801006, 43.482317332506796, 0.0], [-70.50090480100852, 43.48254439917309, 0.0], [-70.50062126767563, 43.48295579917243, 0.0], [-70.50074646767541, 43.48318459917209, 0.0], [-70.50134266767452, 43.48345953250498, 0.0], [-70.50159346767413, 43.48366559917133, 0.0], [-70.50196946767352, 43.484123332504, 0.0], [-70.50206226767341, 43.48480939916959, 0.0], [-70.50225040100645, 43.485061132502494, 0.0], [-70.5022810010064, 43.48544979916858, 0.0], [-70.50171520100724, 43.48570079916817, 0.0], [-70.50158900100746, 43.485975132501096, 0.0], [-70.50121186767473, 43.48613479916753, 0.0], [-70.50074066767542, 43.48620293250076, 0.0], [-70.50017446767629, 43.486659799166716, 0.0], [-70.49963960101047, 43.48713939916598, 0.0], [-70.49949846767737, 43.487406132498904, 0.0], [-70.49905940101138, 43.48765819916514, 0.0], [-70.49871386767859, 43.48763573249852, 0.0], [-70.4983052676792, 43.487476132498784, 0.0], [-70.49714120101436, 43.48653993250025, 0.0], [-70.49685840101478, 43.48647153250033, 0.0], [-70.49575940101647, 43.48654139916687, 0.0], [-70.49538280101706, 43.486633332500105, 0.0], [-70.49497540101771, 43.48711399916601, 0.0], [-70.4946618676849, 43.48734299916566, 0.0], [-70.4944108010186, 43.48741179916556, 0.0], [-70.49390806768605, 43.48734373249897, 0.0], [-70.49309100102062, 43.48711613249935, 0.0], [-70.49246320102162, 43.487231132499176, 0.0], [-70.49123886769019, 43.487483932498776, 0.0], [-70.48957440102612, 43.48748573249878, 0.0], [-70.48929140102655, 43.487302999165706, 0.0], [-70.48903960102695, 43.48702893249947, 0.0], [-70.48816040102827, 43.48709839916603, 0.0], [-70.4879100010287, 43.48751033249874, 0.0], [-70.48775306769562, 43.48757913249864, 0.0], [-70.48706226769667, 43.48769413249846, 0.0], [-70.48700080103009, 43.48831159916415, 0.0], [-70.48675000103049, 43.48856339916375, 0.0], [-70.48587140103183, 43.488998799163085, 0.0], [-70.48562080103221, 43.48929639916264, 0.0], [-70.48467926770036, 43.489731799161916, 0.0], [-70.48376860103514, 43.48982433249512, 0.0], [-70.48329780103586, 43.48996193249491, 0.0], [-70.4822924010374, 43.48980279916185, 0.0], [-70.48175880103821, 43.48994053249493, 0.0], [-70.48135086770554, 43.490192532494575, 0.0], [-70.48022086770726, 43.490582399160644, 0.0], [-70.4799702677077, 43.4909027991601, 0.0], [-70.47994000104103, 43.491382999159384, 0.0], [-70.4796896677081, 43.49193199915851, 0.0], [-70.47962760104156, 43.49232079915794, 0.0], [-70.4804148010403, 43.4934405324895, 0.0], [-70.48044760104028, 43.494149399155106, 0.0], [-70.4800712677075, 43.49453853248781, 0.0], [-70.47919240104221, 43.49488233248729, 0.0], [-70.47906726770907, 43.4951111324869, 0.0], [-70.47909966770902, 43.49563713248608, 0.0], [-70.47888000104268, 43.495751599152584, 0.0], [-70.47844040104337, 43.495843532485765, 0.0], [-70.47746726771157, 43.49621033248519, 0.0], [-70.47639960104652, 43.49641713248491, 0.0], [-70.47558320104781, 43.49653233248472, 0.0], [-70.4751760677151, 43.497264399150254, 0.0]], "type": "LineString"}, "id": "62", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316883", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.4751760677151, 43.497264399150254, -70.46803506772619, 43.49868839914802], "geometry": {"coordinates": [[-70.4751760677151, 43.497264399150254, 0.0], [-70.47490880104885, 43.49734973248343, 0.0], [-70.47208026771995, 43.49831693248194, 0.0], [-70.47011446772296, 43.49779653248277, 0.0], [-70.46973300105691, 43.49785093248266, 0.0], [-70.46803506772619, 43.49868839914802, 0.0]], "type": "LineString"}, "id": "63", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9320149", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.46803506772619, 43.49868839914802, -70.46728860106072, 43.499056732480824], "geometry": {"coordinates": [[-70.46803506772619, 43.49868839914802, 0.0], [-70.46728860106072, 43.499056732480824, 0.0]], "type": "LineString"}, "id": "64", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316909", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.46728860106072, 43.497101999150516, -70.45088200108614, 43.49980293247967], "geometry": {"coordinates": [[-70.46728860106072, 43.499056732480824, 0.0], [-70.4665256010619, 43.49916539914727, 0.0], [-70.46240926773493, 43.49860813248148, 0.0], [-70.46114326773687, 43.498616799148124, 0.0], [-70.46071566773759, 43.4987919991479, 0.0], [-70.45742066774267, 43.49891813248104, 0.0], [-70.45511460107957, 43.49976093247972, 0.0], [-70.45401620108129, 43.49980293247967, 0.0], [-70.45267486775003, 43.499536399146734, 0.0], [-70.45209666775094, 43.49916133248064, 0.0], [-70.45088200108614, 43.49761899914972, 0.0], [-70.4508990677528, 43.497101999150516, 0.0]], "type": "LineString"}, "id": "65", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316901", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.4508990677528, 43.49687439915084, -70.449041401089, 43.49727719915023], "geometry": {"coordinates": [[-70.4508990677528, 43.497101999150516, 0.0], [-70.45047140108682, 43.49727719915023, 0.0], [-70.44929786775526, 43.497043999150605, 0.0], [-70.4491396677555, 43.49690779915079, 0.0], [-70.449041401089, 43.49687439915084, 0.0]], "type": "LineString"}, "id": "66", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316899", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.45235486775056, 43.49260439915747, -70.44226720109953, 43.497101999150516], "geometry": {"coordinates": [[-70.4508990677528, 43.497101999150516, 0.0], [-70.45134386775209, 43.49640973248489, 0.0], [-70.45207780108433, 43.49590513248569, 0.0], [-70.45235486775056, 43.49517959915346, 0.0], [-70.45162620108499, 43.49425419915491, 0.0], [-70.44994966775425, 43.49392099915542, 0.0], [-70.44896100108912, 43.49320413248989, 0.0], [-70.44594340109381, 43.49260439915747, 0.0], [-70.44403600109678, 43.492875732490404, 0.0], [-70.44269486776551, 43.49260913249083, 0.0], [-70.44226720109953, 43.492784332490544, 0.0]], "type": "LineString"}, "id": "67", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316907", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.449041401089, 43.49538999915313, -70.44633806775988, 43.49687439915084], "geometry": {"coordinates": [[-70.449041401089, 43.49687439915084, 0.0], [-70.44844440108994, 43.49678339915101, 0.0], [-70.44787880109084, 43.49653233248472, 0.0], [-70.44633806775988, 43.49538999915313, 0.0]], "type": "LineString"}, "id": "68", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316773", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.44226720109953, 43.487849132498184, -70.43289066778073, 43.49300139915687], "geometry": {"coordinates": [[-70.44226720109953, 43.492784332490544, 0.0], [-70.44074126776854, 43.49300139915687, 0.0], [-70.43872960110502, 43.49260139915748, 0.0], [-70.4366654011082, 43.48997919916155, 0.0], [-70.43398340111241, 43.4894459324957, 0.0], [-70.43289066778073, 43.48805759916456, 0.0], [-70.4331508011137, 43.487849132498184, 0.0]], "type": "LineString"}, "id": "69", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316911", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.44633806775988, 43.492784332490544, -70.44226720109953, 43.49538999915313], "geometry": {"coordinates": [[-70.44633806775988, 43.49538999915313, 0.0], [-70.44615660109349, 43.495327599153256, 0.0], [-70.44460886776255, 43.4946809324876, 0.0], [-70.44339446776445, 43.49313853248998, 0.0], [-70.44226720109953, 43.492784332490544, 0.0]], "type": "LineString"}, "id": "70", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316905", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.43405780111226, 43.48316353250544, -70.42267746779663, 43.487849132498184], "geometry": {"coordinates": [[-70.4331508011137, 43.487849132498184, 0.0], [-70.43405780111226, 43.48594793250112, 0.0], [-70.43354320111308, 43.484934799169366, 0.0], [-70.4306186011176, 43.48409293250404, 0.0], [-70.4279196011218, 43.484076399170704, 0.0], [-70.4271104677897, 43.484305732503685, 0.0], [-70.42267746779663, 43.48316353250544, 0.0]], "type": "LineString"}, "id": "71", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316917", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.42267746779663, 43.475002132518114, -70.40805900115265, 43.48316353250544], "geometry": {"coordinates": [[-70.42267746779663, 43.48316353250544, 0.0], [-70.41994960113419, 43.48275079917278, 0.0], [-70.41925026780194, 43.482221332506924, 0.0], [-70.41759740113781, 43.47994079917714, 0.0], [-70.41625666780658, 43.47967393251088, 0.0], [-70.4136792011439, 43.47981139917732, 0.0], [-70.4121920678129, 43.47928299917817, 0.0], [-70.41109020114794, 43.47903579917852, 0.0], [-70.41060480114868, 43.47841873251281, 0.0], [-70.41129846781428, 43.4766051991823, 0.0], [-70.41044920114894, 43.47552533251735, 0.0], [-70.40810306781924, 43.47505813251803, 0.0], [-70.40805900115265, 43.475002132518114, 0.0]], "type": "LineString"}, "id": "72", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316929", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.40805900115265, 43.46155299920565, -70.37696360120088, 43.475002132518114], "geometry": {"coordinates": [[-70.40805900115265, 43.475002132518114, 0.0], [-70.40618106782222, 43.47483819918506, 0.0], [-70.40396400115901, 43.474540932518835, 0.0], [-70.40130306782976, 43.47401093251966, 0.0], [-70.39986920116536, 43.47358119918698, 0.0], [-70.39898806783339, 43.47292519918801, 0.0], [-70.39726060116936, 43.47013059919237, 0.0], [-70.39597046783808, 43.467759532529385, 0.0], [-70.39363280117504, 43.46551593253287, 0.0], [-70.39067420117959, 43.463677132535736, 0.0], [-70.38726320118491, 43.462324599204464, 0.0], [-70.38404606785656, 43.461683332538826, 0.0], [-70.38050026786209, 43.46155299920565, 0.0], [-70.37696360120088, 43.46172399920539, 0.0]], "type": "LineString"}, "id": "73", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316927", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.5013506010078, 43.45213533255361, -70.46348340106658, 43.46717139919696], "geometry": {"coordinates": [[-70.46348340106658, 43.45213533255361, 0.0], [-70.46417406773219, 43.45220319922021, 0.0], [-70.46671680106158, 43.45236119921992, 0.0], [-70.46790966772642, 43.45252019921969, 0.0], [-70.46866346772521, 43.45274819921934, 0.0], [-70.46878920105837, 43.45283953255256, 0.0], [-70.46910306772452, 43.45288499921912, 0.0], [-70.46991886772327, 43.4527471325527, 0.0], [-70.47111100105474, 43.45233439921998, 0.0], [-70.47148786772084, 43.45242559921985, 0.0], [-70.47195920105344, 43.4527223992194, 0.0], [-70.47205386771998, 43.45306533255217, 0.0], [-70.47167820105386, 43.45366019921795, 0.0], [-70.47177260105371, 43.453797399217706, 0.0], [-70.4716478677206, 43.45425479921698, 0.0], [-70.47167986772052, 43.45468933254966, 0.0], [-70.47202620105332, 43.45521493254887, 0.0], [-70.4723404677195, 43.45546613254845, 0.0], [-70.47375326771731, 43.455601999214934, 0.0], [-70.47463266771598, 43.455875599214494, 0.0], [-70.47494660104883, 43.455875332547805, 0.0], [-70.47566820104771, 43.45571459921473, 0.0], [-70.47714280104537, 43.45532453254867, 0.0], [-70.4781470677105, 43.45518633254892, 0.0], [-70.47996840104099, 43.45552753254839, 0.0], [-70.4809098677062, 43.45548079921508, 0.0], [-70.48156880103852, 43.4552743992154, 0.0], [-70.48197626770457, 43.4549767325492, 0.0], [-70.48238360103727, 43.45456473254984, 0.0], [-70.48345020103562, 43.45431213255023, 0.0], [-70.48398340103478, 43.45408293255059, 0.0], [-70.48592986769842, 43.454263932550305, 0.0], [-70.48677726769711, 43.454240199217054, 0.0], [-70.48781226769552, 43.45378173255108, 0.0], [-70.48837706769461, 43.45373533255116, 0.0], [-70.48913046769343, 43.4537117325512, 0.0], [-70.49179966768929, 43.45425773255033, 0.0], [-70.49274186768787, 43.45455399921656, 0.0], [-70.49437480101864, 43.45487233254937, 0.0], [-70.49497140101772, 43.45500879921582, 0.0], [-70.49522306768398, 43.45521433254885, 0.0], [-70.49547486768358, 43.455557132548336, 0.0], [-70.49550806768355, 43.456448799213604, 0.0], [-70.49585440101635, 43.4569287325462, 0.0], [-70.49582406768309, 43.45747753254534, 0.0], [-70.49588700101629, 43.45752313254525, 0.0], [-70.49623520101574, 43.45891759920977, 0.0], [-70.49667506768174, 43.4591001325428, 0.0], [-70.49730346768075, 43.45932799920911, 0.0], [-70.49758640101368, 43.45953359920884, 0.0], [-70.49755606768036, 43.46005959920802, 0.0], [-70.49730560101409, 43.460379999207476, 0.0], [-70.49740060101396, 43.46072293254031, 0.0], [-70.49758926768033, 43.46092853253998, 0.0], [-70.49793480101312, 43.461019532539865, 0.0], [-70.49871926767855, 43.4608813992067, 0.0], [-70.49918946767787, 43.4605379325406, 0.0], [-70.49950320101067, 43.46042319920741, 0.0], [-70.49966026767709, 43.46043093254076, 0.0], [-70.49972280101036, 43.460522399207264, 0.0], [-70.49968980101039, 43.46139139920592, 0.0], [-70.49978380101027, 43.46148293253913, 0.0], [-70.50022306767625, 43.46155193253901, 0.0], [-70.50091226767518, 43.46228433253788, 0.0], [-70.5013506010078, 43.462970799203504, 0.0], [-70.5012868676746, 43.46342813253608, 0.0], [-70.50119220100805, 43.46370239920236, 0.0], [-70.501222801008, 43.46409119920173, 0.0], [-70.50112800100817, 43.46441133253455, 0.0], [-70.5008450676753, 43.464593932534285, 0.0], [-70.50021686767627, 43.46473039920073, 0.0], [-70.50002820100985, 43.46493613253375, 0.0], [-70.49987066767676, 43.46518739920003, 0.0], [-70.49983866767684, 43.465507532532854, 0.0], [-70.4996810676771, 43.46580459919909, 0.0], [-70.4995152010107, 43.466002732532104, 0.0], [-70.49788486767989, 43.46705653253048, 0.0], [-70.49766546768024, 43.46717113253027, 0.0], [-70.49738286768064, 43.46717139919696, 0.0]], "type": "LineString"}, "id": "74", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/9316889", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.29702680132499, 44.015167198346376, -70.27334506802839, 44.04046953164044], "geometry": {"coordinates": [[-70.29702680132499, 44.04046953164044, 0.0], [-70.29655206799237, 44.0397833316415, 0.0], [-70.29617206799298, 44.039531398308554, 0.0], [-70.29563340132711, 44.0393711316421, 0.0], [-70.29455586799548, 44.039233131642334, 0.0], [-70.29360546799694, 44.03884373164294, 0.0], [-70.29287660133139, 44.03877473164306, 0.0], [-70.29265560133177, 44.038042931644156, 0.0], [-70.29227580133232, 44.03765379831145, 0.0], [-70.29167420133331, 44.03719613164549, 0.0], [-70.29132580133381, 44.03701293164579, 0.0], [-70.29009006800243, 44.03666899831296, 0.0], [-70.28955186800323, 44.036256998313604, 0.0], [-70.28917226800382, 44.03573079831443, 0.0], [-70.28796920133902, 44.0347925316492, 0.0], [-70.28670246800766, 44.03403699831705, 0.0], [-70.28423346801151, 44.03183999832049, 0.0], [-70.2832214013464, 44.030512998322536, 0.0], [-70.28309520134661, 44.030101398323154, 0.0], [-70.28306446801332, 44.02948393165747, 0.0], [-70.28271646801386, 44.0290721316581, 0.0], [-70.28211680134814, 44.02751673166051, 0.0], [-70.28180026801527, 44.027242131660955, 0.0], [-70.28024780135104, 44.02698919832801, 0.0], [-70.279614001352, 44.02696599832802, 0.0], [-70.27920140135262, 44.027354331660774, 0.0], [-70.27891600135308, 44.027468398327244, 0.0], [-70.27837646802061, 44.0279023983266, 0.0], [-70.27783660135475, 44.028587931658876, 0.0], [-70.27726546802234, 44.02906759832479, 0.0], [-70.27609280135749, 44.02911233165804, 0.0], [-70.27590246802441, 44.0291807983246, 0.0], [-70.27504680135911, 44.02918013165794, 0.0], [-70.27425660136032, 44.02792179832659, 0.0], [-70.27444746802666, 44.02755613166045, 0.0], [-70.27451226802657, 44.02668719832849, 0.0], [-70.27365840136122, 44.025520398330286, 0.0], [-70.27359546802802, 44.02526879833067, 0.0], [-70.27372286802779, 44.02492593166454, 0.0], [-70.27385020136097, 44.02460599833171, 0.0], [-70.27337580136168, 44.024056731665894, 0.0], [-70.27334506802839, 44.023462198333505, 0.0], [-70.2735042013615, 44.0230051316675, 0.0], [-70.27398006802741, 44.02270813166797, 0.0], [-70.27505786802573, 44.02248053166835, 0.0], [-70.27531180135867, 44.022274931668676, 0.0], [-70.27537580135856, 44.02188619833595, 0.0], [-70.275534468025, 44.02172633166953, 0.0], [-70.27569366802476, 44.02124619833694, 0.0], [-70.27613826802406, 44.02072073167108, 0.0], [-70.27674080135648, 44.02037819833828, 0.0], [-70.27686820135625, 44.020012531672194, 0.0], [-70.27661500135667, 44.01980653167249, 0.0], [-70.2766478013566, 44.01914339834019, 0.0], [-70.27642660135695, 44.01875453167412, 0.0], [-70.27630206802382, 44.017382531676276, 0.0], [-70.27589100135776, 44.016878998343714, 0.0], [-70.2758598680245, 44.01653599834424, 0.0], [-70.27595506802436, 44.016421798344425, 0.0], [-70.27772980135495, 44.01624039834468, 0.0], [-70.2779834680212, 44.016126198344864, 0.0], [-70.27801580135446, 44.01578333167873, 0.0], [-70.27814260135426, 44.01569193167887, 0.0], [-70.27871300135342, 44.01569239834555, 0.0], [-70.2793468013524, 44.01557859834571, 0.0], [-70.27947406801889, 44.015167198346376, 0.0]], "type": "LineString"}, "id": "75", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6719063", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.27947406801889, 44.000080798369765, -70.25931020138353, 44.015414598345956], "geometry": {"coordinates": [[-70.27947406801889, 44.015167198346376, 0.0], [-70.27912600135278, 44.014938131680026, 0.0], [-70.27877886801997, 44.01402319834813, 0.0], [-70.27839926802056, 44.01367993168202, 0.0], [-70.27805100135441, 44.013542398348875, 0.0], [-70.27770226802164, 44.01361079834879, 0.0], [-70.27760700135514, 44.013747931681905, 0.0], [-70.27757466802183, 44.01420519834784, 0.0], [-70.27637006802371, 44.01454713168067, 0.0], [-70.27611660135744, 44.01454693168063, 0.0], [-70.27576866802463, 44.014226531681174, 0.0], [-70.2755468013583, 44.01422633168113, 0.0], [-70.27516640135889, 44.01436319834761, 0.0], [-70.27516486802557, 44.01527773167953, 0.0], [-70.27475280135957, 44.015414598345956, 0.0], [-70.27402446802733, 44.01509379834647, 0.0], [-70.27364486802793, 44.01472773168035, 0.0], [-70.27326506802854, 44.0145217316807, 0.0], [-70.27285326802917, 44.01447559834742, 0.0], [-70.2720606013637, 44.014794931680285, 0.0], [-70.27129980136493, 44.01495433168003, 0.0], [-70.27076140136575, 44.014839531680195, 0.0], [-70.27031820136642, 44.014610531680546, 0.0], [-70.26990706803372, 44.01422133168114, 0.0], [-70.26993926803368, 44.01390119834832, 0.0], [-70.27019320136662, 44.01367279834869, 0.0], [-70.27009860136678, 44.01342119834908, 0.0], [-70.2698452680338, 44.01332953168253, 0.0], [-70.26902126803509, 44.013351598349175, 0.0], [-70.26860966803577, 44.013236931682684, 0.0], [-70.26813540136982, 44.012733531683466, 0.0], [-70.26788186803685, 44.01271039835018, 0.0], [-70.26724786803788, 44.01298419834973, 0.0], [-70.26699340137156, 44.013532798348876, 0.0], [-70.26689840137175, 44.01355553168219, 0.0], [-70.26686626803843, 44.013692598348655, 0.0], [-70.26635900137256, 44.013920798348295, 0.0], [-70.26591526803992, 44.013966198348214, 0.0], [-70.265440601374, 44.01369133168197, 0.0], [-70.26433240137573, 44.01325579834935, 0.0], [-70.26420666804256, 44.01275259835012, 0.0], [-70.26404860137615, 44.01256953168371, 0.0], [-70.26363606804347, 44.012866398349956, 0.0], [-70.26335086804391, 44.01288899834992, 0.0], [-70.26297126804451, 44.012522731683816, 0.0], [-70.26249606804521, 44.012499398350485, 0.0], [-70.26135506804701, 44.01274993168346, 0.0], [-70.260721668048, 44.01256639835037, 0.0], [-70.26021546804878, 44.01219999835098, 0.0], [-70.26015286804886, 44.011811331684896, 0.0], [-70.25967800138295, 44.01165059835182, 0.0], [-70.25952006804988, 44.01137613168555, 0.0], [-70.2594918013832, 44.00961539835498, 0.0], [-70.25968380138295, 44.00865519835645, 0.0], [-70.26041620138182, 44.006712331692825, 0.0], [-70.260290601382, 44.006117731693735, 0.0], [-70.2600378013824, 44.00575159836097, 0.0], [-70.25946780138327, 44.005659731694436, 0.0], [-70.25931020138353, 44.00524793169507, 0.0], [-70.25940620138334, 44.00465353169602, 0.0], [-70.25943960138329, 44.00376173169741, 0.0], [-70.25956666804979, 44.003601798364286, 0.0], [-70.26111986804739, 44.00312313169837, 0.0], [-70.2618810680462, 44.002620798365854, 0.0], [-70.26280006804478, 44.0024615983661, 0.0], [-70.26318066804419, 44.002233331699756, 0.0], [-70.26349846804368, 44.0016619983673, 0.0], [-70.26419586804258, 44.00131959836784, 0.0], [-70.26457740137533, 44.00058833170232, 0.0], [-70.26508526804122, 44.000080798369765, 0.0]], "type": "LineString"}, "id": "76", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6719083", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.26585846804, 44.000080798369765, -70.26508526804122, 44.0000811317031], "geometry": {"coordinates": [[-70.26508526804122, 44.000080798369765, 0.0], [-70.26585846804, 44.0000811317031, 0.0]], "type": "LineString"}, "id": "77", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722667", "fl_type": "Connector"}, "type": "Feature"}, {"bbox": [-70.26920280136818, 43.95853439843427, -70.26150260138013, 44.0000811317031], "geometry": {"coordinates": [[-70.26585846804, 44.0000811317031, 0.0], [-70.26620786803949, 43.999558331703895, 0.0], [-70.26681066803854, 43.999009998371434, 0.0], [-70.26706520137145, 43.99834719837247, 0.0], [-70.26681226803856, 43.99798099837301, 0.0], [-70.2667818680386, 43.997203531707555, 0.0], [-70.26729080137113, 43.99606073170935, 0.0], [-70.2671980013713, 43.99473439837806, 0.0], [-70.2674202680376, 43.994414531711925, 0.0], [-70.26827686803625, 43.99347773171337, 0.0], [-70.26865886803569, 43.992311931715165, 0.0], [-70.26818600136971, 43.99103099838385, 0.0], [-70.26815546803647, 43.9903679317182, 0.0], [-70.26872680136893, 43.989636731719315, 0.0], [-70.26907560136834, 43.98931693171983, 0.0], [-70.26920280136818, 43.9890425983869, 0.0], [-70.26882606803542, 43.987052931723326, 0.0], [-70.26847846803594, 43.98657239839076, 0.0], [-70.26784560137025, 43.986320398391115, 0.0], [-70.26721300137126, 43.98581679839191, 0.0], [-70.26689686803843, 43.985473598392446, 0.0], [-70.26686560137176, 43.98526773172608, 0.0], [-70.26699286803824, 43.98492479839331, 0.0], [-70.26756286803737, 43.98485673172672, 0.0], [-70.26803840136995, 43.98462853172708, 0.0], [-70.26822900136966, 43.984217131727746, 0.0], [-70.26810320136985, 43.98373673172847, 0.0], [-70.26797666803674, 43.983576598395416, 0.0], [-70.26794566803676, 43.98321073172929, 0.0], [-70.26804086803662, 43.98311933172943, 0.0], [-70.26807326803657, 43.98263919839684, 0.0], [-70.26753500137073, 43.98263873173016, 0.0], [-70.26750386803747, 43.982341398397296, 0.0], [-70.26785266803694, 43.98202159839781, 0.0], [-70.26782166803696, 43.98167859839833, 0.0], [-70.26772686803713, 43.98156419839853, 0.0], [-70.26693540137165, 43.98138053173216, 0.0], [-70.2657650013735, 43.98069353173321, 0.0], [-70.26529140137421, 43.97986999840117, 0.0], [-70.26526040137429, 43.97948119840174, 0.0], [-70.2657678013735, 43.97895579840258, 0.0], [-70.26583146804006, 43.97877279840287, 0.0], [-70.26459700137531, 43.978497331736605, 0.0], [-70.26364740137677, 43.97833639840354, 0.0], [-70.2632044013775, 43.9781529984038, 0.0], [-70.26285660137802, 43.977832731737635, 0.0], [-70.26285786804465, 43.977078131738836, 0.0], [-70.26241586804537, 43.97639173173985, 0.0], [-70.2624172013787, 43.9757057984076, 0.0], [-70.26206960137921, 43.97527099840829, 0.0], [-70.26191220137946, 43.97476779840906, 0.0], [-70.26162786804656, 43.974378731743, 0.0], [-70.26150260138013, 43.973669798410754, 0.0], [-70.26156726804669, 43.97284673174539, 0.0], [-70.26188440137952, 43.972526931745904, 0.0], [-70.26254966804515, 43.972321731746206, 0.0], [-70.2628036013781, 43.97200179841337, 0.0], [-70.26277260137812, 43.971612998413946, 0.0], [-70.2629628680445, 43.97143033174757, 0.0], [-70.26385000137645, 43.97111099841476, 0.0], [-70.26381886804319, 43.97079093174858, 0.0], [-70.26359746804354, 43.97069913174869, 0.0], [-70.26252140137854, 43.970469531749075, 0.0], [-70.26217340137907, 43.970286198416034, 0.0], [-70.26236400137878, 43.969966331749845, 0.0], [-70.26299740137779, 43.96987539841666, 0.0], [-70.26369426804337, 43.9695787984171, 0.0], [-70.2638854680431, 43.9688929984182, 0.0], [-70.26375920137662, 43.96870993175179, 0.0], [-70.26322140137745, 43.9684579317522, 0.0], [-70.26322186804413, 43.968160731752675, 0.0], [-70.26388700137642, 43.968024131752884, 0.0], [-70.26388766804308, 43.96768113175341, 0.0], [-70.26322286804412, 43.967566131753586, 0.0], [-70.26328680137732, 43.96726893175406, 0.0], [-70.26341380137717, 43.96708613175434, 0.0], [-70.26369880137668, 43.96704059842108, 0.0], [-70.26411026804271, 43.96708679842101, 0.0], [-70.26414246804268, 43.96676673175483, 0.0], [-70.26385786804315, 43.96658353175508, 0.0], [-70.26287666804467, 43.96649119842192, 0.0], [-70.26281366804477, 43.966308331755556, 0.0], [-70.26430240137574, 43.965920798422815, 0.0], [-70.26446086804219, 43.96576093175639, 0.0], [-70.2643660680423, 43.965577931756684, 0.0], [-70.26357500137692, 43.96541713175691, 0.0], [-70.26354360137697, 43.965256998423854, 0.0], [-70.26379760137655, 43.964845731757805, 0.0], [-70.26420926804258, 43.96477739842459, 0.0], [-70.26443060137558, 43.964914931757676, 0.0], [-70.26452506804208, 43.965189398423945, 0.0], [-70.26560126804043, 43.9652817317571, 0.0], [-70.26572900137353, 43.964710198424655, 0.0], [-70.26585586804003, 43.96457313175824, 0.0], [-70.26588786803995, 43.96439019842518, 0.0], [-70.26566700137363, 43.96390993175925, 0.0], [-70.26500240137466, 43.96379493175942, 0.0], [-70.26459126804201, 43.963565931759774, 0.0], [-70.26430660137578, 43.963451331759984, 0.0], [-70.26373680137664, 43.96345079842661, 0.0], [-70.26357860137688, 43.96338199842671, 0.0], [-70.26357880137687, 43.963267731760254, 0.0], [-70.26383240137648, 43.96306213176058, 0.0], [-70.26392766804304, 43.96287933176086, 0.0], [-70.26367440137676, 43.96285633176086, 0.0], [-70.26367480137674, 43.96269619842781, 0.0], [-70.26399160137623, 43.96251353176143, 0.0], [-70.26402366804285, 43.96230779842841, 0.0], [-70.26389720137638, 43.962216198428564, 0.0], [-70.26345406804376, 43.96214713176198, 0.0], [-70.26339106804386, 43.962009931762225, 0.0], [-70.26361300137683, 43.961804331762494, 0.0], [-70.26446806804216, 43.961622198429495, 0.0], [-70.26453180137543, 43.961324998429916, 0.0], [-70.26408886804279, 43.96111879843028, 0.0], [-70.26399466804293, 43.9607757317641, 0.0], [-70.26370986804335, 43.96066113176431, 0.0], [-70.26317160137751, 43.96079779843075, 0.0], [-70.26291866804456, 43.96052319843119, 0.0], [-70.26269740137826, 43.9604999984312, 0.0], [-70.26263426804502, 43.960385731764745, 0.0], [-70.26345846804372, 43.9596089984326, 0.0], [-70.26368106804341, 43.95906039843345, 0.0], [-70.26346040137707, 43.95853439843427, 0.0]], "type": "LineString"}, "id": "78", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720525", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.26849980136927, 43.93239599847482, -70.26084846804781, 43.95853439843427], "geometry": {"coordinates": [[-70.26346040137707, 43.95853439843427, 0.0], [-70.26371420137667, 43.95826033176803, 0.0], [-70.26371446804336, 43.95807733176832, 0.0], [-70.26358840137686, 43.95782559843536, 0.0], [-70.26368386804342, 43.95750559843589, 0.0], [-70.26393760137631, 43.957231531769594, 0.0], [-70.2648240680416, 43.9570949984365, 0.0], [-70.26577520137346, 43.95622699843784, 0.0], [-70.2667570680386, 43.95586199843842, 0.0], [-70.26732746803776, 43.95551953177227, 0.0], [-70.26808706803655, 43.95554313177223, 0.0], [-70.26827706803624, 43.955474598439025, 0.0], [-70.2684992680359, 43.95513179843954, 0.0], [-70.26849980136927, 43.95481159844002, 0.0], [-70.26821620136968, 43.954033998441275, 0.0], [-70.26726806803782, 43.953187131775906, 0.0], [-70.26714220137137, 43.95277539844318, 0.0], [-70.2673008013711, 43.95254699844355, 0.0], [-70.26733320137106, 43.95211259844422, 0.0], [-70.26768200137053, 43.95172413177818, 0.0], [-70.2677142013705, 43.95140399844536, 0.0], [-70.2672082680379, 43.9511063317791, 0.0], [-70.26591026803993, 43.951265198445526, 0.0], [-70.26562606804038, 43.950899131779465, 0.0], [-70.2655016680406, 43.94964133178138, 0.0], [-70.26518566804106, 43.94936659844848, 0.0], [-70.26429986804243, 43.949091531782244, 0.0], [-70.26430100137577, 43.94851979844981, 0.0], [-70.26366846804342, 43.94819913178361, 0.0], [-70.2637956680432, 43.94792493178409, 0.0], [-70.26373260137666, 43.947787531784286, 0.0], [-70.26224586804562, 43.94735173178498, 0.0], [-70.26224666804563, 43.94689439845234, 0.0], [-70.26243680137867, 43.94668879845267, 0.0], [-70.26269006804495, 43.94664333178605, 0.0], [-70.26338606804387, 43.94675833178587, 0.0], [-70.26442980137557, 43.94723939845181, 0.0], [-70.26509420137455, 43.947308598451684, 0.0], [-70.2654108680407, 43.947171798451905, 0.0], [-70.26585466804005, 43.94678339845251, 0.0], [-70.26617226803955, 43.946143531786845, 0.0], [-70.26610986803962, 43.94568613178751, 0.0], [-70.2655722013738, 43.94543413178792, 0.0], [-70.26573120137357, 43.94502259845524, 0.0], [-70.266713201372, 43.944451931789445, 0.0], [-70.2668400680385, 43.944246198456426, 0.0], [-70.26680926803851, 43.94378879845715, 0.0], [-70.26649300137234, 43.9436741984573, 0.0], [-70.26554320137382, 43.94385633179036, 0.0], [-70.26541680137404, 43.94376473179051, 0.0], [-70.26538726804074, 43.942552798459076, 0.0], [-70.26573646804019, 43.94195853179332, 0.0], [-70.26665526803879, 43.94136479846094, 0.0], [-70.26668766803874, 43.9409533317949, 0.0], [-70.26624480137275, 43.94081573179511, 0.0], [-70.26583326804007, 43.94086099846169, 0.0], [-70.26532626804084, 43.941317931794345, 0.0], [-70.26523100137433, 43.941477931794054, 0.0], [-70.26500920137465, 43.941614798460535, 0.0], [-70.26462940137526, 43.9416603317938, 0.0], [-70.26447146804219, 43.9414999984607, 0.0], [-70.26450386804214, 43.94108853179466, 0.0], [-70.26482100137497, 43.94069999846192, 0.0], [-70.26479000137499, 43.94031139846254, 0.0], [-70.26456886804203, 43.94012833179619, 0.0], [-70.26463280137523, 43.93971673179681, 0.0], [-70.26494966804142, 43.93937399846402, 0.0], [-70.26631106803933, 43.93898639846458, 0.0], [-70.26627980137272, 43.938780598464916, 0.0], [-70.26583780137338, 43.9382771984657, 0.0], [-70.26577466804014, 43.938094331799334, 0.0], [-70.26552186804054, 43.93791099846629, 0.0], [-70.26492100137483, 43.93775053179985, 0.0], [-70.26419306804263, 43.93774979846654, 0.0], [-70.26394026804297, 43.93756659846679, 0.0], [-70.26384586804312, 43.93733793180047, 0.0], [-70.26397266804292, 43.93717793180076, 0.0], [-70.26514426804113, 43.93674459846807, 0.0], [-70.26514460137446, 43.93656159846836, 0.0], [-70.26444906804221, 43.93621799846892, 0.0], [-70.26201320137932, 43.93584999846945, 0.0], [-70.26157060138001, 43.93562093180316, 0.0], [-70.26163420137993, 43.93539233180354, 0.0], [-70.26299746804443, 43.93386153180592, 0.0], [-70.26299786804447, 43.933632931806244, 0.0], [-70.26261866804504, 43.93338093180665, 0.0], [-70.26116420138067, 43.93280793180753, 0.0], [-70.26094306804765, 43.932601931807824, 0.0], [-70.26084846804781, 43.93239599847482, 0.0]], "type": "LineString"}, "id": "79", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720607", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.27761760135508, 43.89157179853822, -70.25848186805149, 43.93239599847482], "geometry": {"coordinates": [[-70.26084846804781, 43.93239599847482, 0.0], [-70.26078620138122, 43.931869998475634, 0.0], [-70.25999580138244, 43.931549131809504, 0.0], [-70.260059668049, 43.93122899847663, 0.0], [-70.26100946804752, 43.93097839847701, 0.0], [-70.2610728013808, 43.93088713181049, 0.0], [-70.26107346804747, 43.93052119847772, 0.0], [-70.26135886804701, 43.930178531811634, 0.0], [-70.26091626804771, 43.92994939847864, 0.0], [-70.26094820138098, 43.92983499847878, 0.0], [-70.26151826804676, 43.929515531812626, 0.0], [-70.26148706804679, 43.929286798479666, 0.0], [-70.26113940138066, 43.92914933181322, 0.0], [-70.26072780138134, 43.92924039847975, 0.0], [-70.25996746804918, 43.92974279847897, 0.0], [-70.25958766804973, 43.92981099847884, 0.0], [-70.25942966805002, 43.92971933181235, 0.0], [-70.25943146804997, 43.92880473181373, 0.0], [-70.25924180138361, 43.92869013181394, 0.0], [-70.25898880138402, 43.92866713181394, 0.0], [-70.25848186805149, 43.928963931813485, 0.0], [-70.25848300138477, 43.92841513181435, 0.0], [-70.25873666805109, 43.928095198481515, 0.0], [-70.25962380138304, 43.92734139848267, 0.0], [-70.25965600138301, 43.9270899984831, 0.0], [-70.25908720138386, 43.9267463984836, 0.0], [-70.2590560013839, 43.92644913181738, 0.0], [-70.25930926805017, 43.926403598484114, 0.0], [-70.26003640138237, 43.926655931817095, 0.0], [-70.26003746804906, 43.92610713181796, 0.0], [-70.26016406804888, 43.926038598484695, 0.0], [-70.26057526804823, 43.926107531817934, 0.0], [-70.2612388013805, 43.92658839848383, 0.0], [-70.2616184013799, 43.92661173181716, 0.0], [-70.26190360137952, 43.926428998484084, 0.0], [-70.26193600137947, 43.92599459848475, 0.0], [-70.26203100137928, 43.92592613181819, 0.0], [-70.26269546804491, 43.925835198485004, 0.0], [-70.26291720137795, 43.925698198485236, 0.0], [-70.26298086804451, 43.92549253181886, 0.0], [-70.26275966804485, 43.92533219848582, 0.0], [-70.26272860137823, 43.925034931819596, 0.0], [-70.26301366804444, 43.92480653181997, 0.0], [-70.26314060137759, 43.924577998486996, 0.0], [-70.26301566804443, 43.923663198488384, 0.0], [-70.26266846804498, 43.92322839848907, 0.0], [-70.26257440137846, 43.922793931823094, 0.0], [-70.26285940137802, 43.92261119849002, 0.0], [-70.26368220137675, 43.92242899849032, 0.0], [-70.26409320137611, 43.9226353318233, 0.0], [-70.26437800137563, 43.92263539849, 0.0], [-70.26475786804173, 43.92247573182357, 0.0], [-70.26488500137486, 43.92208719849083, 0.0], [-70.26510700137453, 43.92181299849125, 0.0], [-70.26561360137373, 43.92147053182515, 0.0], [-70.26586740137333, 43.92108199849241, 0.0], [-70.26615260137288, 43.92083073182613, 0.0], [-70.26659560137222, 43.92078533182621, 0.0], [-70.26700640137159, 43.921060131825755, 0.0], [-70.26732260137106, 43.92103753182579, 0.0], [-70.26798760137007, 43.92067219849304, 0.0], [-70.26833680136951, 43.92003219849403, 0.0], [-70.26944520136777, 43.91920999849532, 0.0], [-70.26950966803435, 43.91845553182981, 0.0], [-70.2694150680345, 43.918318331829994, 0.0], [-70.26913066803496, 43.91815799849695, 0.0], [-70.26837120136946, 43.918271598496744, 0.0], [-70.26824480136963, 43.918202931830194, 0.0], [-70.26830880136953, 43.91776859849756, 0.0], [-70.26811920136987, 43.91765399849771, 0.0], [-70.26783460137028, 43.917608131831116, 0.0], [-70.26735966803767, 43.917881998497364, 0.0], [-70.2670434013715, 43.91785893183072, 0.0], [-70.26764900137056, 43.91522979850146, 0.0], [-70.26796560137007, 43.915069998501735, 0.0], [-70.26926306803472, 43.91459099850249, 0.0], [-70.26954820136763, 43.914385398502816, 0.0], [-70.26958060136758, 43.913928131836826, 0.0], [-70.27021340136662, 43.91383719850364, 0.0], [-70.27059320136601, 43.91365459850391, 0.0], [-70.2707204013658, 43.913288931837826, 0.0], [-70.2706258680326, 43.91301439850491, 0.0], [-70.27027880136649, 43.91255679850565, 0.0], [-70.27024800136655, 43.912030798506464, 0.0], [-70.27005860136683, 43.91187053184001, 0.0], [-70.26939480136787, 43.911572731840465, 0.0], [-70.26888800136862, 43.91202959850642, 0.0], [-70.26863486803569, 43.91205219850639, 0.0], [-70.26847686803598, 43.91193773183994, 0.0], [-70.26850906803588, 43.91157193184051, 0.0], [-70.26923780136809, 43.91093233184148, 0.0], [-70.27094640136545, 43.910499331842175, 0.0], [-70.2712630680316, 43.91027099850919, 0.0], [-70.27120040136504, 43.909927931843015, 0.0], [-70.27069486803254, 43.909561598510265, 0.0], [-70.27063220136597, 43.9092413985108, 0.0], [-70.27120160136508, 43.90915053184426, 0.0], [-70.27173906803091, 43.909333931843946, 0.0], [-70.27208706803037, 43.90926559851073, 0.0], [-70.27227700136336, 43.90912853184426, 0.0], [-70.27230920136333, 43.908876998511346, 0.0], [-70.27208786803033, 43.9087853985115, 0.0], [-70.27174046803088, 43.90848779851194, 0.0], [-70.27170920136427, 43.90828199851228, 0.0], [-70.27272126802939, 43.90823713184568, 0.0], [-70.27300620136225, 43.90814593184581, 0.0], [-70.2734500013616, 43.90741459851358, 0.0], [-70.27348206802816, 43.907140198514014, 0.0], [-70.27373540136114, 43.907026131847545, 0.0], [-70.27373586802781, 43.906637331848174, 0.0], [-70.27335666802838, 43.90645413184842, 0.0], [-70.27250360136304, 43.90590473184926, 0.0], [-70.27247226802973, 43.90579033184946, 0.0], [-70.27263080136282, 43.905515998516535, 0.0], [-70.27383286802763, 43.90533413185017, 0.0], [-70.27386500136095, 43.9050367985173, 0.0], [-70.2733592680284, 43.90487639851756, 0.0], [-70.27310646802874, 43.90473899851776, 0.0], [-70.27310686802878, 43.90451033185144, 0.0], [-70.27339186802834, 43.90423613185186, 0.0], [-70.27351880136143, 43.903984798518934, 0.0], [-70.27355146802807, 43.903253131853376, 0.0], [-70.27291960136239, 43.90288659852064, 0.0], [-70.27304700136222, 43.902406598521395, 0.0], [-70.27361666802796, 43.902086931855195, 0.0], [-70.27358580136138, 43.90172099852242, 0.0], [-70.27292186802907, 43.90156039852269, 0.0], [-70.2727008013627, 43.90137733185634, 0.0], [-70.27254340136295, 43.900919931857004, 0.0], [-70.2726388680295, 43.90053119852428, 0.0], [-70.27295580136234, 43.90014279852488, 0.0], [-70.27295626802902, 43.899799731858764, 0.0], [-70.27308306802882, 43.89966259852565, 0.0], [-70.27311520136209, 43.89936539852613, 0.0], [-70.2734318013616, 43.8991597985264, 0.0], [-70.2745070680266, 43.89902359852664, 0.0], [-70.27469886802629, 43.89778899852854, 0.0], [-70.27511060135902, 43.8974233985291, 0.0], [-70.27504826802573, 43.896760331863504, 0.0], [-70.27527060135873, 43.89623453186431, 0.0], [-70.27549246802505, 43.895868798531524, 0.0], [-70.27552446802503, 43.895502998532095, 0.0], [-70.27587280135782, 43.89522893186586, 0.0], [-70.27609520135746, 43.89456593186691, 0.0], [-70.27638046802366, 43.89417753186751, 0.0], [-70.27688866802288, 43.89271439853644, 0.0], [-70.27695260135613, 43.89230299853705, 0.0], [-70.27730120135561, 43.89166299853804, 0.0], [-70.27761760135508, 43.89157179853822, 0.0]], "type": "LineString"}, "id": "80", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720795", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.27996526801815, 43.86897259857329, -70.26902380136846, 43.89157179853822], "geometry": {"coordinates": [[-70.27761760135508, 43.89157179853822, 0.0], [-70.27771440135496, 43.89033713187348, 0.0], [-70.2787610013533, 43.88821139854343, 0.0], [-70.27923606801926, 43.88764013187762, 0.0], [-70.27996526801815, 43.88638299854625, 0.0], [-70.27993520135152, 43.88539973188114, 0.0], [-70.27946106801892, 43.885284998547945, 0.0], [-70.27917680135266, 43.88510179854825, 0.0], [-70.27882920135323, 43.885032998548354, 0.0], [-70.27819660135418, 43.88521539854804, 0.0], [-70.27800700135447, 43.885146598548204, 0.0], [-70.27727966802229, 43.88528319854794, 0.0], [-70.27705866802262, 43.885008731881726, 0.0], [-70.27734440135555, 43.884231398549616, 0.0], [-70.277472068022, 43.88356853188395, 0.0], [-70.27775686802153, 43.883225798551166, 0.0], [-70.27798020135452, 43.88201399855302, 0.0], [-70.27826526802079, 43.88160273188703, 0.0], [-70.2782344680208, 43.88109959855444, 0.0], [-70.27779326802147, 43.8801845318892, 0.0], [-70.27640400135698, 43.87915439855749, 0.0], [-70.27592986802438, 43.879085398557606, 0.0], [-70.27510960135902, 43.87807873189246, 0.0], [-70.27511066802566, 43.877278331893706, 0.0], [-70.27473240135959, 43.87668353189463, 0.0], [-70.27470160135965, 43.8762033318954, 0.0], [-70.27492360135926, 43.875700398562856, 0.0], [-70.27486086802605, 43.875448931896585, 0.0], [-70.27441886802671, 43.87508259856378, 0.0], [-70.2743246013602, 43.87471659856436, 0.0], [-70.27385060136095, 43.87467053189778, 0.0], [-70.27369280136116, 43.87453319856468, 0.0], [-70.27359926802802, 43.87368713189932, 0.0], [-70.2733784013617, 43.87352673189952, 0.0], [-70.27154526803122, 43.87331953189988, 0.0], [-70.27129340136491, 43.8727247319008, 0.0], [-70.27151526803124, 43.87235899856802, 0.0], [-70.2715790013645, 43.87208473190179, 0.0], [-70.27138960136477, 43.87194733190199, 0.0], [-70.27116806803178, 43.87201573190191, 0.0], [-70.27100986803202, 43.87217559856833, 0.0], [-70.27085126803229, 43.872472798567856, 0.0], [-70.27050346803281, 43.87254113190107, 0.0], [-70.27028246803314, 43.87235799856802, 0.0], [-70.26996780136699, 43.871534531902626, 0.0], [-70.26993766803366, 43.870619798570715, 0.0], [-70.26930620136801, 43.870184798571415, 0.0], [-70.26902380136846, 43.86897259857329, 0.0]], "type": "LineString"}, "id": "81", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720877", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.26902380136846, 43.86732179857586, -70.26412760137606, 43.86897259857329], "geometry": {"coordinates": [[-70.26902380136846, 43.86897259857329, 0.0], [-70.26874000136888, 43.86865233190713, 0.0], [-70.26820280136974, 43.86856033190725, 0.0], [-70.26769660137052, 43.86885719857344, 0.0], [-70.26674826803861, 43.86885619857344, 0.0], [-70.26605340137303, 43.8686269985738, 0.0], [-70.26558000137379, 43.8681919985745, 0.0], [-70.26412760137606, 43.86732179857586, 0.0]], "type": "LineString"}, "id": "82", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720879", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.26412760137606, 43.8644577319136, -70.2580646680521, 43.86795913190821], "geometry": {"coordinates": [[-70.26412760137606, 43.86732179857586, 0.0], [-70.26368520137675, 43.867321398575825, 0.0], [-70.2629588680445, 43.86688619857654, 0.0], [-70.26261246804506, 43.8661999319109, 0.0], [-70.2620756680459, 43.86599373191126, 0.0], [-70.26179100137966, 43.86610759857774, 0.0], [-70.26172700137977, 43.866564931910375, 0.0], [-70.26185286804622, 43.86679379857668, 0.0], [-70.2620096013793, 43.86761713190873, 0.0], [-70.2619144013795, 43.8677771319085, 0.0], [-70.26166126804651, 43.86791399857492, 0.0], [-70.26102906804749, 43.86795913190821, 0.0], [-70.26058686804822, 43.86782153190842, 0.0], [-70.25976646804946, 43.86713473190946, 0.0], [-70.2580646680521, 43.8644577319136, 0.0]], "type": "LineString"}, "id": "83", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720901", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.2580646680521, 43.86107473191885, -70.2341874680892, 43.8655703319119], "geometry": {"coordinates": [[-70.2580646680521, 43.8644577319136, 0.0], [-70.25740126805317, 43.86422833191398, 0.0], [-70.25711666805358, 43.864296731913896, 0.0], [-70.25692620138722, 43.86482239857975, 0.0], [-70.25670446805424, 43.86507373191267, 0.0], [-70.25496540139028, 43.86548359857869, 0.0], [-70.25183686806179, 43.86527459857905, 0.0], [-70.25148980139568, 43.86497699857949, 0.0], [-70.25101560139638, 43.865022198579425, 0.0], [-70.25035066806407, 43.8655703319119, 0.0], [-70.24949286806543, 43.86551739857862, 0.0], [-70.24813360140087, 43.86538179857888, 0.0], [-70.24724826806892, 43.86517699857916, 0.0], [-70.2462676680704, 43.86478933191313, 0.0], [-70.24503366807232, 43.86412753191411, 0.0], [-70.24440126807332, 43.863990998581016, 0.0], [-70.24411720140711, 43.864128531914105, 0.0], [-70.2440866680738, 43.8646773319133, 0.0], [-70.24392900140737, 43.86481473191304, 0.0], [-70.24345486807482, 43.86481519857972, 0.0], [-70.24200060141038, 43.864519598580216, 0.0], [-70.24048366807938, 43.864635531913336, 0.0], [-70.23830260141614, 43.86452339858016, 0.0], [-70.23792306808338, 43.864363731913784, 0.0], [-70.23703666808478, 43.863610131914925, 0.0], [-70.23656226808549, 43.86340479858194, 0.0], [-70.23577226808669, 43.863451198581856, 0.0], [-70.23548766808716, 43.86333719858203, 0.0], [-70.23523426808754, 43.86306299858245, 0.0], [-70.23520220142092, 43.86274299858297, 0.0], [-70.23545386808723, 43.86228539858365, 0.0], [-70.23551660142044, 43.86196519858413, 0.0], [-70.23532660142075, 43.861759598584456, 0.0], [-70.2345042680887, 43.86150879858485, 0.0], [-70.23428280142235, 43.861326131918474, 0.0], [-70.2341874680892, 43.86107473191885, 0.0]], "type": "LineString"}, "id": "84", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721883", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.2341874680892, 43.8573787319246, -70.22195320144152, 43.86318059858229], "geometry": {"coordinates": [[-70.2341874680892, 43.86107473191885, 0.0], [-70.23361860142342, 43.860983798585664, 0.0], [-70.23336620142379, 43.86116699858542, 0.0], [-70.23333600142382, 43.861944531917516, 0.0], [-70.23302120142432, 43.862607998583144, 0.0], [-70.23254800142507, 43.86308859858241, 0.0], [-70.23204240142582, 43.86318059858229, 0.0], [-70.2316630680931, 43.86308939858242, 0.0], [-70.23068180142798, 43.86231293191696, 0.0], [-70.23068100142797, 43.86185559858433, 0.0], [-70.230427468095, 43.86144419858499, 0.0], [-70.23039486809506, 43.860918398585795, 0.0], [-70.23055200142818, 43.86036933191997, 0.0], [-70.23048826809492, 43.860140798587, 0.0], [-70.22985586809591, 43.8599585319206, 0.0], [-70.22852846809798, 43.859845398587424, 0.0], [-70.22805420143203, 43.85973159858764, 0.0], [-70.22780060143242, 43.859320131921606, 0.0], [-70.22723126809996, 43.85902353192205, 0.0], [-70.22719900143335, 43.858611931922724, 0.0], [-70.22745140143297, 43.858428598589626, 0.0], [-70.22748280143293, 43.85824573192326, 0.0], [-70.22726080143326, 43.857834331923925, 0.0], [-70.22675500143407, 43.85772039859074, 0.0], [-70.22628046810144, 43.857469531924494, 0.0], [-70.2254586681027, 43.8573787319246, 0.0], [-70.22485846810366, 43.85751639859109, 0.0], [-70.22460606810404, 43.85767679859083, 0.0], [-70.22457506810412, 43.85799693192365, 0.0], [-70.22523946810304, 43.858430798589666, 0.0], [-70.22520840143648, 43.85872813192253, 0.0], [-70.22495580143686, 43.85888833192229, 0.0], [-70.2244502014376, 43.858934531922216, 0.0], [-70.22413386810479, 43.858751931922484, 0.0], [-70.2236908014388, 43.858340731923136, 0.0], [-70.22321706810618, 43.858546931922774, 0.0], [-70.22305960143979, 43.85882153192239, 0.0], [-70.2227436014403, 43.85891319858888, 0.0], [-70.22223800144104, 43.8588907985889, 0.0], [-70.22201646810805, 43.85877659858909, 0.0], [-70.22195320144152, 43.85868519858923, 0.0]], "type": "LineString"}, "id": "85", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720927", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.22207800144133, 43.8431403319467, -70.21520880145198, 43.85868519858923], "geometry": {"coordinates": [[-70.22195320144152, 43.85868519858923, 0.0], [-70.22207800144133, 43.85774759859072, 0.0], [-70.22182426810838, 43.85719899859157, 0.0], [-70.22087480144319, 43.85633093192621, 0.0], [-70.21970500144499, 43.85589753192693, 0.0], [-70.21869386811323, 43.85605839859335, 0.0], [-70.21844086811365, 43.85592139859352, 0.0], [-70.21821906811397, 43.85553279859414, 0.0], [-70.21821880144728, 43.85532699859448, 0.0], [-70.21869180144654, 43.8547321319287, 0.0], [-70.21859666811338, 43.85452639859568, 0.0], [-70.21805866811422, 43.85400099859652, 0.0], [-70.21808980144749, 43.8537723319302, 0.0], [-70.21865766811328, 43.853131598597884, 0.0], [-70.21868860144656, 43.852742798598456, 0.0], [-70.21830846811383, 43.852240131932604, 0.0], [-70.21767600144813, 43.85185179859985, 0.0], [-70.21704366811576, 43.85162359860021, 0.0], [-70.21612740145054, 43.85160153193357, 0.0], [-70.21568466811789, 43.85148759860044, 0.0], [-70.21530506811848, 43.851236398600804, 0.0], [-70.21520986811862, 43.850870598601375, 0.0], [-70.21520880145198, 43.85018473193577, 0.0], [-70.2154296681183, 43.85002439860267, 0.0], [-70.21606140145065, 43.84990953193619, 0.0], [-70.21877880144643, 43.849907198602864, 0.0], [-70.219062801446, 43.84972399860317, 0.0], [-70.21912540144587, 43.849312398603786, 0.0], [-70.21903006811272, 43.84894659860436, 0.0], [-70.21871346811321, 43.84862673193817, 0.0], [-70.21807980144752, 43.84755253193987, 0.0], [-70.21779260144797, 43.84581499860923, 0.0], [-70.21760280144827, 43.8455865319429, 0.0], [-70.21697040144926, 43.84533539860996, 0.0], [-70.21599160145075, 43.84574793194264, 0.0], [-70.21548620145154, 43.84579399860928, 0.0], [-70.21545426811826, 43.84558819860956, 0.0], [-70.21561180145136, 43.845359531943245, 0.0], [-70.21614840145054, 43.8449703319439, 0.0], [-70.21614600145051, 43.8434609986129, 0.0], [-70.21677740144952, 43.8431403319467, 0.0], [-70.21819900144732, 43.843184931946666, 0.0]], "type": "LineString"}, "id": "86", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720987", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.21835606811374, 43.83964159861881, -70.217119401449, 43.843184931946666], "geometry": {"coordinates": [[-70.21819900144732, 43.843184931946666, 0.0], [-70.21835606811374, 43.842544531947624, 0.0], [-70.21784920144785, 43.841653131949045, 0.0], [-70.217119401449, 43.83964159861881, 0.0]], "type": "LineString"}, "id": "87", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6720993", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.217119401449, 43.81970879864974, -70.2079098014633, 43.83964159861881], "geometry": {"coordinates": [[-70.217119401449, 43.83964159861881, 0.0], [-70.21699300144923, 43.83964159861881, 0.0], [-70.21566480145128, 43.83881953195339, 0.0], [-70.21408426812036, 43.838180531954436, 0.0], [-70.21187060145718, 43.836741731956636, 0.0], [-70.21155420145766, 43.836376131957195, 0.0], [-70.21158500145759, 43.83580439862476, 0.0], [-70.21199466812362, 43.835186731959084, 0.0], [-70.21208880145679, 43.8347521319597, 0.0], [-70.21278260145573, 43.83399699862758, 0.0], [-70.21271906812251, 43.83374553196131, 0.0], [-70.21230746812313, 43.8331513319622, 0.0], [-70.21189546812377, 43.83230553196353, 0.0], [-70.21138906812456, 43.8315971986313, 0.0], [-70.21138766812459, 43.830659598632735, 0.0], [-70.21103980145847, 43.8303397319666, 0.0], [-70.21024986812631, 43.8301573986335, 0.0], [-70.20923920146123, 43.83031819863328, 0.0], [-70.20885966812847, 43.82995259863384, 0.0], [-70.2079098014633, 43.82835273196969, 0.0], [-70.20794086812992, 43.828032531970166, 0.0], [-70.21090720145867, 43.82615513197305, 0.0], [-70.21106446812507, 43.825743398640384, 0.0], [-70.21093640145858, 43.82455453197554, 0.0], [-70.21099880145852, 43.82409719864296, 0.0], [-70.21109320145837, 43.823845531976644, 0.0], [-70.2121660014567, 43.82318139864435, 0.0], [-70.21216546812337, 43.822746998645016, 0.0], [-70.2115018681244, 43.82256459864533, 0.0], [-70.21096460145856, 43.82224493197913, 0.0], [-70.20982546812701, 43.82080513198139, 0.0], [-70.20859300146225, 43.82023439864895, 0.0], [-70.20827666812937, 43.8199375319827, 0.0], [-70.20824466812945, 43.81970879864974, 0.0]], "type": "LineString"}, "id": "88", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721069", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.20824466812945, 43.81679433198758, -70.20567240146676, 43.81970879864974], "geometry": {"coordinates": [[-70.20824466812945, 43.81970879864974, 0.0], [-70.2080872681297, 43.81947599865009, 0.0], [-70.20759860146376, 43.819243398650485, 0.0], [-70.20673800146511, 43.819592398649945, 0.0], [-70.20606466813285, 43.81945793198349, 0.0], [-70.20570020146675, 43.81899419865084, 0.0], [-70.20567240146676, 43.81859793198481, 0.0], [-70.20640280146563, 43.81718059865369, 0.0], [-70.20609920146609, 43.81679433198758, 0.0]], "type": "LineString"}, "id": "89", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722225", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.20609920146609, 43.798895798682054, -70.17797166817644, 43.8200549986492], "geometry": {"coordinates": [[-70.20609920146609, 43.81679433198758, 0.0], [-70.2050562681344, 43.816911531987444, 0.0], [-70.204223401469, 43.81765693198628, 0.0], [-70.20406380146926, 43.818536798651564, 0.0], [-70.2044092014687, 43.81951773198335, 0.0], [-70.20426866813563, 43.81988053198279, 0.0], [-70.20383826813628, 43.8200549986492, 0.0], [-70.20333326813704, 43.81995399864934, 0.0], [-70.20267906813808, 43.819302198650405, 0.0], [-70.20245520147176, 43.81847579865166, 0.0], [-70.2018478681394, 43.81770299865286, 0.0], [-70.20180266813946, 43.815479398656294, 0.0], [-70.20008320147542, 43.81383293199218, 0.0], [-70.20040240147495, 43.81207299866162, 0.0], [-70.19928160147668, 43.81028573199768, 0.0], [-70.1983654681448, 43.80984193199839, 0.0], [-70.19437320148432, 43.80891319866652, 0.0], [-70.19359780148551, 43.80810679866778, 0.0], [-70.19337400148584, 43.807280398669036, 0.0], [-70.19099886815621, 43.80732639866898, 0.0], [-70.18975480149146, 43.80772893200168, 0.0], [-70.1885768014933, 43.80749319866874, 0.0], [-70.18821246816054, 43.80702953200279, 0.0], [-70.18868120149313, 43.80582059867129, 0.0], [-70.18841066816026, 43.80511513200571, 0.0], [-70.18633586816344, 43.803918398674284, 0.0], [-70.18515800149862, 43.803682732007985, 0.0], [-70.18360740150104, 43.80206959867712, 0.0], [-70.18213986816994, 43.80164573201114, 0.0], [-70.18156046817086, 43.80126919867837, 0.0], [-70.17882140150846, 43.80085119867903, 0.0], [-70.17797166817644, 43.79976919868068, 0.0], [-70.17835680150915, 43.79896219868198, 0.0], [-70.17844406817568, 43.798895798682054, 0.0]], "type": "LineString"}, "id": "90", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722249", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.17844406817568, 43.798049798683394, -70.17809600150957, 43.798895798682054], "geometry": {"coordinates": [[-70.17844406817568, 43.798895798682054, 0.0], [-70.17844380150905, 43.79864419868244, 0.0], [-70.17809626817626, 43.79843853201612, 0.0], [-70.17809600150957, 43.798049798683394, 0.0]], "type": "LineString"}, "id": "91", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721141", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.17809600150957, 43.79779853201711, -70.17749586817717, 43.798049798683394], "geometry": {"coordinates": [[-70.17809600150957, 43.798049798683394, 0.0], [-70.1779102681765, 43.797990798683486, 0.0], [-70.17788786817658, 43.797981598683464, 0.0], [-70.17779780151005, 43.79794699868353, 0.0], [-70.17773566817681, 43.797920132016884, 0.0], [-70.17768986817686, 43.79789873201696, 0.0], [-70.17764766817692, 43.79787579868366, 0.0], [-70.17757226817707, 43.797827398683694, 0.0], [-70.17749586817717, 43.79779853201711, 0.0]], "type": "LineString"}, "id": "92", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6722251", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.17749586817717, 43.7975705986841, -70.17623300151246, 43.79779853201711], "geometry": {"coordinates": [[-70.17749586817717, 43.79779853201711, 0.0], [-70.17623300151246, 43.7975705986841, 0.0]], "type": "LineString"}, "id": "93", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721143", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.17623300151246, 43.79691179868513, -70.17486846818127, 43.7975705986841], "geometry": {"coordinates": [[-70.17623300151246, 43.7975705986841, 0.0], [-70.17555300151355, 43.79736419868442, 0.0], [-70.17486846818127, 43.79691179868513, 0.0]], "type": "LineString"}, "id": "94", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724931", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.17486846818127, 43.79184413202631, -70.16325820153259, 43.79691179868513], "geometry": {"coordinates": [[-70.17486846818127, 43.79691179868513, 0.0], [-70.17332180151698, 43.796462998685854, 0.0], [-70.17130980152012, 43.79555019868724, 0.0], [-70.16820600152494, 43.79412513202277, 0.0], [-70.16502746819651, 43.793225798690855, 0.0], [-70.16325820153259, 43.79184413202631, 0.0]], "type": "LineString"}, "id": "95", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724933", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.16325820153259, 43.79036013202864, -70.14250566823148, 43.79505079868801], "geometry": {"coordinates": [[-70.16325820153259, 43.79184413202631, 0.0], [-70.1605292682035, 43.79036013202864, 0.0], [-70.15737520154175, 43.79064473202817, 0.0], [-70.15180020155037, 43.79261033202516, 0.0], [-70.14250566823148, 43.79505079868801, 0.0]], "type": "LineString"}, "id": "96", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724935", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.14250566823148, 43.79413933202278, -70.13999393490207, 43.79505079868801], "geometry": {"coordinates": [[-70.14250566823148, 43.79505079868801, 0.0], [-70.13999393490207, 43.79413933202278, 0.0]], "type": "LineString"}, "id": "97", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724927", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.13999393490207, 43.79265993202506, -70.13833560157127, 43.79413933202278], "geometry": {"coordinates": [[-70.13999393490207, 43.79413933202278, 0.0], [-70.13833560157127, 43.79265993202506, 0.0]], "type": "LineString"}, "id": "98", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724895", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.6309542690255, 44.57279433081413, -69.61239660238766, 44.60967713075689], "geometry": {"coordinates": [[-69.62215326903919, 44.60967713075689, 0.0], [-69.62269746903831, 44.60894539742469, 0.0], [-69.62292160237132, 44.60846533075875, 0.0], [-69.62407366903619, 44.607070397427606, 0.0], [-69.62448980236888, 44.60677319742808, 0.0], [-69.62548200236733, 44.60574419742966, 0.0], [-69.6266980690321, 44.60398353076573, 0.0], [-69.62695420236508, 44.603343330766734, 0.0], [-69.62701800236493, 44.60203999743544, 0.0], [-69.62727406903122, 44.60165133076936, 0.0], [-69.62737006903109, 44.601605597436105, 0.0], [-69.62737000236439, 44.60146839743629, 0.0], [-69.62785006903033, 44.60107953077022, 0.0], [-69.62941820236125, 44.60059933077099, 0.0], [-69.63057026902612, 44.60037059743803, 0.0], [-69.63089040235894, 44.60007333077181, 0.0], [-69.6309542690255, 44.59950159743937, 0.0], [-69.63076220235916, 44.59872419744056, 0.0], [-69.63044200235964, 44.59826693077463, 0.0], [-69.62983386902727, 44.59767259744217, 0.0], [-69.62976980236067, 44.597420997442555, 0.0], [-69.62967380236086, 44.59703233077653, 0.0], [-69.62932166902806, 44.59568319744528, 0.0], [-69.62852160236264, 44.59520313077934, 0.0], [-69.62663340236554, 44.59355679744857, 0.0], [-69.6255772023672, 44.592505130783536, 0.0], [-69.62471306903518, 44.59191059745115, 0.0], [-69.62464920236863, 44.59170479745143, 0.0], [-69.6248092023684, 44.59092733078597, 0.0], [-69.62551306903396, 44.58905233078889, 0.0], [-69.62554500236723, 44.58861793078955, 0.0], [-69.62532086903428, 44.58768039745769, 0.0], [-69.62446960236889, 44.586750930792505, 0.0], [-69.6241690023694, 44.586422730793004, 0.0], [-69.62404100236961, 44.585530997461035, 0.0], [-69.62359306903693, 44.584913730795336, 0.0], [-69.6234332023705, 44.584479197462656, 0.0], [-69.62320906903756, 44.58429633079629, 0.0], [-69.62279306903821, 44.58340459746432, 0.0], [-69.62276106903823, 44.582695730798775, 0.0], [-69.62317706903758, 44.58214693079964, 0.0], [-69.62333706903735, 44.58166673080035, 0.0], [-69.62333706903735, 44.5809807974681, 0.0], [-69.62317706903758, 44.580317597469104, 0.0], [-69.62260106903847, 44.57912859747097, 0.0], [-69.62237720237215, 44.57899139747121, 0.0], [-69.62141740237365, 44.57915153080427, 0.0], [-69.6211294023741, 44.57899139747121, 0.0], [-69.62116140237407, 44.57864839747174, 0.0], [-69.62157740237342, 44.57800819747274, 0.0], [-69.62154540237344, 44.57764233080661, 0.0], [-69.62128940237386, 44.5774593308069, 0.0], [-69.6175144023797, 44.57741359747365, 0.0], [-69.61588280238226, 44.57702473080758, 0.0], [-69.61524306904988, 44.576567397474946, 0.0], [-69.61495526905037, 44.57622433080883, 0.0], [-69.61482740238387, 44.575835730809445, 0.0], [-69.61473160238404, 44.574463730811544, 0.0], [-69.61431566905134, 44.57412073081207, 0.0], [-69.61364406905238, 44.5738233974792, 0.0], [-69.61239660238766, 44.57279433081413, 0.0]], "type": "LineString"}, "id": "99", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3321194", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-69.61239660238766, 44.57191499748217, -69.61164826905548, 44.57279433081413], "geometry": {"coordinates": [[-69.61239660238766, 44.57279433081413, 0.0], [-69.61230026905446, 44.572662597480985, 0.0], [-69.61220706905459, 44.572555797481186, 0.0], [-69.61211400238807, 44.57244899748133, 0.0], [-69.61202080238826, 44.57234219748153, 0.0], [-69.61192766905504, 44.57223539748168, 0.0], [-69.61183460238851, 44.57212859748182, 0.0], [-69.61174140238865, 44.57202179748202, 0.0], [-69.61164826905548, 44.57191499748217, 0.0]], "type": "LineString"}, "id": "100", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322390", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.6136828690523, 44.56775333082197, -69.61164826905548, 44.57191499748217], "geometry": {"coordinates": [[-69.61164826905548, 44.57191499748217, 0.0], [-69.6119626023883, 44.570671797484124, 0.0], [-69.6136828690523, 44.56775333082197, 0.0]], "type": "LineString"}, "id": "101", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322400", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.61965940237639, 44.56388919749463, -69.6136828690523, 44.56775333082197], "geometry": {"coordinates": [[-69.6136828690523, 44.56775333082197, 0.0], [-69.61377980238552, 44.567511530822344, 0.0], [-69.61676220238087, 44.56511033082609, 0.0], [-69.61965940237639, 44.56388919749463, 0.0]], "type": "LineString"}, "id": "102", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322408", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.62708060236486, 44.54837433085203, -69.61965940237639, 44.56388919749463], "geometry": {"coordinates": [[-69.61965940237639, 44.56388919749463, 0.0], [-69.62073986904136, 44.56343373082865, 0.0], [-69.62175826903979, 44.56272533082978, 0.0], [-69.6233810690373, 44.56004853083391, 0.0], [-69.62505320236801, 44.558165797503534, 0.0], [-69.62614160236632, 44.55498859750844, 0.0], [-69.62582360236684, 44.5525717975122, 0.0], [-69.62611286903302, 44.55093153084806, 0.0], [-69.62708060236486, 44.548514130851856, 0.0], [-69.62706766903153, 44.54837433085203, 0.0]], "type": "LineString"}, "id": "103", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322434", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.62942746902786, 44.54310919752686, -69.62690866903182, 44.54837433085203], "geometry": {"coordinates": [[-69.62706766903153, 44.54837433085203, 0.0], [-69.62690866903182, 44.54664973085471, 0.0], [-69.62763446903068, 44.54483653085754, 0.0], [-69.62855566902925, 44.54436993085824, 0.0], [-69.62942746902786, 44.54310919752686, 0.0]], "type": "LineString"}, "id": "104", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322438", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.63049846902624, 44.54310919752686, -69.62942746902786, 44.54398373085888], "geometry": {"coordinates": [[-69.62942746902786, 44.54310919752686, 0.0], [-69.62948400236115, 44.54318133086008, 0.0], [-69.629569802361, 44.54329113085993, 0.0], [-69.62965566902756, 44.543400930859775, 0.0], [-69.62974160236075, 44.54351073085962, 0.0], [-69.62982746902725, 44.543620530859414, 0.0], [-69.62991340236044, 44.543730397525906, 0.0], [-69.63002760236031, 44.543777197525856, 0.0], [-69.63018060236004, 44.543839997525765, 0.0], [-69.63033346902648, 44.543902797525675, 0.0], [-69.63049846902624, 44.54398373085888, 0.0]], "type": "LineString"}, "id": "105", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322440", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.63347460235497, 44.539878530865224, -69.62942746902786, 44.54310919752686], "geometry": {"coordinates": [[-69.62942746902786, 44.54310919752686, 0.0], [-69.62978980236068, 44.54174513086235, 0.0], [-69.63223846902355, 44.540673330864024, 0.0], [-69.63347460235497, 44.539878530865224, 0.0]], "type": "LineString"}, "id": "106", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322454", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.63459060235323, 44.54123939752981, -69.63049846902624, 44.544235197525154], "geometry": {"coordinates": [[-69.63049846902624, 44.54398373085888, 0.0], [-69.6310420690254, 44.544235197525154, 0.0], [-69.63145780235806, 44.544235197525154, 0.0], [-69.6320972023571, 44.54375493085922, 0.0], [-69.63216106902365, 44.54357199752616, 0.0], [-69.63260866902294, 44.54318319752679, 0.0], [-69.63407926902067, 44.542268397528176, 0.0], [-69.6345586690199, 44.541605197529236, 0.0], [-69.63459060235323, 44.54123939752981, 0.0]], "type": "LineString"}, "id": "107", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3321282", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-69.63389746902095, 44.538592130867244, -69.63347460235497, 44.539878530865224], "geometry": {"coordinates": [[-69.63347460235497, 44.539878530865224, 0.0], [-69.63389746902095, 44.538592130867244, 0.0]], "type": "LineString"}, "id": "108", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322464", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.63459060235323, 44.539878530865224, -69.63347460235497, 44.54123939752981], "geometry": {"coordinates": [[-69.63459060235323, 44.54123939752981, 0.0], [-69.63442760235347, 44.54108313086334, 0.0], [-69.63434086902026, 44.54097359753018, 0.0], [-69.6342542690204, 44.540864130863724, 0.0], [-69.63416760235384, 44.540754597530565, 0.0], [-69.63408100235398, 44.54064513086405, 0.0], [-69.63399440235412, 44.54053553086419, 0.0], [-69.63390766902091, 44.54042599753103, 0.0], [-69.63382106902105, 44.54031653086457, 0.0], [-69.63373446902119, 44.54020699753141, 0.0], [-69.63364780235469, 44.5400975308649, 0.0], [-69.63356120235483, 44.53998799753174, 0.0], [-69.63347460235497, 44.539878530865224, 0.0]], "type": "LineString"}, "id": "109", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322456", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.65416626898951, 44.52486253088853, -69.63389746902095, 44.538592130867244], "geometry": {"coordinates": [[-69.63389746902095, 44.538592130867244, 0.0], [-69.63480626901952, 44.53792693086825, 0.0], [-69.63737380234886, 44.53518039753919, 0.0], [-69.64183400234197, 44.53320939754224, 0.0], [-69.64382100233888, 44.531913330877614, 0.0], [-69.64920160233055, 44.529475397548026, 0.0], [-69.65138166899379, 44.52769573088415, 0.0], [-69.65319720232435, 44.525450130887634, 0.0], [-69.65416626898951, 44.52486253088853, 0.0]], "type": "LineString"}, "id": "110", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322482", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.65787286898376, 44.52247733089223, -69.65416626898951, 44.52486253088853], "geometry": {"coordinates": [[-69.65416626898951, 44.52486253088853, 0.0], [-69.65432366898926, 44.52469833088878, 0.0], [-69.65654086898581, 44.523514130890646, 0.0], [-69.65787286898376, 44.52247733089223, 0.0]], "type": "LineString"}, "id": "111", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322486", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.66482266897293, 44.51656773090144, -69.65787286898376, 44.52247733089223], "geometry": {"coordinates": [[-69.65787286898376, 44.52247733089223, 0.0], [-69.6595196689812, 44.521112197561024, 0.0], [-69.66060880231282, 44.51976479756314, 0.0], [-69.66366060230808, 44.517638997566394, 0.0], [-69.66482266897293, 44.51656773090144, 0.0]], "type": "LineString"}, "id": "112", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322496", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.6724470689611, 44.5089655975799, -69.66482266897293, 44.51656773090144], "geometry": {"coordinates": [[-69.66482266897293, 44.51656773090144, 0.0], [-69.6662744689707, 44.514771197570894, 0.0], [-69.66840540230072, 44.51311213090679, 0.0], [-69.6724470689611, 44.5089655975799, 0.0]], "type": "LineString"}, "id": "113", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322512", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.67654526895473, 44.50008093092703, -69.6724470689611, 44.5089655975799], "geometry": {"coordinates": [[-69.6724470689611, 44.5089655975799, 0.0], [-69.67251606896099, 44.50888219758002, 0.0], [-69.6726056022942, 44.50877393091349, 0.0], [-69.67269520229405, 44.508665597580375, 0.0], [-69.6727848022939, 44.508557330913845, 0.0], [-69.67287426896047, 44.50844899758067, 0.0], [-69.67296386896032, 44.50834079758084, 0.0], [-69.67305346896018, 44.50823253091437, 0.0], [-69.67314300229339, 44.508124197581196, 0.0], [-69.67323260229324, 44.50801593091467, 0.0], [-69.6733222022931, 44.50790759758155, 0.0], [-69.6734116689596, 44.50779933091502, 0.0], [-69.67350126895946, 44.50769099758185, 0.0], [-69.67359080229267, 44.507582730915374, 0.0], [-69.67368040229252, 44.5074743975822, 0.0], [-69.67377000229237, 44.50736613091573, 0.0], [-69.67385946895894, 44.507257797582554, 0.0], [-69.67394906895879, 44.507149597582725, 0.0], [-69.67403866895864, 44.507041330916195, 0.0], [-69.67412820229185, 44.50693299758302, 0.0], [-69.67421780229171, 44.50682473091655, 0.0], [-69.67430726895822, 44.506716397583375, 0.0], [-69.67439686895807, 44.5066081309169, 0.0], [-69.67448646895792, 44.50649979758373, 0.0], [-69.67457600229113, 44.5063915309172, 0.0], [-69.67462426895776, 44.50627059758409, 0.0], [-69.67467246895768, 44.50614979758427, 0.0], [-69.67472080229089, 44.50602893091775, 0.0], [-69.67476906895752, 44.50590799758464, 0.0], [-69.67481740229078, 44.50578713091812, 0.0], [-69.67486560229071, 44.505666197585015, 0.0], [-69.67491386895728, 44.505545397585195, 0.0], [-69.67496220229054, 44.50542453091873, 0.0], [-69.67501040229047, 44.505303597585566, 0.0], [-69.67505866895704, 44.5051827309191, 0.0], [-69.6751070022903, 44.50506179758594, 0.0], [-69.67515520229023, 44.50494099758612, 0.0], [-69.67520346895685, 44.504820130919654, 0.0], [-69.67525180229006, 44.50469919758649, 0.0], [-69.67530000229004, 44.504578330920026, 0.0], [-69.67534826895661, 44.50445739758686, 0.0], [-69.67539660228988, 44.50433659758704, 0.0], [-69.6754448022898, 44.50421573092058, 0.0], [-69.67549306895637, 44.50409479758747, 0.0], [-69.67554140228964, 44.50397393092095, 0.0], [-69.67558960228956, 44.50385299758784, 0.0], [-69.67563786895619, 44.50373219758802, 0.0], [-69.67564160228949, 44.50369233092141, 0.0], [-69.67565320228948, 44.50356693092158, 0.0], [-69.67566480228948, 44.503441530921805, 0.0], [-69.67567646895611, 44.503316130921974, 0.0], [-69.6756880689561, 44.5031907309222, 0.0], [-69.67569966895604, 44.50306533092237, 0.0], [-69.67571126895604, 44.502939930922594, 0.0], [-69.67572286895603, 44.50281453092276, 0.0], [-69.67573460228937, 44.50268913092293, 0.0], [-69.6757462022893, 44.50256373092316, 0.0], [-69.6757578022893, 44.502438330923326, 0.0], [-69.67576940228929, 44.50231293092355, 0.0], [-69.67578106895593, 44.50218753092372, 0.0], [-69.67579266895592, 44.502062130923946, 0.0], [-69.67580426895591, 44.501936730924115, 0.0], [-69.67580886895587, 44.50192519759082, 0.0], [-69.67585720228914, 44.50180433092436, 0.0], [-69.67590540228906, 44.501683397591194, 0.0], [-69.67595366895569, 44.50156253092473, 0.0], [-69.67600200228895, 44.50144173092491, 0.0], [-69.67605020228888, 44.501320797591745, 0.0], [-69.67609846895544, 44.50119993092528, 0.0], [-69.67614680228871, 44.50107899759212, 0.0], [-69.67619500228864, 44.50095813092565, 0.0], [-69.6762432689552, 44.50083733092583, 0.0], [-69.67629146895513, 44.50071639759267, 0.0], [-69.6763398022884, 44.500595530926205, 0.0], [-69.67638806895502, 44.50047459759304, 0.0], [-69.67643626895494, 44.50035373092658, 0.0], [-69.67648460228816, 44.50023293092676, 0.0], [-69.67653286895478, 44.50011199759365, 0.0], [-69.67654526895473, 44.50008093092703, 0.0]], "type": "LineString"}, "id": "114", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3322526", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.67911080228413, 44.494113930936294, -69.67654526895473, 44.50008093092703], "geometry": {"coordinates": [[-69.67654526895473, 44.50008093092703, 0.0], [-69.67654546895477, 44.50008039759365, 0.0], [-69.67658340228803, 44.49998539759383, 0.0], [-69.67662126895465, 44.49989039759396, 0.0], [-69.67665920228791, 44.49979539759414, 0.0], [-69.67669720228787, 44.49970053092761, 0.0], [-69.67673506895443, 44.49960553092774, 0.0], [-69.67677300228775, 44.49951053092792, 0.0], [-69.67681086895436, 44.49941553092805, 0.0], [-69.67684880228762, 44.49932053092817, 0.0], [-69.67688680228753, 44.499225597595, 0.0], [-69.67692466895414, 44.499130597595126, 0.0], [-69.67696260228746, 44.49903559759531, 0.0], [-69.67701100228737, 44.49897193092875, 0.0], [-69.67707686895392, 44.49888499759555, 0.0], [-69.67714286895381, 44.49879819759565, 0.0], [-69.67720880228705, 44.498711330929154, 0.0], [-69.67727480228695, 44.49862439759596, 0.0], [-69.67734066895349, 44.498537597596055, 0.0], [-69.67740666895344, 44.49845073092956, 0.0], [-69.67747260228663, 44.498363930929656, 0.0], [-69.67753860228652, 44.49827699759646, 0.0], [-69.67760446895312, 44.49819013092997, 0.0], [-69.67767046895301, 44.498103330930064, 0.0], [-69.67773640228626, 44.49801639759687, 0.0], [-69.67776500228621, 44.49792013093037, 0.0], [-69.67779360228616, 44.49782353093053, 0.0], [-69.67782226895275, 44.49772693093064, 0.0], [-69.6778508689527, 44.497630330930804, 0.0], [-69.677879602286, 44.49753373093097, 0.0], [-69.67790820228595, 44.49743713093113, 0.0], [-69.6779368689526, 44.49734053093124, 0.0], [-69.67796546895255, 44.497243930931404, 0.0], [-69.67799420228584, 44.49714733093157, 0.0], [-69.6780228022858, 44.49705073093173, 0.0], [-69.67805146895239, 44.49695399759855, 0.0], [-69.67808006895234, 44.49685739759866, 0.0], [-69.67810880228564, 44.496760797598824, 0.0], [-69.67813740228559, 44.49666419759899, 0.0], [-69.67816606895224, 44.49656759759915, 0.0], [-69.67819466895219, 44.49647099759926, 0.0], [-69.67822340228548, 44.496374397599425, 0.0], [-69.67825200228543, 44.49627779759959, 0.0], [-69.67828066895208, 44.49618119759975, 0.0], [-69.67830926895203, 44.49608459759986, 0.0], [-69.67833800228527, 44.495987997600025, 0.0], [-69.67836660228528, 44.49589133093349, 0.0], [-69.67839526895187, 44.49579473093365, 0.0], [-69.67842386895182, 44.49569813093382, 0.0], [-69.67845260228512, 44.49560153093398, 0.0], [-69.67848120228507, 44.49550493093409, 0.0], [-69.67850980228502, 44.495408330934254, 0.0], [-69.67853846895167, 44.49531173093442, 0.0], [-69.67856706895162, 44.49521513093458, 0.0], [-69.67859580228492, 44.49511853093469, 0.0], [-69.67862440228487, 44.495021930934854, 0.0], [-69.67865306895146, 44.49492533093502, 0.0], [-69.67868166895141, 44.49482859760184, 0.0], [-69.67871040228471, 44.494731997602, 0.0], [-69.67873900228466, 44.49463539760211, 0.0], [-69.67876766895131, 44.494538797602274, 0.0], [-69.67879626895126, 44.49444219760244, 0.0], [-69.67879826895125, 44.494440197602444, 0.0], [-69.67887640228446, 44.49435859760257, 0.0], [-69.67895446895102, 44.49427713093604, 0.0], [-69.67903266895087, 44.49419553093617, 0.0], [-69.67911080228413, 44.494113930936294, 0.0]], "type": "LineString"}, "id": "115", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325320", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.68239326894565, 44.48680913094762, -69.67911080228413, 44.494113930936294], "geometry": {"coordinates": [[-69.67911080228413, 44.494113930936294, 0.0], [-69.67925386895052, 44.49283639760495, 0.0], [-69.68055660228185, 44.48957273094334, 0.0], [-69.68239326894565, 44.48680913094762, 0.0]], "type": "LineString"}, "id": "116", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325324", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.68487826894182, 44.468630530975815, -69.68239326894565, 44.48680913094762], "geometry": {"coordinates": [[-69.68239326894565, 44.48680913094762, 0.0], [-69.68241306894566, 44.48446153095125, 0.0], [-69.68356900227718, 44.48064553095719, 0.0], [-69.68307780227792, 44.47728013096241, 0.0], [-69.68319386894444, 44.47469079763306, 0.0], [-69.68423000227614, 44.47163453097119, 0.0], [-69.68422640227618, 44.46980493097402, 0.0], [-69.68487826894182, 44.468630530975815, 0.0]], "type": "LineString"}, "id": "117", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325334", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.6860016022734, 44.46075839765473, -69.68487826894182, 44.468630530975815], "geometry": {"coordinates": [[-69.68487826894182, 44.468630530975815, 0.0], [-69.6854320022743, 44.46678299764534, 0.0], [-69.68535160227441, 44.46284759765149, 0.0], [-69.6860016022734, 44.46075839765473, 0.0]], "type": "LineString"}, "id": "118", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325352", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.6866998022723, 44.45854839765815, -69.6860016022734, 44.46075839765473], "geometry": {"coordinates": [[-69.6860016022734, 44.46075839765473, 0.0], [-69.6866998022723, 44.45854839765815, 0.0]], "type": "LineString"}, "id": "119", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325356", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.69690186892313, 44.43710053102478, -69.6866998022723, 44.45854839765815], "geometry": {"coordinates": [[-69.6866998022723, 44.45854839765815, 0.0], [-69.68768906893746, 44.45652793099464, 0.0], [-69.68887286893562, 44.45493873099707, 0.0], [-69.69089746893246, 44.44986213100498, 0.0], [-69.6924184689301, 44.447426797675405, 0.0], [-69.69295046892927, 44.44701199767604, 0.0], [-69.69509980225928, 44.44392013101418, 0.0], [-69.69659360225694, 44.44017313102, 0.0], [-69.69690186892313, 44.43710053102478, 0.0]], "type": "LineString"}, "id": "120", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325370", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.70894166890446, 44.41746299772194, -69.69690186892313, 44.43710053102478], "geometry": {"coordinates": [[-69.69690186892313, 44.43710053102478, 0.0], [-69.70051486891754, 44.428035331038814, 0.0], [-69.70365346891265, 44.42383773104535, 0.0], [-69.70744500224015, 44.4193805310523, 0.0], [-69.70773380223966, 44.41865519772006, 0.0], [-69.70894166890446, 44.41746299772194, 0.0]], "type": "LineString"}, "id": "121", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325392", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.72044286888661, 44.40790479773676, -69.70894166890446, 44.41746299772194], "geometry": {"coordinates": [[-69.70894166890446, 44.41746299772194, 0.0], [-69.7130672022314, 44.41124479773157, 0.0], [-69.71434806889607, 44.41032853106634, 0.0], [-69.72044286888661, 44.40790479773676, 0.0]], "type": "LineString"}, "id": "122", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325410", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.72307286888253, 44.404518731075314, -69.72044286888661, 44.40790479773676], "geometry": {"coordinates": [[-69.72044286888661, 44.40790479773676, 0.0], [-69.72218180221722, 44.406297531072596, 0.0], [-69.72307286888253, 44.404518731075314, 0.0]], "type": "LineString"}, "id": "123", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325416", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.73169560220248, 44.37433159778885, -69.72307286888253, 44.404518731075314], "geometry": {"coordinates": [[-69.72307286888253, 44.404518731075314, 0.0], [-69.72316926888237, 44.404276997742386, 0.0], [-69.724062668881, 44.40341293107707, 0.0], [-69.72635360221079, 44.39995819774907, 0.0], [-69.72875840220706, 44.39391459775845, 0.0], [-69.72975866887214, 44.387717597768074, 0.0], [-69.72958680220574, 44.386768731102904, 0.0], [-69.72837260220763, 44.38521713110532, 0.0], [-69.7289016022068, 44.38388753110735, 0.0], [-69.72875506887374, 44.38333553110823, 0.0], [-69.72630420221083, 44.38074999777888, 0.0], [-69.72692920220987, 44.37917873111468, 0.0], [-69.72888500220682, 44.377484931117294, 0.0], [-69.73112900220337, 44.37506579778773, 0.0], [-69.73136926886963, 44.374461531121995, 0.0], [-69.73169560220248, 44.37433159778885, 0.0]], "type": "LineString"}, "id": "124", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325450", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76172346882254, 44.33907513117691, -69.73169560220248, 44.37433159778885], "geometry": {"coordinates": [[-69.73169560220248, 44.37433159778885, 0.0], [-69.73235846886814, 44.373355731123695, 0.0], [-69.73498920219737, 44.37088433112757, 0.0], [-69.73518140219704, 44.37040079779496, 0.0], [-69.7383936021921, 44.36830819779823, 0.0], [-69.74237700218589, 44.36519633113636, 0.0], [-69.74534326884799, 44.36187873114153, 0.0], [-69.74681240217899, 44.359564131145135, 0.0], [-69.7477730688442, 44.35714673114887, 0.0], [-69.74909786884211, 44.355194731151926, 0.0], [-69.75013446884054, 44.35396799782046, 0.0], [-69.75235426883705, 44.35206639782342, 0.0], [-69.7538962688347, 44.35002779782661, 0.0], [-69.75488186883314, 44.348007331163046, 0.0], [-69.75613566883123, 44.34669379783179, 0.0], [-69.75847100216095, 44.34311819783733, 0.0], [-69.76107406882352, 44.34024953117512, 0.0], [-69.76172346882254, 44.33907513117691, 0.0]], "type": "LineString"}, "id": "125", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325472", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76555426881657, 44.33449613118404, -69.76172346882254, 44.33907513117691], "geometry": {"coordinates": [[-69.76172346882254, 44.33907513117691, 0.0], [-69.76181946882241, 44.338833397843985, 0.0], [-69.76555426881657, 44.33449613118404, 0.0]], "type": "LineString"}, "id": "126", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325480", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76845860214542, 44.32764079786136, -69.76555426881657, 44.33449613118404], "geometry": {"coordinates": [[-69.76555426881657, 44.33449613118404, 0.0], [-69.76646600214849, 44.33219959785424, 0.0], [-69.76699666881433, 44.33178459785489, 0.0], [-69.76845860214542, 44.32764079786136, 0.0]], "type": "LineString"}, "id": "127", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325488", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.77145520214077, 44.319629331207125, -69.76845860214542, 44.32764079786136], "geometry": {"coordinates": [[-69.76845860214542, 44.32764079786136, 0.0], [-69.76982720214329, 44.32465333119933, 0.0], [-69.76977340214336, 44.32294513120195, 0.0], [-69.77063680214201, 44.320769531205315, 0.0], [-69.77145520214077, 44.319629331207125, 0.0]], "type": "LineString"}, "id": "128", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325492", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.78986060211219, 44.27539473127575, -69.77145520214077, 44.319629331207125], "geometry": {"coordinates": [[-69.77145520214077, 44.319629331207125, 0.0], [-69.77209820213977, 44.316625731211786, 0.0], [-69.77281760213867, 44.3148127312146, 0.0], [-69.77298100213841, 44.31301793121736, 0.0], [-69.77241906880596, 44.31120699788687, 0.0], [-69.77251200213914, 44.310050797888664, 0.0], [-69.77294060213848, 44.30804839789175, 0.0], [-69.77423526880312, 44.30478513123012, 0.0], [-69.77570206880085, 44.30247039790038, 0.0], [-69.77759726879788, 44.298153531240416, 0.0], [-69.77942800212838, 44.29630419790999, 0.0], [-69.7804600021268, 44.294162797913316, 0.0], [-69.78255260212353, 44.291191397917885, 0.0], [-69.78423920212094, 44.289704597920206, 0.0], [-69.78706266878322, 44.28857813125529, 0.0], [-69.78759300211573, 44.2881629979226, 0.0], [-69.78826366878133, 44.28647093125858, 0.0], [-69.78871406878062, 44.28395099792914, 0.0], [-69.7897200687791, 44.281412797933115, 0.0], [-69.78986060211219, 44.28013579793509, 0.0], [-69.78796686878178, 44.277533731272456, 0.0], [-69.78769860211554, 44.2768267979402, 0.0], [-69.78771780211554, 44.27539473127575, 0.0]], "type": "LineString"}, "id": "129", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325524", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.78781360211536, 44.2683137979534, -69.78175020212478, 44.27539473127575], "geometry": {"coordinates": [[-69.78771780211554, 44.27539473127575, 0.0], [-69.78781360211536, 44.275152997942826, 0.0], [-69.78701206878327, 44.2739465979447, 0.0], [-69.78664500211721, 44.27256693128015, 0.0], [-69.78506760211963, 44.270550997949954, 0.0], [-69.78441306878733, 44.2698965312843, 0.0], [-69.78175020212478, 44.2683137979534, 0.0]], "type": "LineString"}, "id": "130", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325538", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.78175020212478, 44.26301339796163, -69.7736156021374, 44.2683137979534], "geometry": {"coordinates": [[-69.78175020212478, 44.2683137979534, 0.0], [-69.7779986687973, 44.266249731289975, 0.0], [-69.77683660213239, 44.26549253129116, 0.0], [-69.77511600213506, 44.26383913129371, 0.0], [-69.7736156021374, 44.26301339796163, 0.0]], "type": "LineString"}, "id": "131", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325544", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.7736156021374, 44.25047773131445, -69.76908240214442, 44.26301339796163], "geometry": {"coordinates": [[-69.7736156021374, 44.26301339796163, 0.0], [-69.77327720213793, 44.26294493129507, 0.0], [-69.77133660214093, 44.26046359796561, 0.0], [-69.76961040214366, 44.25698133130436, 0.0], [-69.76946366881054, 44.256429397971885, 0.0], [-69.7705178688089, 44.25377073130932, 0.0], [-69.77051500214225, 44.25285633131074, 0.0], [-69.77017366880943, 44.251873397978954, 0.0], [-69.76908240214442, 44.25047773131445, 0.0]], "type": "LineString"}, "id": "132", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325562", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.77043960214235, 44.2369147313355, -69.76722660214733, 44.25047773131445], "geometry": {"coordinates": [[-69.76908240214442, 44.25047773131445, 0.0], [-69.76895526881134, 44.24849379798417, 0.0], [-69.76836860214553, 44.24628633132096, 0.0], [-69.76722660214733, 44.24409713132434, 0.0], [-69.7689064688114, 44.240781797996135, 0.0], [-69.77043960214235, 44.2369147313355, 0.0]], "type": "LineString"}, "id": "133", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325576", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.77053540214217, 44.23070539801182, -69.76942966881057, 44.2369147313355], "geometry": {"coordinates": [[-69.77043960214235, 44.2369147313355, 0.0], [-69.77053540214217, 44.23667299800252, 0.0], [-69.77045620214233, 44.23456833133912, 0.0], [-69.76942966881057, 44.23070539801182, 0.0]], "type": "LineString"}, "id": "134", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325580", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.7695254688104, 44.22674399801792, -69.76533666881693, 44.23070539801182], "geometry": {"coordinates": [[-69.76942966881057, 44.23070539801182, 0.0], [-69.7695254688104, 44.23046373134548, 0.0], [-69.76736900214712, 44.22806913134923, 0.0], [-69.76533666881693, 44.22674399801792, 0.0]], "type": "LineString"}, "id": "135", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325586", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76533666881693, 44.22255693135776, -69.76206426882203, 44.22674399801792], "geometry": {"coordinates": [[-69.76533666881693, 44.22674399801792, 0.0], [-69.76499846881745, 44.22667553135136, 0.0], [-69.7624054021548, 44.223539731356254, 0.0], [-69.76206426882203, 44.22255693135776, 0.0]], "type": "LineString"}, "id": "136", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325590", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76292360215399, 44.197529398063296, -69.75901860216004, 44.22255693135776], "geometry": {"coordinates": [[-69.76206426882203, 44.22255693135776, 0.0], [-69.76102146882363, 44.22104033136014, 0.0], [-69.76011966882504, 44.21824693136449, 0.0], [-69.76079046882398, 44.216555198033745, 0.0], [-69.76090326882382, 44.21396719803778, 0.0], [-69.76183600215569, 44.211153731375475, 0.0], [-69.76175986882248, 44.209963531377355, 0.0], [-69.76288420215405, 44.20666659804914, 0.0], [-69.76292360215399, 44.20380279805357, 0.0], [-69.76228960215496, 44.20171639805682, 0.0], [-69.75901860216004, 44.197529398063296, 0.0]], "type": "LineString"}, "id": "137", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325612", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.75901860216004, 44.192085731405086, -69.75405506883442, 44.197529398063296], "geometry": {"coordinates": [[-69.75901860216004, 44.197529398063296, 0.0], [-69.75533946883246, 44.19391233140226, 0.0], [-69.75405506883442, 44.192085731405086, 0.0]], "type": "LineString"}, "id": "138", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325626", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.75405506883442, 44.19006773140819, -69.75375946883491, 44.192085731405086], "geometry": {"coordinates": [[-69.75405506883442, 44.192085731405086, 0.0], [-69.75375946883491, 44.19006773140819, 0.0]], "type": "LineString"}, "id": "139", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325628", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76184426882236, 44.16690493144415, -69.75227006883722, 44.19006773140819], "geometry": {"coordinates": [[-69.75375946883491, 44.19006773140819, 0.0], [-69.75370886883496, 44.18927433140942, 0.0], [-69.75315120216919, 44.18837813141084, 0.0], [-69.75322166883575, 44.187739731411796, 0.0], [-69.75227006883722, 44.18415293141737, 0.0], [-69.75236320217039, 44.182996998085855, 0.0], [-69.75360860216847, 44.17985553142404, 0.0], [-69.75429360216742, 44.17490353143177, 0.0], [-69.75525140216592, 44.17248699810216, 0.0], [-69.75631040216427, 44.17165733143679, 0.0], [-69.75891260216025, 44.17061833143839, 0.0], [-69.76040526882457, 44.169615531439945, 0.0], [-69.7614388021563, 44.16838913144187, 0.0], [-69.76184426882236, 44.16690493144415, 0.0]], "type": "LineString"}, "id": "140", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325654", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.7624694688214, 44.16624839811186, -69.76184426882236, 44.16690493144415], "geometry": {"coordinates": [[-69.76184426882236, 44.16690493144415, 0.0], [-69.7624694688214, 44.16624839811186, 0.0]], "type": "LineString"}, "id": "141", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325656", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76424306881864, 44.15217033146706, -69.76222726882173, 44.16624839811186], "geometry": {"coordinates": [[-69.7624694688214, 44.16624839811186, 0.0], [-69.76222726882173, 44.16593833144566, 0.0], [-69.76275386882094, 44.16460919811442, 0.0], [-69.76245820215473, 44.16259139811751, 0.0], [-69.7637506021527, 44.159329131455934, 0.0], [-69.7636266021529, 44.15825979812428, 0.0], [-69.76424306881864, 44.15486059812952, 0.0], [-69.76418960215204, 44.15315293146551, 0.0], [-69.76384886881925, 44.15217033146706, 0.0]], "type": "LineString"}, "id": "142", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325672", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.76384886881925, 44.14565793147716, -69.75876440216047, 44.15217033146706], "geometry": {"coordinates": [[-69.76384886881925, 44.15217033146706, 0.0], [-69.76383620215262, 44.15197193146736, 0.0], [-69.76256500215459, 44.15034379813653, 0.0], [-69.76169500215593, 44.14977599813744, 0.0], [-69.75876440216047, 44.14565793147716, 0.0]], "type": "LineString"}, "id": "143", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325682", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.78620306878452, 44.08831293156618, -69.75742740216253, 44.14565793147716], "geometry": {"coordinates": [[-69.75876440216047, 44.14565793147716, 0.0], [-69.75808600216152, 44.1446067314788, 0.0], [-69.75742740216253, 44.14212379814927, 0.0], [-69.7575682021623, 44.14084719815128, 0.0], [-69.75886046882698, 44.137585131489686, 0.0], [-69.75945726882605, 44.135617731492744, 0.0], [-69.75935600215956, 44.13403099816185, 0.0], [-69.76174566882253, 44.127075931506, 0.0], [-69.76123626882327, 44.126058998174244, 0.0], [-69.76204960215534, 44.12400513151073, 0.0], [-69.76640020214859, 44.11992753151708, 0.0], [-69.76711766881414, 44.11811519818656, 0.0], [-69.7668474021479, 44.116494331522404, 0.0], [-69.76715680214744, 44.11525193152431, 0.0], [-69.76700466881437, 44.11287193152805, 0.0], [-69.76810466881261, 44.110093131532324, 0.0], [-69.76952260214375, 44.10881439820099, 0.0], [-69.77079420214181, 44.106983998203816, 0.0], [-69.77179820214025, 44.10444693154113, 0.0], [-69.77165180214047, 44.10389519820865, 0.0], [-69.7730860688049, 44.10027079821424, 0.0], [-69.77383146880373, 44.09976933154837, 0.0], [-69.77428720213635, 44.099078598216124, 0.0], [-69.77568240213418, 44.09831739821732, 0.0], [-69.7770522021321, 44.09715953155245, 0.0], [-69.77880420212938, 44.09503499822239, 0.0], [-69.78062640212653, 44.092272331560025, 0.0], [-69.78334306878895, 44.09047379822948, 0.0], [-69.78555646878556, 44.08948679823101, 0.0], [-69.78620306878452, 44.08831293156618, 0.0]], "type": "LineString"}, "id": "144", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325716", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.7953118687704, 44.08831293156618, -69.78620306878452, 44.08956673156422], "geometry": {"coordinates": [[-69.78620306878452, 44.08831293156618, 0.0], [-69.78627026878445, 44.08839899823266, 0.0], [-69.78633746878432, 44.0884851315659, 0.0], [-69.78640480211754, 44.088571198232444, 0.0], [-69.78647200211748, 44.08865739823227, 0.0], [-69.78653920211735, 44.08874353156551, 0.0], [-69.78660646878393, 44.088829598231996, 0.0], [-69.7866736687838, 44.08891573156524, 0.0], [-69.78674086878368, 44.08900179823178, 0.0], [-69.78680806878361, 44.08908793156496, 0.0], [-69.78694066878342, 44.08911479823155, 0.0], [-69.7870734021165, 44.089141731564894, 0.0], [-69.7872060021163, 44.08916853156484, 0.0], [-69.78733860211611, 44.089195398231425, 0.0], [-69.78747120211591, 44.08922233156477, 0.0], [-69.78760380211571, 44.08924913156471, 0.0], [-69.78773640211551, 44.0892759982313, 0.0], [-69.78786900211531, 44.08930293156459, 0.0], [-69.78800166878176, 44.08932973156459, 0.0], [-69.78813426878156, 44.08935659823118, 0.0], [-69.78826686878136, 44.089383531564465, 0.0], [-69.78839946878111, 44.08941039823111, 0.0], [-69.78853206878091, 44.08943719823105, 0.0], [-69.78866480211406, 44.08946413156434, 0.0], [-69.78879740211386, 44.089490998230985, 0.0], [-69.78893000211366, 44.08951779823093, 0.0], [-69.78906260211346, 44.08954473156422, 0.0], [-69.78917106877992, 44.08956673156422, 0.0], [-69.78930866877971, 44.0895603982309, 0.0], [-69.78944620211286, 44.08955413156423, 0.0], [-69.78958380211265, 44.089547931564255, 0.0], [-69.78972126877909, 44.08954159823094, 0.0], [-69.78985886877888, 44.08953539823091, 0.0], [-69.78999640211197, 44.08952913156429, 0.0], [-69.79013400211176, 44.08952293156426, 0.0], [-69.7902714687782, 44.089516598230944, 0.0], [-69.79040906877799, 44.08951033156427, 0.0], [-69.79054660211114, 44.0895041315643, 0.0], [-69.79068406877758, 44.08949779823098, 0.0], [-69.79082166877737, 44.089491531564306, 0.0], [-69.79095920211051, 44.08948533156433, 0.0], [-69.7910968021103, 44.089478998231016, 0.0], [-69.79123426877675, 44.08947279823104, 0.0], [-69.79137186877654, 44.08946653156437, 0.0], [-69.79150940210963, 44.08946019823105, 0.0], [-69.79164700210941, 44.08945399823102, 0.0], [-69.79178446877586, 44.089447731564405, 0.0], [-69.79192206877565, 44.089441531564376, 0.0], [-69.7920596021088, 44.08943519823106, 0.0], [-69.79219720210858, 44.08942893156444, 0.0], [-69.79232706877502, 44.0894229982311, 0.0], [-69.7924526021082, 44.089382198231135, 0.0], [-69.79257800210797, 44.08934139823123, 0.0], [-69.79270346877445, 44.08930059823126, 0.0], [-69.79282900210757, 44.08925979823135, 0.0], [-69.79295446877404, 44.08921899823139, 0.0], [-69.79308000210722, 44.089178131564836, 0.0], [-69.79320540210699, 44.08913733156487, 0.0], [-69.79333086877347, 44.08909653156496, 0.0], [-69.79345640210664, 44.089055731565, 0.0], [-69.79358186877306, 44.08901493156509, 0.0], [-69.79370740210624, 44.088974131565124, 0.0], [-69.79383280210601, 44.088933331565215, 0.0], [-69.79395826877249, 44.08889253156525, 0.0], [-69.79408380210566, 44.088851598232, 0.0], [-69.79420926877214, 44.08881079823203, 0.0], [-69.79433480210525, 44.088769998232124, 0.0], [-69.79446020210503, 44.08872919823216, 0.0], [-69.7945856687715, 44.08868839823225, 0.0], [-69.79471120210468, 44.088647598232285, 0.0], [-69.79483666877115, 44.08860679823238, 0.0], [-69.79496220210427, 44.08856593156577, 0.0], [-69.7950466687708, 44.08853839823246, 0.0], [-69.7951792687706, 44.088565331565746, 0.0], [-69.7953118687704, 44.08859219823239, 0.0]], "type": "LineString"}, "id": "145", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325718", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.78817780211483, 44.0456431316324, -69.78407080212116, 44.08831293156618], "geometry": {"coordinates": [[-69.78620306878452, 44.08831293156618, 0.0], [-69.78600880211815, 44.08788199823351, 0.0], [-69.78614900211795, 44.08660553156881, 0.0], [-69.78498680211976, 44.08493453157138, 0.0], [-69.78444880212061, 44.08260699824166, 0.0], [-69.7851654021195, 44.08079479824448, 0.0], [-69.78624486878448, 44.07944759824659, 0.0], [-69.78817780211483, 44.074097598254866, 0.0], [-69.78713666878309, 44.07258173159056, 0.0], [-69.78528046878597, 44.07220553159118, 0.0], [-69.78407080212116, 44.070655398260214, 0.0], [-69.78497826878646, 44.068359998263816, 0.0], [-69.78598746878487, 44.06765113159821, 0.0], [-69.78665620211717, 44.065959731600856, 0.0], [-69.78638880211759, 44.065253131601935, 0.0], [-69.78630926878435, 44.0631491316052, 0.0], [-69.78663406878388, 44.05956133161078, 0.0], [-69.78568560211869, 44.056889731614945, 0.0], [-69.78606766878477, 44.05592333161644, 0.0], [-69.7862492021178, 44.052697931621424, 0.0], [-69.78530086878595, 44.05002639829223, 0.0], [-69.7868510687835, 44.0456431316324, 0.0]], "type": "LineString"}, "id": "146", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325722", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.8189754687337, 44.02492213166454, -69.7953118687704, 44.08859219823239], "geometry": {"coordinates": [[-69.7953118687704, 44.08859219823239, 0.0], [-69.79784426876648, 44.08757133156729, 0.0], [-69.79872026876512, 44.08597999823644, 0.0], [-69.79923360209767, 44.08343093157373, 0.0], [-69.79919220209769, 44.08103473157746, 0.0], [-69.80026220209606, 44.07895219824735, 0.0], [-69.80250506875922, 44.0717127315919, 0.0], [-69.80385680209048, 44.066415331600126, 0.0], [-69.80629060208668, 44.05806519827979, 0.0], [-69.8108038020797, 44.051639731623084, 0.0], [-69.81485886874003, 44.045121531633185, 0.0], [-69.81776940206885, 44.04243919830401, 0.0], [-69.81886826873381, 44.039655331641654, 0.0], [-69.8189754687337, 44.033752798317494, 0.0], [-69.81376566874178, 44.02492213166454, 0.0]], "type": "LineString"}, "id": "147", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325834", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.79515706877066, 44.0385555316434, -69.7868510687835, 44.0456431316324], "geometry": {"coordinates": [[-69.7868510687835, 44.0456431316324, 0.0], [-69.7869178687834, 44.04558399829915, 0.0], [-69.78700466878331, 44.04550733163262, 0.0], [-69.78709126878317, 44.045430731632734, 0.0], [-69.78717800211638, 44.045353998299504, 0.0], [-69.78726466878288, 44.045277331632974, 0.0], [-69.78735126878274, 44.04520073163309, 0.0], [-69.78743800211595, 44.04512399829986, 0.0], [-69.78752466878251, 44.04504733163333, 0.0], [-69.78761140211572, 44.04497073163344, 0.0], [-69.78769820211556, 44.04489399830021, 0.0], [-69.78778480211543, 44.044817398300324, 0.0], [-69.78787146878193, 44.044740731633794, 0.0], [-69.78795806878179, 44.044663998300564, 0.0], [-69.788044802115, 44.04458739830068, 0.0], [-69.78813146878156, 44.04451073163415, 0.0], [-69.78821820211476, 44.04443399830092, 0.0], [-69.78830486878127, 44.04435739830103, 0.0], [-69.78839160211447, 44.0442807316345, 0.0], [-69.78847826878103, 44.044204131634615, 0.0], [-69.7885648687809, 44.044127398301384, 0.0], [-69.7886516021141, 44.044050731634854, 0.0], [-69.7887382687806, 44.04397413163497, 0.0], [-69.78882506878045, 44.04389739830174, 0.0], [-69.78891146878033, 44.04382073163521, 0.0], [-69.78899826878018, 44.04374413163532, 0.0], [-69.78908500211338, 44.04366739830215, 0.0], [-69.78917166877994, 44.04359079830226, 0.0], [-69.78925846877979, 44.043514131635675, 0.0], [-69.78934506877965, 44.0434373983025, 0.0], [-69.78943166877951, 44.043360798302615, 0.0], [-69.78951840211272, 44.04328413163603, 0.0], [-69.78960506877928, 44.043207398302854, 0.0], [-69.78969186877913, 44.04313079830297, 0.0], [-69.78977846877899, 44.04305413163638, 0.0], [-69.78986506877885, 44.04297739830321, 0.0], [-69.78995180211206, 44.04290079830332, 0.0], [-69.79003846877856, 44.042824131636735, 0.0], [-69.79012526877847, 44.042747531636905, 0.0], [-69.79021186877833, 44.042670798303675, 0.0], [-69.79022200211165, 44.04266379830369, 0.0], [-69.79032140211149, 44.04259559830376, 0.0], [-69.79042106877802, 44.04252739830389, 0.0], [-69.79052060211114, 44.042459198304016, 0.0], [-69.79062020211103, 44.04239113163743, 0.0], [-69.79071960211087, 44.04232293163756, 0.0], [-69.79081906877735, 44.04225473163763, 0.0], [-69.79091866877724, 44.04218653163775, 0.0], [-69.79101820211042, 44.04211833163788, 0.0], [-69.79111780211025, 44.04205013163795, 0.0], [-69.79121720211009, 44.04198193163808, 0.0], [-69.79131660210993, 44.04191373163815, 0.0], [-69.79141626877646, 44.04184553163827, 0.0], [-69.79151580210964, 44.0417773316384, 0.0], [-69.79161540210947, 44.04170913163847, 0.0], [-69.79171480210931, 44.0416409316386, 0.0], [-69.79181420210915, 44.04157273163872, 0.0], [-69.79191380210904, 44.04150453163879, 0.0], [-69.79201340210886, 44.04143633163892, 0.0], [-69.79211286877535, 44.04136813163905, 0.0], [-69.79221240210853, 44.04129993163912, 0.0], [-69.79231200210842, 44.04123173163924, 0.0], [-69.79241140210826, 44.04116353163931, 0.0], [-69.79251100210809, 44.04109533163944, 0.0], [-69.79261046877457, 44.04102713163957, 0.0], [-69.79271000210775, 44.040958931639636, 0.0], [-69.79271600210774, 44.040946598306334, 0.0], [-69.79276240210771, 44.04085359830651, 0.0], [-69.79280860210764, 44.04076073163998, 0.0], [-69.79285486877421, 44.0406677983068, 0.0], [-69.79290106877414, 44.040574931640265, 0.0], [-69.79294720210743, 44.040481931640386, 0.0], [-69.79299360210734, 44.04038899830721, 0.0], [-69.79303966877393, 44.04029613164067, 0.0], [-69.79308586877386, 44.040203198307495, 0.0], [-69.79313226877377, 44.040110198307616, 0.0], [-69.79317840210706, 44.04001733164114, 0.0], [-69.79322480210698, 44.0399243983079, 0.0], [-69.79327086877356, 44.039831531641425, 0.0], [-69.79331726877348, 44.03973853164155, 0.0], [-69.79336340210676, 44.03964559830837, 0.0], [-69.79340960210669, 44.039552731641834, 0.0], [-69.79345586877326, 44.039459798308656, 0.0], [-69.7935020687732, 44.03936693164212, 0.0], [-69.79354826877312, 44.0392739316423, 0.0], [-69.7935946021064, 44.039180998309064, 0.0], [-69.79371440210622, 44.039132998309185, 0.0], [-69.79383460210602, 44.03908493164255, 0.0], [-69.79395486877252, 44.039036798309326, 0.0], [-69.79407506877232, 44.03898873164269, 0.0], [-69.79419526877211, 44.038940531642766, 0.0], [-69.79431560210526, 44.03889239830954, 0.0], [-69.79443566877177, 44.03884433164296, 0.0], [-69.79455600210491, 44.03879613164304, 0.0], [-69.79467620210471, 44.03874799830976, 0.0], [-69.79479640210451, 44.03869993164318, 0.0], [-69.79491666877101, 44.0386517983099, 0.0], [-69.79503680210416, 44.038603598309976, 0.0], [-69.79515706877066, 44.0385555316434, 0.0]], "type": "LineString"}, "id": "148", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325724", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.8234222020601, 44.001393398367725, -69.81376566874178, 44.02492213166454], "geometry": {"coordinates": [[-69.81376566874178, 44.02492213166454, 0.0], [-69.81382906874165, 44.02483453166468, 0.0], [-69.81389266874157, 44.02474693166482, 0.0], [-69.8139560020748, 44.02465939833161, 0.0], [-69.81401940207468, 44.02457179833175, 0.0], [-69.81408280207461, 44.024484331665235, 0.0], [-69.81414620207448, 44.02439673166538, 0.0], [-69.81420960207441, 44.02430913166552, 0.0], [-69.81427300207429, 44.0242215983323, 0.0], [-69.81433626874087, 44.024133998332445, 0.0], [-69.8143998687408, 44.02404653166593, 0.0], [-69.81446326874067, 44.02395893166607, 0.0], [-69.8145266687406, 44.02387133166616, 0.0], [-69.81459006874047, 44.023783798333, 0.0], [-69.8146534687404, 44.02369619833314, 0.0], [-69.81471700207362, 44.02360859833328, 0.0], [-69.81478026874021, 44.02352113166671, 0.0], [-69.81484366874008, 44.02343353166685, 0.0], [-69.81490706874001, 44.02334599833364, 0.0], [-69.81497060207323, 44.02325839833378, 0.0], [-69.8150340020731, 44.02317079833392, 0.0], [-69.81510600207304, 44.02314199833398, 0.0], [-69.81522620207284, 44.02309379833406, 0.0], [-69.81534640207263, 44.02304573166748, 0.0], [-69.81546646873909, 44.022997531667556, 0.0], [-69.81558666873894, 44.022949398334276, 0.0], [-69.81570686873874, 44.0229013316677, 0.0], [-69.81582706873854, 44.02285313166777, 0.0], [-69.8159472020717, 44.02280499833449, 0.0], [-69.81606726873821, 44.02275679833457, 0.0], [-69.81618760207135, 44.02270873166799, 0.0], [-69.81630780207115, 44.022660531668066, 0.0], [-69.81642800207095, 44.022612398334786, 0.0], [-69.81654806873746, 44.02256419833486, 0.0], [-69.81658526873736, 44.02254153166825, 0.0], [-69.81669000207057, 44.02247739833501, 0.0], [-69.81679466873703, 44.02241333166842, 0.0], [-69.8168992020702, 44.022349198335235, 0.0], [-69.81700400207006, 44.02228513166864, 0.0], [-69.81710866873658, 44.0222209983354, 0.0], [-69.8172132687364, 44.02215693166886, 0.0], [-69.81731800206956, 44.02209279833562, 0.0], [-69.81742260206943, 44.022028731669025, 0.0], [-69.81752726873594, 44.021964598335785, 0.0], [-69.8176320020691, 44.021900531669246, 0.0], [-69.81773646873557, 44.021836398336006, 0.0], [-69.81784126873544, 44.02177233166941, 0.0], [-69.8179460020686, 44.02170819833623, 0.0], [-69.81805060206841, 44.02164413166963, 0.0], [-69.81815526873493, 44.02157999833639, 0.0], [-69.8182598687348, 44.02151593166985, 0.0], [-69.81836460206796, 44.021451798336614, 0.0], [-69.81846926873448, 44.02138773167002, 0.0], [-69.81848906873444, 44.02137039833673, 0.0], [-69.8185764687343, 44.021294198336875, 0.0], [-69.81866400206746, 44.021217998336965, 0.0], [-69.81875140206733, 44.02114179833711, 0.0], [-69.8188388020672, 44.0210655983372, 0.0], [-69.81892620206708, 44.02098939833729, 0.0], [-69.81901366873359, 44.020913131670795, 0.0], [-69.8191012020668, 44.020836931670885, 0.0], [-69.81918840206669, 44.02076073167103, 0.0], [-69.8192758687332, 44.02068453167112, 0.0], [-69.81936326873307, 44.02060833167127, 0.0], [-69.81945080206629, 44.02053213167136, 0.0], [-69.81953820206616, 44.020455931671506, 0.0], [-69.81962560206597, 44.020379731671596, 0.0], [-69.81971306873254, 44.02030353167174, 0.0], [-69.81980026873237, 44.02022719833849, 0.0], [-69.81988786873228, 44.020150998338636, 0.0], [-69.8199752687321, 44.020074798338726, 0.0], [-69.82006266873196, 44.01999859833887, 0.0], [-69.82015006873183, 44.01992239833896, 0.0], [-69.8202374687317, 44.01984619833911, 0.0], [-69.82032486873157, 44.0197699983392, 0.0], [-69.82041226873145, 44.01969379833935, 0.0], [-69.82043960206471, 44.01964579833941, 0.0], [-69.82049140206465, 44.01955439833955, 0.0], [-69.82054326873123, 44.01946299833969, 0.0], [-69.82059506873117, 44.019371731673175, 0.0], [-69.8206468687311, 44.019280331673315, 0.0], [-69.82069900206432, 44.019188931673455, 0.0], [-69.82075066873091, 44.019097531673594, 0.0], [-69.82080260206419, 44.019006131673734, 0.0], [-69.82085440206407, 44.018914731673874, 0.0], [-69.82090626873065, 44.01882339834066, 0.0], [-69.82095800206395, 44.0187319983408, 0.0], [-69.82101006873052, 44.018640598340994, 0.0], [-69.82108126873038, 44.018571131674435, 0.0], [-69.8211630020636, 44.018491731674544, 0.0], [-69.82124446873013, 44.01841219834131, 0.0], [-69.82132600206336, 44.01833279834142, 0.0], [-69.82140760206323, 44.018253331674885, 0.0], [-69.8214892020631, 44.01817379834171, 0.0], [-69.82157080206298, 44.018094398341816, 0.0], [-69.82165240206285, 44.01801493167528, 0.0], [-69.82173386872938, 44.01793553167539, 0.0], [-69.8218156020626, 44.01785599834216, 0.0], [-69.82189706872913, 44.01777653167562, 0.0], [-69.82192440206245, 44.01770753167574, 0.0], [-69.82196180206239, 44.017612598342566, 0.0], [-69.82199926872897, 44.01751773167604, 0.0], [-69.82203666872891, 44.01742273167616, 0.0], [-69.82207406872885, 44.01732779834299, 0.0], [-69.82211160206214, 44.01723293167646, 0.0], [-69.82214906872872, 44.01713799834329, 0.0], [-69.82218646872866, 44.01704299834347, 0.0], [-69.82222400206194, 44.01694813167694, 0.0], [-69.8222612687286, 44.01685319834377, 0.0], [-69.82229900206187, 44.01675833167724, 0.0], [-69.82233626872846, 44.016663331677364, 0.0], [-69.82237380206175, 44.01656839834419, 0.0], [-69.82241120206169, 44.01647353167766, 0.0], [-69.82244846872828, 44.01637859834449, 0.0], [-69.82248620206155, 44.016283598344614, 0.0], [-69.82252346872815, 44.016188731678085, 0.0], [-69.82256100206143, 44.01609379834491, 0.0], [-69.82259840206137, 44.01599893167838, 0.0], [-69.82263586872801, 44.015903931678565, 0.0], [-69.82267326872795, 44.015808998345335, 0.0], [-69.82271080206118, 44.01571413167886, 0.0], [-69.82274820206112, 44.01561919834563, 0.0], [-69.82278566872776, 44.015524198345815, 0.0], [-69.8228230687277, 44.015429331679286, 0.0], [-69.82286046872764, 44.01533439834611, 0.0], [-69.82289800206092, 44.01523953167958, 0.0], [-69.82293540206086, 44.01514453167971, 0.0], [-69.82297286872745, 44.015049598346536, 0.0], [-69.82301020206074, 44.01495473168001, 0.0], [-69.82304786872737, 44.01485979834683, 0.0], [-69.82308520206061, 44.014764931680304, 0.0], [-69.82312266872725, 44.01466993168049, 0.0], [-69.82316006872719, 44.01457499834726, 0.0], [-69.82319746872713, 44.014480131680784, 0.0], [-69.82323500206041, 44.014385198347554, 0.0], [-69.82327240206035, 44.01429019834774, 0.0], [-69.82330986872694, 44.01419533168121, 0.0], [-69.82334720206023, 44.014100398348035, 0.0], [-69.8233848687268, 44.014005531681505, 0.0], [-69.8234222020601, 44.01391053168163, 0.0], [-69.82338926872683, 44.01386693168172, 0.0], [-69.82332366872691, 44.01378019834851, 0.0], [-69.82325820206034, 44.01369353168195, 0.0], [-69.82319246872714, 44.0136067983488, 0.0], [-69.82312686872723, 44.0135199983489, 0.0], [-69.82306126872732, 44.01343333168239, 0.0], [-69.82299566872746, 44.01334659834919, 0.0], [-69.82293020206089, 44.013259931682626, 0.0], [-69.82286446872763, 44.01317313168278, 0.0], [-69.82279886872772, 44.01308639834957, 0.0], [-69.82273326872786, 44.01299973168307, 0.0], [-69.82266766872795, 44.01291299834986, 0.0], [-69.82260200206139, 44.01282619835001, 0.0], [-69.82253646872812, 44.01273953168345, 0.0], [-69.82247086872826, 44.012652798350246, 0.0], [-69.82240526872835, 44.0125659983504, 0.0], [-69.82233980206178, 44.012479331683835, 0.0], [-69.82227420206186, 44.01239259835069, 0.0], [-69.822208602062, 44.012305931684125, 0.0], [-69.82214300206209, 44.012219131684276, 0.0], [-69.82207726872883, 44.01213239835107, 0.0], [-69.82201180206226, 44.01204573168451, 0.0], [-69.8219462020624, 44.01195899835136, 0.0], [-69.82188060206249, 44.011872198351455, 0.0], [-69.82181486872929, 44.01178553168495, 0.0], [-69.82174940206272, 44.011698798351745, 0.0], [-69.82168380206281, 44.01161213168518, 0.0], [-69.8216182020629, 44.011525331685334, 0.0], [-69.82155266872968, 44.01143859835213, 0.0], [-69.82148706872977, 44.011351931685624, 0.0], [-69.82142146872985, 44.011265131685775, 0.0], [-69.82135600206328, 44.01117839835257, 0.0], [-69.82129026873008, 44.01109173168601, 0.0], [-69.82122466873017, 44.0110049983528, 0.0], [-69.82115906873025, 44.010918198352954, 0.0], [-69.82109360206374, 44.01083153168639, 0.0], [-69.82102786873048, 44.010744798353244, 0.0], [-69.82096226873057, 44.01065813168668, 0.0], [-69.8208968687307, 44.01057133168683, 0.0], [-69.82083120206414, 44.01048459835363, 0.0], [-69.82076560206423, 44.010397931687066, 0.0], [-69.82070000206431, 44.01031113168722, 0.0], [-69.8206344687311, 44.01022439835401, 0.0], [-69.82056880206454, 44.01013773168751, 0.0], [-69.82050320206463, 44.0100509983543, 0.0], [-69.82043760206471, 44.00996419835445, 0.0], [-69.8203720687315, 44.00987753168789, 0.0], [-69.82030646873159, 44.009790798354686, 0.0], [-69.82024086873173, 44.00970413168818, 0.0], [-69.82017520206512, 44.00961733168833, 0.0], [-69.8201096687319, 44.00953059835513, 0.0], [-69.82004406873199, 44.009443931688565, 0.0], [-69.81997860206542, 44.009357131688716, 0.0], [-69.81991286873222, 44.00927039835551, 0.0], [-69.81984740206565, 44.009183731689006, 0.0], [-69.81978186873243, 44.0090969983558, 0.0], [-69.81971620206588, 44.009010198355895, 0.0], [-69.81965060206596, 44.00892353168939, 0.0], [-69.81958500206605, 44.008836798356185, 0.0], [-69.81951940206613, 44.008749998356336, 0.0], [-69.81945380206628, 44.008663331689775, 0.0], [-69.81938840206635, 44.00857659835657, 0.0], [-69.81932266873315, 44.008489931690065, 0.0], [-69.81925706873324, 44.008403131690216, 0.0], [-69.81919146873332, 44.00831639835701, 0.0], [-69.81912586873341, 44.00822973169045, 0.0], [-69.81906026873355, 44.00814299835724, 0.0], [-69.81899466873364, 44.008056198357394, 0.0], [-69.818994602067, 44.00805379835742, 0.0], [-69.81898820206698, 44.00795533169088, 0.0], [-69.81898186873366, 44.00785673169105, 0.0], [-69.8189754687337, 44.00775819835786, 0.0], [-69.81896906873368, 44.00765959835803, 0.0], [-69.81896946873366, 44.00765839835799, 0.0], [-69.81900900206693, 44.00756393169149, 0.0], [-69.81904826873358, 44.007469398358296, 0.0], [-69.81908760206682, 44.007374798358455, 0.0], [-69.81912700206675, 44.00728033169196, 0.0], [-69.8191662687334, 44.00718579835876, 0.0], [-69.81920560206663, 44.00709133169221, 0.0], [-69.81924500206657, 44.00699673169237, 0.0], [-69.81928426873321, 44.00690219835917, 0.0], [-69.81932360206645, 44.006807731692675, 0.0], [-69.8193628687331, 44.006713131692834, 0.0], [-69.81940226873303, 44.00661859835964, 0.0], [-69.81944166873296, 44.006524131693084, 0.0], [-69.8194810020662, 44.006429598359944, 0.0], [-69.81952026873284, 44.006334998360046, 0.0], [-69.81955960206608, 44.00624053169355, 0.0], [-69.81959900206601, 44.00614599836035, 0.0], [-69.81963820206596, 44.00605139836051, 0.0], [-69.8196776687326, 44.00595693169396, 0.0], [-69.81971700206583, 44.00586239836082, 0.0], [-69.81975626873248, 44.005767931694265, 0.0], [-69.81979566873241, 44.005673331694425, 0.0], [-69.81983486873236, 44.00557879836123, 0.0], [-69.81987426873229, 44.00548433169473, 0.0], [-69.81991346873224, 44.00538973169489, 0.0], [-69.81995300206546, 44.005295198361694, 0.0], [-69.81999226873211, 44.00520073169514, 0.0], [-69.82003160206534, 44.005106198362, 0.0], [-69.82007100206528, 44.0050115983621, 0.0], [-69.82011040206527, 44.004917131695606, 0.0], [-69.82014960206516, 44.00482259836241, 0.0], [-69.82018900206509, 44.00472799836257, 0.0], [-69.82022826873174, 44.004633531696015, 0.0], [-69.82026760206497, 44.004538998362875, 0.0], [-69.82030700206496, 44.00444439836298, 0.0], [-69.82034626873156, 44.00434993169648, 0.0], [-69.82038560206479, 44.004255398363284, 0.0], [-69.82042500206478, 44.00416093169679, 0.0], [-69.82046420206467, 44.00406633169695, 0.0], [-69.8205036020646, 44.00397179836375, 0.0], [-69.8205430020646, 44.0038773316972, 0.0], [-69.82058226873119, 44.003782731697356, 0.0], [-69.82062160206442, 44.00368819836416, 0.0], [-69.82066086873107, 44.00359373169766, 0.0], [-69.820700268731, 44.003499198364466, 0.0], [-69.8207396020643, 44.003404598364625, 0.0], [-69.82077886873088, 44.00331013169807, 0.0], [-69.82081840206416, 44.00321559836493, 0.0], [-69.82085760206411, 44.003120998365034, 0.0], [-69.82089700206404, 44.00302653169854, 0.0], [-69.82093626873063, 44.00293199836534, 0.0], [-69.82097546873058, 44.002837531698844, 0.0], [-69.82101486873051, 44.002742931699004, 0.0], [-69.82105406873046, 44.00264839836581, 0.0], [-69.82109360206374, 44.002553931699254, 0.0], [-69.82113286873033, 44.00245933169941, 0.0], [-69.82117220206362, 44.002364798366216, 0.0], [-69.82121160206356, 44.00227033169972, 0.0], [-69.82125086873015, 44.00217579836652, 0.0], [-69.82129020206344, 44.00208119836668, 0.0], [-69.82132966873002, 44.00198673170013, 0.0], [-69.82136886872996, 44.00189219836699, 0.0], [-69.82140820206325, 44.00179759836709, 0.0], [-69.82144746872984, 44.001703131700594, 0.0], [-69.82148680206308, 44.0016085983674, 0.0], [-69.82152620206307, 44.0015141317009, 0.0], [-69.821565602063, 44.001419531701, 0.0], [-69.82157640206299, 44.001393398367725, 0.0]], "type": "LineString"}, "id": "149", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325726", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.81376566874178, 44.02492213166454, -69.79515706877066, 44.0385555316434], "geometry": {"coordinates": [[-69.79515706877066, 44.0385555316434, 0.0], [-69.79527726877046, 44.03850739831012, 0.0], [-69.79539746877026, 44.03845933164354, 0.0], [-69.79551760210342, 44.03841113164361, 0.0], [-69.79563786876992, 44.03836299831033, 0.0], [-69.79575820210306, 44.038314931643754, 0.0], [-69.79587840210286, 44.03826673164383, 0.0], [-69.79599860210266, 44.03821859831055, 0.0], [-69.79611866876917, 44.03817053164397, 0.0], [-69.79623900210231, 44.03812239831075, 0.0], [-69.79635926876875, 44.038074198310824, 0.0], [-69.79647946876861, 44.03802613164419, 0.0], [-69.79659966876841, 44.037977998310964, 0.0], [-69.79671980210156, 44.03792979831104, 0.0], [-69.796840068768, 44.03788173164446, 0.0], [-69.79696040210115, 44.03783359831118, 0.0], [-69.797080602101, 44.0377855316446, 0.0], [-69.7972008021008, 44.03773733164468, 0.0], [-69.7973210687673, 44.0376891983114, 0.0], [-69.7974412021004, 44.03764113164482, 0.0], [-69.7975614687669, 44.037592931644895, 0.0], [-69.7976816687667, 44.037544798311615, 0.0], [-69.79780186876656, 44.037496731645035, 0.0], [-69.79792206876635, 44.03744853164511, 0.0], [-69.79804226876615, 44.03740039831183, 0.0], [-69.79816246876595, 44.03735233164525, 0.0], [-69.7982828020991, 44.03730419831197, 0.0], [-69.7984030687656, 44.03725599831205, 0.0], [-69.79852320209875, 44.03720793164547, 0.0], [-69.79864340209855, 44.037159798312246, 0.0], [-69.7987636020984, 44.03711159831232, 0.0], [-69.7988838020982, 44.037063531645686, 0.0], [-69.799004002098, 44.03701539831246, 0.0], [-69.7991242687645, 44.03696719831254, 0.0], [-69.7992444687643, 44.0369191316459, 0.0], [-69.79936480209744, 44.03687099831268, 0.0], [-69.7994848687639, 44.036822798312755, 0.0], [-69.79960506876375, 44.036774731646176, 0.0], [-69.79972520209691, 44.036726598312896, 0.0], [-69.79984546876335, 44.03667853164632, 0.0], [-69.7999658020965, 44.03663033164639, 0.0], [-69.80008600209635, 44.03658219831311, 0.0], [-69.80020620209615, 44.03653413164653, 0.0], [-69.80032640209595, 44.03648593164661, 0.0], [-69.80044660209575, 44.03643779831333, 0.0], [-69.8005668020956, 44.03638973164675, 0.0], [-69.80068706876204, 44.036341531646826, 0.0], [-69.80080726876184, 44.036293398313546, 0.0], [-69.8009274687617, 44.03624533164697, 0.0], [-69.8010476687615, 44.03619713164704, 0.0], [-69.80116800209464, 44.03614899831376, 0.0], [-69.80120780209461, 44.03611559831381, 0.0], [-69.80129740209446, 44.03604073164729, 0.0], [-69.80138686876097, 44.035965798314066, 0.0], [-69.80147646876082, 44.0358907983142, 0.0], [-69.80156606876068, 44.03581593164762, 0.0], [-69.80165560209389, 44.035740998314395, 0.0], [-69.8017450687604, 44.03566599831453, 0.0], [-69.80183466876025, 44.035591131648005, 0.0], [-69.80192426876016, 44.03551619831478, 0.0], [-69.80201386876001, 44.03544119831491, 0.0], [-69.80210346875987, 44.03536633164833, 0.0], [-69.80219300209308, 44.03529139831511, 0.0], [-69.80228260209293, 44.03521639831524, 0.0], [-69.80237220209278, 44.03514153164866, 0.0], [-69.80246166875929, 44.035066598315495, 0.0], [-69.80255126875915, 44.03499159831557, 0.0], [-69.802640868759, 44.03491673164905, 0.0], [-69.80273040209221, 44.034841798315824, 0.0], [-69.80282000209206, 44.03476679831596, 0.0], [-69.80290960209192, 44.03469193164938, 0.0], [-69.80299906875848, 44.03461699831615, 0.0], [-69.80308866875833, 44.034541998316286, 0.0], [-69.80317826875819, 44.034467131649706, 0.0], [-69.8032678020914, 44.03439219831654, 0.0], [-69.8033572687579, 44.034317198316614, 0.0], [-69.80344686875776, 44.03424233165009, 0.0], [-69.80353646875761, 44.03416739831687, 0.0], [-69.80362606875752, 44.034092398317, 0.0], [-69.80371566875738, 44.03401753165042, 0.0], [-69.80380520209053, 44.03394253165055, 0.0], [-69.80389480209044, 44.03386759831733, 0.0], [-69.8039844020903, 44.033792731650806, 0.0], [-69.80407400209015, 44.03371773165088, 0.0], [-69.80416346875666, 44.03364279831766, 0.0], [-69.80425300208987, 44.033567931651135, 0.0], [-69.80434260208972, 44.03349293165127, 0.0], [-69.80443220208957, 44.03341799831804, 0.0], [-69.80445600208952, 44.03340853165139, 0.0], [-69.80457620208938, 44.033360331651465, 0.0], [-69.80469646875582, 44.033312198318185, 0.0], [-69.80481660208898, 44.033264131651606, 0.0], [-69.80493680208878, 44.03321593165168, 0.0], [-69.80505700208863, 44.0331677983184, 0.0], [-69.80517720208843, 44.03311959831848, 0.0], [-69.80529726875488, 44.0330715316519, 0.0], [-69.80541760208803, 44.03302339831862, 0.0], [-69.80553780208788, 44.032975198318695, 0.0], [-69.80565800208768, 44.032927131652116, 0.0], [-69.80577820208748, 44.03287899831889, 0.0], [-69.80589840208728, 44.03283079831891, 0.0], [-69.80601860208714, 44.03278273165233, 0.0], [-69.80613886875358, 44.03273459831911, 0.0], [-69.80625906875343, 44.032686398319186, 0.0], [-69.80637926875323, 44.03263833165255, 0.0], [-69.80649946875303, 44.032590131652626, 0.0], [-69.80661980208617, 44.0325419983194, 0.0], [-69.80673986875269, 44.03249393165282, 0.0], [-69.80686006875248, 44.0324457316529, 0.0], [-69.80698026875228, 44.03239759831962, 0.0], [-69.80710046875208, 44.03234953165304, 0.0], [-69.80722080208523, 44.032301331653116, 0.0], [-69.80734086875174, 44.032253198319836, 0.0], [-69.80746100208489, 44.03220499831991, 0.0], [-69.80758126875133, 44.03215693165333, 0.0], [-69.80770146875119, 44.03210879832005, 0.0], [-69.80782166875099, 44.03206059832013, 0.0], [-69.80794186875079, 44.03201253165355, 0.0], [-69.80806220208393, 44.031964331653626, 0.0], [-69.80818226875044, 44.031916198320346, 0.0], [-69.80830246875024, 44.031868131653766, 0.0], [-69.80842266875004, 44.03181993165384, 0.0], [-69.80854286874984, 44.03177179832056, 0.0], [-69.80861866874977, 44.031715731654, 0.0], [-69.8087144687496, 44.031644931654114, 0.0], [-69.80881040208277, 44.03157399832088, 0.0], [-69.80890620208265, 44.03150319832099, 0.0], [-69.80900200208248, 44.03143233165446, 0.0], [-69.80909766874902, 44.03136153165457, 0.0], [-69.80919360208219, 44.031290598321334, 0.0], [-69.80928946874872, 44.031219798321445, 0.0], [-69.8093852020819, 44.03114893165491, 0.0], [-69.80948106874843, 44.03107813165502, 0.0], [-69.80957686874825, 44.03100719832179, 0.0], [-69.80967266874814, 44.0309363316552, 0.0], [-69.80976846874796, 44.03086553165531, 0.0], [-69.80986440208113, 44.030794598322075, 0.0], [-69.80996020208102, 44.030723798322185, 0.0], [-69.81005600208084, 44.03065293165565, 0.0], [-69.81015166874738, 44.03058213165576, 0.0], [-69.81024760208055, 44.03051119832253, 0.0], [-69.81034340208038, 44.03044039832264, 0.0], [-69.81041520208026, 44.03037359832274, 0.0], [-69.81049926874681, 44.030295531656236, 0.0], [-69.81058320208001, 44.03021733165633, 0.0], [-69.81066720207991, 44.03013919832313, 0.0], [-69.81075126874646, 44.03006099832322, 0.0], [-69.81083520207966, 44.029982798323374, 0.0], [-69.8109192020795, 44.02990473165681, 0.0], [-69.81094380207946, 44.02985099832358, 0.0], [-69.81098666874607, 44.02975733165704, 0.0], [-69.81102966874602, 44.02966359832385, 0.0], [-69.81107260207926, 44.02956993165736, 0.0], [-69.81111566874586, 44.02947619832412, 0.0], [-69.81115860207916, 44.02938239832429, 0.0], [-69.81120146874576, 44.02928873165774, 0.0], [-69.81124426874567, 44.029194998324556, 0.0], [-69.81128740207896, 44.02910133165807, 0.0], [-69.81133026874556, 44.02900753165818, 0.0], [-69.81137326874546, 44.02891379832499, 0.0], [-69.81141620207876, 44.028820131658506, 0.0], [-69.81145920207865, 44.02872639832532, 0.0], [-69.8115022020786, 44.02863259832543, 0.0], [-69.8115450687452, 44.02853893165894, 0.0], [-69.81158806874515, 44.028445198325755, 0.0], [-69.8116310020784, 44.02835153165921, 0.0], [-69.81167406874499, 44.02825773165938, 0.0], [-69.8117170020783, 44.02816399832619, 0.0], [-69.81175986874484, 44.02807033165965, 0.0], [-69.8118026687448, 44.02797659832646, 0.0], [-69.8118458020781, 44.02788279832663, 0.0], [-69.81188866874464, 44.027789131660086, 0.0], [-69.81193166874459, 44.0276953983269, 0.0], [-69.8119746020779, 44.02760173166041, 0.0], [-69.81201760207779, 44.02750799832722, 0.0], [-69.81206046874439, 44.027414198327335, 0.0], [-69.81210346874434, 44.02732053166085, 0.0], [-69.81214640207759, 44.02722679832766, 0.0], [-69.81218940207754, 44.02713313166112, 0.0], [-69.81223226874414, 44.027039331661285, 0.0], [-69.81224380207743, 44.027023531661314, 0.0], [-69.81230706874402, 44.0269359983281, 0.0], [-69.81237060207724, 44.02684839832824, 0.0], [-69.81243400207717, 44.02676093166167, 0.0], [-69.8124972687437, 44.02667333166181, 0.0], [-69.81256080207697, 44.02658573166195, 0.0], [-69.81262440207684, 44.026498198328795, 0.0], [-69.81268766874342, 44.02641059832888, 0.0], [-69.81275106874335, 44.026323131662366, 0.0], [-69.81281460207657, 44.02623553166251, 0.0], [-69.81287786874316, 44.02614793166265, 0.0], [-69.81294126874303, 44.026060398329435, 0.0], [-69.81300480207625, 44.025972798329576, 0.0], [-69.81306820207618, 44.02588519832972, 0.0], [-69.81313160207606, 44.025797731663204, 0.0], [-69.81319500207599, 44.025710131663345, 0.0], [-69.81325840207586, 44.02562259833013, 0.0], [-69.81332180207579, 44.02553499833027, 0.0], [-69.81338506874232, 44.025447398330414, 0.0], [-69.81344866874224, 44.02535993166384, 0.0], [-69.81351206874217, 44.025272331663984, 0.0], [-69.81357546874204, 44.02518479833083, 0.0], [-69.81363886874198, 44.02509719833097, 0.0], [-69.81370226874185, 44.02500959833105, 0.0], [-69.81376566874178, 44.02492213166454, 0.0]], "type": "LineString"}, "id": "150", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325836", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.8221180687288, 44.00009133170312, -69.82157640206299, 44.001393398367725], "geometry": {"coordinates": [[-69.82157640206299, 44.001393398367725, 0.0], [-69.8216048687296, 44.00132499836786, 0.0], [-69.82164406872954, 44.00123053170131, 0.0], [-69.82168346872947, 44.00113593170147, 0.0], [-69.82172286872941, 44.00104139836827, 0.0], [-69.8217622020627, 44.000946931701776, 0.0], [-69.82180146872929, 44.00085239836858, 0.0], [-69.82184080206258, 44.00075779836874, 0.0], [-69.82188000206247, 44.000663331702185, 0.0], [-69.8219194687291, 44.000568798369045, 0.0], [-69.8219588020624, 44.00047419836915, 0.0], [-69.82199806872899, 44.00037973170265, 0.0], [-69.82203746872892, 44.000285198369454, 0.0], [-69.82207680206221, 44.00019073170296, 0.0], [-69.8221160687288, 44.00009613170306, 0.0], [-69.8221180687288, 44.00009133170312, 0.0]], "type": "LineString"}, "id": "151", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3325728", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.8394313353686, 43.986233798391254, -69.8221180687288, 44.00009133170312], "geometry": {"coordinates": [[-69.8221180687288, 44.00009133170312, 0.0], [-69.82214286872875, 44.00003199836988, 0.0], [-69.82220886872864, 43.99987313170345, 0.0], [-69.82227500206187, 43.99971413170368, 0.0], [-69.8223412020618, 43.999555131703914, 0.0], [-69.82240740206169, 43.999396131704145, 0.0], [-69.82247346872822, 43.99923713170443, 0.0], [-69.82248186872823, 43.99923333170443, 0.0], [-69.82267800206125, 43.99914519837125, 0.0], [-69.82287406872763, 43.99905699837137, 0.0], [-69.82307020206065, 43.99896879837149, 0.0], [-69.82326626872702, 43.99888059837161, 0.0], [-69.8234622687267, 43.99879239837179, 0.0], [-69.82365840205972, 43.998704331705255, 0.0], [-69.8238544687261, 43.998616131705376, 0.0], [-69.82405060205912, 43.998527931705496, 0.0], [-69.8242466687255, 43.99843973170567, 0.0], [-69.82444260205853, 43.998351531705794, 0.0], [-69.8246386687249, 43.998263398372615, 0.0], [-69.82483500205791, 43.998175198372735, 0.0], [-69.82503100205759, 43.998086998372855, 0.0], [-69.82522700205732, 43.99799879837303, 0.0], [-69.82542306872364, 43.99791059837315, 0.0], [-69.82561920205671, 43.99782253170662, 0.0], [-69.82581526872303, 43.99773433170674, 0.0], [-69.82601140205611, 43.997646131706915, 0.0], [-69.82620726872244, 43.997557931707036, 0.0], [-69.82640360205545, 43.997469731707156, 0.0], [-69.82659960205518, 43.997381531707276, 0.0], [-69.82679560205486, 43.9972933983741, 0.0], [-69.82699166872123, 43.99720519837422, 0.0], [-69.82718780205425, 43.997116998374395, 0.0], [-69.82738386872063, 43.997028798374515, 0.0], [-69.8275798687203, 43.996940598374636, 0.0], [-69.82777600205333, 43.99685239837481, 0.0], [-69.8279720687197, 43.99676433170828, 0.0], [-69.82816806871938, 43.9966761317084, 0.0], [-69.82836406871911, 43.99658793170852, 0.0], [-69.82856040205212, 43.99649973170864, 0.0], [-69.82875626871851, 43.996411531708816, 0.0], [-69.82895240205153, 43.996323331708936, 0.0], [-69.8291484687179, 43.99623513170906, 0.0], [-69.82934446871758, 43.99614699837588, 0.0], [-69.8295406020506, 43.996058798376, 0.0], [-69.82973666871698, 43.995970598376175, 0.0], [-69.82993266871665, 43.995882398376295, 0.0], [-69.83012886871637, 43.995794198376416, 0.0], [-69.83032486871605, 43.99570599837659, 0.0], [-69.83052086871572, 43.99561779837671, 0.0], [-69.8307170020488, 43.995529598376834, 0.0], [-69.83091300204848, 43.995441398376954, 0.0], [-69.83110906871485, 43.99535333171042, 0.0], [-69.83130520204787, 43.995265131710596, 0.0], [-69.83150126871425, 43.995176931710716, 0.0], [-69.83169726871392, 43.99508873171084, 0.0], [-69.8318932687136, 43.995000531711014, 0.0], [-69.83208926871333, 43.994912331711134, 0.0], [-69.832285468713, 43.994824131711255, 0.0], [-69.83248146871273, 43.99473593171143, 0.0], [-69.83267760204575, 43.99464773171155, 0.0], [-69.83287360204542, 43.99455953171167, 0.0], [-69.83304600204514, 43.99445759837852, 0.0], [-69.83322446871153, 43.99435199837865, 0.0], [-69.83340320204462, 43.994246398378834, 0.0], [-69.83358160204432, 43.99414093171231, 0.0], [-69.83376006871072, 43.994035331712496, 0.0], [-69.83393866871046, 43.99392973171268, 0.0], [-69.8341172020435, 43.99382413171281, 0.0], [-69.8342956687099, 43.993718531713, 0.0], [-69.83447426870958, 43.99361293171313, 0.0], [-69.83465280204268, 43.99350733171332, 0.0], [-69.83483126870908, 43.99340173171345, 0.0], [-69.83500986870877, 43.99329619838028, 0.0], [-69.83501326870879, 43.993287531713634, 0.0], [-69.83507620204199, 43.9931279317139, 0.0], [-69.8351390687086, 43.99296819838082, 0.0], [-69.8352020687085, 43.99280859838109, 0.0], [-69.8352650020417, 43.9926489983813, 0.0], [-69.8353278687083, 43.992489331714864, 0.0], [-69.8353908020415, 43.99232973171513, 0.0], [-69.8354538020414, 43.99216999838205, 0.0], [-69.83551660204131, 43.99201039838232, 0.0], [-69.83557960204121, 43.991850731715886, 0.0], [-69.83564246870782, 43.99169113171615, 0.0], [-69.83570546870772, 43.99153139838302, 0.0], [-69.83576846870761, 43.991371798383284, 0.0], [-69.83583126870752, 43.99121219838355, 0.0], [-69.83589420204072, 43.991052531717116, 0.0], [-69.83595706870733, 43.99089293171738, 0.0], [-69.83602006870723, 43.990733198384305, 0.0], [-69.83608300204043, 43.990573598384515, 0.0], [-69.83614580204033, 43.99041393171814, 0.0], [-69.83685326870591, 43.98974433171918, 0.0], [-69.8375652687048, 43.98871599838742, 0.0], [-69.83843846870349, 43.987451531722684, 0.0], [-69.8394313353686, 43.986233798391254, 0.0]], "type": "LineString"}, "id": "152", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3326714", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.8394313353686, 43.985241398392816, -69.83581846870754, 43.986233798391254], "geometry": {"coordinates": [[-69.8394313353686, 43.986233798391254, 0.0], [-69.83581846870754, 43.985241398392816, 0.0]], "type": "LineString"}, "id": "153", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3326716", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.83581846870754, 43.978239131736984, -69.82522246872395, 43.985241398392816], "geometry": {"coordinates": [[-69.83581846870754, 43.985241398392816, 0.0], [-69.83278586871222, 43.98246519839711, 0.0], [-69.82980486871685, 43.98043959840027, 0.0], [-69.82522246872395, 43.978239131736984, 0.0]], "type": "LineString"}, "id": "154", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/3326718", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.83421320204337, 43.95305193177609, -69.82019240206512, 43.978239131736984], "geometry": {"coordinates": [[-69.82522246872395, 43.978239131736984, 0.0], [-69.82820226871934, 43.97182559841366, 0.0], [-69.83033020204937, 43.967959998419644, 0.0], [-69.83255120204592, 43.96411319842559, 0.0], [-69.83398340204371, 43.96111773176358, 0.0], [-69.83421320204337, 43.95874519843392, 0.0], [-69.83348306871113, 43.957658598435614, 0.0], [-69.83173540204717, 43.95672693177039, 0.0], [-69.82821360205264, 43.954930198439854, 0.0], [-69.82019240206512, 43.95305193177609, 0.0]], "type": "LineString"}, "id": "155", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205304", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.82019240206512, 43.94783193178421, -69.81243166874384, 43.95305193177609], "geometry": {"coordinates": [[-69.82019240206512, 43.95305193177609, 0.0], [-69.81872660206739, 43.952682598443346, 0.0], [-69.81727306873631, 43.95202693177771, 0.0], [-69.81597680207165, 43.95071699844641, 0.0], [-69.8148662020734, 43.94919199844878, 0.0], [-69.81243166874384, 43.94783193178421, 0.0]], "type": "LineString"}, "id": "156", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205302", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.81243166874384, 43.90742293184695, -69.80753246875145, 43.94783193178421], "geometry": {"coordinates": [[-69.81243166874384, 43.94783193178421, 0.0], [-69.81011086874742, 43.94367339845735, 0.0], [-69.80965466874812, 43.93619819846896, 0.0], [-69.80784320208426, 43.93005573181182, 0.0], [-69.80753246875145, 43.92326513182235, 0.0], [-69.808673402083, 43.917423998498066, 0.0], [-69.8083835354168, 43.90742293184695, 0.0]], "type": "LineString"}, "id": "157", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205308", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.81145880207868, 43.881245598554244, -69.8083835354168, 43.90742293184695], "geometry": {"coordinates": [[-69.8083835354168, 43.90742293184695, 0.0], [-69.81001220208094, 43.89545073186554, 0.0], [-69.81145880207868, 43.881245598554244, 0.0]], "type": "LineString"}, "id": "158", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205294", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.81145880207868, 43.87734839856029, -69.79544400210352, 43.881245598554244], "geometry": {"coordinates": [[-69.81145880207868, 43.881245598554244, 0.0], [-69.80763700208462, 43.88079299855491, 0.0], [-69.80481966875567, 43.88032879855564, 0.0], [-69.80219566875974, 43.88026259855576, 0.0], [-69.79940466876405, 43.87973179855658, 0.0], [-69.79659100210176, 43.87837093189205, 0.0], [-69.79544400210352, 43.87734839856029, 0.0]], "type": "LineString"}, "id": "159", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205290", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.79684340210133, 43.848928131937726, -69.79301140210731, 43.87734839856029], "geometry": {"coordinates": [[-69.79544400210352, 43.87734839856029, 0.0], [-69.79598480210268, 43.8742397985651, 0.0], [-69.79684340210133, 43.87153539856928, 0.0], [-69.796206668769, 43.86981793190529, 0.0], [-69.79473660210465, 43.867583598575436, 0.0], [-69.79441500210515, 43.864540398580175, 0.0], [-69.79520920210388, 43.859192598588436, 0.0], [-69.79624380210231, 43.854638198595524, 0.0], [-69.7958764687695, 43.851535998600355, 0.0], [-69.79301140210731, 43.848928131937726, 0.0]], "type": "LineString"}, "id": "160", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205286", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.8053064020882, 43.823930331976555, -69.79301140210731, 43.848928131937726], "geometry": {"coordinates": [[-69.79301140210731, 43.848928131937726, 0.0], [-69.7930888021072, 43.84883413193785, 0.0], [-69.79504046877082, 43.8436469319459, 0.0], [-69.79597160210272, 43.84057899861733, 0.0], [-69.7999610687632, 43.830687731966066, 0.0], [-69.80189080209351, 43.82649339863923, 0.0], [-69.8053064020882, 43.823930331976555, 0.0]], "type": "LineString"}, "id": "161", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205276", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.8053064020882, 43.822012931979486, -69.80507640208856, 43.823930331976555], "geometry": {"coordinates": [[-69.8053064020882, 43.823930331976555, 0.0], [-69.80507640208856, 43.822012931979486, 0.0]], "type": "LineString"}, "id": "162", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205272", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.80516946875508, 43.812612598660735, -69.80093840209503, 43.822012931979486], "geometry": {"coordinates": [[-69.80507640208856, 43.822012931979486, 0.0], [-69.8050976687552, 43.82050673198182, 0.0], [-69.80516946875508, 43.816201798655186, 0.0], [-69.80451546875611, 43.814770531990746, 0.0], [-69.80093840209503, 43.812612598660735, 0.0]], "type": "LineString"}, "id": "163", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205270", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.80093840209503, 43.80085533201236, -69.78827760211465, 43.812612598660735], "geometry": {"coordinates": [[-69.80093840209503, 43.812612598660735, 0.0], [-69.79753606876693, 43.810684331997095, 0.0], [-69.79378006877278, 43.80822359866755, 0.0], [-69.78827760211465, 43.80085533201236, 0.0]], "type": "LineString"}, "id": "164", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205268", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.78827760211465, 43.78108553204305, -69.78662100211722, 43.80085533201236], "geometry": {"coordinates": [[-69.78827760211465, 43.80085533201236, 0.0], [-69.78807460211499, 43.79152559869351, 0.0], [-69.78771340211551, 43.78587933203556, 0.0], [-69.78682880211693, 43.78156193204228, 0.0], [-69.78662100211722, 43.78108553204305, 0.0]], "type": "LineString"}, "id": "165", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205318", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-69.78741006878266, 43.75631873208147, -69.78357846878862, 43.78108553204305], "geometry": {"coordinates": [[-69.78662100211722, 43.78108553204305, 0.0], [-69.784606268787, 43.77646573205021, 0.0], [-69.78357846878862, 43.771021532058626, 0.0], [-69.78487586878657, 43.76444619873553, 0.0], [-69.78741006878266, 43.75631873208147, 0.0]], "type": "LineString"}, "id": "166", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/5205320", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.3335402012683, 43.57232213236705, -70.30485900131282, 43.61034339897475], "geometry": {"coordinates": [[-70.31693186796076, 43.610321132308115, 0.0], [-70.31630246796169, 43.610252132308176, 0.0], [-70.31589340129568, 43.61034339897475, 0.0], [-70.31542140129642, 43.61016033230834, 0.0], [-70.31482340129736, 43.61020573230826, 0.0], [-70.31422566796493, 43.609953932308656, 0.0], [-70.31340820129952, 43.60919893230982, 0.0], [-70.31325106796646, 43.60890153231031, 0.0], [-70.31296820130024, 43.6086269989774, 0.0], [-70.31290560130032, 43.608215332311374, 0.0], [-70.31315746796662, 43.608032532311654, 0.0], [-70.3131894012999, 43.60757519897902, 0.0], [-70.31271740130063, 43.60752919897908, 0.0], [-70.3121826679681, 43.60727739897948, 0.0], [-70.31196300130176, 43.60668273231374, 0.0], [-70.31199526796843, 43.605836732315026, 0.0], [-70.31202686796837, 43.605722332315224, 0.0], [-70.3120272013017, 43.60537933231575, 0.0], [-70.3111160013031, 43.60400693231787, 0.0], [-70.31020366797117, 43.60380059898489, 0.0], [-70.3100150013048, 43.603640398985135, 0.0], [-70.30992120130497, 43.6031601323192, 0.0], [-70.30922940130603, 43.60254233232018, 0.0], [-70.30838020130733, 43.602221732320686, 0.0], [-70.30797140130801, 43.601855598987925, 0.0], [-70.30772040130836, 43.601169532322274, 0.0], [-70.30753180130864, 43.60096359898927, 0.0], [-70.30671420130994, 43.60048293232336, 0.0], [-70.30665146797668, 43.600231398990445, 0.0], [-70.3063372013105, 43.59995673232419, 0.0], [-70.30627446797729, 43.59970519899122, 0.0], [-70.30602286797767, 43.599636532324666, 0.0], [-70.30545626797857, 43.599818998991054, 0.0], [-70.30485900131282, 43.59936133232509, 0.0], [-70.30485926797951, 43.59913259899213, 0.0], [-70.305394601312, 43.59865273232623, 0.0], [-70.30542660131192, 43.598195398993596, 0.0], [-70.30577300131142, 43.59798993232721, 0.0], [-70.30583606797796, 43.5978069323275, 0.0], [-70.30605720131098, 43.597121132328596, 0.0], [-70.30593186797779, 43.596572198996114, 0.0], [-70.30618366797745, 43.5964349989963, 0.0], [-70.30630966797725, 43.59629793232983, 0.0], [-70.30627860131062, 43.596023532330264, 0.0], [-70.30649900131027, 43.595840732330544, 0.0], [-70.30684520130973, 43.59584093233059, 0.0], [-70.30756840130863, 43.596161532330086, 0.0], [-70.3081346679744, 43.596184732330016, 0.0], [-70.30923646797271, 43.595727998997404, 0.0], [-70.30989720130498, 43.59572833233074, 0.0], [-70.31080926797023, 43.59602613233028, 0.0], [-70.31102960130323, 43.596026198996924, 0.0], [-70.31143886796929, 43.595683398997494, 0.0], [-70.31143940130261, 43.59527179899811, 0.0], [-70.3119432013018, 43.59481473233217, 0.0], [-70.31307606796673, 43.59454093233256, 0.0], [-70.31317066796657, 43.5944495323327, 0.0], [-70.31304500130011, 43.59426639899971, 0.0], [-70.31247866796764, 43.59417473233316, 0.0], [-70.31225866796802, 43.59396879900015, 0.0], [-70.31184966796866, 43.59389999900026, 0.0], [-70.31103166796993, 43.593922332333534, 0.0], [-70.31087460130345, 43.593693599000574, 0.0], [-70.3102144013045, 43.59323593233461, 0.0], [-70.3102460679711, 43.59298439900169, 0.0], [-70.3107812013036, 43.59280179900196, 0.0], [-70.31172500130214, 43.59275659900203, 0.0], [-70.31197700130178, 43.59255079900237, 0.0], [-70.31191440130186, 43.59209353233638, 0.0], [-70.31200886796836, 43.591979132336576, 0.0], [-70.31304706796675, 43.59211693233635, 0.0], [-70.31336146796627, 43.592299999002705, 0.0], [-70.31345580129948, 43.59246019900246, 0.0], [-70.3138016679656, 43.59264333233551, 0.0], [-70.31408480129852, 43.592689132335465, 0.0], [-70.31446266796456, 43.59234633233598, 0.0], [-70.31443200129797, 43.59147733233732, 0.0], [-70.31524986796336, 43.59161493233711, 0.0], [-70.31550186796295, 43.59136353233754, 0.0], [-70.3158168012958, 43.59081493233839, 0.0], [-70.31613146796201, 43.59079219900508, 0.0], [-70.31638306796157, 43.59086093233827, 0.0], [-70.31688640129414, 43.59090679900487, 0.0], [-70.31694986796072, 43.59040393233903, 0.0], [-70.31726460129357, 43.59019819900601, 0.0], [-70.31798860129243, 43.589924132339775, 0.0], [-70.31824040129203, 43.5897185323401, 0.0], [-70.31814620129217, 43.58948973234044, 0.0], [-70.31780020129275, 43.58937519900729, 0.0], [-70.31691920129407, 43.58951199900707, 0.0], [-70.31685646796086, 43.58932913234065, 0.0], [-70.31619620129521, 43.5889627990079, 0.0], [-70.31613326796196, 43.588848532341444, 0.0], [-70.31625920129511, 43.588757132341584, 0.0], [-70.31707700129385, 43.588940399007924, 0.0], [-70.31726580129356, 43.58887193234136, 0.0], [-70.31729780129353, 43.58836879900883, 0.0], [-70.31698346796065, 43.58797993234276, 0.0], [-70.3171724012937, 43.58784279900965, 0.0], [-70.31764426795962, 43.58777439900973, 0.0], [-70.31808500129227, 43.58747733234355, 0.0], [-70.31833686795858, 43.58743179901029, 0.0], [-70.3185568679582, 43.5875919323434, 0.0], [-70.31918600129057, 43.58756939901008, 0.0], [-70.31943806795687, 43.58720359901065, 0.0], [-70.31928100129045, 43.58702059901094, 0.0], [-70.31884066795777, 43.58688319901114, 0.0], [-70.31745626795993, 43.58697399901098, 0.0], [-70.31733106796014, 43.58631073234534, 0.0], [-70.31752020129318, 43.58592213234596, 0.0], [-70.31780366795937, 43.585624932346434, 0.0], [-70.31859006795816, 43.58562533234641, 0.0], [-70.3187160012913, 43.585511132346596, 0.0], [-70.318684667958, 43.585282399013636, 0.0], [-70.3178040679594, 43.58496179901414, 0.0], [-70.31761546795968, 43.58473299901448, 0.0], [-70.31793046795917, 43.58441313234829, 0.0], [-70.31789920129256, 43.58416153234867, 0.0], [-70.31755340129308, 43.58395559901567, 0.0], [-70.31786820129264, 43.583658399016144, 0.0], [-70.31789986795923, 43.58349839901638, 0.0], [-70.31802566795903, 43.58345279901647, 0.0], [-70.31871820129129, 43.58297279901723, 0.0], [-70.31912740129064, 43.58279013235085, 0.0], [-70.31969346795648, 43.58279033235084, 0.0], [-70.31969306795645, 43.583201932350164, 0.0], [-70.32010206795582, 43.583156332350256, 0.0], [-70.32032260128881, 43.582927799017284, 0.0], [-70.3204170679553, 43.582676332351014, 0.0], [-70.31978840128966, 43.582218599018404, 0.0], [-70.31978840128966, 43.582127199018544, 0.0], [-70.3203866679554, 43.58155573235274, 0.0], [-70.3204496679553, 43.58137293235302, 0.0], [-70.32070160128825, 43.581121399020105, 0.0], [-70.32107906795432, 43.58105299902019, 0.0], [-70.32126786795402, 43.58109879902014, 0.0], [-70.32136186795384, 43.581418999019604, 0.0], [-70.32120440128745, 43.58162473235262, 0.0], [-70.32120400128747, 43.58210493235191, 0.0], [-70.32136120128717, 43.58221933235171, 0.0], [-70.32170726795334, 43.582150999018495, 0.0], [-70.32211680128603, 43.58148793235284, 0.0], [-70.32214860128596, 43.581122132353414, 0.0], [-70.32246346795216, 43.58073339902069, 0.0], [-70.32400466794974, 43.58071133235404, 0.0], [-70.32419366794949, 43.580322599021315, 0.0], [-70.32416266794951, 43.579888132355336, 0.0], [-70.3242256679494, 43.579750999022224, 0.0], [-70.32447726794902, 43.579750999022224, 0.0], [-70.32526346794782, 43.57995719902186, 0.0], [-70.3257980012803, 43.580231799021476, 0.0], [-70.32604966794656, 43.58018619902151, 0.0], [-70.3260816012799, 43.579591732355766, 0.0], [-70.32623906794629, 43.57934019902285, 0.0], [-70.3265852012791, 43.579363199022794, 0.0], [-70.32674226794552, 43.5795691323558, 0.0], [-70.32696240127848, 43.57968353235566, 0.0], [-70.3272140679448, 43.5796149990224, 0.0], [-70.3274974012777, 43.57924919902297, 0.0], [-70.32749806794436, 43.57831159902446, 0.0], [-70.32790740127706, 43.57778593235861, 0.0], [-70.32866246794254, 43.57760319902553, 0.0], [-70.32866260127588, 43.57742033235917, 0.0], [-70.32863126794257, 43.57726019902606, 0.0], [-70.32806526794349, 43.57709993235966, 0.0], [-70.32765646794411, 43.57689393235995, 0.0], [-70.32746800127774, 43.576527999027235, 0.0], [-70.32762546794413, 43.576322199027516, 0.0], [-70.32970166794092, 43.57570559902848, 0.0], [-70.33011066794029, 43.57566013236192, 0.0], [-70.33058186793954, 43.576346332360856, 0.0], [-70.33086486793911, 43.576574999027116, 0.0], [-70.33152546793809, 43.57639233236074, 0.0], [-70.33165146793789, 43.57614093236117, 0.0], [-70.33168340127116, 43.57556919902868, 0.0], [-70.33196666793742, 43.5751347990294, 0.0], [-70.3326902679363, 43.57479199902991, 0.0], [-70.3335402012683, 43.573877599031334, 0.0], [-70.33341480126848, 43.57339739903205, 0.0], [-70.33313166793562, 43.57323719903235, 0.0], [-70.3327542679362, 43.57316853236574, 0.0], [-70.33234546793682, 43.573305532365566, 0.0], [-70.33124400127184, 43.5742427323641, 0.0], [-70.33036300127321, 43.57465399903015, 0.0], [-70.32982806794075, 43.57497393236298, 0.0], [-70.32907300127522, 43.575339532362364, 0.0], [-70.3284438679429, 43.57529353236248, 0.0], [-70.32784666794379, 43.574813132363204, 0.0], [-70.32746926794437, 43.5746757323634, 0.0], [-70.3277214012773, 43.57408119903101, 0.0], [-70.32831926794307, 43.573601332365115, 0.0], [-70.32869680127584, 43.5735099990319, 0.0], [-70.3299548679405, 43.573418999032015, 0.0], [-70.33111880127205, 43.573236532365684, 0.0], [-70.33181086793763, 43.572939399032805, 0.0], [-70.33199986793733, 43.572642199033226, 0.0], [-70.33190566793752, 43.57232213236705, 0.0]], "type": "LineString"}, "id": "167", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6721969", "fl_type": "StreamRiver"}, "type": "Feature"}, {"bbox": [-70.33438546793366, 43.56298533238157, -70.32286380128488, 43.57293339903282], "geometry": {"coordinates": [[-70.33190566793752, 43.57232213236705, 0.0], [-70.33141266793825, 43.57196633236765, 0.0], [-70.33062106793949, 43.5713443323686, 0.0], [-70.33071900127266, 43.56983213237095, 0.0], [-70.33020346794012, 43.56949719903815, 0.0], [-70.32949246794124, 43.56958739903797, 0.0], [-70.32924540127499, 43.5699789990374, 0.0], [-70.32869000127585, 43.57100539903581, 0.0], [-70.32754320127759, 43.57214579903399, 0.0], [-70.32706866794501, 43.572793799033036, 0.0], [-70.32579106794697, 43.57293339903282, 0.0], [-70.32517066794793, 43.57236873236701, 0.0], [-70.32450666794898, 43.5713309990353, 0.0], [-70.3235522012838, 43.570629999036385, 0.0], [-70.32286380128488, 43.570074932370574, 0.0], [-70.32297466795137, 43.56970253237114, 0.0], [-70.32339946795071, 43.569183799038626, 0.0], [-70.32426326794933, 43.56903133237216, 0.0], [-70.32574240128042, 43.569372932371664, 0.0], [-70.32660800127906, 43.56938319903833, 0.0], [-70.32725226794474, 43.56904759903881, 0.0], [-70.32748600127769, 43.56860693237286, 0.0], [-70.32736086794455, 43.568094532373664, 0.0], [-70.32685366794533, 43.567737999040844, 0.0], [-70.3243278012826, 43.567187532375044, 0.0], [-70.3234750679506, 43.56680853237566, 0.0], [-70.32339640128401, 43.56625899904316, 0.0], [-70.3239872679498, 43.56572713237733, 0.0], [-70.32656380127912, 43.56547553237772, 0.0], [-70.3288710679422, 43.56516999904483, 0.0], [-70.32999666794046, 43.56441993237934, 0.0], [-70.3314088012716, 43.563007532381505, 0.0], [-70.33257666793645, 43.56298533238157, 0.0], [-70.33438546793366, 43.56309753238139, 0.0]], "type": "LineString"}, "id": "168", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724793", "fl_type": "ArtificialPath"}, "type": "Feature"}, {"bbox": [-70.33763006792861, 43.548589332403935, -70.33438546793366, 43.56309753238139], "geometry": {"coordinates": [[-70.33438546793366, 43.56309753238139, 0.0], [-70.33544080126535, 43.56246079904906, 0.0], [-70.3357794012648, 43.560629532385235, 0.0], [-70.33563426793171, 43.55826359905558, 0.0], [-70.33632620126394, 43.55635673239186, 0.0], [-70.33763006792861, 43.55401699906213, 0.0], [-70.33634746793058, 43.55165779906582, 0.0], [-70.33574960126487, 43.55004873240165, 0.0], [-70.33593086793127, 43.548589332403935, 0.0]], "type": "LineString"}, "id": "169", "properties": {"__folium_color": "DodgerBlue", "downstream": "https://geoconnex.us/nhdplusv2/comid/6724795", "fl_type": "ArtificialPath"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_cf4224f40973c7d5f504340a558fe4ed.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["downstream", "fl_type"];
let aliases = ["downstream", "fl_type"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_cf4224f40973c7d5f504340a558fe4ed.addTo(map_246537f924c98c05df96a0a8a5dd041b);
function geo_json_7a7a86644d72105d0db207ae31bd66dc_styler(feature) {
switch(feature.id) {
case "1":
return {"fillOpacity": 0.5, "radius": 1.72, "weight": 2};
case "13":
return {"fillOpacity": 0.5, "radius": 3.86, "weight": 2};
case "16":
return {"fillOpacity": 0.5, "radius": 3.32, "weight": 2};
default:
return {"fillOpacity": 0.5, "radius": 21, "weight": 2};
}
}
function geo_json_7a7a86644d72105d0db207ae31bd66dc_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_7a7a86644d72105d0db207ae31bd66dc_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_7a7a86644d72105d0db207ae31bd66dc_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_7a7a86644d72105d0db207ae31bd66dc_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_7a7a86644d72105d0db207ae31bd66dc.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_7a7a86644d72105d0db207ae31bd66dc_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_7a7a86644d72105d0db207ae31bd66dc = L.geoJson(null, {
onEachFeature: geo_json_7a7a86644d72105d0db207ae31bd66dc_onEachFeature,
style: geo_json_7a7a86644d72105d0db207ae31bd66dc_styler,
pointToLayer: geo_json_7a7a86644d72105d0db207ae31bd66dc_pointToLayer,
});
function geo_json_7a7a86644d72105d0db207ae31bd66dc_add (data) {
geo_json_7a7a86644d72105d0db207ae31bd66dc
.addData(data);
}
geo_json_7a7a86644d72105d0db207ae31bd66dc_add({"bbox": [-70.3239539, 43.7041331, -69.61371, 44.586705], "features": [{"bbox": [-69.6296662, 44.5445421, -69.6296662, 44.5445421], "geometry": {"coordinates": [-69.6296662, 44.5445421], "type": "Point"}, "id": "1", "properties": {"max": 1.72, "max_chem": "PERFLUOROBUTANOIC ACID", "max_unit": "http://qudt.org/vocab/unitNanoGM-PER-L", "min": 0.284, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.105221", "sampleType": "SURFACE WATER"}, "type": "Feature"}, {"bbox": [-69.61371, 44.586705, -69.61371, 44.586705], "geometry": {"coordinates": [-69.61371, 44.586705], "type": "Point"}, "id": "8", "properties": {"max": 2540.0, "max_chem": "PERFLUOROOCTANE SULFONIC ACID", "max_unit": "http://qudt.org/vocab/unitNanoGM-PER-L", "min": 0.317, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.145860", "sampleType": "SURFACE WATER"}, "type": "Feature"}, {"bbox": [-69.7765662, 44.3003904, -69.7765662, 44.3003904], "geometry": {"coordinates": [-69.7765662, 44.3003904], "type": "Point"}, "id": "10", "properties": {"max": 54.6, "max_chem": "PERFLUOROHEXANOIC ACID", "max_unit": "http://qudt.org/vocab/unitNanoGM-PER-L", "min": 0.351, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65479", "sampleType": "SURFACE WATER"}, "type": "Feature"}, {"bbox": [-69.763201, 44.1244322, -69.763201, 44.1244322], "geometry": {"coordinates": [-69.763201, 44.1244322], "type": "Point"}, "id": "13", "properties": {"max": 3.86, "max_chem": "PERFLUOROOCTANOIC ACID", "max_unit": "http://qudt.org/vocab/unitNanoGM-PER-L", "min": 0.52, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65490", "sampleType": "SURFACE WATER"}, "type": "Feature"}, {"bbox": [-70.3239539, 43.7041331, -70.3239539, 43.7041331], "geometry": {"coordinates": [-70.3239539, 43.7041331], "type": "Point"}, "id": "16", "properties": {"max": 3.32, "max_chem": "6:2 FLUOROTELOMER SULFONIC ACID", "max_unit": "http://qudt.org/vocab/unitNanoGM-PER-L", "min": 0.344, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65561", "sampleType": "SURFACE WATER"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_7a7a86644d72105d0db207ae31bd66dc.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let aliases = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_7a7a86644d72105d0db207ae31bd66dc.bindPopup(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let aliases = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i].toLocaleString()}</th>
<td>${handleObject(layer.feature.properties[v]).toLocaleString()}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumpopup"});
geo_json_7a7a86644d72105d0db207ae31bd66dc.addTo(map_246537f924c98c05df96a0a8a5dd041b);
function geo_json_3b456b5ae8fedc30e49180256e544391_styler(feature) {
switch(feature.id) {
case "0": case "7": case "15":
return {"color": "salmon", "fillColor": "salmon", "fillOpacity": 0.5, "radius": 21, "weight": 2};
case "11":
return {"color": "salmon", "fillColor": "salmon", "fillOpacity": 0.5, "radius": 8.557, "weight": 2};
case "12":
return {"color": "salmon", "fillColor": "salmon", "fillOpacity": 0.5, "radius": 9.74, "weight": 2};
case "14":
return {"color": "salmon", "fillColor": "salmon", "fillOpacity": 0.5, "radius": 7.337, "weight": 2};
case "17":
return {"color": "salmon", "fillColor": "salmon", "fillOpacity": 0.5, "radius": 10.72, "weight": 2};
default:
return {"color": "salmon", "fillColor": "salmon", "fillOpacity": 0.5, "radius": 12.5, "weight": 2};
}
}
function geo_json_3b456b5ae8fedc30e49180256e544391_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_3b456b5ae8fedc30e49180256e544391_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_3b456b5ae8fedc30e49180256e544391_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_3b456b5ae8fedc30e49180256e544391_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_3b456b5ae8fedc30e49180256e544391.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_3b456b5ae8fedc30e49180256e544391_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_3b456b5ae8fedc30e49180256e544391 = L.geoJson(null, {
onEachFeature: geo_json_3b456b5ae8fedc30e49180256e544391_onEachFeature,
style: geo_json_3b456b5ae8fedc30e49180256e544391_styler,
pointToLayer: geo_json_3b456b5ae8fedc30e49180256e544391_pointToLayer,
});
function geo_json_3b456b5ae8fedc30e49180256e544391_add (data) {
geo_json_3b456b5ae8fedc30e49180256e544391
.addData(data);
}
geo_json_3b456b5ae8fedc30e49180256e544391_add({"bbox": [-70.3239539, 43.7041331, -69.61371, 44.586705], "features": [{"bbox": [-69.6296662, 44.5445421, -69.6296662, 44.5445421], "geometry": {"coordinates": [-69.6296662, 44.5445421], "type": "Point"}, "id": "0", "properties": {"__folium_color": "salmon", "max": 20.42, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.4083, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.105221", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}, {"bbox": [-69.61371, 44.586705, -69.61371, 44.586705], "geometry": {"coordinates": [-69.61371, 44.586705], "type": "Point"}, "id": "7", "properties": {"__folium_color": "salmon", "max": 660.0, "max_chem": "PERFLUOROOCTANE SULFONIC ACID", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.028, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.145860", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}, {"bbox": [-69.7765662, 44.3003904, -69.7765662, 44.3003904], "geometry": {"coordinates": [-69.7765662, 44.3003904], "type": "Point"}, "id": "9", "properties": {"__folium_color": "salmon", "max": 12.5, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.1475, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65479", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}, {"bbox": [-69.7691694, 44.2301912, -69.7691694, 44.2301912], "geometry": {"coordinates": [-69.7691694, 44.2301912], "type": "Point"}, "id": "11", "properties": {"__folium_color": "salmon", "max": 8.557, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.1168, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65482", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}, {"bbox": [-69.763201, 44.1244322, -69.763201, 44.1244322], "geometry": {"coordinates": [-69.763201, 44.1244322], "type": "Point"}, "id": "12", "properties": {"__folium_color": "salmon", "max": 9.74, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.1738, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65490", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}, {"bbox": [-69.6981629, 44.4356328, -69.6981629, 44.4356328], "geometry": {"coordinates": [-69.6981629, 44.4356328], "type": "Point"}, "id": "14", "properties": {"__folium_color": "salmon", "max": 7.337, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.2256, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65494", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}, {"bbox": [-70.3239539, 43.7041331, -70.3239539, 43.7041331], "geometry": {"coordinates": [-70.3239539, 43.7041331], "type": "Point"}, "id": "15", "properties": {"__folium_color": "salmon", "max": 52.02, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.1018, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65561", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}, {"bbox": [-69.6283786, 44.5386857, -69.6283786, 44.5386857], "geometry": {"coordinates": [-69.6283786, 44.5386857], "type": "Point"}, "id": "17", "properties": {"__folium_color": "salmon", "max": 10.72, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.1467, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.65587", "sampleType": "SKINLESS FILLET"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_3b456b5ae8fedc30e49180256e544391.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let aliases = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_3b456b5ae8fedc30e49180256e544391.bindPopup(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let aliases = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i].toLocaleString()}</th>
<td>${handleObject(layer.feature.properties[v]).toLocaleString()}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumpopup"});
geo_json_3b456b5ae8fedc30e49180256e544391.addTo(map_246537f924c98c05df96a0a8a5dd041b);
function geo_json_d783563f612398558009ab02cdd0df93_styler(feature) {
switch(feature.id) {
case "2": case "4": case "5": case "6":
return {"color": "pink", "fillColor": "pink", "fillOpacity": 0.5, "radius": 21, "weight": 2};
default:
return {"color": "pink", "fillColor": "pink", "fillOpacity": 0.5, "radius": 3.61, "weight": 2};
}
}
function geo_json_d783563f612398558009ab02cdd0df93_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_d783563f612398558009ab02cdd0df93_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_d783563f612398558009ab02cdd0df93_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_d783563f612398558009ab02cdd0df93_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_d783563f612398558009ab02cdd0df93.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_d783563f612398558009ab02cdd0df93_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_d783563f612398558009ab02cdd0df93 = L.geoJson(null, {
onEachFeature: geo_json_d783563f612398558009ab02cdd0df93_onEachFeature,
style: geo_json_d783563f612398558009ab02cdd0df93_styler,
pointToLayer: geo_json_d783563f612398558009ab02cdd0df93_pointToLayer,
});
function geo_json_d783563f612398558009ab02cdd0df93_add (data) {
geo_json_d783563f612398558009ab02cdd0df93
.addData(data);
}
geo_json_d783563f612398558009ab02cdd0df93_add({"bbox": [-70.4642305, 43.4988589, -69.61371, 44.586705], "features": [{"bbox": [-69.6761403, 44.5010991, -69.6761403, 44.5010991], "geometry": {"coordinates": [-69.6761403, 44.5010991], "type": "Point"}, "id": "2", "properties": {"__folium_color": "pink", "max": 28.3, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 3.7, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.136975", "sampleType": "SKIN-ON FILLET"}, "type": "Feature"}, {"bbox": [-70.4642305, 43.4988589, -70.4642305, 43.4988589], "geometry": {"coordinates": [-70.4642305, 43.4988589], "type": "Point"}, "id": "3", "properties": {"__folium_color": "pink", "max": 3.61, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.431, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.136987", "sampleType": "SKIN-ON FILLET"}, "type": "Feature"}, {"bbox": [-69.7056003, 44.4215591, -69.7056003, 44.4215591], "geometry": {"coordinates": [-69.7056003, 44.4215591], "type": "Point"}, "id": "4", "properties": {"__folium_color": "pink", "max": 32.2, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.59, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.136991", "sampleType": "SKIN-ON FILLET"}, "type": "Feature"}, {"bbox": [-69.6761403, 44.5010991, -69.6761403, 44.5010991], "geometry": {"coordinates": [-69.6761403, 44.5010991], "type": "Point"}, "id": "5", "properties": {"__folium_color": "pink", "max": 33.5, "max_chem": "PERFLUOROOCTANE SULFONATE", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.348, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.136993", "sampleType": "SKIN-ON FILLET"}, "type": "Feature"}, {"bbox": [-69.61371, 44.586705, -69.61371, 44.586705], "geometry": {"coordinates": [-69.61371, 44.586705], "type": "Point"}, "id": "6", "properties": {"__folium_color": "pink", "max": 836.0, "max_chem": "PERFLUOROOCTANE SULFONIC ACID", "max_unit": "http://sawgraph.spatialai.org/v1/me-egad#unit.NG-G", "min": 0.052, "samplePoint": "http://sawgraph.spatialai.org/v1/me-egad-data#samplePoint.145860", "sampleType": "SKIN-ON FILLET"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_d783563f612398558009ab02cdd0df93.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let aliases = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_d783563f612398558009ab02cdd0df93.bindPopup(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let aliases = ["samplePoint", "sampleType", "max", "max_chem", "max_unit", "min"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i].toLocaleString()}</th>
<td>${handleObject(layer.feature.properties[v]).toLocaleString()}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumpopup"});
geo_json_d783563f612398558009ab02cdd0df93.addTo(map_246537f924c98c05df96a0a8a5dd041b);
var feature_group_a2953805e09dd6fc1bc6774bdd4ee9df = L.featureGroup(
{}
);
function geo_json_c4af98399588b9f10f102bf4657a7ea0_styler(feature) {
switch(feature.id) {
default:
return {"color": "light gray", "fillColor": "light gray", "fillOpacity": 0.5, "weight": 3};
}
}
function geo_json_c4af98399588b9f10f102bf4657a7ea0_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_c4af98399588b9f10f102bf4657a7ea0_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_c4af98399588b9f10f102bf4657a7ea0_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_c4af98399588b9f10f102bf4657a7ea0_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_c4af98399588b9f10f102bf4657a7ea0.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_c4af98399588b9f10f102bf4657a7ea0_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_c4af98399588b9f10f102bf4657a7ea0 = L.geoJson(null, {
onEachFeature: geo_json_c4af98399588b9f10f102bf4657a7ea0_onEachFeature,
style: geo_json_c4af98399588b9f10f102bf4657a7ea0_styler,
pointToLayer: geo_json_c4af98399588b9f10f102bf4657a7ea0_pointToLayer,
});
function geo_json_c4af98399588b9f10f102bf4657a7ea0_add (data) {
geo_json_c4af98399588b9f10f102bf4657a7ea0
.addData(data);
}
geo_json_c4af98399588b9f10f102bf4657a7ea0_add({"bbox": [-90.62989223354184, 37.79430827053829, -68.036524077269, 46.70458231650252], "features": [{"bbox": [-87.65811301590037, 41.89564836462588, -87.64824744056286, 41.90577043614168], "geometry": {"coordinates": [[[-87.65811301590037, 41.90577043614168], [-87.65811301590037, 41.8958493376779], [-87.64824744056286, 41.89564836462588], [-87.64824744056286, 41.905569455530355], [-87.65811301590037, 41.90577043614168]]], "type": "Polygon"}, "id": "0", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804287099740880896"}, "type": "Feature"}, {"bbox": [-88.2363819482265, 41.806687673106644, -88.22664341379004, 41.81677679023794], "geometry": {"coordinates": [[[-88.2363819482265, 41.81677679023794], [-88.2363819482265, 41.80683708230504], [-88.22664341379004, 41.806687673106644], [-88.22664341379004, 41.816627375246235], [-88.2363819482265, 41.81677679023794]]], "type": "Polygon"}, "id": "1", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804047509285240832"}, "type": "Feature"}, {"bbox": [-87.96288404743616, 42.03030236870086, -87.95308493811372, 42.04037370916136], "geometry": {"coordinates": [[[-87.96288404743616, 42.04037370916136], [-87.96288404743616, 42.03047612456454], [-87.95308493811372, 42.03030236870086], [-87.95308493811372, 42.040199947062916], [-87.96288404743616, 42.04037370916136]]], "type": "Polygon"}, "id": "2", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804249441467629568"}, "type": "Feature"}, {"bbox": [-89.46476438041994, 41.828980387972585, -89.45530882337486, 41.8389630314584], "geometry": {"coordinates": [[[-89.46476438041994, 41.8389630314584], [-89.46476438041994, 41.829024671859756], [-89.45530882337486, 41.828980387972585], [-89.45530882337486, 41.83891874586644], [-89.46476438041994, 41.8389630314584]]], "type": "Polygon"}, "id": "3", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802552276550680576"}, "type": "Feature"}, {"bbox": [-88.1779181738307, 39.51344932179083, -88.16816661672841, 39.52394302809989], "geometry": {"coordinates": [[[-88.1779181738307, 39.52394302809989], [-88.1779181738307, 39.513602002235956], [-88.16816661672841, 39.51344932179083], [-88.16816661672841, 39.52379033697882], [-88.1779181738307, 39.52394302809989]]], "type": "Polygon"}, "id": "4", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832234864252813312"}, "type": "Feature"}, {"bbox": [-89.72860560143256, 38.589702036332035, -89.71921317107348, 38.600219375006965], "geometry": {"coordinates": [[[-89.72860560143256, 38.600219375006965], [-89.72860560143256, 38.589724101947105], [-89.71921317107348, 38.589702036332035], [-89.71921317107348, 38.600197307553714], [-89.72860560143256, 38.600219375006965]]], "type": "Polygon"}, "id": "5", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9833059016937308160"}, "type": "Feature"}, {"bbox": [-88.8263005699642, 39.397593968356475, -88.81669569689801, 39.40805316376967], "geometry": {"coordinates": [[[-88.8263005699642, 39.40805316376967], [-88.8263005699642, 39.397690879251655], [-88.81669569689801, 39.397593968356475], [-88.81669569689801, 39.40795624593699], [-88.8263005699642, 39.40805316376967]]], "type": "Polygon"}, "id": "6", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832627011946807296"}, "type": "Feature"}, {"bbox": [-88.18766756207745, 42.18235261951696, -88.1779181738307, 42.19237679290621], "geometry": {"coordinates": [[[-88.18766756207745, 42.19237679290621], [-88.18766756207745, 42.182506530974806], [-88.1779181738307, 42.18235261951696], [-88.1779181738307, 42.1922228762252], [-88.18766756207745, 42.19237679290621]]], "type": "Polygon"}, "id": "7", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804066510220558336"}, "type": "Feature"}, {"bbox": [-87.75665128692118, 41.768477276088426, -87.74680708212769, 41.77861413039188], "geometry": {"coordinates": [[[-87.75665128692118, 41.77861413039188], [-87.75665128692118, 41.76866928920095], [-87.74680708212769, 41.768477276088426], [-87.74680708212769, 41.77842210974027], [-87.75665128692118, 41.77861413039188]]], "type": "Polygon"}, "id": "8", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827194642825216"}, "type": "Feature"}, {"bbox": [-87.99226844484863, 42.24814543359624, -87.98247580145672, 42.25817402123641], "geometry": {"coordinates": [[[-87.99226844484863, 42.25817402123641], [-87.99226844484863, 42.24831670421573], [-87.98247580145672, 42.24814543359624], [-87.98247580145672, 42.258002744948904], [-87.99226844484863, 42.25817402123641]]], "type": "Polygon"}, "id": "9", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804221644439289856"}, "type": "Feature"}, {"bbox": [-88.00205893162546, 39.29300068501752, -87.99226844484863, 39.3035454150272], "geometry": {"coordinates": [[[-88.00205893162546, 39.3035454150272], [-88.00205893162546, 39.29316848779222], [-87.99226844484863, 39.29300068501752], [-87.99226844484863, 39.30337759999243], [-88.00205893162546, 39.3035454150272]]], "type": "Polygon"}, "id": "10", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832017745066065920"}, "type": "Feature"}, {"bbox": [-87.90405709457347, 42.384399266279466, -87.89424507107584, 42.394410037863636], "geometry": {"coordinates": [[[-87.90405709457347, 42.394410037863636], [-87.90405709457347, 42.38457848481681], [-87.89424507107584, 42.384399266279466], [-87.89424507107584, 42.39423081370586], [-87.90405709457347, 42.394410037863636]]], "type": "Polygon"}, "id": "11", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804210614963273728"}, "type": "Feature"}, {"bbox": [-87.92367468875119, 42.0196992305129, -87.91386696735128, 42.029775861637674], "geometry": {"coordinates": [[[-87.92367468875119, 42.029775861637674], [-87.92367468875119, 42.01987647479799], [-87.91386696735128, 42.0196992305129], [-87.91386696735128, 42.02959861096856], [-87.92367468875119, 42.029775861637674]]], "type": "Polygon"}, "id": "12", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804256279055564800"}, "type": "Feature"}, {"bbox": [-87.85497548307694, 41.909420803873225, -87.84515271587925, 41.91952352997365], "geometry": {"coordinates": [[[-87.85497548307694, 41.91952352997365], [-87.85497548307694, 41.909604110688825], [-87.84515271587925, 41.909420803873225], [-87.84515271587925, 41.91934021629527], [-87.85497548307694, 41.91952352997365]]], "type": "Polygon"}, "id": "13", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804277719532306432"}, "type": "Feature"}, {"bbox": [-87.79600669185112, 41.77918489669634, -87.78617105409316, 41.7893164409715], "geometry": {"coordinates": [[[-87.79600669185112, 41.7893164409715], [-87.79600669185112, 41.77937338873235], [-87.78617105409316, 41.77918489669634], [-87.78617105409316, 41.789127941560736], [-87.79600669185112, 41.7893164409715]]], "type": "Polygon"}, "id": "14", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803833757352853504"}, "type": "Feature"}, {"bbox": [-87.59888757741817, 41.73543951156525, -87.5890092122621, 41.74559587033798], "geometry": {"coordinates": [[[-87.59888757741817, 41.74559587033798], [-87.59888757741817, 41.73564570129623], [-87.5890092122621, 41.73543951156525], [-87.5890092122621, 41.74538967242332], [-87.59888757741817, 41.74559587033798]]], "type": "Polygon"}, "id": "15", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803818089312157696"}, "type": "Feature"}, {"bbox": [-87.77633327357327, 41.74896526730071, -87.76649335095964, 41.75910399262974], "geometry": {"coordinates": [[[-87.77633327357327, 41.75910399262974], [-87.77633327357327, 41.749155500074146], [-87.76649335095964, 41.74896526730071], [-87.76649335095964, 41.75891375233881], [-87.77633327357327, 41.75910399262974]]], "type": "Polygon"}, "id": "16", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803826988484395008"}, "type": "Feature"}, {"bbox": [-87.91386696735128, 41.94026037411762, -87.90405709457347, 41.950352428833924], "geometry": {"coordinates": [[[-87.91386696735128, 41.950352428833924], [-87.91386696735128, 41.9404384413033], [-87.90405709457347, 41.94026037411762], [-87.90405709457347, 41.95017435505237], [-87.91386696735128, 41.950352428833924]]], "type": "Polygon"}, "id": "17", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804253221038850048"}, "type": "Feature"}, {"bbox": [-88.11937632071678, 41.91406352379571, -88.10961176389168, 41.92414290978898], "geometry": {"coordinates": [[[-88.11937632071678, 41.92414290978898], [-88.11937632071678, 41.91422331770048], [-88.10961176389168, 41.91406352379571], [-88.10961176389168, 41.923983109910644], [-88.11937632071678, 41.92414290978898]]], "type": "Polygon"}, "id": "18", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804243187995246592"}, "type": "Feature"}, {"bbox": [-88.35307471354942, 41.72884052332116, -88.34336229261021, 41.73893398033653], "geometry": {"coordinates": [[[-88.35307471354942, 41.73893398033653], [-88.35307471354942, 41.728979650039165], [-88.34336229261021, 41.72884052332116], [-88.34336229261021, 41.73879484808294], [-88.35307471354942, 41.73893398033653]]], "type": "Polygon"}, "id": "19", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804036857766346752"}, "type": "Feature"}, {"bbox": [-87.92367468875119, 42.11861076567851, -87.91386696735128, 42.12866917145401], "geometry": {"coordinates": [[[-87.92367468875119, 42.12866917145401], [-87.92367468875119, 42.11878807279981], [-87.91386696735128, 42.11861076567851], [-87.91386696735128, 42.12849185817159], [-87.92367468875119, 42.12866917145401]]], "type": "Polygon"}, "id": "20", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804258615517773824"}, "type": "Feature"}, {"bbox": [-88.30449081937716, 41.916952534778225, -88.29476750682691, 41.92701572138015], "geometry": {"coordinates": [[[-88.30449081937716, 41.92701572138015], [-88.30449081937716, 41.91709602195441], [-88.29476750682691, 41.916952534778225], [-88.29476750682691, 41.926872228845006], [-88.30449081937716, 41.92701572138015]]], "type": "Polygon"}, "id": "21", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804057748487274496"}, "type": "Feature"}, {"bbox": [-87.89424507107584, 41.8704527767352, -87.88443089751733, 41.88055928573356], "geometry": {"coordinates": [[[-87.89424507107584, 41.88055928573356], [-87.89424507107584, 41.8706325478486], [-87.88443089751733, 41.8704527767352], [-87.88443089751733, 41.880379507799034], [-87.89424507107584, 41.88055928573356]]], "type": "Polygon"}, "id": "22", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803855781945147392"}, "type": "Feature"}, {"bbox": [-87.8058401861797, 41.709721117047835, -87.79600669185112, 41.71986446008731], "geometry": {"coordinates": [[[-87.8058401861797, 41.71986446008731], [-87.8058401861797, 41.70990867624335], [-87.79600669185112, 41.709721117047835], [-87.79600669185112, 41.71967689338404], [-87.8058401861797, 41.71986446008731]]], "type": "Polygon"}, "id": "23", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803836918448783360"}, "type": "Feature"}, {"bbox": [-87.75665128692118, 41.75853062414262, -87.74680708212769, 41.76866928920095], "geometry": {"coordinates": [[[-87.75665128692118, 41.76866928920095], [-87.75665128692118, 41.758722629691526], [-87.74680708212769, 41.75853062414262], [-87.74680708212769, 41.768477276088426], [-87.75665128692118, 41.76866928920095]]], "type": "Polygon"}, "id": "24", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827229002563584"}, "type": "Feature"}, {"bbox": [-87.60876381264065, 40.14094247260718, -87.59888757741817, 40.1513786471779], "geometry": {"coordinates": [[[-87.60876381264065, 40.1513786471779], [-87.60876381264065, 40.14114614565347], [-87.59888757741817, 40.14094247260718], [-87.59888757741817, 40.151174961686095], [-87.60876381264065, 40.1513786471779]]], "type": "Polygon"}, "id": "25", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803590456045469696"}, "type": "Feature"}, {"bbox": [-87.95308493811372, 42.00042406046745, -87.9432836747886, 42.01050172998519], "geometry": {"coordinates": [[[-87.95308493811372, 42.01050172998519], [-87.95308493811372, 42.000598670280205], [-87.9432836747886, 42.00042406046745], [-87.9432836747886, 42.01032711383992], [-87.95308493811372, 42.01050172998519]]], "type": "Polygon"}, "id": "26", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804249785065013248"}, "type": "Feature"}, {"bbox": [-90.60147168385544, 41.48971235991549, -90.59200265379941, 41.49976141398367], "geometry": {"coordinates": [[[-90.60147168385544, 41.49971246971077], [-90.60147168385544, 41.48971235991549], [-90.59200265379941, 41.48976130208747], [-90.59200265379941, 41.49976141398367], [-90.60147168385544, 41.49971246971077]]], "type": "Polygon"}, "id": "27", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9791444838288195584"}, "type": "Feature"}, {"bbox": [-89.672217105911, 39.16428571117361, -89.66281111382936, 39.17471455196929], "geometry": {"coordinates": [[[-89.672217105911, 39.17471455196929], [-89.672217105911, 39.16431243855633], [-89.66281111382936, 39.16428571117361], [-89.66281111382936, 39.17468782258363], [-89.672217105911, 39.17471455196929]]], "type": "Polygon"}, "id": "28", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832944427209850880"}, "type": "Feature"}, {"bbox": [-88.97967760803705, 39.84306996182535, -88.9701081618244, 39.853442144095276], "geometry": {"coordinates": [[[-88.97967760803705, 39.853442144095276], [-88.97967760803705, 39.843154193442196], [-88.9701081618244, 39.84306996182535], [-88.9701081618244, 39.85335790697918], [-88.97967760803705, 39.853442144095276]]], "type": "Polygon"}, "id": "29", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832677761280376832"}, "type": "Feature"}, {"bbox": [-89.05615324239362, 37.79430827053829, -89.04660156492186, 37.805003981287705], "geometry": {"coordinates": [[[-89.05615324239362, 37.805003981287705], [-89.05615324239362, 37.79438486106807], [-89.04660156492186, 37.79430827053829], [-89.04660156492186, 37.8049273834678], [-89.05615324239362, 37.805003981287705]]], "type": "Polygon"}, "id": "30", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9833395192617500672"}, "type": "Feature"}, {"bbox": [-90.01865552269376, 38.527028981733274, -90.00932662322927, 38.537535449446715], "geometry": {"coordinates": [[[-90.01865552269376, 38.53753433929144], [-90.01865552269376, 38.527028981733274], [-90.00932662322927, 38.52703009179505], [-90.00932662322927, 38.537535449446715], [-90.01865552269376, 38.53753433929144]]], "type": "Polygon"}, "id": "31", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9788760483728195584"}, "type": "Feature"}, {"bbox": [-87.61863791724736, 41.58638050712723, -87.60876381264065, 41.59656219226351], "geometry": {"coordinates": [[[-87.61863791724736, 41.59656219226351], [-87.61863791724736, 41.58658478949041], [-87.60876381264065, 41.58638050712723], [-87.60876381264065, 41.59635790139494], [-87.61863791724736, 41.59656219226351]]], "type": "Polygon"}, "id": "32", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803810770687885312"}, "type": "Feature"}, {"bbox": [-88.22664341379004, 41.76676042159838, -88.21690270732307, 41.77685764573026], "geometry": {"coordinates": [[[-88.22664341379004, 41.77685764573026], [-88.22664341379004, 41.76691066408795], [-88.21690270732307, 41.76676042159838], [-88.21690270732307, 41.77670739733719], [-88.22664341379004, 41.77685764573026]]], "type": "Polygon"}, "id": "33", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804048024681316352"}, "type": "Feature"}, {"bbox": [-87.75665128692118, 41.42927332704709, -87.74680708212769, 41.43947153668502], "geometry": {"coordinates": [[[-87.75665128692118, 41.43947153668502], [-87.75665128692118, 41.429465069163825], [-87.74680708212769, 41.42927332704709], [-87.74680708212769, 41.43927978618897], [-87.75665128692118, 41.43947153668502]]], "type": "Polygon"}, "id": "34", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803792972343410688"}, "type": "Feature"}, {"bbox": [-87.81567153641228, 41.74972090992161, -87.8058401861797, 41.75985614113776], "geometry": {"coordinates": [[[-87.81567153641228, 41.75985614113776], [-87.81567153641228, 41.74990761886467], [-87.8058401861797, 41.74972090992161], [-87.8058401861797, 41.75966942481815], [-87.81567153641228, 41.75985614113776]]], "type": "Polygon"}, "id": "35", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803834410187882496"}, "type": "Feature"}, {"bbox": [-88.3142119548568, 41.88732597963855, -88.30449081937716, 41.89739377445743], "geometry": {"coordinates": [[[-88.3142119548568, 41.89739377445743], [-88.3142119548568, 41.887468597963675], [-88.30449081937716, 41.88732597963855], [-88.30449081937716, 41.89725115075115], [-88.3142119548568, 41.89739377445743]]], "type": "Polygon"}, "id": "36", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804051907331751936"}, "type": "Feature"}, {"bbox": [-87.73696073724966, 41.80785895986152, -87.7271122529584, 41.817990320360614], "geometry": {"coordinates": [[[-87.73696073724966, 41.817990320360614], [-87.73696073724966, 41.808052770772534], [-87.7271122529584, 41.80785895986152], [-87.7271122529584, 41.81779650193908], [-87.73696073724966, 41.817990320360614]]], "type": "Polygon"}, "id": "37", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827881837592576"}, "type": "Feature"}, {"bbox": [-87.74680708212769, 41.857722315613984, -87.73696073724966, 41.86784373319621], "geometry": {"coordinates": [[[-87.74680708212769, 41.86784373319621], [-87.74680708212769, 41.85791527949112], [-87.73696073724966, 41.857722315613984], [-87.73696073724966, 41.86765076196605], [-87.74680708212769, 41.86784373319621]]], "type": "Polygon"}, "id": "38", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803829531105034240"}, "type": "Feature"}, {"bbox": [-88.03141744575758, 41.902665090432535, -88.02163343272996, 41.91275403218521], "geometry": {"coordinates": [[[-88.03141744575758, 41.91275403218521], [-88.03141744575758, 41.90283267135705], [-88.02163343272996, 41.902665090432535], [-88.02163343272996, 41.912586444971566], [-88.03141744575758, 41.91275403218521]]], "type": "Polygon"}, "id": "39", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804245455737978880"}, "type": "Feature"}, {"bbox": [-87.84515271587925, 42.3242778398972, -87.83532780192677, 42.33430483963484], "geometry": {"coordinates": [[[-87.84515271587925, 42.33430483963484], [-87.84515271587925, 42.32446229488176], [-87.83532780192677, 42.3242778398972], [-87.83532780192677, 42.33412037872504], [-87.84515271587925, 42.33430483963484]]], "type": "Polygon"}, "id": "40", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804315343445819392"}, "type": "Feature"}, {"bbox": [-89.0752499257979, 42.33100243181833, -89.0657026962081, 42.340924456832205], "geometry": {"coordinates": [[[-89.0752499257979, 42.340924456832205], [-89.0752499257979, 42.33107954627915], [-89.0657026962081, 42.33100243181833], [-89.0657026962081, 42.34084733989987], [-89.0752499257979, 42.340924456832205]]], "type": "Polygon"}, "id": "41", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802293204123385856"}, "type": "Feature"}, {"bbox": [-88.33364769209874, 41.74846652852495, -88.32393091263926, 41.758558049311425], "geometry": {"coordinates": [[[-88.33364769209874, 41.758558049311425], [-88.33364769209874, 41.748607366854856], [-88.32393091263926, 41.74846652852495], [-88.32393091263926, 41.758417205413814], [-88.33364769209874, 41.758558049311425]]], "type": "Polygon"}, "id": "42", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804025587772162048"}, "type": "Feature"}, {"bbox": [-87.79600669185112, 41.76924003309869, -87.78617105409316, 41.77937338873235], "geometry": {"coordinates": [[[-87.79600669185112, 41.77937338873235], [-87.79600669185112, 41.76942851773588], [-87.78617105409316, 41.76924003309869], [-87.78617105409316, 41.77918489669634], [-87.79600669185112, 41.77937338873235]]], "type": "Polygon"}, "id": "43", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803834066590498816"}, "type": "Feature"}, {"bbox": [-87.66797645722293, 41.806477481015634, -87.65811301590037, 41.81661499264233], "geometry": {"coordinates": [[[-87.66797645722293, 41.81661499264233], [-87.66797645722293, 41.8066774963584], [-87.65811301590037, 41.806477481015634], [-87.65811301590037, 41.816414969545285], [-87.66797645722293, 41.81661499264233]]], "type": "Polygon"}, "id": "44", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803824548942970880"}, "type": "Feature"}, {"bbox": [-87.75665128692118, 41.7485821542455, -87.74680708212769, 41.758722629691526], "geometry": {"coordinates": [[[-87.75665128692118, 41.758722629691526], [-87.75665128692118, 41.74877415220625], [-87.74680708212769, 41.7485821542455], [-87.74680708212769, 41.75853062414262], [-87.75665128692118, 41.758722629691526]]], "type": "Polygon"}, "id": "45", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803826851045441536"}, "type": "Feature"}, {"bbox": [-87.61863791724736, 41.62627921069878, -87.60876381264065, 41.63645367941566], "geometry": {"coordinates": [[[-87.61863791724736, 41.63645367941566], [-87.61863791724736, 41.626483526925725], [-87.60876381264065, 41.62627921069878], [-87.60876381264065, 41.63624935478851], [-87.61863791724736, 41.63645367941566]]], "type": "Polygon"}, "id": "46", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803810152212594688"}, "type": "Feature"}, {"bbox": [-87.76649335095964, 41.848177077179955, -87.75665128692118, 41.8582985564081], "geometry": {"coordinates": [[[-87.76649335095964, 41.8582985564081], [-87.76649335095964, 41.84836826670494], [-87.75665128692118, 41.848177077179955], [-87.75665128692118, 41.858107359574], [-87.76649335095964, 41.8582985564081]]], "type": "Polygon"}, "id": "47", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803830183940063232"}, "type": "Feature"}, {"bbox": [-88.12913871252172, 41.97371350069579, -88.11937632071678, 41.98378111454878], "geometry": {"coordinates": [[[-88.12913871252172, 41.98378111454878], [-88.12913871252172, 41.97387246676042], [-88.11937632071678, 41.97371350069579], [-88.11937632071678, 41.9836221426639], [-88.12913871252172, 41.98378111454878]]], "type": "Polygon"}, "id": "48", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804243840830275584"}, "type": "Feature"}, {"bbox": [-88.10961176389168, 41.8940582348044, -88.09984504268836, 41.90414211383733], "geometry": {"coordinates": [[[-88.10961176389168, 41.90414211383733], [-88.10961176389168, 41.894218880367795], [-88.09984504268836, 41.8940582348044], [-88.09984504268836, 41.903981462227016], [-88.10961176389168, 41.90414211383733]]], "type": "Polygon"}, "id": "49", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803866570902994944"}, "type": "Feature"}, {"bbox": [-87.77633327357327, 41.79868950906578, -87.76649335095964, 41.80881917819749], "geometry": {"coordinates": [[[-87.77633327357327, 41.80881917819749], [-87.77633327357327, 41.79887977918375], [-87.76649335095964, 41.79868950906578], [-87.76649335095964, 41.80862890068345], [-87.77633327357327, 41.80881917819749]]], "type": "Polygon"}, "id": "50", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827641319424000"}, "type": "Feature"}, {"bbox": [-89.14201820712869, 38.49230479410037, -89.13248656293672, 38.50288483248037], "geometry": {"coordinates": [[[-89.14201820712869, 38.50288483248037], [-89.14201820712869, 38.4923747185238], [-89.13248656293672, 38.49230479410037], [-89.13248656293672, 38.50281490213188], [-89.14201820712869, 38.50288483248037]]], "type": "Polygon"}, "id": "51", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9833215937862434816"}, "type": "Feature"}, {"bbox": [-87.92367468875119, 41.92060499334745, -87.91386696735128, 41.93069981518639], "geometry": {"coordinates": [[[-87.92367468875119, 41.93069981518639], [-87.92367468875119, 41.920782172561495], [-87.91386696735128, 41.92060499334745], [-87.91386696735128, 41.930522629364354], [-87.92367468875119, 41.93069981518639]]], "type": "Polygon"}, "id": "52", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804253461557018624"}, "type": "Feature"}, {"bbox": [-89.71921317107348, 39.060296646469055, -89.70981847913414, 39.070738733421805], "geometry": {"coordinates": [[[-89.71921317107348, 39.070738733421805], [-89.71921317107348, 39.060319550571066], [-89.70981847913414, 39.060296646469055], [-89.70981847913414, 39.070715827568996], [-89.71921317107348, 39.070738733421805]]], "type": "Polygon"}, "id": "53", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832930167918428160"}, "type": "Feature"}, {"bbox": [-90.59200265379941, 41.43973359451221, -90.58253586789806, 41.44979090041819], "geometry": {"coordinates": [[[-90.59200265379941, 41.44974275455964], [-90.59200265379941, 41.43973359451221], [-90.58253586789806, 41.439781738272465], [-90.58253586789806, 41.44979090041819], [-90.59200265379941, 41.44974275455964]]], "type": "Polygon"}, "id": "54", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9791444219812904960"}, "type": "Feature"}, {"bbox": [-89.02749154127994, 40.4983817540549, -89.01793319624842, 40.508637821635844], "geometry": {"coordinates": [[[-89.02749154127994, 40.508637821635844], [-89.02749154127994, 40.49846227534723], [-89.01793319624842, 40.4983817540549], [-89.01793319624842, 40.50855729581708], [-89.02749154127994, 40.508637821635844]]], "type": "Polygon"}, "id": "55", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803054547206144000"}, "type": "Feature"}, {"bbox": [-87.76649335095964, 41.758722629691526, -87.75665128692118, 41.76886041937662], "geometry": {"coordinates": [[[-87.76649335095964, 41.76886041937662], [-87.76649335095964, 41.75891375233881], [-87.75665128692118, 41.758722629691526], [-87.75665128692118, 41.76866928920095], [-87.76649335095964, 41.76886041937662]]], "type": "Polygon"}, "id": "56", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827057203871744"}, "type": "Feature"}, {"bbox": [-88.46945353199519, 38.66385218223827, -88.45976731433737, 38.67445987116975], "geometry": {"coordinates": [[[-88.46945353199519, 38.67445987116975], [-88.46945353199519, 38.66397883489349], [-88.45976731433737, 38.66385218223827], [-88.45976731433737, 38.67433320810422], [-88.46945353199519, 38.67445987116975]]], "type": "Polygon"}, "id": "57", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832448444386508800"}, "type": "Feature"}, {"bbox": [-88.05097899351935, 41.98231923879402, -88.04119929957007, 41.99239190760745], "geometry": {"coordinates": [[[-88.05097899351935, 41.99239190760745], [-88.05097899351935, 41.98248513330249], [-88.04119929957007, 41.98231923879402], [-88.04119929957007, 41.99222600704361], [-88.05097899351935, 41.99239190760745]]], "type": "Polygon"}, "id": "58", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804246761408036864"}, "type": "Feature"}, {"bbox": [-87.8746145745576, 41.75082798058746, -87.86479610285706, 41.76095798594884], "geometry": {"coordinates": [[[-87.8746145745576, 41.76095798594884], [-87.8746145745576, 41.751009420154105], [-87.86479610285706, 41.75082798058746], [-87.86479610285706, 41.760776539216266], [-87.8746145745576, 41.76095798594884]]], "type": "Polygon"}, "id": "59", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803852689568694272"}, "type": "Feature"}, {"bbox": [-88.27531435302465, 42.01563158775246, -88.2655845130296, 42.02567911364081], "geometry": {"coordinates": [[[-88.27531435302465, 42.02567911364081], [-88.27531435302465, 42.01577769023033], [-88.2655845130296, 42.01563158775246], [-88.2655845130296, 42.02553300589224], [-88.27531435302465, 42.02567911364081]]], "type": "Polygon"}, "id": "60", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804059638272884736"}, "type": "Feature"}, {"bbox": [-87.76649335095964, 41.669120926543684, -87.75665128692118, 41.67927499695563], "geometry": {"coordinates": [[[-87.76649335095964, 41.67927499695563], [-87.76649335095964, 41.66931198033506], [-87.75665128692118, 41.669120926543684], [-87.75665128692118, 41.67908393541564], [-87.76649335095964, 41.67927499695563]]], "type": "Polygon"}, "id": "61", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803839323630469120"}, "type": "Feature"}, {"bbox": [-90.4125180839691, 39.9907690123256, -90.40309403873545, 40.001065797803264], "geometry": {"coordinates": [[[-90.4125180839691, 40.00103276845466], [-90.4125180839691, 39.9907690123256], [-90.40309403873545, 39.99080203958597], [-90.40309403873545, 40.001065797803264], [-90.4125180839691, 40.00103276845466]]], "type": "Polygon"}, "id": "62", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9790955555613835264"}, "type": "Feature"}, {"bbox": [-88.97967760803705, 40.44706289024749, -88.9701081618244, 40.45733179959607], "geometry": {"coordinates": [[[-88.97967760803705, 40.45733179959607], [-88.97967760803705, 40.44714742629414], [-88.9701081618244, 40.44706289024749], [-88.9701081618244, 40.457247258737986], [-88.97967760803705, 40.45733179959607]]], "type": "Polygon"}, "id": "63", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803051935866028032"}, "type": "Feature"}, {"bbox": [-87.92367468875119, 41.91068553358366, -87.91386696735128, 41.920782172561495], "geometry": {"coordinates": [[[-87.92367468875119, 41.920782172561495], [-87.92367468875119, 41.910862706167286], [-87.91386696735128, 41.91068553358366], [-87.91386696735128, 41.92060499334745], [-87.92367468875119, 41.920782172561495]]], "type": "Polygon"}, "id": "64", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804253633355710464"}, "type": "Feature"}, {"bbox": [-88.1779181738307, 41.45674057260196, -88.16816661672841, 41.46689808426405], "geometry": {"coordinates": [[[-88.1779181738307, 41.46689808426405], [-88.1779181738307, 41.45689490846849], [-88.16816661672841, 41.45674057260196], [-88.16816661672841, 41.46674374170753], [-88.1779181738307, 41.46689808426405]]], "type": "Polygon"}, "id": "65", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803923161392087040"}, "type": "Feature"}, {"bbox": [-90.62041647426837, 41.43958443415428, -90.61094295752554, 41.44964409875221], "geometry": {"coordinates": [[[-90.62041647426837, 41.44959358770049], [-90.62041647426837, 41.43958443415428], [-90.61094295752554, 41.43963494300451], [-90.61094295752554, 41.44964409875221], [-90.62041647426837, 41.44959358770049]]], "type": "Polygon"}, "id": "66", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9791895809854275584"}, "type": "Feature"}, {"bbox": [-87.75665128692118, 41.85791527949112, -87.74680708212769, 41.868035820597996], "geometry": {"coordinates": [[[-87.75665128692118, 41.868035820597996], [-87.75665128692118, 41.858107359574], [-87.74680708212769, 41.85791527949112], [-87.74680708212769, 41.86784373319621], [-87.75665128692118, 41.868035820597996]]], "type": "Polygon"}, "id": "67", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803829565464772608"}, "type": "Feature"}, {"bbox": [-88.02163343272996, 41.902496640879704, -88.01184726113603, 41.912586444971566], "geometry": {"coordinates": [[[-88.02163343272996, 41.912586444971566], [-88.02163343272996, 41.902665090432535], [-88.01184726113603, 41.902496640879704], [-88.01184726113603, 41.91241798909668], [-88.02163343272996, 41.912586444971566]]], "type": "Polygon"}, "id": "68", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804245490097717248"}, "type": "Feature"}, {"bbox": [-87.8746145745576, 41.88001732272736, -87.86479610285706, 41.89012375553047], "geometry": {"coordinates": [[[-87.8746145745576, 41.89012375553047], [-87.8746145745576, 41.88019885364578], [-87.86479610285706, 41.88001732272736], [-87.86479610285706, 41.88994221774668], [-87.8746145745576, 41.89012375553047]]], "type": "Polygon"}, "id": "69", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803855610146455552"}, "type": "Feature"}, {"bbox": [-89.73799576969586, 39.06034169569685, -89.72860560143256, 39.070782268568585], "geometry": {"coordinates": [[[-89.73799576969586, 39.070782268568585], [-89.73799576969586, 39.06036308239028], [-89.72860560143256, 39.06034169569685], [-89.72860560143256, 39.070760880240364], [-89.73799576969586, 39.070782268568585]]], "type": "Polygon"}, "id": "70", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832930099198951424"}, "type": "Feature"}, {"bbox": [-89.68162083900116, 38.73636106677867, -89.672217105911, 38.74685866246368], "geometry": {"coordinates": [[[-89.68162083900116, 38.74685866246368], [-89.68162083900116, 38.7363869488716], [-89.672217105911, 38.73636106677867], [-89.672217105911, 38.74683277827037], [-89.68162083900116, 38.74685866246368]]], "type": "Polygon"}, "id": "71", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9833009298395889664"}, "type": "Feature"}, {"bbox": [-87.825500741883, 41.75985614113776, -87.81567153641228, 41.76998868929842], "geometry": {"coordinates": [[[-87.825500741883, 41.76998868929842], [-87.825500741883, 41.76004197782841], [-87.81567153641228, 41.75985614113776], [-87.81567153641228, 41.769802845290144], [-87.825500741883, 41.76998868929842]]], "type": "Polygon"}, "id": "72", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803834616346312704"}, "type": "Feature"}, {"bbox": [-87.92367468875119, 41.930522629364354, -87.91386696735128, 41.940615633710856], "geometry": {"coordinates": [[[-87.92367468875119, 41.940615633710856], [-87.92367468875119, 41.93069981518639], [-87.91386696735128, 41.930522629364354], [-87.91386696735128, 41.9404384413033], [-87.92367468875119, 41.940615633710856]]], "type": "Polygon"}, "id": "73", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804253427197280256"}, "type": "Feature"}, {"bbox": [-90.40309403873545, 40.93778954077661, -90.39367224831312, 40.947921133763806], "geometry": {"coordinates": [[[-90.40309403873545, 40.94788870504308], [-90.40309403873545, 40.93778954077661], [-90.39367224831312, 40.937821967867464], [-90.39367224831312, 40.947921133763806], [-90.40309403873545, 40.94788870504308]]], "type": "Polygon"}, "id": "74", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9791315508232978432"}, "type": "Feature"}, {"bbox": [-89.0657026962081, 42.24223766931587, -89.05615324239362, 42.25217701325713], "geometry": {"coordinates": [[[-89.0657026962081, 42.25217701325713], [-89.0657026962081, 42.24231557127676], [-89.05615324239362, 42.24223766931587], [-89.05615324239362, 42.252099108711455], [-89.0657026962081, 42.25217701325713]]], "type": "Polygon"}, "id": "75", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802295265707687936"}, "type": "Feature"}, {"bbox": [-87.6285098905569, 41.57660557503212, -87.61863791724736, 41.58678818194875], "geometry": {"coordinates": [[[-87.6285098905569, 41.58678818194875], [-87.6285098905569, 41.576808958996395], [-87.61863791724736, 41.57660557503212], [-87.61863791724736, 41.58658478949041], [-87.6285098905569, 41.58678818194875]]], "type": "Polygon"}, "id": "76", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803810839407362048"}, "type": "Feature"}, {"bbox": [-89.11341659058787, 41.14672576437185, -89.10387826355613, 41.15686066094843], "geometry": {"coordinates": [[[-89.11341659058787, 41.15686066094843], [-89.11341659058787, 41.14679929424139], [-89.10387826355613, 41.14672576437185], [-89.10387826355613, 41.15678712758888], [-89.11341659058787, 41.15686066094843]]], "type": "Polygon"}, "id": "77", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803172504187961344"}, "type": "Feature"}, {"bbox": [-87.61863791724736, 41.64621768545168, -87.60876381264065, 41.65638854368568], "geometry": {"coordinates": [[[-87.61863791724736, 41.65638854368568], [-87.61863791724736, 41.64642201845277], [-87.60876381264065, 41.64621768545168], [-87.60876381264065, 41.65618420233692], [-87.61863791724736, 41.65638854368568]]], "type": "Polygon"}, "id": "78", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803810083493117952"}, "type": "Feature"}, {"bbox": [-88.0900761577495, 41.67496296425031, -88.08030510971854, 41.685088451257364], "geometry": {"coordinates": [[[-88.0900761577495, 41.685088451257364], [-88.0900761577495, 41.67512519908088], [-88.08030510971854, 41.67496296425031], [-88.08030510971854, 41.684926209858496], [-88.0900761577495, 41.685088451257364]]], "type": "Polygon"}, "id": "79", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803874473642819584"}, "type": "Feature"}, {"bbox": [-89.47421769008234, 41.80914248608401, -89.46476438041994, 41.819127986400076], "geometry": {"coordinates": [[[-89.47421769008234, 41.819127986400076], [-89.47421769008234, 41.80918598084304], [-89.46476438041994, 41.80914248608401], [-89.46476438041994, 41.81908448995544], [-89.47421769008234, 41.819127986400076]]], "type": "Polygon"}, "id": "80", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802552104751988736"}, "type": "Feature"}, {"bbox": [-87.81567153641228, 41.73977057727151, -87.8058401861797, 41.74990761886467], "geometry": {"coordinates": [[[-87.81567153641228, 41.74990761886467], [-87.81567153641228, 41.73995727881415], [-87.8058401861797, 41.73977057727151], [-87.8058401861797, 41.74972090992161], [-87.81567153641228, 41.74990761886467]]], "type": "Polygon"}, "id": "81", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803834444547620864"}, "type": "Feature"}, {"bbox": [-88.01184726113603, 41.48398874001889, -88.00205893162546, 41.49415540425361], "geometry": {"coordinates": [[[-88.01184726113603, 41.49415540425361], [-88.01184726113603, 41.484157772313026], [-88.00205893162546, 41.48398874001889], [-88.00205893162546, 41.4939863646935], [-88.01184726113603, 41.49415540425361]]], "type": "Polygon"}, "id": "82", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803895879759822848"}, "type": "Feature"}, {"bbox": [-87.95308493811372, 42.03012773995665, -87.9432836747886, 42.040199947062916], "geometry": {"coordinates": [[[-87.95308493811372, 42.040199947062916], [-87.95308493811372, 42.03030236870086], [-87.9432836747886, 42.03012773995665], [-87.9432836747886, 42.04002531205225], [-87.95308493811372, 42.040199947062916]]], "type": "Polygon"}, "id": "83", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804249269668937728"}, "type": "Feature"}, {"bbox": [-89.38905704247448, 40.14361787562416, -89.37958352573165, 40.153905463341495], "geometry": {"coordinates": [[[-89.38905704247448, 40.153905463341495], [-89.38905704247448, 40.14366804745655], [-89.37958352573165, 40.14361787562416], [-89.37958352573165, 40.15385528844354], [-89.38905704247448, 40.153905463341495]]], "type": "Polygon"}, "id": "84", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802972874108043264"}, "type": "Feature"}, {"bbox": [-87.76649335095964, 41.74877415220625, -87.75665128692118, 41.75891375233881], "geometry": {"coordinates": [[[-87.76649335095964, 41.75891375233881], [-87.76649335095964, 41.74896526730071], [-87.75665128692118, 41.74877415220625], [-87.75665128692118, 41.758722629691526], [-87.76649335095964, 41.75891375233881]]], "type": "Polygon"}, "id": "85", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827022844133376"}, "type": "Feature"}, {"bbox": [-88.30449081937716, 41.448675087817975, -88.29476750682691, 41.45882337002678], "geometry": {"coordinates": [[[-88.30449081937716, 41.45882337002678], [-88.30449081937716, 41.448818302450775], [-88.29476750682691, 41.448675087817975], [-88.29476750682691, 41.45868014917058], [-88.30449081937716, 41.45882337002678]]], "type": "Polygon"}, "id": "86", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803931476448772096"}, "type": "Feature"}, {"bbox": [-87.81567153641228, 41.75966942481815, -87.8058401861797, 41.769802845290144], "geometry": {"coordinates": [[[-87.81567153641228, 41.769802845290144], [-87.81567153641228, 41.75985614113776], [-87.8058401861797, 41.75966942481815], [-87.8058401861797, 41.769616121617844], [-87.81567153641228, 41.769802845290144]]], "type": "Polygon"}, "id": "87", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803833963511283712"}, "type": "Feature"}, {"bbox": [-87.825500741883, 41.79963204560105, -87.81567153641228, 41.809757346893726], "geometry": {"coordinates": [[[-87.825500741883, 41.809757346893726], [-87.825500741883, 41.79981791141986], [-87.81567153641228, 41.79963204560105], [-87.81567153641228, 41.80957147385217], [-87.825500741883, 41.809757346893726]]], "type": "Polygon"}, "id": "88", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803833241956777984"}, "type": "Feature"}, {"bbox": [-90.07467669264022, 38.76820513859, -90.06533414618829, 38.77867739764827], "geometry": {"coordinates": [[[-90.07467669264022, 38.77867182422313], [-90.07467669264022, 38.76820513859], [-90.06533414618829, 38.768210711565466], [-90.06533414618829, 38.77867739764827], [-90.07467669264022, 38.77867182422313]]], "type": "Polygon"}, "id": "89", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9790639583459803136"}, "type": "Feature"}, {"bbox": [-89.08479493059633, 42.2325293829475, -89.0752499257979, 42.24246894522621], "geometry": {"coordinates": [[[-89.08479493059633, 42.24246894522621], [-89.08479493059633, 42.23260566257064], [-89.0752499257979, 42.2325293829475], [-89.0752499257979, 42.24239266306266], [-89.08479493059633, 42.24246894522621]]], "type": "Polygon"}, "id": "90", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802295643664809984"}, "type": "Feature"}, {"bbox": [-87.74680708212769, 41.76828437949384, -87.73696073724966, 41.77842210974027], "geometry": {"coordinates": [[[-87.74680708212769, 41.77842210974027], [-87.74680708212769, 41.768477276088426], [-87.73696073724966, 41.76828437949384], [-87.73696073724966, 41.77822920557145], [-87.74680708212769, 41.77842210974027]]], "type": "Polygon"}, "id": "91", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827297722040320"}, "type": "Feature"}, {"bbox": [-89.01793319624842, 42.36989124526611, -89.00837262983681, 42.379810780199676], "geometry": {"coordinates": [[[-89.01793319624842, 42.379810780199676], [-89.01793319624842, 42.36997324095375], [-89.00837262983681, 42.36989124526611], [-89.00837262983681, 42.3797287819246], [-89.01793319624842, 42.379810780199676]]], "type": "Polygon"}, "id": "92", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802290592783269888"}, "type": "Feature"}, {"bbox": [-88.70126506878691, 41.981634043863494, -88.69163152176618, 41.99165197827902], "geometry": {"coordinates": [[[-88.70126506878691, 41.99165197827902], [-88.70126506878691, 41.9817430427048], [-88.69163152176618, 41.981634043863494], [-88.69163152176618, 41.99154297545729], [-88.70126506878691, 41.99165197827902]]], "type": "Polygon"}, "id": "93", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804100320203112448"}, "type": "Feature"}, {"bbox": [-87.96288404743616, 42.000598670280205, -87.95308493811372, 42.01067547331362], "geometry": {"coordinates": [[[-87.96288404743616, 42.01067547331362], [-87.96288404743616, 42.00077240730814], [-87.95308493811372, 42.000598670280205], [-87.95308493811372, 42.01050172998519], [-87.96288404743616, 42.01067547331362]]], "type": "Polygon"}, "id": "94", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804249613266321408"}, "type": "Feature"}, {"bbox": [-88.28504201783339, 42.10482467375462, -88.27531435302465, 42.11485493488009], "geometry": {"coordinates": [[[-88.28504201783339, 42.11485493488009], [-88.28504201783339, 42.104969968004774], [-88.27531435302465, 42.10482467375462], [-88.27531435302465, 42.11470963555483], [-88.28504201783339, 42.11485493488009]]], "type": "Polygon"}, "id": "95", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804071389303406592"}, "type": "Feature"}, {"bbox": [-89.38905704247448, 38.32547702159428, -89.37958352573165, 38.336063479959456], "geometry": {"coordinates": [[[-89.38905704247448, 38.336063479959456], [-89.38905704247448, 38.32552654777911], [-89.37958352573165, 38.32547702159428], [-89.37958352573165, 38.33601394945541], [-89.38905704247448, 38.336063479959456]]], "type": "Polygon"}, "id": "96", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9833199376468541440"}, "type": "Feature"}, {"bbox": [-90.62989223354184, 41.42952217601816, -90.62041647426837, 41.43958443415428], "geometry": {"coordinates": [[[-90.62989223354184, 41.43953313583794], [-90.62989223354184, 41.42952217601816], [-90.62041647426837, 41.42957347209191], [-90.62041647426837, 41.43958443415428], [-90.62989223354184, 41.43953313583794]]], "type": "Polygon"}, "id": "97", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9791901582290321408"}, "type": "Feature"}, {"bbox": [-89.40799734620059, 40.14371743564212, -89.39852831614456, 40.15400346260075], "geometry": {"coordinates": [[[-89.40799734620059, 40.15400346260075], [-89.40799734620059, 40.14376604072837], [-89.39852831614456, 40.14371743564212], [-89.39852831614456, 40.15395485454471], [-89.40799734620059, 40.15400346260075]]], "type": "Polygon"}, "id": "98", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802885050616774656"}, "type": "Feature"}, {"bbox": [-90.55414898051674, 41.1991596949221, -90.54469117662514, 41.20925711724777], "geometry": {"coordinates": [[[-90.55414898051674, 41.209212165945864], [-90.55414898051674, 41.1991596949221], [-90.54469117662514, 41.19920464412182], [-90.54469117662514, 41.20925711724777], [-90.55414898051674, 41.209212165945864]]], "type": "Polygon"}, "id": "99", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9791249331376881664"}, "type": "Feature"}, {"bbox": [-87.9432836747886, 41.97052847908223, -87.93348025811581, 41.98061247472123], "geometry": {"coordinates": [[[-87.9432836747886, 41.98061247472123], [-87.9432836747886, 41.97070394300038], [-87.93348025811581, 41.97052847908223], [-87.93348025811581, 41.98043700437206], [-87.9432836747886, 41.98061247472123]]], "type": "Polygon"}, "id": "100", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804252808721989632"}, "type": "Feature"}, {"bbox": [-87.86479610285706, 41.790428959207944, -87.85497548307694, 41.80055258792689], "geometry": {"coordinates": [[[-87.86479610285706, 41.80055258792689], [-87.86479610285706, 41.79061130430351], [-87.85497548307694, 41.790428959207944], [-87.85497548307694, 41.800370235723484], [-87.86479610285706, 41.80055258792689]]], "type": "Polygon"}, "id": "101", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803854648073781248"}, "type": "Feature"}, {"bbox": [-88.33364769209874, 41.758417205413814, -88.32393091263926, 41.76850691288464], "geometry": {"coordinates": [[[-88.33364769209874, 41.76850691288464], [-88.33364769209874, 41.758558049311425], [-88.32393091263926, 41.758417205413814], [-88.32393091263926, 41.76836606343735], [-88.33364769209874, 41.76850691288464]]], "type": "Polygon"}, "id": "102", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804025553412423680"}, "type": "Feature"}, {"bbox": [-87.78617105409316, 38.41139267628086, -87.77633327357327, 38.42209685483884], "geometry": {"coordinates": [[[-87.78617105409316, 38.42209685483884], [-87.78617105409316, 38.41157823508636], [-87.77633327357327, 38.41139267628086], [-87.77633327357327, 38.42191128009459], [-87.78617105409316, 38.42209685483884]]], "type": "Polygon"}, "id": "103", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9831899135249219584"}, "type": "Feature"}, {"bbox": [-87.76649335095964, 41.67908393541564, -87.75665128692118, 41.68923619834253], "geometry": {"coordinates": [[[-87.76649335095964, 41.68923619834253], [-87.76649335095964, 41.67927499695563], [-87.75665128692118, 41.67908393541564], [-87.75665128692118, 41.68904512907845], [-87.76649335095964, 41.68923619834253]]], "type": "Polygon"}, "id": "104", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803839151831777280"}, "type": "Feature"}, {"bbox": [-87.74680708212769, 41.91726566219103, -87.73696073724966, 41.927376188428916], "geometry": {"coordinates": [[[-87.74680708212769, 41.927376188428916], [-87.74680708212769, 41.917458669818735], [-87.73696073724966, 41.91726566219103], [-87.73696073724966, 41.92718317359513], [-87.74680708212769, 41.927376188428916]]], "type": "Polygon"}, "id": "105", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804280193433468928"}, "type": "Feature"}, {"bbox": [-87.8746145745576, 41.88994221774668, -87.86479610285706, 41.9000468347568], "geometry": {"coordinates": [[[-87.8746145745576, 41.9000468347568], [-87.8746145745576, 41.89012375553047], [-87.86479610285706, 41.88994221774668], [-87.86479610285706, 41.89986529013069], [-87.8746145745576, 41.9000468347568]]], "type": "Polygon"}, "id": "106", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803855575786717184"}, "type": "Feature"}, {"bbox": [-88.27531435302465, 41.85696058881054, -88.2655845130296, 41.86703722773931], "geometry": {"coordinates": [[[-88.27531435302465, 41.86703722773931], [-88.27531435302465, 41.85710660444468], [-88.2655845130296, 41.85696058881054], [-88.2655845130296, 41.86689120653852], [-88.27531435302465, 41.86703722773931]]], "type": "Polygon"}, "id": "107", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804050842179862528"}, "type": "Feature"}, {"bbox": [-87.86479610285706, 41.869908204098905, -87.85497548307694, 41.88001732272736], "geometry": {"coordinates": [[[-87.86479610285706, 41.88001732272736], [-87.86479610285706, 41.8700906054067], [-87.85497548307694, 41.869908204098905], [-87.85497548307694, 41.879834914497444], [-87.86479610285706, 41.88001732272736]]], "type": "Polygon"}, "id": "108", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803855472707502080"}, "type": "Feature"}, {"bbox": [-88.46945353199519, 42.137089351773334, -88.45976731433737, 42.14709808252879], "geometry": {"coordinates": [[[-88.46945353199519, 42.14709808252879], [-88.46945353199519, 42.13721851890409], [-88.45976731433737, 42.137089351773334], [-88.45976731433737, 42.14696891093937], [-88.46945353199519, 42.14709808252879]]], "type": "Polygon"}, "id": "109", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804079154604277760"}, "type": "Feature"}, {"bbox": [-88.24611830999973, 41.89622887854213, -88.2363819482265, 41.906300797348344], "geometry": {"coordinates": [[[-88.24611830999973, 41.906300797348344], [-88.24611830999973, 41.89637748265652], [-88.2363819482265, 41.89622887854213], [-88.2363819482265, 41.9061521876442], [-88.24611830999973, 41.906300797348344]]], "type": "Polygon"}, "id": "110", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804052731965472768"}, "type": "Feature"}, {"bbox": [-87.99226844484863, 42.258002744948904, -87.98247580145672, 42.26802950347512], "geometry": {"coordinates": [[[-87.99226844484863, 42.26802950347512], [-87.99226844484863, 42.25817402123641], [-87.98247580145672, 42.258002744948904], [-87.98247580145672, 42.26785822154093], [-87.99226844484863, 42.26802950347512]]], "type": "Polygon"}, "id": "111", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804220991604260864"}, "type": "Feature"}, {"bbox": [-88.2655845130296, 41.75740743559112, -88.25585249847782, 41.76750307297875], "geometry": {"coordinates": [[[-88.2655845130296, 41.76750307297875], [-88.2655845130296, 41.75755424896363], [-88.25585249847782, 41.75740743559112], [-88.25585249847782, 41.767356253819536], [-88.2655845130296, 41.76750307297875]]], "type": "Polygon"}, "id": "112", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804048402638438400"}, "type": "Feature"}, {"bbox": [-88.35307471354942, 42.07615783758452, -88.34336229261021, 42.086187639588886], "geometry": {"coordinates": [[[-88.35307471354942, 42.086187639588886], [-88.35307471354942, 42.07629714750933], [-88.34336229261021, 42.07615783758452], [-88.34336229261021, 42.086048324746656], [-88.35307471354942, 42.086187639588886]]], "type": "Polygon"}, "id": "113", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804072969851371520"}, "type": "Feature"}, {"bbox": [-89.0657026962081, 41.16646693098496, -89.05615324239362, 41.17660224871199], "geometry": {"coordinates": [[[-89.0657026962081, 41.17660224871199], [-89.0657026962081, 41.16654449561968], [-89.05615324239362, 41.16646693098496], [-89.05615324239362, 41.17652468041617], [-89.0657026962081, 41.17660224871199]]], "type": "Polygon"}, "id": "114", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803183121347117056"}, "type": "Feature"}, {"bbox": [-70.36208916632927, 43.67495991023253, -70.34410516194998, 43.68543907221098], "geometry": {"coordinates": [[[-70.34410516194998, 43.68329391651671], [-70.35613332622616, 43.68543907221098], [-70.36208916632927, 43.67710378801193], [-70.35006405829805, 43.67495991023253], [-70.34410516194998, 43.68329391651671]]], "type": "Polygon"}, "id": "115", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.26746267417853, 44.03550435573305, -70.24928458235391, 44.04608085713173], "geometry": {"coordinates": [[[-70.24928458235391, 44.043901817854994], [-70.26143315674774, 44.04608085713173], [-70.26746267417853, 44.03768209571653], [-70.25531720381346, 44.03550435573305], [-70.24928458235391, 44.043901817854994]]], "type": "Polygon"}, "id": "116", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526595055558590464"}, "type": "Feature"}, {"bbox": [-70.36746278901097, 43.572694533961375, -70.34952590112334, 43.583147264006655], "geometry": {"coordinates": [[[-70.34952590112334, 43.581008872847285], [-70.361521752951, 43.583147264006655], [-70.36746278901097, 43.57483165180911], [-70.35546997880968, 43.572694533961375], [-70.34952590112334, 43.581008872847285]]], "type": "Polygon"}, "id": "117", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-68.61006946886032, 45.208631153905, -68.59077547510634, 45.21960189871381], "geometry": {"coordinates": [[[-68.59077547510634, 45.21712535193461], [-68.60341276065066, 45.21960189871381], [-68.61006946886032, 45.21110623782844], [-68.59743535483094, 45.208631153905], [-68.59077547510634, 45.21712535193461]]], "type": "Polygon"}, "id": "118", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525895869242540032"}, "type": "Feature"}, {"bbox": [-70.49815059592221, 43.46488987694355, -70.48030739041833, 43.47530715176986], "geometry": {"coordinates": [[[-70.48030739041833, 43.473192280231736], [-70.49225968230401, 43.47530715176986], [-70.49815059592221, 43.467003488433136], [-70.48620133719342, 43.46488987694355], [-70.48030739041833, 43.473192280231736]]], "type": "Polygon"}, "id": "119", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661576012070912"}, "type": "Feature"}, {"bbox": [-70.27348939860684, 44.02710808644018, -70.25531720381346, 44.03768209571653], "geometry": {"coordinates": [[[-70.25531720381346, 44.03550435573305], [-70.26746267417853, 44.03768209571653], [-70.27348939860684, 44.02928452788976], [-70.26134703137075, 44.02710808644018], [-70.25531720381346, 44.03550435573305]]], "type": "Polygon"}, "id": "120", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594677601468416"}, "type": "Feature"}, {"bbox": [-87.7271122529584, 41.8076642642381, -87.71726162992596, 41.81779650193908], "geometry": {"coordinates": [[[-87.7271122529584, 41.81779650193908], [-87.7271122529584, 41.80785895986152], [-87.71726162992596, 41.8076642642381], [-87.71726162992596, 41.817601798770404], [-87.7271122529584, 41.81779650193908]]], "type": "Polygon"}, "id": "121", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827916197330944"}, "type": "Feature"}, {"bbox": [-90.18696438127195, 38.956221386208824, -90.1775945949502, 38.96667216482252], "geometry": {"coordinates": [[[-90.18696438127195, 38.966657589673765], [-90.18696438127195, 38.956221386208824], [-90.1775945949502, 38.95623596022156], [-90.1775945949502, 38.96667216482252], [-90.18696438127195, 38.966657589673765]]], "type": "Polygon"}, "id": "122", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9790617730666201088"}, "type": "Feature"}, {"bbox": [-88.72052555583231, 41.323838226475736, -88.71089641367406, 41.3339740587514], "geometry": {"coordinates": [[[-88.72052555583231, 41.3339740587514], [-88.72052555583231, 41.32394527607702], [-88.71089641367406, 41.323838226475736], [-88.71089641367406, 41.33386700432131], [-88.72052555583231, 41.3339740587514]]], "type": "Polygon"}, "id": "123", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803962400213303296"}, "type": "Feature"}, {"bbox": [-88.41130343330468, 41.36007625993056, -88.40160410286578, 41.370231481898635], "geometry": {"coordinates": [[[-88.41130343330468, 41.370231481898635], [-88.41130343330468, 41.36021008914395], [-88.40160410286578, 41.36007625993056], [-88.40160410286578, 41.370097646713134], [-88.41130343330468, 41.370231481898635]]], "type": "Polygon"}, "id": "124", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803942059248189440"}, "type": "Feature"}, {"bbox": [-87.8746145745576, 41.89986529013069, -87.86479610285706, 41.909968090991555], "geometry": {"coordinates": [[[-87.8746145745576, 41.909968090991555], [-87.8746145745576, 41.9000468347568], [-87.86479610285706, 41.89986529013069], [-87.86479610285706, 41.909786539546154], [-87.8746145745576, 41.909968090991555]]], "type": "Polygon"}, "id": "125", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804254251831001088"}, "type": "Feature"}, {"bbox": [-88.00205893162546, 42.26802950347512, -87.99226844484863, 42.278053566736524], "geometry": {"coordinates": [[[-88.00205893162546, 42.278053566736524], [-88.00205893162546, 42.26819991399051], [-87.99226844484863, 42.26802950347512], [-87.99226844484863, 42.277883150624746], [-88.00205893162546, 42.278053566736524]]], "type": "Polygon"}, "id": "126", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804221403921121280"}, "type": "Feature"}, {"bbox": [-89.10387826355613, 42.25240586789317, -89.09433771003746, 42.26234015108377], "geometry": {"coordinates": [[[-89.10387826355613, 42.26234015108377], [-89.10387826355613, 42.25248053494715], [-89.09433771003746, 42.25240586789317], [-89.09433771003746, 42.262265481562], [-89.10387826355613, 42.26234015108377]]], "type": "Polygon"}, "id": "127", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802248845701152768"}, "type": "Feature"}, {"bbox": [-87.59888757741817, 41.7155337396274, -87.5890092122621, 41.72569371537253], "geometry": {"coordinates": [[[-87.59888757741817, 41.72569371537253], [-87.59888757741817, 41.71573991291186], [-87.5890092122621, 41.7155337396274], [-87.5890092122621, 41.72548753385162], [-87.59888757741817, 41.72569371537253]]], "type": "Polygon"}, "id": "128", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803815477972041728"}, "type": "Feature"}, {"bbox": [-88.28504201783339, 41.91666299994416, -88.27531435302465, 41.92672788296682], "geometry": {"coordinates": [[[-88.28504201783339, 41.92672788296682], [-88.28504201783339, 41.916808194291136], [-88.27531435302465, 41.91666299994416], [-88.27531435302465, 41.92658268319662], [-88.28504201783339, 41.92672788296682]]], "type": "Polygon"}, "id": "129", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804057542328844288"}, "type": "Feature"}, {"bbox": [-87.8746145745576, 41.080151208946816, -87.86479610285706, 41.09040168645928], "geometry": {"coordinates": [[[-87.8746145745576, 41.09040168645928], [-87.8746145745576, 41.08033211501335], [-87.86479610285706, 41.080151208946816], [-87.86479610285706, 41.090220771648845], [-87.8746145745576, 41.09040168645928]]], "type": "Polygon"}, "id": "130", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803706076565078016"}, "type": "Feature"}, {"bbox": [-88.0900761577495, 41.66499790303213, -88.08030510971854, 41.67512519908088], "geometry": {"coordinates": [[[-88.0900761577495, 41.67512519908088], [-88.0900761577495, 41.66516013127356], [-88.08030510971854, 41.66499790303213], [-88.08030510971854, 41.67496296425031], [-88.0900761577495, 41.67512519908088]]], "type": "Polygon"}, "id": "131", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803874576722034688"}, "type": "Feature"}, {"bbox": [-87.91386696735128, 42.26645652923274, -87.90405709457347, 42.27648840357699], "geometry": {"coordinates": [[[-87.91386696735128, 42.27648840357699], [-87.91386696735128, 42.26663480224339], [-87.90405709457347, 42.26645652923274], [-87.90405709457347, 42.276310124708374], [-87.91386696735128, 42.27648840357699]]], "type": "Polygon"}, "id": "132", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804217933587546112"}, "type": "Feature"}, {"bbox": [-87.73696073724966, 41.887308319061, -87.7271122529584, 41.89742516974384], "geometry": {"coordinates": [[[-87.73696073724966, 41.89742516974384], [-87.73696073724966, 41.88750218936545], [-87.7271122529584, 41.887308319061], [-87.7271122529584, 41.897231292126094], [-87.73696073724966, 41.89742516974384]]], "type": "Polygon"}, "id": "133", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803829324946604032"}, "type": "Feature"}, {"bbox": [-87.74680708212769, 41.7583377351469, -87.73696073724966, 41.768477276088426], "geometry": {"coordinates": [[[-87.74680708212769, 41.768477276088426], [-87.74680708212769, 41.75853062414262], [-87.73696073724966, 41.7583377351469], [-87.73696073724966, 41.76828437949384], [-87.74680708212769, 41.768477276088426]]], "type": "Polygon"}, "id": "134", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827263362301952"}, "type": "Feature"}, {"bbox": [-88.33364769209874, 42.05609022139629, -88.32393091263926, 42.0661253648819], "geometry": {"coordinates": [[[-88.33364769209874, 42.0661253648819], [-88.33364769209874, 42.05623122399025], [-88.32393091263926, 42.05609022139629], [-88.32393091263926, 42.065984357274466], [-88.33364769209874, 42.0661253648819]]], "type": "Polygon"}, "id": "135", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804084239845556224"}, "type": "Feature"}, {"bbox": [-87.7271122529584, 41.82753751338033, -87.71726162992596, 41.83766612591426], "geometry": {"coordinates": [[[-87.7271122529584, 41.83766612591426], [-87.7271122529584, 41.82773222406946], [-87.71726162992596, 41.82753751338033], [-87.71726162992596, 41.837471407729474], [-87.7271122529584, 41.83766612591426]]], "type": "Polygon"}, "id": "136", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803828672111575040"}, "type": "Feature"}, {"bbox": [-87.63837973188869, 41.8356790373994, -87.6285098905569, 41.845813756197856], "geometry": {"coordinates": [[[-87.63837973188869, 41.845813756197856], [-87.63837973188869, 41.83588174345603], [-87.6285098905569, 41.8356790373994], [-87.6285098905569, 41.84561104235948], [-87.63837973188869, 41.845813756197856]]], "type": "Polygon"}, "id": "137", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803822281200238592"}, "type": "Feature"}, {"bbox": [-88.13889893866535, 41.39605783126296, -88.12913871252172, 41.40622955487096], "geometry": {"coordinates": [[[-88.13889893866535, 41.40622955487096], [-88.13889893866535, 41.39621556426732], [-88.12913871252172, 41.39605783126296], [-88.12913871252172, 41.40607181490336], [-88.13889893866535, 41.40622955487096]]], "type": "Polygon"}, "id": "138", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803910998044704768"}, "type": "Feature"}, {"bbox": [-88.28504201783339, 41.90674149251865, -88.27531435302465, 41.916808194291136], "geometry": {"coordinates": [[[-88.28504201783339, 41.916808194291136], [-88.28504201783339, 41.90688668142397], [-88.27531435302465, 41.90674149251865], [-88.27531435302465, 41.91666299994416], [-88.28504201783339, 41.916808194291136]]], "type": "Polygon"}, "id": "139", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804057645408059392"}, "type": "Feature"}, {"bbox": [-87.73696073724966, 41.79791959817585, -87.7271122529584, 41.808052770772534], "geometry": {"coordinates": [[[-87.73696073724966, 41.808052770772534], [-87.73696073724966, 41.79811340155166], [-87.7271122529584, 41.79791959817585], [-87.7271122529584, 41.80785895986152], [-87.73696073724966, 41.808052770772534]]], "type": "Polygon"}, "id": "140", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803827984916807680"}, "type": "Feature"}, {"bbox": [-87.66797645722293, 41.91568971181364, -87.65811301590037, 41.92580727107673], "geometry": {"coordinates": [[[-87.66797645722293, 41.92580727107673], [-87.66797645722293, 41.91588981105403], [-87.65811301590037, 41.91568971181364], [-87.65811301590037, 41.925607164361686], [-87.66797645722293, 41.92580727107673]]], "type": "Polygon"}, "id": "141", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804286790503235584"}, "type": "Feature"}, {"bbox": [-87.77633327357327, 41.67927499695563, -87.76649335095964, 41.689426385499786], "geometry": {"coordinates": [[[-87.77633327357327, 41.689426385499786], [-87.77633327357327, 41.679465176424884], [-87.76649335095964, 41.67927499695563], [-87.76649335095964, 41.68923619834253], [-87.77633327357327, 41.689426385499786]]], "type": "Polygon"}, "id": "142", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803839254910992384"}, "type": "Feature"}, {"bbox": [-87.84515271587925, 41.47098260169623, -87.83532780192677, 41.48116577189473], "geometry": {"coordinates": [[[-87.84515271587925, 41.48116577189473], [-87.84515271587925, 41.47116646030911], [-87.83532780192677, 41.47098260169623], [-87.83532780192677, 41.480981905347655], [-87.84515271587925, 41.48116577189473]]], "type": "Polygon"}, "id": "143", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803794587251113984"}, "type": "Feature"}, {"bbox": [-87.73696073724966, 41.86745690636207, -87.7271122529584, 41.87757738666148], "geometry": {"coordinates": [[[-87.73696073724966, 41.87757738666148], [-87.73696073724966, 41.86765076196605], [-87.7271122529584, 41.86745690636207], [-87.7271122529584, 41.87738352369496], [-87.73696073724966, 41.87757738666148]]], "type": "Polygon"}, "id": "144", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803829393666080768"}, "type": "Feature"}, {"bbox": [-90.22446618849452, 38.51630918908356, -90.21508733841796, 38.52683373374019], "geometry": {"coordinates": [[[-90.22446618849452, 38.5268162030713], [-90.22446618849452, 38.51630918908356], [-90.21508733841796, 38.51632671827321], [-90.21508733841796, 38.52683373374019], [-90.22446618849452, 38.5268162030713]]], "type": "Polygon"}, "id": "145", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9788768214669328384"}, "type": "Feature"}, {"bbox": [-87.81567153641228, 41.72981842721184, -87.8058401861797, 41.73995727881415], "geometry": {"coordinates": [[[-87.81567153641228, 41.73995727881415], [-87.81567153641228, 41.73000512133019], [-87.8058401861797, 41.72981842721184], [-87.8058401861797, 41.73977057727151], [-87.81567153641228, 41.73995727881415]]], "type": "Polygon"}, "id": "146", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803837021527998464"}, "type": "Feature"}, {"bbox": [-68.05672810699515, 46.69321561298616, -68.036524077269, 46.70458231650252], "geometry": {"coordinates": [[[-68.036524077269, 46.701933289766], [-68.04968893840214, 46.70458231650252], [-68.05672810699515, 46.69586307284639], [-68.04356660687905, 46.69321561298616], [-68.036524077269, 46.701933289766]]], "type": "Polygon"}, "id": "147", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529487561413623808"}, "type": "Feature"}, {"bbox": [-87.69755397032972, 41.93612047121159, -87.68769693511395, 41.946231756532455], "geometry": {"coordinates": [[[-87.69755397032972, 41.946231756532455], [-87.69755397032972, 41.93631792173033], [-87.68769693511395, 41.93612047121159], [-87.68769693511395, 41.946034298689995], [-87.69755397032972, 41.946231756532455]]], "type": "Polygon"}, "id": "148", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804286343826636800"}, "type": "Feature"}, {"bbox": [-88.2363819482265, 41.876227341019714, -88.22664341379004, 41.886303746006774], "geometry": {"coordinates": [[[-88.2363819482265, 41.886303746006774], [-88.2363819482265, 41.876376790371715], [-88.22664341379004, 41.876227341019714], [-88.22664341379004, 41.88615429099458], [-88.2363819482265, 41.886303746006774]]], "type": "Polygon"}, "id": "149", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804053178642071552"}, "type": "Feature"}, {"bbox": [-87.8058401861797, 41.57014969047016, -87.79600669185112, 41.58031832327466], "geometry": {"coordinates": [[[-87.8058401861797, 41.58031832327466], [-87.8058401861797, 41.57033714202925], [-87.79600669185112, 41.57014969047016], [-87.79600669185112, 41.58013086387041], [-87.8058401861797, 41.58031832327466]]], "type": "Polygon"}, "id": "150", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803797129871753216"}, "type": "Feature"}, {"bbox": [-88.04119929957007, 41.97224388834571, -88.03141744575758, 41.98231923879402], "geometry": {"coordinates": [[[-88.04119929957007, 41.98231923879402], [-88.04119929957007, 41.972410644539195], [-88.03141744575758, 41.97224388834571], [-88.03141744575758, 41.98215247649209], [-88.04119929957007, 41.98231923879402]]], "type": "Polygon"}, "id": "151", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804246074213269504"}, "type": "Feature"}, {"bbox": [-88.13889893866535, 41.31588098957806, -88.12913871252172, 41.32606709178195], "geometry": {"coordinates": [[[-88.13889893866535, 41.32606709178195], [-88.13889893866535, 41.31603866613649], [-88.12913871252172, 41.31588098957806], [-88.12913871252172, 41.32590940809574], [-88.13889893866535, 41.32606709178195]]], "type": "Polygon"}, "id": "152", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803912372434239488"}, "type": "Feature"}, {"bbox": [-88.13889893866535, 41.40607181490336, -88.12913871252172, 41.41624173942695], "geometry": {"coordinates": [[[-88.13889893866535, 41.41624173942695], [-88.13889893866535, 41.40622955487096], [-88.12913871252172, 41.40607181490336], [-88.12913871252172, 41.416083992516626], [-88.13889893866535, 41.41624173942695]]], "type": "Polygon"}, "id": "153", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803911032404443136"}, "type": "Feature"}, {"bbox": [-87.65811301590037, 41.88572545128784, -87.64824744056286, 41.8958493376779], "geometry": {"coordinates": [[[-87.65811301590037, 41.8958493376779], [-87.65811301590037, 41.885926416755076], [-87.64824744056286, 41.88572545128784], [-87.64824744056286, 41.89564836462588], [-87.65811301590037, 41.8958493376779]]], "type": "Polygon"}, "id": "154", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803822727876837376"}, "type": "Feature"}, {"bbox": [-70.29777345248027, 44.031459483186346, -70.27960791924075, 44.042033114999434], "geometry": {"coordinates": [[[-70.27960791924075, 44.03985834880919], [-70.29175293738456, 44.042033114999434], [-70.29777345248027, 44.03363295231859], [-70.28563153951487, 44.031459483186346], [-70.27960791924075, 44.03985834880919]]], "type": "Polygon"}, "id": "155", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594471443038208"}, "type": "Feature"}, {"bbox": [-87.8746145745576, 41.85023170520081, -87.86479610285706, 41.8603435832379], "geometry": {"coordinates": [[[-87.8746145745576, 41.8603435832379], [-87.8746145745576, 41.85041321538474], [-87.86479610285706, 41.85023170520081], [-87.86479610285706, 41.8601620661194], [-87.8746145745576, 41.8603435832379]]], "type": "Polygon"}, "id": "156", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803855232189333504"}, "type": "Feature"}, {"bbox": [-88.28504201783339, 42.21345851473056, -88.27531435302465, 42.22346867580374], "geometry": {"coordinates": [[[-88.28504201783339, 42.22346867580374], [-88.28504201783339, 42.2136038638054], [-88.27531435302465, 42.21345851473056], [-88.27531435302465, 42.22332332185388], [-88.28504201783339, 42.22346867580374]]], "type": "Polygon"}, "id": "157", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804069018481459200"}, "type": "Feature"}, {"bbox": [-90.14013812684617, 38.73673506147661, -90.13077968164805, 38.74721760351259], "geometry": {"coordinates": [[[-90.14013812684617, 38.74720680331792], [-90.14013812684617, 38.73673506147661], [-90.13077968164805, 38.73674586079494], [-90.13077968164805, 38.74721760351259], [-90.14013812684617, 38.74720680331792]]], "type": "Polygon"}, "id": "158", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9790634223340617728"}, "type": "Feature"}, {"bbox": [-88.8551019279398, 42.25017910930375, -88.84550368607022, 42.260134521283284], "geometry": {"coordinates": [[[-88.8551019279398, 42.260134521283284], [-88.8551019279398, 42.2502749780697], [-88.84550368607022, 42.25017910930375], [-88.84550368607022, 42.26003864934628], [-88.8551019279398, 42.260134521283284]]], "type": "Polygon"}, "id": "159", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9802284442390102016"}, "type": "Feature"}, {"bbox": [-87.89424507107584, 39.32222329569876, -87.88443089751733, 39.33277225080909], "geometry": {"coordinates": [[[-87.89424507107584, 39.33277225080909], [-87.89424507107584, 39.322400604630005], [-87.88443089751733, 39.32222329569876], [-87.88443089751733, 39.33259492899798], [-87.89424507107584, 39.33277225080909]]], "type": "Polygon"}, "id": "160", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9832190368391626752"}, "type": "Feature"}, {"bbox": [-87.90405709457347, 41.890484201248356, -87.89424507107584, 41.900586209828184], "geometry": {"coordinates": [[[-87.90405709457347, 41.900586209828184], [-87.90405709457347, 41.89066311027541], [-87.89424507107584, 41.890484201248356], [-87.89424507107584, 41.90040729405905], [-87.90405709457347, 41.900586209828184]]], "type": "Polygon"}, "id": "161", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803856091182792704"}, "type": "Feature"}, {"bbox": [-87.68769693511395, 41.78699615760375, -87.67783776385303, 41.79713553244665], "geometry": {"coordinates": [[[-87.68769693511395, 41.79713553244665], [-87.68769693511395, 41.78719438208241], [-87.67783776385303, 41.78699615760375], [-87.67783776385303, 41.796937300232955], [-87.68769693511395, 41.79713553244665]]], "type": "Polygon"}, "id": "162", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803824274065063936"}, "type": "Feature"}, {"bbox": [-87.91386696735128, 41.930344568797096, -87.90405709457347, 41.9404384413033], "geometry": {"coordinates": [[[-87.91386696735128, 41.9404384413033], [-87.91386696735128, 41.930522629364354], [-87.90405709457347, 41.930344568797096], [-87.90405709457347, 41.94026037411762], [-87.91386696735128, 41.9404384413033]]], "type": "Polygon"}, "id": "163", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804253873873879040"}, "type": "Feature"}, {"bbox": [-90.14949884128114, 38.600437673928276, -90.14013812684617, 38.61094282366227], "geometry": {"coordinates": [[[-90.14949884128114, 38.61093128673739], [-90.14949884128114, 38.600437673928276], [-90.14013812684617, 38.60044920989397], [-90.14013812684617, 38.61094282366227], [-90.14949884128114, 38.61093128673739]]], "type": "Polygon"}, "id": "164", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9788764572537061376"}, "type": "Feature"}, {"bbox": [-87.73696073724966, 41.74819550754452, -87.7271122529584, 41.7583377351469], "geometry": {"coordinates": [[[-87.73696073724966, 41.7583377351469], [-87.73696073724966, 41.74838927287329], [-87.7271122529584, 41.74819550754452], [-87.7271122529584, 41.75814396215924], [-87.73696073724966, 41.7583377351469]]], "type": "Polygon"}, "id": "165", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9803826644887011328"}, "type": "Feature"}, {"bbox": [-88.32393091263926, 41.97672950961988, -88.3142119548568, 41.98678008084983], "geometry": {"coordinates": [[[-88.32393091263926, 41.98678008084983], [-88.32393091263926, 41.97687132332074], [-88.3142119548568, 41.97672950961988], [-88.3142119548568, 41.98663826196186], [-88.32393091263926, 41.98678008084983]]], "type": "Polygon"}, "id": "166", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804058573120995328"}, "type": "Feature"}, {"bbox": [-88.2655845130296, 42.21316525005031, -88.25585249847782, 42.223177112548086], "geometry": {"coordinates": [[[-88.2655845130296, 42.223177112548086], [-88.2655845130296, 42.213312310328725], [-88.25585249847782, 42.21316525005031], [-88.25585249847782, 42.22303004733675], [-88.2655845130296, 42.223177112548086]]], "type": "Polygon"}, "id": "167", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804068881042505728"}, "type": "Feature"}, {"bbox": [-88.2363819482265, 41.76691066408795, -88.22664341379004, 41.77700703743437], "geometry": {"coordinates": [[[-88.2363819482265, 41.77700703743437], [-88.2363819482265, 41.767060049922485], [-88.22664341379004, 41.76691066408795], [-88.22664341379004, 41.77685764573026], [-88.2363819482265, 41.77700703743437]]], "type": "Polygon"}, "id": "168", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804047852882624512"}, "type": "Feature"}, {"bbox": [-88.00205893162546, 41.961657786043936, -87.99226844484863, 41.97173840772098], "geometry": {"coordinates": [[[-88.00205893162546, 41.97173840772098], [-88.00205893162546, 41.96182801250006], [-87.99226844484863, 41.961657786043936], [-87.99226844484863, 41.97156817500616], [-88.00205893162546, 41.97173840772098]]], "type": "Polygon"}, "id": "169", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804250712777949184"}, "type": "Feature"}, {"bbox": [-88.28504201783339, 41.76764903767628, -88.27531435302465, 41.77774116481232], "geometry": {"coordinates": [[[-88.28504201783339, 41.77774116481232], [-88.28504201783339, 41.767794148460624], [-88.27531435302465, 41.76764903767628], [-88.27531435302465, 41.77759604832767], [-88.28504201783339, 41.77774116481232]]], "type": "Polygon"}, "id": "170", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804048711876083712"}, "type": "Feature"}, {"bbox": [-88.29476750682691, 41.797629738743055, -88.28504201783339, 41.807715575615376], "geometry": {"coordinates": [[[-88.29476750682691, 41.807715575615376], [-88.29476750682691, 41.797774013107066], [-88.28504201783339, 41.797629738743055], [-88.28504201783339, 41.807571295640074], [-88.29476750682691, 41.807715575615376]]], "type": "Polygon"}, "id": "171", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9804049467790327808"}, "type": "Feature"}, {"bbox": [-69.62224793313585, 44.57658573048905, -69.60359744719662, 44.58733778169667], "geometry": {"coordinates": [[[-69.60359744719662, 44.58503953719516], [-69.61596478490914, 44.58733778169667], [-69.62224793313585, 44.578882608850634], [-69.60988374107544, 44.57658573048905], [-69.60359744719662, 44.58503953719516]]], "type": "Polygon"}, "id": "172", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448923591311360"}, "type": "Feature"}, {"bbox": [-70.31362495495723, 43.59120964647835, -70.29566089721017, 43.60167035225082], "geometry": {"coordinates": [[[-70.29566089721017, 43.59952377941918], [-70.30766660610621, 43.60167035225082], [-70.31362495495723, 43.59335494160112], [-70.30162228737237, 43.59120964647835], [-70.29566089721017, 43.59952377941918]]], "type": "Polygon"}, "id": "173", "properties": {"__folium_color": "light gray", "s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654772783874048"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_c4af98399588b9f10f102bf4657a7ea0.addTo(feature_group_a2953805e09dd6fc1bc6774bdd4ee9df);
function geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_styler(feature) {
switch(feature.id) {
default:
return {"color": "LightCyan", "fillColor": "LightCyan", "fillOpacity": 0.5, "weight": 3};
}
}
function geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_70724fd8b1bdcc5de6e8da39480dbf3b.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_70724fd8b1bdcc5de6e8da39480dbf3b = L.geoJson(null, {
onEachFeature: geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_onEachFeature,
style: geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_styler,
pointToLayer: geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_pointToLayer,
});
function geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_add (data) {
geo_json_70724fd8b1bdcc5de6e8da39480dbf3b
.addData(data);
}
geo_json_70724fd8b1bdcc5de6e8da39480dbf3b_add({"bbox": [-70.51616346001833, 43.444062229927596, -69.59751942976837, 44.61731018474847], "features": [{"bbox": [-70.36816124508502, 43.68543907221098, -70.35017474667907, 43.69592053896991], "geometry": {"coordinates": [[[-70.35017474667907, 43.69377556359776], [-70.36220572365639, 43.69592053896991], [-70.36816124508502, 43.68758276964447], [-70.35613332622616, 43.68543907221098], [-70.35017474667907, 43.69377556359776]]], "type": "Polygon"}, "id": "0", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649550103642112"}, "type": "Feature"}, {"bbox": [-70.36208916632927, 43.67495991023253, -70.34410516194998, 43.68543907221098], "geometry": {"coordinates": [[[-70.34410516194998, 43.68329391651671], [-70.35613332622616, 43.68543907221098], [-70.36208916632927, 43.67710378801193], [-70.35006405829805, 43.67495991023253], [-70.34410516194998, 43.68329391651671]]], "type": "Polygon"}, "id": "1", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649481384165376"}, "type": "Feature"}, {"bbox": [-70.37411402795608, 43.67710378801193, -70.35613332622616, 43.68758276964447], "geometry": {"coordinates": [[[-70.35613332622616, 43.68543907221098], [-70.36816124508502, 43.68758276964447], [-70.37411402795608, 43.67924620825463], [-70.36208916632927, 43.67710378801193], [-70.35613332622616, 43.68543907221098]]], "type": "Polygon"}, "id": "2", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649515743903744"}, "type": "Feature"}, {"bbox": [-70.35613332622616, 43.68329391651671, -70.33814352527287, 43.69377556359776], "geometry": {"coordinates": [[[-70.33814352527287, 43.691629129240496], [-70.35017474667907, 43.69377556359776], [-70.35613332622616, 43.68543907221098], [-70.34410516194998, 43.68329391651671], [-70.33814352527287, 43.691629129240496]]], "type": "Polygon"}, "id": "3", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649447024427008"}, "type": "Feature"}, {"bbox": [-70.34410516194998, 43.681147302569855, -70.32611206101447, 43.691629129240496], "geometry": {"coordinates": [[[-70.32611206101447, 43.68948123590661], [-70.33814352527287, 43.691629129240496], [-70.34410516194998, 43.68329391651671], [-70.33207675383225, 43.681147302569855], [-70.32611206101447, 43.68948123590661]]], "type": "Polygon"}, "id": "4", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649412664688640"}, "type": "Feature"}, {"bbox": [-70.33217914663987, 43.69781637436695, -70.31417444523197, 43.70830317173693], "geometry": {"coordinates": [[[-70.31417444523197, 43.70615271738237], [-70.32621202442313, 43.70830317173693], [-70.33217914663987, 43.69996554783662], [-70.320144625357, 43.69781637436695], [-70.31417444523197, 43.70615271738237]]], "type": "Polygon"}, "id": "5", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526650031139979264"}, "type": "Feature"}, {"bbox": [-70.33814352527287, 43.68948123590661, -70.320144625357, 43.69996554783662], "geometry": {"coordinates": [[[-70.320144625357, 43.69781637436695], [-70.33217914663987, 43.69996554783662], [-70.33814352527287, 43.691629129240496], [-70.32611206101447, 43.68948123590661], [-70.320144625357, 43.69781637436695]]], "type": "Polygon"}, "id": "6", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526650065499717632"}, "type": "Feature"}, {"bbox": [-70.32621202442313, 43.70615271738237, -70.30820151901038, 43.716642000372495], "geometry": {"coordinates": [[[-70.30820151901038, 43.714490264383564], [-70.32024215699361, 43.716642000372495], [-70.32621202442313, 43.70830317173693], [-70.31417444523197, 43.70615271738237], [-70.30820151901038, 43.714490264383564]]], "type": "Polygon"}, "id": "7", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649859341287424"}, "type": "Feature"}, {"bbox": [-70.32024215699361, 43.714490264383564, -70.30222584506218, 43.7249820331735], "geometry": {"coordinates": [[[-70.30222584506218, 43.722829014800375], [-70.31426954272128, 43.7249820331735], [-70.32024215699361, 43.716642000372495], [-70.30820151901038, 43.714490264383564], [-70.30222584506218, 43.722829014800375]]], "type": "Polygon"}, "id": "8", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649893701025792"}, "type": "Feature"}, {"bbox": [-70.31426954272128, 43.722829014800375, -70.29624742175619, 43.73332326956936], "geometry": {"coordinates": [[[-70.29624742175619, 43.731168968061816], [-70.30829417997488, 43.73332326956936], [-70.31426954272128, 43.7249820331735], [-70.30222584506218, 43.722829014800375], [-70.29624742175619, 43.731168968061816]]], "type": "Polygon"}, "id": "9", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526626151121813504"}, "type": "Feature"}, {"bbox": [-70.29624742175619, 43.729013203964, -70.27821619249171, 43.73951012359608], "geometry": {"coordinates": [[[-70.27821619249171, 43.73735307488794], [-70.29026624746012, 43.73951012359608], [-70.29624742175619, 43.731168968061816], [-70.28420042723309, 43.729013203964], [-70.27821619249171, 43.73735307488794]]], "type": "Polygon"}, "id": "10", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526626082402336768"}, "type": "Feature"}, {"bbox": [-70.30222584506218, 43.72067453456205, -70.28420042723309, 43.731168968061816], "geometry": {"coordinates": [[[-70.28420042723309, 43.729013203964], [-70.29624742175619, 43.731168968061816], [-70.30222584506218, 43.722829014800375], [-70.29018191010192, 43.72067453456205], [-70.28420042723309, 43.729013203964]]], "type": "Polygon"}, "id": "11", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526626116762075136"}, "type": "Feature"}, {"bbox": [-70.29018191010192, 43.71851859246938, -70.27215319798731, 43.729013203964], "geometry": {"coordinates": [[[-70.27215319798731, 43.72685597728707], [-70.28420042723309, 43.729013203964], [-70.29018191010192, 43.72067453456205], [-70.27813773942124, 43.71851859246938], [-70.27215319798731, 43.72685597728707]]], "type": "Polygon"}, "id": "12", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526625738804953088"}, "type": "Feature"}, {"bbox": [-70.27813773942124, 43.71636118853383, -70.26010573560056, 43.72685597728707], "geometry": {"coordinates": [[[-70.26010573560056, 43.72469728804278], [-70.27215319798731, 43.72685597728707], [-70.27813773942124, 43.71851859246938], [-70.26609333460081, 43.71636118853383], [-70.26010573560056, 43.72469728804278]]], "type": "Polygon"}, "id": "13", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526625704445214720"}, "type": "Feature"}, {"bbox": [-70.26609333460081, 43.71420232276747, -70.24805804165453, 43.72469728804278], "geometry": {"coordinates": [[[-70.24805804165453, 43.72253713624348], [-70.26010573560056, 43.72469728804278], [-70.26609333460081, 43.71636118853383], [-70.25404869722134, 43.71420232276747], [-70.24805804165453, 43.72253713624348]]], "type": "Polygon"}, "id": "14", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526625601365999616"}, "type": "Feature"}, {"bbox": [-70.25404869722134, 43.71204199518296, -70.23601011773093, 43.72253713624348], "geometry": {"coordinates": [[[-70.23601011773093, 43.72037552190213], [-70.24805804165453, 43.72253713624348], [-70.25404869722134, 43.71420232276747], [-70.2420038288635, 43.71204199518296], [-70.23601011773093, 43.72037552190213]]], "type": "Polygon"}, "id": "15", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526625567006261248"}, "type": "Feature"}, {"bbox": [-70.26003659990806, 43.70370966755349, -70.2420038288635, 43.71420232276747], "geometry": {"coordinates": [[[-70.2420038288635, 43.71204199518296], [-70.25404869722134, 43.71420232276747], [-70.26003659990806, 43.70586870913265], [-70.24799478623864, 43.70370966755349], [-70.2420038288635, 43.71204199518296]]], "type": "Polygon"}, "id": "16", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526650477816578048"}, "type": "Feature"}, {"bbox": [-70.26602175134583, 43.695378539586514, -70.24799478623864, 43.70586870913265], "geometry": {"coordinates": [[[-70.24799478623864, 43.70370966755349], [-70.26003659990806, 43.70586870913265], [-70.26602175134583, 43.69753629591148], [-70.2539829914874, 43.695378539586514], [-70.24799478623864, 43.70370966755349]]], "type": "Polygon"}, "id": "17", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526650512176316416"}, "type": "Feature"}, {"bbox": [-70.2539829914874, 43.69321932290312, -70.23595274217102, 43.70370966755349], "geometry": {"coordinates": [[[-70.23595274217102, 43.701549164892796], [-70.24799478623864, 43.70370966755349], [-70.2539829914874, 43.695378539586514], [-70.24194400023154, 43.69321932290312], [-70.23595274217102, 43.701549164892796]]], "type": "Polygon"}, "id": "18", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526651920925589504"}, "type": "Feature"}, {"bbox": [-70.25996844623972, 43.68489068039691, -70.24194400023154, 43.695378539586514], "geometry": {"coordinates": [[[-70.24194400023154, 43.69321932290312], [-70.2539829914874, 43.695378539586514], [-70.25996844623972, 43.687048611854046], [-70.24793250691948, 43.68489068039691], [-70.24194400023154, 43.69321932290312]]], "type": "Polygon"}, "id": "19", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526651886565851136"}, "type": "Feature"}, {"bbox": [-70.38006407389526, 43.66876971156671, -70.36208916632927, 43.67924620825463], "geometry": {"coordinates": [[[-70.36208916632927, 43.67710378801193], [-70.37411402795608, 43.67924620825463], [-70.38006407389526, 43.6709108553661], [-70.36804226861412, 43.66876971156671], [-70.36208916632927, 43.67710378801193]]], "type": "Polygon"}, "id": "20", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526649069067304960"}, "type": "Feature"}, {"bbox": [-70.39221634024796, 43.68972500880959, -70.37423645462808, 43.70020611272788], "geometry": {"coordinates": [[[-70.37423645462808, 43.698064055349036], [-70.38626693801739, 43.70020611272788], [-70.39221634024796, 43.69186578969932], [-70.38018891695087, 43.68972500880959], [-70.37423645462808, 43.698064055349036]]], "type": "Polygon"}, "id": "21", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526638623706841088"}, "type": "Feature"}, {"bbox": [-70.38018891695087, 43.68758276964447, -70.36220572365639, 43.698064055349036], "geometry": {"coordinates": [[[-70.36220572365639, 43.69592053896991], [-70.37423645462808, 43.698064055349036], [-70.38018891695087, 43.68972500880959], [-70.36816124508502, 43.68758276964447], [-70.36220572365639, 43.69592053896991]]], "type": "Polygon"}, "id": "22", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526638589347102720"}, "type": "Feature"}, {"bbox": [-70.38613864160374, 43.67924620825463, -70.36816124508502, 43.68972500880959], "geometry": {"coordinates": [[[-70.36816124508502, 43.68758276964447], [-70.38018891695087, 43.68972500880959], [-70.38613864160374, 43.681387170953315], [-70.37411402795608, 43.67924620825463], [-70.36816124508502, 43.68758276964447]]], "type": "Polygon"}, "id": "23", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526638692426317824"}, "type": "Feature"}, {"bbox": [-70.37957503574587, 43.59360230006803, -70.3616331924049, 43.60405964165373], "geometry": {"coordinates": [[[-70.3616331924049, 43.60192160508116], [-70.3736346357104, 43.60405964165373], [-70.37957503574587, 43.59573906327874], [-70.36757663778526, 43.59360230006803], [-70.3616331924049, 43.60192160508116]]], "type": "Polygon"}, "id": "24", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647419799863296"}, "type": "Feature"}, {"bbox": [-70.36757663778526, 43.591464085850596, -70.34963150111012, 43.60192160508116], "geometry": {"coordinates": [[[-70.34963150111012, 43.59978211678127], [-70.3616331924049, 43.60192160508116], [-70.36757663778526, 43.59360230006803], [-70.35557799085561, 43.591464085850596], [-70.34963150111012, 43.59978211678127]]], "type": "Polygon"}, "id": "25", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647454159601664"}, "type": "Feature"}, {"bbox": [-70.39157318317173, 43.59573906327874, -70.3736346357104, 43.60619622649155], "geometry": {"coordinates": [[[-70.3736346357104, 43.60405964165373], [-70.38563582945996, 43.60619622649155], [-70.39157318317173, 43.59787437547557], [-70.37957503574587, 43.59573906327874], [-70.3736346357104, 43.60405964165373]]], "type": "Polygon"}, "id": "26", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647248001171456"}, "type": "Feature"}, {"bbox": [-70.35557799085561, 43.589324420634206, -70.3376295633928, 43.59978211678127], "geometry": {"coordinates": [[[-70.3376295633928, 43.59764117676212], [-70.34963150111012, 43.59978211678127], [-70.35557799085561, 43.591464085850596], [-70.3435790965226, 43.589324420634206], [-70.3376295633928, 43.59764117676212]]], "type": "Polygon"}, "id": "27", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647625958293504"}, "type": "Feature"}, {"bbox": [-70.36746278901097, 43.572694533961375, -70.34952590112334, 43.583147264006655], "geometry": {"coordinates": [[[-70.34952590112334, 43.581008872847285], [-70.361521752951, 43.583147264006655], [-70.36746278901097, 43.57483165180911], [-70.35546997880968, 43.572694533961375], [-70.34952590112334, 43.581008872847285]]], "type": "Polygon"}, "id": "28", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657865160327168"}, "type": "Feature"}, {"bbox": [-70.361521752951, 43.581008872847285, -70.3435790965226, 43.591464085850596], "geometry": {"coordinates": [[[-70.3435790965226, 43.589324420634206], [-70.35557799085561, 43.591464085850596], [-70.361521752951, 43.583147264006655], [-70.34952590112334, 43.581008872847285], [-70.3435790965226, 43.589324420634206]]], "type": "Polygon"}, "id": "29", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647522879078400"}, "type": "Feature"}, {"bbox": [-70.35546997880968, 43.5705559665623, -70.3375298024775, 43.581008872847285], "geometry": {"coordinates": [[[-70.3375298024775, 43.57886903141706], [-70.34952590112334, 43.581008872847285], [-70.35546997880968, 43.572694533961375], [-70.34347692081093, 43.5705559665623], [-70.3375298024775, 43.57886903141706]]], "type": "Polygon"}, "id": "30", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657830800588800"}, "type": "Feature"}, {"bbox": [-70.36141133119516, 43.56224411042252, -70.34347692081093, 43.572694533961375], "geometry": {"coordinates": [[[-70.34347692081093, 43.5705559665623], [-70.35546997880968, 43.572694533961375], [-70.36141133119516, 43.56438140453572], [-70.34942131296573, 43.56224411042252], [-70.34347692081093, 43.5705559665623]]], "type": "Polygon"}, "id": "31", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657933879803904"}, "type": "Feature"}, {"bbox": [-70.34942131296573, 43.56010536748532, -70.3314836165784, 43.5705559665623], "geometry": {"coordinates": [[[-70.3314836165784, 43.56841594962027], [-70.34347692081093, 43.5705559665623], [-70.34942131296573, 43.56224411042252], [-70.33743104752352, 43.56010536748532], [-70.3314836165784, 43.56841594962027]]], "type": "Polygon"}, "id": "32", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657762081112064"}, "type": "Feature"}, {"bbox": [-70.35536298055437, 43.55179599387895, -70.33743104752352, 43.56224411042252], "geometry": {"coordinates": [[[-70.33743104752352, 43.56010536748532], [-70.34942131296573, 43.56224411042252], [-70.35536298055437, 43.55393346355648], [-70.34337575302597, 43.55179599387895], [-70.33743104752352, 43.56010536748532]]], "type": "Polygon"}, "id": "33", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657315404513280"}, "type": "Feature"}, {"bbox": [-70.36734995989225, 43.55393346355648, -70.34942131296573, 43.56438140453572], "geometry": {"coordinates": [[[-70.34942131296573, 43.56224411042252], [-70.36141133119516, 43.56438140453572], [-70.36734995989225, 43.5560694851287], [-70.35536298055437, 43.55393346355648], [-70.34942131296573, 43.56224411042252]]], "type": "Polygon"}, "id": "34", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657968239542272"}, "type": "Feature"}, {"bbox": [-70.34337575302597, 43.54965707610453, -70.32544053643124, 43.56010536748532], "geometry": {"coordinates": [[[-70.32544053643124, 43.55796517573281], [-70.33743104752352, 43.56010536748532], [-70.34337575302597, 43.55179599387895], [-70.33138827886873, 43.54965707610453], [-70.32544053643124, 43.55796517573281]]], "type": "Polygon"}, "id": "35", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657349764251648"}, "type": "Feature"}, {"bbox": [-70.34931773469708, 43.54135018481807, -70.33138827886873, 43.55179599387895], "geometry": {"coordinates": [[[-70.33138827886873, 43.54965707610453], [-70.34337575302597, 43.55179599387895], [-70.34931773469708, 43.54348782935946], [-70.3373332965996, 43.54135018481807], [-70.33138827886873, 43.54965707610453]]], "type": "Polygon"}, "id": "36", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657384123990016"}, "type": "Feature"}, {"bbox": [-70.36130192518824, 43.54348782935946, -70.34337575302597, 43.55393346355648], "geometry": {"coordinates": [[[-70.34337575302597, 43.55179599387895], [-70.35536298055437, 43.55393346355648], [-70.36130192518824, 43.54562402652211], [-70.34931773469708, 43.54348782935946], [-70.34337575302597, 43.55179599387895]]], "type": "Polygon"}, "id": "37", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657281044774912"}, "type": "Feature"}, {"bbox": [-70.3373332965996, 43.539211092906676, -70.31940055964436, 43.54965707610453], "geometry": {"coordinates": [[[-70.31940055964436, 43.54751671024223], [-70.33138827886873, 43.54965707610453], [-70.3373332965996, 43.54135018481807], [-70.32534861245648, 43.539211092906676], [-70.31940055964436, 43.54751671024223]]], "type": "Polygon"}, "id": "38", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657418483728384"}, "type": "Feature"}, {"bbox": [-70.34963150111012, 43.59764117676212, -70.33167730011819, 43.60810135623816], "geometry": {"coordinates": [[[-70.33167730011819, 43.60595914067012], [-70.3436822820988, 43.60810135623816], [-70.34963150111012, 43.59978211678127], [-70.3376295633928, 43.59764117676212], [-70.33167730011819, 43.60595914067012]]], "type": "Polygon"}, "id": "39", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647660318031872"}, "type": "Feature"}, {"bbox": [-70.3376295633928, 43.59549878503231, -70.31967207426477, 43.60595914067012], "geometry": {"coordinates": [[[-70.31967207426477, 43.60381547267117], [-70.33167730011819, 43.60595914067012], [-70.3376295633928, 43.59764117676212], [-70.32562738081961, 43.59549878503231], [-70.31967207426477, 43.60381547267117]]], "type": "Polygon"}, "id": "40", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647694677770240"}, "type": "Feature"}, {"bbox": [-70.37351735639578, 43.583147264006655, -70.35557799085561, 43.59360230006803], "geometry": {"coordinates": [[[-70.35557799085561, 43.591464085850596], [-70.36757663778526, 43.59360230006803], [-70.37351735639578, 43.58528420488711], [-70.361521752951, 43.583147264006655], [-70.35557799085561, 43.591464085850596]]], "type": "Polygon"}, "id": "41", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647488519340032"}, "type": "Feature"}, {"bbox": [-70.37945534985111, 43.57483165180911, -70.361521752951, 43.58528420488711], "geometry": {"coordinates": [[[-70.361521752951, 43.583147264006655], [-70.37351735639578, 43.58528420488711], [-70.37945534985111, 43.576967320097715], [-70.36746278901097, 43.57483165180911], [-70.361521752951, 43.583147264006655]]], "type": "Polygon"}, "id": "42", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526658311836925952"}, "type": "Feature"}, {"bbox": [-70.38539061976485, 43.56651724981682, -70.36746278901097, 43.576967320097715], "geometry": {"coordinates": [[[-70.36746278901097, 43.57483165180911], [-70.37945534985111, 43.576967320097715], [-70.38539061976485, 43.56865164625832], [-70.3734011006491, 43.56651724981682], [-70.36746278901097, 43.57483165180911]]], "type": "Polygon"}, "id": "43", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526658277477187584"}, "type": "Feature"}, {"bbox": [-70.3734011006491, 43.56438140453572, -70.35546997880968, 43.57483165180911], "geometry": {"coordinates": [[[-70.35546997880968, 43.572694533961375], [-70.36746278901097, 43.57483165180911], [-70.3734011006491, 43.56651724981682], [-70.36141133119516, 43.56438140453572], [-70.35546997880968, 43.572694533961375]]], "type": "Polygon"}, "id": "44", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657899520065536"}, "type": "Feature"}, {"bbox": [-70.37933668947785, 43.5560694851287, -70.36141133119516, 43.56651724981682], "geometry": {"coordinates": [[[-70.36141133119516, 43.56438140453572], [-70.3734011006491, 43.56651724981682], [-70.37933668947785, 43.55820405858782], [-70.36734995989225, 43.5560694851287], [-70.36141133119516, 43.56438140453572]]], "type": "Polygon"}, "id": "45", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526658071318757376"}, "type": "Feature"}, {"bbox": [-70.39132316774949, 43.55820405858782, -70.3734011006491, 43.56865164625832], "geometry": {"coordinates": [[[-70.3734011006491, 43.56651724981682], [-70.38539061976485, 43.56865164625832], [-70.39132316774949, 43.56033718392659], [-70.37933668947785, 43.55820405858782], [-70.3734011006491, 43.56651724981682]]], "type": "Polygon"}, "id": "46", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526658105678495744"}, "type": "Feature"}, {"bbox": [-70.49815059592221, 43.46488987694355, -70.48030739041833, 43.47530715176986], "geometry": {"coordinates": [[[-70.48030739041833, 43.473192280231736], [-70.49225968230401, 43.47530715176986], [-70.49815059592221, 43.467003488433136], [-70.48620133719342, 43.46488987694355], [-70.48030739041833, 43.473192280231736]]], "type": "Polygon"}, "id": "47", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661576012070912"}, "type": "Feature"}, {"bbox": [-70.50403881112337, 43.45658869381656, -70.48620133719342, 43.467003488433136], "geometry": {"coordinates": [[[-70.48620133719342, 43.46488987694355], [-70.49815059592221, 43.467003488433136], [-70.50403881112337, 43.458701045996435], [-70.49209258466738, 43.45658869381656], [-70.48620133719342, 43.46488987694355]]], "type": "Polygon"}, "id": "48", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661541652332544"}, "type": "Feature"}, {"bbox": [-70.49209258466738, 43.454474902835955, -70.47425181088876, 43.46488987694355], "geometry": {"coordinates": [[[-70.47425181088876, 43.46277482593654], [-70.48620133719342, 43.46488987694355], [-70.49209258466738, 43.45658869381656], [-70.48014608967883, 43.454474902835955], [-70.47425181088876, 43.46277482593654]]], "type": "Polygon"}, "id": "49", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661644731547648"}, "type": "Feature"}, {"bbox": [-70.50421170602093, 43.47530715176986, -70.48636606867034, 43.485726726832866], "geometry": {"coordinates": [[[-70.48636606867034, 43.48361203546068], [-70.49832112738638, 43.485726726832866], [-70.50421170602093, 43.477420583071805], [-70.49225968230401, 43.47530715176986], [-70.48636606867034, 43.48361203546068]]], "type": "Polygon"}, "id": "50", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661369853640704"}, "type": "Feature"}, {"bbox": [-70.51009958552534, 43.467003488433136, -70.49225968230401, 43.477420583071805], "geometry": {"coordinates": [[[-70.49225968230401, 43.47530715176986], [-70.50421170602093, 43.477420583071805], [-70.51009958552534, 43.46911566040379], [-70.49815059592221, 43.467003488433136], [-70.49225968230401, 43.47530715176986]]], "type": "Polygon"}, "id": "51", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661404213379072"}, "type": "Feature"}, {"bbox": [-70.48636606867034, 43.48149590313479, -70.46851139257014, 43.49191813895886], "geometry": {"coordinates": [[[-70.46851139257014, 43.489800745105654], [-70.48046975342176, 43.49191813895886], [-70.48636606867034, 43.48361203546068], [-70.47441074274373, 43.48149590313479], [-70.46851139257014, 43.489800745105654]]], "type": "Polygon"}, "id": "52", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661232414687232"}, "type": "Feature"}, {"bbox": [-70.49832112738638, 43.48361203546068, -70.48046975342176, 43.494034091140605], "geometry": {"coordinates": [[[-70.48046975342176, 43.49191813895886], [-70.49242784802219, 43.494034091140605], [-70.49832112738638, 43.485726726832866], [-70.48636606867034, 43.48361203546068], [-70.48046975342176, 43.49191813895886]]], "type": "Polygon"}, "id": "53", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661266774425600"}, "type": "Feature"}, {"bbox": [-70.51027591734005, 43.485726726832866, -70.49242784802219, 43.496148601649146], "geometry": {"coordinates": [[[-70.49242784802219, 43.494034091140605], [-70.5043856748187, 43.496148601649146], [-70.51027591734005, 43.487839977249905], [-70.49832112738638, 43.485726726832866], [-70.49242784802219, 43.494034091140605]]], "type": "Polygon"}, "id": "54", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661301134163968"}, "type": "Feature"}, {"bbox": [-70.51616346001833, 43.477420583071805, -70.49832112738638, 43.487839977249905], "geometry": {"coordinates": [[[-70.49832112738638, 43.485726726832866], [-70.51027591734005, 43.487839977249905], [-70.51616346001833, 43.4795325741364], [-70.50421170602093, 43.477420583071805], [-70.49832112738638, 43.485726726832866]]], "type": "Polygon"}, "id": "55", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661335493902336"}, "type": "Feature"}, {"bbox": [-70.49242784802219, 43.49191813895886, -70.4745707349577, 43.50234267544782], "geometry": {"coordinates": [[[-70.4745707349577, 43.50022546171685], [-70.48653186632785, 43.50234267544782], [-70.49242784802219, 43.494034091140605], [-70.48046975342176, 43.49191813895886], [-70.4745707349577, 43.50022546171685]]], "type": "Polygon"}, "id": "56", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526660957536780288"}, "type": "Feature"}, {"bbox": [-70.48046975342176, 43.489800745105654, -70.462609338297, 43.50022546171685], "geometry": {"coordinates": [[[-70.462609338297, 43.49810680559637], [-70.4745707349577, 43.50022546171685], [-70.48046975342176, 43.49191813895886], [-70.46851139257014, 43.489800745105654], [-70.462609338297, 43.49810680559637]]], "type": "Polygon"}, "id": "57", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526660991896518656"}, "type": "Feature"}, {"bbox": [-70.4745707349577, 43.49810680559637, -70.45670457832267, 43.508534003186284], "geometry": {"coordinates": [[[-70.45670457832267, 43.50641408405823], [-70.46866901167651, 43.508534003186284], [-70.4745707349577, 43.50022546171685], [-70.462609338297, 43.49810680559637], [-70.45670457832267, 43.50641408405823]]], "type": "Polygon"}, "id": "58", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661026256257024"}, "type": "Feature"}, {"bbox": [-70.462609338297, 43.495986707089, -70.44473988219492, 43.50641408405823], "geometry": {"coordinates": [[[-70.44473988219492, 43.50429272182525], [-70.45670457832267, 43.50641408405823], [-70.462609338297, 43.49810680559637], [-70.45064767789952, 43.495986707089], [-70.44473988219492, 43.50429272182525]]], "type": "Polygon"}, "id": "59", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661060615995392"}, "type": "Feature"}, {"bbox": [-70.45064767789952, 43.49386516619792, -70.43277492484805, 43.50429272182525], "geometry": {"coordinates": [[[-70.43277492484805, 43.50216991649083], [-70.44473988219492, 43.50429272182525], [-70.45064767789952, 43.495986707089], [-70.43868575531909, 43.49386516619792], [-70.43277492484805, 43.50216991649083]]], "type": "Polygon"}, "id": "60", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526660407780966400"}, "type": "Feature"}, {"bbox": [-70.46851139257014, 43.48768190958331, -70.45064767789952, 43.49810680559637], "geometry": {"coordinates": [[[-70.45064767789952, 43.495986707089], [-70.462609338297, 43.49810680559637], [-70.46851139257014, 43.489800745105654], [-70.45655276702013, 43.48768190958331], [-70.45064767789952, 43.495986707089]]], "type": "Polygon"}, "id": "61", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661094975733760"}, "type": "Feature"}, {"bbox": [-70.45655276702013, 43.48556163239474, -70.43868575531909, 43.495986707089], "geometry": {"coordinates": [[[-70.43868575531909, 43.49386516619792], [-70.45064767789952, 43.495986707089], [-70.45655276702013, 43.48768190958331], [-70.4445938783245, 43.48556163239474], [-70.43868575531909, 43.49386516619792]]], "type": "Polygon"}, "id": "62", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526660373421228032"}, "type": "Feature"}, {"bbox": [-70.4445938783245, 43.48343991354345, -70.42672357210941, 43.49386516619792], "geometry": {"coordinates": [[[-70.42672357210941, 43.49174218292691], [-70.43868575531909, 43.49386516619792], [-70.4445938783245, 43.48556163239474], [-70.43263472803606, 43.48343991354345], [-70.42672357210941, 43.49174218292691]]], "type": "Polygon"}, "id": "63", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526660339061489664"}, "type": "Feature"}, {"bbox": [-70.43263472803606, 43.481316753033546, -70.41476112982433, 43.49174218292691], "geometry": {"coordinates": [[[-70.41476112982433, 43.489617757280364], [-70.42672357210941, 43.49174218292691], [-70.43263472803606, 43.48343991354345], [-70.42067531770762, 43.481316753033546], [-70.41476112982433, 43.489617757280364]]], "type": "Polygon"}, "id": "64", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526660235982274560"}, "type": "Feature"}, {"bbox": [-70.42067531770762, 43.47919215086971, -70.40279843001763, 43.489617757280364], "geometry": {"coordinates": [[[-70.40279843001763, 43.48749188926324], [-70.41476112982433, 43.489617757280364], [-70.42067531770762, 43.481316753033546], [-70.40871564889196, 43.47919215086971], [-70.40279843001763, 43.48749188926324]]], "type": "Polygon"}, "id": "65", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526660201622536192"}, "type": "Feature"}, {"bbox": [-70.42658679796745, 43.47089362729241, -70.40871564889196, 43.481316753033546], "geometry": {"coordinates": [[[-70.40871564889196, 43.47919215086971], [-70.42067531770762, 43.481316753033546], [-70.42658679796745, 43.47301696434421], [-70.41463015926495, 43.47089362729241], [-70.40871564889196, 43.47919215086971]]], "type": "Polygon"}, "id": "66", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526662022688669696"}, "type": "Feature"}, {"bbox": [-70.41463015926495, 43.46876884930807, -70.39675572314188, 43.47919215086971], "geometry": {"coordinates": [[[-70.39675572314188, 43.47706610705721], [-70.40871564889196, 43.47919215086971], [-70.41463015926495, 43.47089362729241], [-70.40267326266267, 43.46876884930807], [-70.39675572314188, 43.47706610705721]]], "type": "Polygon"}, "id": "67", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526662744243175424"}, "type": "Feature"}, {"bbox": [-70.40267326266267, 43.46664263039677, -70.3847955420102, 43.47706610705721], "geometry": {"coordinates": [[[-70.3847955420102, 43.474938621601936], [-70.39675572314188, 43.47706610705721], [-70.40267326266267, 43.46876884930807], [-70.39071610971247, 43.46664263039677], [-70.3847955420102, 43.474938621601936]]], "type": "Polygon"}, "id": "68", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526662641163960320"}, "type": "Feature"}, {"bbox": [-70.40858809440599, 43.45834785307505, -70.39071610971247, 43.46876884930807], "geometry": {"coordinates": [[[-70.39071610971247, 43.46664263039677], [-70.40267326266267, 43.46876884930807], [-70.40858809440599, 43.460472806183766], [-70.39663396876185, 43.45834785307505], [-70.39071610971247, 43.46664263039677]]], "type": "Polygon"}, "id": "69", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526662675523698688"}, "type": "Feature"}, {"bbox": [-70.38467958735552, 43.454093626247655, -70.36680104097556, 43.46451497056471], "geometry": {"coordinates": [[[-70.36680104097556, 43.46238586981865], [-70.37875870196618, 43.46451497056471], [-70.38467958735552, 43.45622145976085], [-70.37272495173784, 43.454093626247655], [-70.36680104097556, 43.46238586981865]]], "type": "Polygon"}, "id": "70", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526662538084745216"}, "type": "Feature"}, {"bbox": [-70.39663396876185, 43.45622145976085, -70.37875870196618, 43.46664263039677], "geometry": {"coordinates": [[[-70.37875870196618, 43.46451497056471], [-70.39071610971247, 43.46664263039677], [-70.39663396876185, 43.45834785307505], [-70.38467958735552, 43.45622145976085], [-70.37875870196618, 43.46451497056471]]], "type": "Polygon"}, "id": "71", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526662503725006848"}, "type": "Feature"}, {"bbox": [-70.46819932770654, 43.45024300448041, -70.45035196175111, 43.46065833541419], "geometry": {"coordinates": [[[-70.45035196175111, 43.45854040537915], [-70.46230201855805, 43.46065833541419], [-70.46819932770654, 43.45235967305644], [-70.45625230029934, 43.45024300448041], [-70.45035196175111, 43.45854040537915]]], "type": "Polygon"}, "id": "72", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661713451024384"}, "type": "Feature"}, {"bbox": [-70.48603766988221, 43.444062229927596, -70.46819932770654, 43.454474902835955], "geometry": {"coordinates": [[[-70.46819932770654, 43.45235967305644], [-70.48014608967883, 43.454474902835955], [-70.48603766988221, 43.446176199703274], [-70.47409393738674, 43.444062229927596], [-70.46819932770654, 43.45235967305644]]], "type": "Polygon"}, "id": "73", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526672639847825408"}, "type": "Feature"}, {"bbox": [-70.4979811344375, 43.446176199703274, -70.48014608967883, 43.45658869381656], "geometry": {"coordinates": [[[-70.48014608967883, 43.454474902835955], [-70.49209258466738, 43.45658869381656], [-70.4979811344375, 43.448288731396204], [-70.48603766988221, 43.446176199703274], [-70.48014608967883, 43.454474902835955]]], "type": "Polygon"}, "id": "74", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526672674207563776"}, "type": "Feature"}, {"bbox": [-70.50992432950476, 43.448288731396204, -70.49209258466738, 43.458701045996435], "geometry": {"coordinates": [[[-70.49209258466738, 43.45658869381656], [-70.50403881112337, 43.458701045996435], [-70.50992432950476, 43.45039982500487], [-70.4979811344375, 43.448288731396204], [-70.49209258466738, 43.45658869381656]]], "type": "Polygon"}, "id": "75", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526672708567302144"}, "type": "Feature"}, {"bbox": [-70.48014608967883, 43.45235967305644, -70.46230201855805, 43.46277482593654], "geometry": {"coordinates": [[[-70.46230201855805, 43.46065833541419], [-70.47425181088876, 43.46277482593654], [-70.48014608967883, 43.454474902835955], [-70.46819932770654, 43.45235967305644], [-70.46230201855805, 43.46065833541419]]], "type": "Polygon"}, "id": "76", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661679091286016"}, "type": "Feature"}, {"bbox": [-70.51598476749797, 43.458701045996435, -70.49815059592221, 43.46911566040379], "geometry": {"coordinates": [[[-70.49815059592221, 43.467003488433136], [-70.51009958552534, 43.46911566040379], [-70.51598476749797, 43.46081195937438], [-70.50403881112337, 43.458701045996435], [-70.49815059592221, 43.467003488433136]]], "type": "Polygon"}, "id": "77", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526661507292594176"}, "type": "Feature"}, {"bbox": [-70.29777345248027, 44.031459483186346, -70.27960791924075, 44.042033114999434], "geometry": {"coordinates": [[[-70.27960791924075, 44.03985834880919], [-70.29175293738456, 44.042033114999434], [-70.29777345248027, 44.03363295231859], [-70.28563153951487, 44.031459483186346], [-70.27960791924075, 44.03985834880919]]], "type": "Polygon"}, "id": "78", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594471443038208"}, "type": "Feature"}, {"bbox": [-70.3099151358885, 44.03363295231859, -70.29175293738456, 44.04420639427622], "geometry": {"coordinates": [[[-70.29175293738456, 44.042033114999434], [-70.30389772699436, 44.04420639427622], [-70.3099151358885, 44.03580493527578], [-70.29777345248027, 44.03363295231859], [-70.29175293738456, 44.042033114999434]]], "type": "Polygon"}, "id": "79", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594505802776576"}, "type": "Feature"}, {"bbox": [-70.29165236935725, 44.02088815424577, -70.27348939860684, 44.031459483186346], "geometry": {"coordinates": [[[-70.27348939860684, 44.02928452788976], [-70.28563153951487, 44.031459483186346], [-70.29165236935725, 44.023061812505], [-70.27951333170229, 44.02088815424577], [-70.27348939860684, 44.02928452788976]]], "type": "Polygon"}, "id": "80", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594608881991680"}, "type": "Feature"}, {"bbox": [-70.28563153951487, 44.02928452788976, -70.26746267417853, 44.03985834880919], "geometry": {"coordinates": [[[-70.26746267417853, 44.03768209571653], [-70.27960791924075, 44.03985834880919], [-70.28563153951487, 44.031459483186346], [-70.27348939860684, 44.02928452788976], [-70.26746267417853, 44.03768209571653]]], "type": "Polygon"}, "id": "81", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594643241730048"}, "type": "Feature"}, {"bbox": [-70.27951333170229, 44.01871301057108, -70.26134703137075, 44.02928452788976], "geometry": {"coordinates": [[[-70.26134703137075, 44.02710808644018], [-70.27348939860684, 44.02928452788976], [-70.27951333170229, 44.02088815424577], [-70.26737406669533, 44.01871301057108], [-70.26134703137075, 44.02710808644018]]], "type": "Polygon"}, "id": "82", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526594711961206784"}, "type": "Feature"}, {"bbox": [-70.28553447513336, 44.010319128719615, -70.26737406669533, 44.02088815424577], "geometry": {"coordinates": [[[-70.26737406669533, 44.01871301057108], [-70.27951333170229, 44.02088815424577], [-70.28553447513336, 44.01249297537803], [-70.27339831145571, 44.010319128719615], [-70.26737406669533, 44.01871301057108]]], "type": "Polygon"}, "id": "83", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526591997541875712"}, "type": "Feature"}, {"bbox": [-70.2612619210159, 44.00596698141434, -70.24309486107936, 44.01653638149261], "geometry": {"coordinates": [[[-70.24309486107936, 44.01435826702262], [-70.25523457594987, 44.01653638149261], [-70.2612619210159, 44.00814379739438], [-70.24912530542639, 44.00596698141434], [-70.24309486107936, 44.01435826702262]]], "type": "Polygon"}, "id": "84", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526591860102922240"}, "type": "Feature"}, {"bbox": [-70.27339831145571, 44.00814379739438, -70.25523457594987, 44.01871301057108], "geometry": {"coordinates": [[[-70.25523457594987, 44.01653638149261], [-70.26737406669533, 44.01871301057108], [-70.27339831145571, 44.010319128719615], [-70.2612619210159, 44.00814379739438], [-70.25523457594987, 44.01653638149261]]], "type": "Polygon"}, "id": "85", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526591963182137344"}, "type": "Feature"}, {"bbox": [-70.26728647628647, 43.99757688889939, -70.24912530542639, 44.00814379739438], "geometry": {"coordinates": [[[-70.24912530542639, 44.00596698141434], [-70.2612619210159, 44.00814379739438], [-70.26728647628647, 43.999752407148286], [-70.25515295908072, 43.99757688889939], [-70.24912530542639, 44.00596698141434]]], "type": "Polygon"}, "id": "86", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526591894462660608"}, "type": "Feature"}, {"bbox": [-70.27923570007651, 43.9618566457494, -70.26109473747792, 43.972413775839364], "geometry": {"coordinates": [[[-70.26109473747792, 43.97024066453562], [-70.27321919254307, 43.972413775839364], [-70.27923570007651, 43.964028461618355], [-70.26711433878677, 43.9618566457494], [-70.26109473747792, 43.97024066453562]]], "type": "Polygon"}, "id": "87", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589798518620160"}, "type": "Feature"}, {"bbox": [-70.27321919254307, 43.97024066453562, -70.25507235123807, 43.98080028552027], "geometry": {"coordinates": [[[-70.25507235123807, 43.978625878024154], [-70.26719990097463, 43.98080028552027], [-70.27321919254307, 43.972413775839364], [-70.26109473747792, 43.97024066453562], [-70.25507235123807, 43.978625878024154]]], "type": "Polygon"}, "id": "88", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589832878358528"}, "type": "Feature"}, {"bbox": [-70.26719990097463, 43.978625878024154, -70.24904717840447, 43.989187990070675], "geometry": {"coordinates": [[[-70.24904717840447, 43.98701228562428], [-70.26117782370846, 43.989187990070675], [-70.26719990097463, 43.98080028552027], [-70.25507235123807, 43.978625878024154], [-70.24904717840447, 43.98701228562428]]], "type": "Polygon"}, "id": "89", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526591653944492032"}, "type": "Feature"}, {"bbox": [-70.27330824342773, 43.989187990070675, -70.25515295908072, 43.999752407148286], "geometry": {"coordinates": [[[-70.25515295908072, 43.99757688889939], [-70.26728647628647, 43.999752407148286], [-70.27330824342773, 43.99136221134684], [-70.26117782370846, 43.989187990070675], [-70.25515295908072, 43.99757688889939]]], "type": "Polygon"}, "id": "90", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526592341139259392"}, "type": "Feature"}, {"bbox": [-70.27932722410469, 43.98080028552027, -70.26117782370846, 43.99136221134684], "geometry": {"coordinates": [[[-70.26117782370846, 43.989187990070675], [-70.27330824342773, 43.99136221134684], [-70.27932722410469, 43.98297321058173], [-70.26719990097463, 43.98080028552027], [-70.26117782370846, 43.989187990070675]]], "type": "Polygon"}, "id": "91", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526592375498997760"}, "type": "Feature"}, {"bbox": [-70.26711433878677, 43.95968334892798, -70.24897005639413, 43.97024066453562], "geometry": {"coordinates": [[[-70.24897005639413, 43.96806607154463], [-70.26109473747792, 43.97024066453562], [-70.26711433878677, 43.9618566457494], [-70.25499275045819, 43.95968334892798], [-70.24897005639413, 43.96806607154463]]], "type": "Polygon"}, "id": "92", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589901597835264"}, "type": "Feature"}, {"bbox": [-70.27313115682614, 43.9513018208461, -70.25499275045819, 43.9618566457494], "geometry": {"coordinates": [[[-70.25499275045819, 43.95968334892798], [-70.26711433878677, 43.9618566457494], [-70.27313115682614, 43.95347382225541], [-70.26101266035803, 43.9513018208461], [-70.25499275045819, 43.95968334892798]]], "type": "Polygon"}, "id": "93", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589729799143424"}, "type": "Feature"}, {"bbox": [-70.27914519325651, 43.94292148788841, -70.26101266035803, 43.95347382225541], "geometry": {"coordinates": [[[-70.26101266035803, 43.9513018208461], [-70.27313115682614, 43.95347382225541], [-70.27914519325651, 43.94509219464268], [-70.26702978775408, 43.94292148788841], [-70.26101266035803, 43.9513018208461]]], "type": "Polygon"}, "id": "94", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589695439405056"}, "type": "Feature"}, {"bbox": [-70.26702978775408, 43.940749301662194, -70.24889393743847, 43.9513018208461], "geometry": {"coordinates": [[[-70.24889393743847, 43.949128339230896], [-70.26101266035803, 43.9513018208461], [-70.26702978775408, 43.94292148788841], [-70.25491415478164, 43.940749301662194], [-70.24889393743847, 43.949128339230896]]], "type": "Polygon"}, "id": "95", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526590142116003840"}, "type": "Feature"}, {"bbox": [-70.2609315903868, 43.93019908872895, -70.24279829594434, 43.940749301662194], "geometry": {"coordinates": [[[-70.24279829594434, 43.938575635976434], [-70.25491415478164, 43.940749301662194], [-70.2609315903868, 43.93237145904929], [-70.24881881958481, 43.93019908872895], [-70.24279829594434, 43.938575635976434]]], "type": "Polygon"}, "id": "96", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589111323852800"}, "type": "Feature"}, {"bbox": [-70.27304413430565, 43.93237145904929, -70.25491415478164, 43.94292148788841], "geometry": {"coordinates": [[[-70.25491415478164, 43.940749301662194], [-70.26702978775408, 43.94292148788841], [-70.27304413430565, 43.93454235064349], [-70.2609315903868, 43.93237145904929], [-70.25491415478164, 43.940749301662194]]], "type": "Polygon"}, "id": "97", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589145683591168"}, "type": "Feature"}, {"bbox": [-70.27905570167087, 43.92399481198029, -70.2609315903868, 43.93454235064349], "geometry": {"coordinates": [[[-70.2609315903868, 43.93237145904929], [-70.27304413430565, 43.93454235064349], [-70.27905570167087, 43.92616440969908], [-70.26694624591208, 43.92399481198029], [-70.2609315903868, 43.93237145904929]]], "type": "Polygon"}, "id": "98", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589180043329536"}, "type": "Feature"}, {"bbox": [-70.26694624591208, 43.921823736268486, -70.24881881958481, 43.93237145904929], "geometry": {"coordinates": [[[-70.24881881958481, 43.93019908872895], [-70.2609315903868, 43.93237145904929], [-70.26694624591208, 43.92399481198029], [-70.25483656225319, 43.921823736268486], [-70.24881881958481, 43.93019908872895]]], "type": "Polygon"}, "id": "99", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589214403067904"}, "type": "Feature"}, {"bbox": [-70.28497354857325, 43.89670485348147, -70.26686371130046, 43.90724510682221], "geometry": {"coordinates": [[[-70.26686371130046, 43.905076618058374], [-70.27896722335, 43.90724510682221], [-70.28497354857325, 43.89887204990513], [-70.27287312098997, 43.89670485348147], [-70.26686371130046, 43.905076618058374]]], "type": "Polygon"}, "id": "100", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526587805653794816"}, "type": "Feature"}, {"bbox": [-70.27295812301453, 43.9134495791827, -70.25483656225319, 43.92399481198029], "geometry": {"coordinates": [[[-70.25483656225319, 43.921823736268486], [-70.26694624591208, 43.92399481198029], [-70.27295812301453, 43.91561936104245], [-70.26085152560645, 43.9134495791827], [-70.25483656225319, 43.921823736268486]]], "type": "Polygon"}, "id": "101", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589248762806272"}, "type": "Feature"}, {"bbox": [-70.27896722335, 43.905076618058374, -70.26085152560645, 43.91561936104245], "geometry": {"coordinates": [[[-70.26085152560645, 43.9134495791827], [-70.27295812301453, 43.91561936104245], [-70.27896722335, 43.90724510682221], [-70.26686371130046, 43.905076618058374], [-70.26085152560645, 43.9134495791827]]], "type": "Polygon"}, "id": "102", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526589283122544640"}, "type": "Feature"}, {"bbox": [-70.29097710033793, 43.88833428603708, -70.27287312098997, 43.89887204990513], "geometry": {"coordinates": [[[-70.27287312098997, 43.89670485348147], [-70.28497354857325, 43.89887204990513], [-70.29097710033793, 43.890500190875976], [-70.27887975632858, 43.88833428603708], [-70.27287312098997, 43.89670485348147]]], "type": "Polygon"}, "id": "103", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526587840013533184"}, "type": "Feature"}, {"bbox": [-70.29088471056191, 43.86943194735909, -70.27278912627341, 43.879964916309504], "geometry": {"coordinates": [[[-70.27278912627341, 43.87779882798006], [-70.28488361896876, 43.879964916309504], [-70.29088471056191, 43.871596744882154], [-70.27879329864552, 43.86943194735909], [-70.27278912627341, 43.87779882798006]]], "type": "Polygon"}, "id": "104", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526588011812225024"}, "type": "Feature"}, {"bbox": [-70.28488361896876, 43.87779882798006, -70.26678218196317, 43.88833428603708], "geometry": {"coordinates": [[[-70.26678218196317, 43.88616690614635], [-70.27887975632858, 43.88833428603708], [-70.28488361896876, 43.879964916309504], [-70.27278912627341, 43.87779882798006], [-70.26678218196317, 43.88616690614635]]], "type": "Polygon"}, "id": "105", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526588046171963392"}, "type": "Feature"}, {"bbox": [-70.27887975632858, 43.88616690614635, -70.26077246406345, 43.89670485348147], "geometry": {"coordinates": [[[-70.26077246406345, 43.894536181274155], [-70.27287312098997, 43.89670485348147], [-70.27887975632858, 43.88833428603708], [-70.26678218196317, 43.88616690614635], [-70.26077246406345, 43.894536181274155]]], "type": "Polygon"}, "id": "106", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526588492848562176"}, "type": "Feature"}, {"bbox": [-70.27879329864552, 43.86726567625825, -70.26069440380849, 43.87779882798006], "geometry": {"coordinates": [[[-70.26069440380849, 43.87563126534186], [-70.27278912627341, 43.87779882798006], [-70.27879329864552, 43.86943194735909], [-70.26670165594834, 43.86726567625825], [-70.26069440380849, 43.87563126534186]]], "type": "Polygon"}, "id": "107", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526588114891440128"}, "type": "Feature"}, {"bbox": [-70.26670165594834, 43.86509793159152, -70.24859945317199, 43.87563126534186], "geometry": {"coordinates": [[[-70.24859945317199, 43.87346222840707], [-70.26069440380849, 43.87563126534186], [-70.26670165594834, 43.86726567625825], [-70.25460978406733, 43.86509793159152], [-70.24859945317199, 43.87346222840707]]], "type": "Polygon"}, "id": "108", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526588149251178496"}, "type": "Feature"}, {"bbox": [-70.27270613691049, 43.85673483139438, -70.25460978406733, 43.86726567625825], "geometry": {"coordinates": [[[-70.25460978406733, 43.86509793159152], [-70.26670165594834, 43.86726567625825], [-70.27270613691049, 43.85890128454813], [-70.26061734289642, 43.85673483139438], [-70.25460978406733, 43.86509793159152]]], "type": "Polygon"}, "id": "109", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526629346577481728"}, "type": "Feature"}, {"bbox": [-70.25460978406733, 43.86292871337136, -70.23650427596188, 43.87346222840707], "geometry": {"coordinates": [[[-70.23650427596188, 43.87129171718847], [-70.24859945317199, 43.87346222840707], [-70.25460978406733, 43.86509793159152], [-70.24251768459942, 43.86292871337136], [-70.23650427596188, 43.87129171718847]]], "type": "Polygon"}, "id": "110", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526588183610916864"}, "type": "Feature"}, {"bbox": [-70.24251768459942, 43.86075802161087, -70.22440887377611, 43.87129171718847], "geometry": {"coordinates": [[[-70.22440887377611, 43.869119731699435], [-70.23650427596188, 43.87129171718847], [-70.24251768459942, 43.86292871337136], [-70.23042535914158, 43.86075802161087], [-70.22440887377611, 43.869119731699435]]], "type": "Polygon"}, "id": "111", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526617492467744768"}, "type": "Feature"}, {"bbox": [-70.24852832028351, 43.85239750662982, -70.23042535914158, 43.86292871337136], "geometry": {"coordinates": [[[-70.23042535914158, 43.86075802161087], [-70.24251768459942, 43.86292871337136], [-70.24852832028351, 43.85456690541734], [-70.23643907066766, 43.85239750662982], [-70.23042535914158, 43.86075802161087]]], "type": "Polygon"}, "id": "112", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526629209138528256"}, "type": "Feature"}, {"bbox": [-70.23042535914158, 43.85858585632377, -70.21231324821262, 43.869119731699435], "geometry": {"coordinates": [[[-70.21231324821262, 43.866946271953985], [-70.22440887377611, 43.869119731699435], [-70.23042535914158, 43.86075802161087], [-70.2183328092907, 43.85858585632377], [-70.21231324821262, 43.866946271953985]]], "type": "Polygon"}, "id": "113", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526617526827483136"}, "type": "Feature"}, {"bbox": [-70.23643907066766, 43.85022663504521, -70.2183328092907, 43.86075802161087], "geometry": {"coordinates": [[[-70.2183328092907, 43.85858585632377], [-70.23042535914158, 43.86075802161087], [-70.23643907066766, 43.85239750662982], [-70.22434959564478, 43.85022663504521], [-70.2183328092907, 43.85858585632377]]], "type": "Polygon"}, "id": "114", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526629174778789888"}, "type": "Feature"}, {"bbox": [-70.22434959564478, 43.84805429067757, -70.20624003664369, 43.85858585632377], "geometry": {"coordinates": [[[-70.20624003664369, 43.85641221752437], [-70.2183328092907, 43.85858585632377], [-70.22434959564478, 43.85022663504521], [-70.21225989681075, 43.84805429067757], [-70.20624003664369, 43.85641221752437]]], "type": "Polygon"}, "id": "115", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628728102191104"}, "type": "Feature"}, {"bbox": [-70.23036360892382, 43.83969755801067, -70.21225989681075, 43.85022663504521], "geometry": {"coordinates": [[[-70.21225989681075, 43.84805429067757], [-70.22434959564478, 43.85022663504521], [-70.23036360892382, 43.8418686087023], [-70.2182769830194, 43.83969755801067], [-70.21225989681075, 43.84805429067757]]], "type": "Polygon"}, "id": "116", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628762461929472"}, "type": "Feature"}, {"bbox": [-70.2182769830194, 43.83752503527933, -70.20016997576143, 43.84805429067757], "geometry": {"coordinates": [[[-70.20016997576143, 43.84588047354151], [-70.21225989681075, 43.84805429067757], [-70.2182769830194, 43.83969755801067], [-70.20619013388493, 43.83752503527933], [-70.20016997576143, 43.84588047354151]]], "type": "Polygon"}, "id": "117", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628796821667840"}, "type": "Feature"}, {"bbox": [-70.22429129691747, 43.82917079102491, -70.20619013388493, 43.83969755801067], "geometry": {"coordinates": [[[-70.20619013388493, 43.83752503527933], [-70.2182769830194, 43.83969755801067], [-70.22429129691747, 43.831342020107165], [-70.21220751881577, 43.82917079102491], [-70.20619013388493, 43.83752503527933]]], "type": "Polygon"}, "id": "118", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628831181406208"}, "type": "Feature"}, {"bbox": [-70.21822213220061, 43.81864633460413, -70.20012351806443, 43.82917079102491], "geometry": {"coordinates": [[[-70.20012351806443, 43.82699809064603], [-70.21220751881577, 43.82917079102491], [-70.21822213220061, 43.820817741361296], [-70.20614120058674, 43.81864633460413], [-70.20012351806443, 43.82699809064603]]], "type": "Polygon"}, "id": "119", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628143986638848"}, "type": "Feature"}, {"bbox": [-70.21220751881577, 43.82699809064603, -70.19410306311528, 43.83752503527933], "geometry": {"coordinates": [[[-70.19410306311528, 43.83535104052322], [-70.20619013388493, 43.83752503527933], [-70.21220751881577, 43.82917079102491], [-70.20012351806443, 43.82699809064603], [-70.19410306311528, 43.83535104052322]]], "type": "Polygon"}, "id": "120", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628178346377216"}, "type": "Feature"}, {"bbox": [-70.21215611232772, 43.80812418926305, -70.19406004690285, 43.81864633460413], "geometry": {"coordinates": [[[-70.19406004690285, 43.81647345729319], [-70.20614120058674, 43.81864633460413], [-70.21215611232772, 43.81029577298009], [-70.20007802588755, 43.80812418926305], [-70.19406004690285, 43.81647345729319]]], "type": "Polygon"}, "id": "121", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628006547685376"}, "type": "Feature"}, {"bbox": [-70.20614120058674, 43.81647345729319, -70.18803929625723, 43.82699809064603], "geometry": {"coordinates": [[[-70.18803929625723, 43.82482391898579], [-70.20012351806443, 43.82699809064603], [-70.20614120058674, 43.81864633460413], [-70.19406004690285, 43.81647345729319], [-70.18803929625723, 43.82482391898579]]], "type": "Polygon"}, "id": "122", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526628247065853952"}, "type": "Feature"}, {"bbox": [-70.20609323485576, 43.797604355514885, -70.18799971795623, 43.80812418926305], "geometry": {"coordinates": [[[-70.18799971795623, 43.805951135734865], [-70.20007802588755, 43.80812418926305], [-70.20609323485576, 43.79977611547744], [-70.19401799227595, 43.797604355514885], [-70.18799971795623, 43.805951135734865]]], "type": "Polygon"}, "id": "123", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526627869108731904"}, "type": "Feature"}, {"bbox": [-70.19401799227595, 43.795431126483564, -70.17592119012551, 43.805951135734865], "geometry": {"coordinates": [[[-70.17592119012551, 43.80377661241143], [-70.18799971795623, 43.805951135734865], [-70.19401799227595, 43.797604355514885], [-70.18194252878313, 43.795431126483564], [-70.17592119012551, 43.80377661241143]]], "type": "Polygon"}, "id": "124", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526627903468470272"}, "type": "Feature"}, {"bbox": [-70.20007802588755, 43.805951135734865, -70.18197867274169, 43.81647345729319], "geometry": {"coordinates": [[[-70.18197867274169, 43.81429910944408], [-70.19406004690285, 43.81647345729319], [-70.20007802588755, 43.80812418926305], [-70.18799971795623, 43.805951135734865], [-70.18197867274169, 43.81429910944408]]], "type": "Polygon"}, "id": "125", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526627972187947008"}, "type": "Feature"}, {"bbox": [-70.18194252878313, 43.79325642839969, -70.16384244398706, 43.80377661241143], "geometry": {"coordinates": [[[-70.16384244398706, 43.801600619309255], [-70.17592119012551, 43.80377661241143], [-70.18194252878313, 43.795431126483564], [-70.16986684596797, 43.79325642839969], [-70.16384244398706, 43.801600619309255]]], "type": "Polygon"}, "id": "126", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526621753075302400"}, "type": "Feature"}, {"bbox": [-70.17588847694444, 43.78273855791926, -70.1577909454212, 43.79325642839969], "geometry": {"coordinates": [[[-70.1577909454212, 43.79108026128009], [-70.16986684596797, 43.79325642839969], [-70.17588847694444, 43.78491343005037], [-70.16381563783087, 43.78273855791926], [-70.1577909454212, 43.79108026128009]]], "type": "Polygon"}, "id": "127", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526621821794779136"}, "type": "Feature"}, {"bbox": [-70.16986684596797, 43.79108026128009, -70.1517634811326, 43.801600619309255], "geometry": {"coordinates": [[[-70.1517634811326, 43.79942315644548], [-70.16384244398706, 43.801600619309255], [-70.16986684596797, 43.79325642839969], [-70.1577909454212, 43.79108026128009], [-70.1517634811326, 43.79942315644548]]], "type": "Polygon"}, "id": "128", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526621787435040768"}, "type": "Feature"}, {"bbox": [-70.1577909454212, 43.78890262514219, -70.1396843031538, 43.79942315644548], "geometry": {"coordinates": [[[-70.1396843031538, 43.797244223837815], [-70.1517634811326, 43.79942315644548], [-70.1577909454212, 43.79108026128009], [-70.14571482873346, 43.78890262514219], [-70.1396843031538, 43.797244223837815]]], "type": "Polygon"}, "id": "129", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526621615636348928"}, "type": "Feature"}, {"bbox": [-70.16381563783087, 43.78056221749518, -70.14571482873346, 43.79108026128009], "geometry": {"coordinates": [[[-70.14571482873346, 43.78890262514219], [-70.1577909454212, 43.79108026128009], [-70.16381563783087, 43.78273855791926], [-70.15174258156097, 43.78056221749518], [-70.14571482873346, 43.78890262514219]]], "type": "Polygon"}, "id": "130", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526621993593470976"}, "type": "Feature"}, {"bbox": [-70.14571482873346, 43.78672352000405, -70.12760491164228, 43.797244223837815], "geometry": {"coordinates": [[[-70.12760491164228, 43.79506382150463], [-70.1396843031538, 43.797244223837815], [-70.14571482873346, 43.78890262514219], [-70.13363849749535, 43.78672352000405], [-70.12760491164228, 43.79506382150463]]], "type": "Polygon"}, "id": "131", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526621581276610560"}, "type": "Feature"}, {"bbox": [-69.62224793313585, 44.57658573048905, -69.60359744719662, 44.58733778169667], "geometry": {"coordinates": [[[-69.60359744719662, 44.58503953719516], [-69.61596478490914, 44.58733778169667], [-69.62224793313585, 44.578882608850634], [-69.60988374107544, 44.57658573048905], [-69.60359744719662, 44.58503953719516]]], "type": "Polygon"}, "id": "132", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448923591311360"}, "type": "Feature"}, {"bbox": [-69.62852815444991, 44.568133059328616, -69.60988374107544, 44.578882608850634], "geometry": {"coordinates": [[[-69.60988374107544, 44.57658573048905], [-69.62224793313585, 44.578882608850634], [-69.62852815444991, 44.57042857233992], [-69.61616710717105, 44.568133059328616], [-69.60988374107544, 44.57658573048905]]], "type": "Polygon"}, "id": "133", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448957951049728"}, "type": "Feature"}, {"bbox": [-69.64088907965721, 44.57042857233992, -69.62224793313585, 44.581177949494396], "geometry": {"coordinates": [[[-69.62224793313585, 44.578882608850634], [-69.63461200426327, 44.581177949494396], [-69.64088907965721, 44.57272254838308], [-69.62852815444991, 44.57042857233992], [-69.62224793313585, 44.578882608850634]]], "type": "Polygon"}, "id": "134", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448992310788096"}, "type": "Feature"}, {"bbox": [-69.63461200426327, 44.578882608850634, -69.61596478490914, 44.589634487730414], "geometry": {"coordinates": [[[-69.61596478490914, 44.58733778169667], [-69.6283320028287, 44.589634487730414], [-69.63461200426327, 44.581177949494396], [-69.62224793313585, 44.578882608850634], [-69.61596478490914, 44.58733778169667]]], "type": "Polygon"}, "id": "135", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526449026670526464"}, "type": "Feature"}, {"bbox": [-69.63441931884748, 44.59809216242994, -69.61576321483797, 44.60884887209972], "geometry": {"coordinates": [[[-69.61576321483797, 44.606550972930876], [-69.62813660975925, 44.60884887209972], [-69.63441931884748, 44.60038869537967], [-69.62204907360386, 44.59809216242994], [-69.61576321483797, 44.606550972930876]]], "type": "Polygon"}, "id": "136", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526451741089857536"}, "type": "Feature"}, {"bbox": [-69.64069909926786, 44.589634487730414, -69.62204907360386, 44.60038869537967], "geometry": {"coordinates": [[[-69.62204907360386, 44.59809216242994], [-69.63441931884748, 44.60038869537967], [-69.64069909926786, 44.59192965525092], [-69.6283320028287, 44.589634487730414], [-69.62204907360386, 44.59809216242994]]], "type": "Polygon"}, "id": "137", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526451775449595904"}, "type": "Feature"}, {"bbox": [-69.62813660975925, 44.606550972930876, -69.60947442477904, 44.61731018474847], "geometry": {"coordinates": [[[-69.60947442477904, 44.615010918570256], [-69.62185097025112, 44.61731018474847], [-69.62813660975925, 44.60884887209972], [-69.61576321483797, 44.606550972930876], [-69.60947442477904, 44.615010918570256]]], "type": "Polygon"}, "id": "138", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526452119046979584"}, "type": "Feature"}, {"bbox": [-69.61616710717105, 44.565836009394644, -69.59751942976837, 44.57658573048905], "geometry": {"coordinates": [[[-69.59751942976837, 44.57428731445543], [-69.60988374107544, 44.57658573048905], [-69.61616710717105, 44.568133059328616], [-69.60380593950585, 44.565836009394644], [-69.59751942976837, 44.57428731445543]]], "type": "Polygon"}, "id": "139", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448854871834624"}, "type": "Feature"}, {"bbox": [-69.6283320028287, 44.58733778169667, -69.60967870802025, 44.59809216242994], "geometry": {"coordinates": [[[-69.60967870802025, 44.595794090216444], [-69.62204907360386, 44.59809216242994], [-69.6283320028287, 44.589634487730414], [-69.61596478490914, 44.58733778169667], [-69.60967870802025, 44.595794090216444]]], "type": "Polygon"}, "id": "140", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526451809809334272"}, "type": "Feature"}, {"bbox": [-69.62244754723164, 44.55738583975109, -69.60380593950585, 44.568133059328616], "geometry": {"coordinates": [[[-69.60380593950585, 44.565836009394644], [-69.61616710717105, 44.568133059328616], [-69.62244754723164, 44.55968152437494], [-69.61008952233908, 44.55738583975109], [-69.60380593950585, 44.565836009394644]]], "type": "Polygon"}, "id": "141", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448408195235840"}, "type": "Feature"}, {"bbox": [-69.63480545059967, 44.55968152437494, -69.61616710717105, 44.57042857233992], "geometry": {"coordinates": [[[-69.61616710717105, 44.568133059328616], [-69.62852815444991, 44.57042857233992], [-69.63480545059967, 44.56197567282521], [-69.62244754723164, 44.55968152437494], [-69.61616710717105, 44.568133059328616]]], "type": "Polygon"}, "id": "142", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526449404627648512"}, "type": "Feature"}, {"bbox": [-69.62872506300432, 44.54893680618533, -69.61008952233908, 44.55968152437494], "geometry": {"coordinates": [[[-69.61008952233908, 44.55738583975109], [-69.62244754723164, 44.55968152437494], [-69.62872506300432, 44.551231126288194], [-69.61637018001501, 44.54893680618533], [-69.61008952233908, 44.55738583975109]]], "type": "Polygon"}, "id": "143", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448373835497472"}, "type": "Feature"}, {"bbox": [-69.63499965623494, 44.54048890935706, -69.61637018001501, 44.551231126288194], "geometry": {"coordinates": [[[-69.61637018001501, 44.54893680618533], [-69.62872506300432, 44.551231126288194], [-69.63499965623494, 44.54278186572769], [-69.62264791427943, 44.54048890935706], [-69.61637018001501, 44.54893680618533]]], "type": "Polygon"}, "id": "144", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448339475759104"}, "type": "Feature"}, {"bbox": [-69.64107982333229, 44.551231126288194, -69.62244754723164, 44.56197567282521], "geometry": {"coordinates": [[[-69.62244754723164, 44.55968152437494], [-69.63480545059967, 44.56197567282521], [-69.64107982333229, 44.553523910966334], [-69.62872506300432, 44.551231126288194], [-69.62244754723164, 44.55968152437494]]], "type": "Polygon"}, "id": "145", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526449438987386880"}, "type": "Feature"}, {"bbox": [-69.64127132866821, 44.53204214992504, -69.62264791427943, 44.54278186572769], "geometry": {"coordinates": [[[-69.62264791427943, 44.54048890935706], [-69.63499965623494, 44.54278186572769], [-69.64127132866821, 44.53433374335185], [-69.62892272687692, 44.53204214992504], [-69.62264791427943, 44.54048890935706]]], "type": "Polygon"}, "id": "146", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448236396544000"}, "type": "Feature"}, {"bbox": [-69.64754008204767, 44.52359652854722, -69.62892272687692, 44.53433374335185], "geometry": {"coordinates": [[[-69.62892272687692, 44.53204214992504], [-69.64127132866821, 44.53433374335185], [-69.64754008204767, 44.52588675981822], [-69.63519461955093, 44.52359652854722], [-69.62892272687692, 44.53204214992504]]], "type": "Polygon"}, "id": "147", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526448202036805632"}, "type": "Feature"}, {"bbox": [-69.65988541848122, 44.52588675981822, -69.64127132866821, 44.53662380285092], "geometry": {"coordinates": [[[-69.64127132866821, 44.53433374335185], [-69.65361980552883, 44.53662380285092], [-69.65988541848122, 44.528175457909605], [-69.64754008204767, 44.52588675981822], [-69.64127132866821, 44.53433374335185]]], "type": "Polygon"}, "id": "148", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526449610786078720"}, "type": "Feature"}, {"bbox": [-69.66614811499335, 44.517440915783475, -69.64754008204767, 44.528175457909605], "geometry": {"coordinates": [[[-69.64754008204767, 44.52588675981822], [-69.65988541848122, 44.528175457909605], [-69.66614811499335, 44.51972825325456], [-69.65380591811567, 44.517440915783475], [-69.64754008204767, 44.52588675981822]]], "type": "Polygon"}, "id": "149", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526449645145817088"}, "type": "Feature"}, {"bbox": [-69.67240789680653, 44.50899621190338, -69.65380591811567, 44.51972825325456], "geometry": {"coordinates": [[[-69.65380591811567, 44.517440915783475], [-69.66614811499335, 44.51972825325456], [-69.67240789680653, 44.51128218954122], [-69.66006883861341, 44.50899621190338], [-69.65380591811567, 44.517440915783475]]], "type": "Polygon"}, "id": "150", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526474555956133888"}, "type": "Feature"}, {"bbox": [-69.67866476566087, 44.50055264883285, -69.66006883861341, 44.51128218954122], "geometry": {"coordinates": [[[-69.66006883861341, 44.50899621190338], [-69.67240789680653, 44.51128218954122], [-69.67866476566087, 44.50283726742409], [-69.66632884528092, 44.50055264883285], [-69.66006883861341, 44.50899621190338]]], "type": "Polygon"}, "id": "151", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526474590315872256"}, "type": "Feature"}, {"bbox": [-69.68491872329533, 44.49211022722591, -69.66632884528092, 44.50283726742409], "geometry": {"coordinates": [[[-69.66632884528092, 44.50055264883285], [-69.67866476566087, 44.50283726742409], [-69.68491872329533, 44.49439348755684], [-69.67258593985703, 44.49211022722591], [-69.66632884528092, 44.50055264883285]]], "type": "Polygon"}, "id": "152", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526474624675610624"}, "type": "Feature"}, {"bbox": [-69.69116977144768, 44.483668947735715, -69.67258593985703, 44.49439348755684], "geometry": {"coordinates": [[[-69.67258593985703, 44.49211022722591], [-69.68491872329533, 44.49439348755684], [-69.69116977144768, 44.485950850592246], [-69.67884012407946, 44.483668947735715], [-69.67258593985703, 44.49211022722591]]], "type": "Polygon"}, "id": "153", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526474727754825728"}, "type": "Feature"}, {"bbox": [-69.69741791185454, 44.47522881101453, -69.67884012407946, 44.485950850592246], "geometry": {"coordinates": [[[-69.67884012407946, 44.483668947735715], [-69.69116977144768, 44.485950850592246], [-69.69741791185454, 44.47750935718221], [-69.68509139968467, 44.47522881101453], [-69.67884012407946, 44.483668947735715]]], "type": "Polygon"}, "id": "154", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526474762114564096"}, "type": "Feature"}, {"bbox": [-69.68509139968467, 44.47294673615076, -69.66651034500669, 44.483668947735715], "geometry": {"coordinates": [[[-69.66651034500669, 44.48138551543646], [-69.67884012407946, 44.483668947735715], [-69.68509139968467, 44.47522881101453], [-69.67276475468624, 44.47294673615076], [-69.66651034500669, 44.48138551543646]]], "type": "Polygon"}, "id": "155", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526475827266453504"}, "type": "Feature"}, {"bbox": [-69.69133976840806, 44.464509099500056, -69.67276475468624, 44.47522881101453], "geometry": {"coordinates": [[[-69.67276475468624, 44.47294673615076], [-69.68509139968467, 44.47522881101453], [-69.69133976840806, 44.466789817713746], [-69.67901625661356, 44.464509099500056], [-69.67276475468624, 44.47294673615076]]], "type": "Polygon"}, "id": "156", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526475792906715136"}, "type": "Feature"}, {"bbox": [-69.69758523198378, 44.45607260613522, -69.67901625661356, 44.466789817713746], "geometry": {"coordinates": [[[-69.67901625661356, 44.464509099500056], [-69.69133976840806, 44.466789817713746], [-69.69758523198378, 44.458351968483875], [-69.68526485252274, 44.45607260613522], [-69.67901625661356, 44.464509099500056]]], "type": "Polygon"}, "id": "157", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526475346230116352"}, "type": "Feature"}, {"bbox": [-69.70382779214485, 44.44763725670628, -69.68526485252274, 44.458351968483875], "geometry": {"coordinates": [[[-69.68526485252274, 44.45607260613522], [-69.69758523198378, 44.458351968483875], [-69.70382779214485, 44.449915263974574], [-69.6915105441467, 44.44763725670628], [-69.68526485252274, 44.45607260613522]]], "type": "Polygon"}, "id": "158", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526475311870377984"}, "type": "Feature"}, {"bbox": [-69.69775333321716, 44.43692487321915, -69.67919316162691, 44.44763725670628], "geometry": {"coordinates": [[[-69.67919316162691, 44.445357723021694], [-69.6915105441467, 44.44763725670628], [-69.69775333321716, 44.439203051862364], [-69.68543908017016, 44.43692487321915], [-69.67919316162691, 44.445357723021694]]], "type": "Polygon"}, "id": "159", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478198088400896"}, "type": "Feature"}, {"bbox": [-69.71006745062313, 44.439203051862364, -69.6915105441467, 44.449915263974574], "geometry": {"coordinates": [[[-69.6915105441467, 44.44763725670628], [-69.70382779214485, 44.449915263974574], [-69.71006745062313, 44.4414797048346], [-69.69775333321716, 44.439203051862364], [-69.6915105441467, 44.44763725670628]]], "type": "Polygon"}, "id": "160", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478232448139264"}, "type": "Feature"}, {"bbox": [-69.70399322146474, 44.42849316786572, -69.68543908017016, 44.439203051862364], "geometry": {"coordinates": [[[-69.68543908017016, 44.43692487321915], [-69.69775333321716, 44.439203051862364], [-69.70399322146474, 44.43076999225174], [-69.69168209702113, 44.42849316786572], [-69.68543908017016, 44.43692487321915]]], "type": "Polygon"}, "id": "161", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478301167616000"}, "type": "Feature"}, {"bbox": [-69.71023021061887, 44.42006260760915, -69.69168209702113, 44.43076999225174], "geometry": {"coordinates": [[[-69.69168209702113, 44.42849316786572], [-69.70399322146474, 44.43076999225174], [-69.71023021061887, 44.42233807852178], [-69.69792221390918, 44.42006260760915], [-69.69168209702113, 44.42849316786572]]], "type": "Polygon"}, "id": "162", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478335527354368"}, "type": "Feature"}, {"bbox": [-69.71646430240779, 44.41163319309634, -69.69792221390918, 44.42233807852178], "geometry": {"coordinates": [[[-69.69792221390918, 44.42006260760915], [-69.71023021061887, 44.42233807852178], [-69.71646430240779, 44.41390731131901], [-69.70415943256246, 44.41163319309634], [-69.69792221390918, 44.42006260760915]]], "type": "Polygon"}, "id": "163", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478438606569472"}, "type": "Feature"}, {"bbox": [-69.72269549855862, 44.403204924973295, -69.70415943256246, 44.41390731131901], "geometry": {"coordinates": [[[-69.70415943256246, 44.41163319309634], [-69.71646430240779, 44.41390731131901], [-69.72269549855862, 44.405477691289065], [-69.71039375470802, 44.403204924973295], [-69.70415943256246, 44.41163319309634]]], "type": "Polygon"}, "id": "164", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478747844214784"}, "type": "Feature"}, {"bbox": [-69.73499710230452, 44.405477691289065, -69.71646430240779, 44.416179906105135], "geometry": {"coordinates": [[[-69.71646430240779, 44.41390731131901], [-69.72876903326221, 44.416179906105135], [-69.73499710230452, 44.407748934912604], [-69.72269549855862, 44.405477691289065], [-69.71646430240779, 44.41390731131901]]], "type": "Polygon"}, "id": "165", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478782203953152"}, "type": "Feature"}, {"bbox": [-69.7289238007973, 44.39477780388515, -69.71039375470802, 44.405477691289065], "geometry": {"coordinates": [[[-69.71039375470802, 44.403204924973295], [-69.72269549855862, 44.405477691289065], [-69.7289238007973, 44.39704921907671], [-69.71662518207167, 44.39477780388515], [-69.71039375470802, 44.403204924973295]]], "type": "Polygon"}, "id": "166", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478850923429888"}, "type": "Feature"}, {"bbox": [-69.74122227830583, 44.39704921907671, -69.72269549855862, 44.407748934912604], "geometry": {"coordinates": [[[-69.72269549855862, 44.405477691289065], [-69.73499710230452, 44.407748934912604], [-69.74122227830583, 44.3993191123201], [-69.7289238007973, 44.39704921907671], [-69.72269549855862, 44.405477691289065]]], "type": "Polygon"}, "id": "167", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478816563691520"}, "type": "Feature"}, {"bbox": [-69.73514921084862, 44.38635183047617, -69.71662518207167, 44.39704921907671], "geometry": {"coordinates": [[[-69.71662518207167, 44.39477780388515], [-69.7289238007973, 44.39704921907671], [-69.73514921084862, 44.388621895325834], [-69.7228537163781, 44.38635183047617], [-69.71662518207167, 44.39477780388515]]], "type": "Polygon"}, "id": "168", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478885283168256"}, "type": "Feature"}, {"bbox": [-69.72907935935085, 44.375656769678635, -69.7105580812426, 44.38635183047617], "geometry": {"coordinates": [[[-69.7105580812426, 44.38408024446187], [-69.7228537163781, 44.38635183047617], [-69.72907935935085, 44.37792700538974], [-69.71678684648987, 44.375656769678635], [-69.7105580812426, 44.38408024446187]]], "type": "Polygon"}, "id": "169", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526479022722121728"}, "type": "Feature"}, {"bbox": [-69.74759136128246, 44.3695033292684, -69.72907935935085, 44.38019572067946], "geometry": {"coordinates": [[[-69.72907935935085, 44.37792700538974], [-69.74137173043617, 44.38019572067946], [-69.74759136128246, 44.37177069577974], [-69.73530211271228, 44.3695033292684], [-69.72907935935085, 44.37792700538974]]], "type": "Polygon"}, "id": "170", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481771501191168"}, "type": "Feature"}, {"bbox": [-69.74137173043617, 44.37792700538974, -69.7228537163781, 44.388621895325834], "geometry": {"coordinates": [[[-69.7228537163781, 44.38635183047617], [-69.73514921084862, 44.388621895325834], [-69.74137173043617, 44.38019572067946], [-69.72907935935085, 44.37792700538974], [-69.7228537163781, 44.38635183047617]]], "type": "Polygon"}, "id": "171", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526478988362383360"}, "type": "Feature"}, {"bbox": [-69.73530211271228, 44.367234443078644, -69.71678684648987, 44.37792700538974], "geometry": {"coordinates": [[[-69.71678684648987, 44.375656769678635], [-69.72907935935085, 44.37792700538974], [-69.73530211271228, 44.3695033292684], [-69.7230127212572, 44.367234443078644], [-69.71678684648987, 44.375656769678635]]], "type": "Polygon"}, "id": "172", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481737141452800"}, "type": "Feature"}, {"bbox": [-69.76002196363527, 44.35265942648666, -69.74152197818364, 44.363346821267946], "geometry": {"coordinates": [[[-69.74152197818364, 44.36108080275378], [-69.75380810510877, 44.363346821267946], [-69.76002196363527, 44.35492409778449], [-69.74773895748494, 44.35265942648666], [-69.74152197818364, 44.36108080275378]]], "type": "Polygon"}, "id": "173", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481427903807488"}, "type": "Feature"}, {"bbox": [-69.76623293858091, 44.344239201106944, -69.74773895748494, 44.35492409778449], "geometry": {"coordinates": [[[-69.74773895748494, 44.35265942648666], [-69.76002196363527, 44.35492409778449], [-69.76623293858091, 44.3465025259689], [-69.75395305233513, 44.344239201106944], [-69.74773895748494, 44.35265942648666]]], "type": "Polygon"}, "id": "174", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481462263545856"}, "type": "Feature"}, {"bbox": [-69.77244103166358, 44.33582012725368, -69.75395305233513, 44.3465025259689], "geometry": {"coordinates": [[[-69.75395305233513, 44.344239201106944], [-69.76623293858091, 44.3465025259689], [-69.77244103166358, 44.33808210645984], [-69.76016426445193, 44.33582012725368], [-69.75395305233513, 44.344239201106944]]], "type": "Polygon"}, "id": "175", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481290464854016"}, "type": "Feature"}, {"bbox": [-69.75380810510877, 44.36108080275378, -69.73530211271228, 44.37177069577974], "geometry": {"coordinates": [[[-69.73530211271228, 44.3695033292684], [-69.74759136128246, 44.37177069577974], [-69.75380810510877, 44.363346821267946], [-69.74152197818364, 44.36108080275378], [-69.73530211271228, 44.3695033292684]]], "type": "Polygon"}, "id": "176", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481805860929536"}, "type": "Feature"}, {"bbox": [-69.77864624459993, 44.32740220556504, -69.76016426445193, 44.33808210645984], "geometry": {"coordinates": [[[-69.76016426445193, 44.33582012725368], [-69.77244103166358, 44.33808210645984], [-69.77864624459993, 44.329662839895114], [-69.76637259555194, 44.32740220556504], [-69.76016426445193, 44.33582012725368]]], "type": "Polygon"}, "id": "177", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481256105115648"}, "type": "Feature"}, {"bbox": [-69.78484857910549, 44.318985436678304, -69.76637259555194, 44.329662839895114], "geometry": {"coordinates": [[[-69.76637259555194, 44.32740220556504], [-69.77864624459993, 44.329662839895114], [-69.78484857910549, 44.32124472691166], [-69.77257804735063, 44.318985436678304], [-69.76637259555194, 44.32740220556504]]], "type": "Polygon"}, "id": "178", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481084306423808"}, "type": "Feature"}, {"bbox": [-69.77257804735063, 44.31672463121928, -69.75409879809365, 44.32740220556504], "geometry": {"coordinates": [[[-69.75409879809365, 44.32514005526778], [-69.76637259555194, 44.32740220556504], [-69.77257804735063, 44.318985436678304], [-69.76030736608453, 44.31672463121928], [-69.75409879809365, 44.32514005526778]]], "type": "Polygon"}, "id": "179", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481049946685440"}, "type": "Feature"}, {"bbox": [-69.77878062156226, 44.30831035982989, -69.76030736608453, 44.318985436678304], "geometry": {"coordinates": [[[-69.76030736608453, 44.31672463121928], [-69.77257804735063, 44.318985436678304], [-69.77878062156226, 44.31056982122992], [-69.76651305561909, 44.30831035982989], [-69.76030736608453, 44.31672463121928]]], "type": "Polygon"}, "id": "180", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526481015586947072"}, "type": "Feature"}, {"bbox": [-69.79117714407575, 44.29148527757137, -69.77271586841037, 44.30215535985545], "geometry": {"coordinates": [[[-69.77271586841037, 44.29989724173558], [-69.78498031989997, 44.30215535985545], [-69.79117714407575, 44.29374205318957], [-69.77891580617032, 44.29148527757137], [-69.77271586841037, 44.29989724173558]]], "type": "Polygon"}, "id": "181", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526487131620376576"}, "type": "Feature"}, {"bbox": [-69.78498031989997, 44.29989724173558, -69.76651305561909, 44.31056982122992], "geometry": {"coordinates": [[[-69.76651305561909, 44.30831035982989], [-69.77878062156226, 44.31056982122992], [-69.78498031989997, 44.30215535985545], [-69.77271586841037, 44.29989724173558], [-69.76651305561909, 44.30831035982989]]], "type": "Polygon"}, "id": "182", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526487165980114944"}, "type": "Feature"}, {"bbox": [-69.79737109580046, 44.28307446797149, -69.77891580617032, 44.29374205318957], "geometry": {"coordinates": [[[-69.77891580617032, 44.29148527757137], [-69.79117714407575, 44.29374205318957], [-69.79737109580046, 44.28532990186613], [-69.78511287060965, 44.28307446797149], [-69.77891580617032, 44.29148527757137]]], "type": "Polygon"}, "id": "183", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526487303419068416"}, "type": "Feature"}, {"bbox": [-69.79130706343797, 44.27240920913461, -69.77285449316841, 44.28307446797149], "geometry": {"coordinates": [[[-69.77285449316841, 44.280817521851084], [-69.78511287060965, 44.28307446797149], [-69.79130706343797, 44.27466481356927], [-69.77905179674673, 44.27240920913461], [-69.77285449316841, 44.280817521851084]]], "type": "Polygon"}, "id": "184", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526487372138545152"}, "type": "Feature"}, {"bbox": [-69.80356217678373, 44.27466481356927, -69.78511287060965, 44.28532990186613], "geometry": {"coordinates": [[[-69.78511287060965, 44.28307446797149], [-69.79737109580046, 44.28532990186613], [-69.80356217678373, 44.27691890651808], [-69.79130706343797, 44.27466481356927], [-69.78511287060965, 44.28307446797149]]], "type": "Polygon"}, "id": "185", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526487337778806784"}, "type": "Feature"}, {"bbox": [-69.78524622955419, 44.261746277234366, -69.7667963783596, 44.27240920913461], "geometry": {"coordinates": [[[-69.7667963783596, 44.27015209325086], [-69.77905179674673, 44.27240920913461], [-69.78524622955419, 44.264002051470634], [-69.77299391995403, 44.261746277234366], [-69.7667963783596, 44.27015209325086]]], "type": "Polygon"}, "id": "186", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488128052789248"}, "type": "Feature"}, {"bbox": [-69.79749838636373, 44.264002051470634, -69.77905179674673, 44.27466481356927], "geometry": {"coordinates": [[[-69.77905179674673, 44.27240920913461], [-69.79130706343797, 44.27466481356927], [-69.79749838636373, 44.26625631499716], [-69.78524622955419, 44.264002051470634], [-69.77905179674673, 44.27240920913461]]], "type": "Polygon"}, "id": "187", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526486650584039424"}, "type": "Feature"}, {"bbox": [-69.77918859161781, 44.25108567282464, -69.76074145921177, 44.261746277234366], "geometry": {"coordinates": [[[-69.76074145921177, 44.25948899232539], [-69.77299391995403, 44.261746277234366], [-69.77918859161781, 44.25334161612485], [-69.76693923770117, 44.25108567282464], [-69.76074145921177, 44.25948899232539]]], "type": "Polygon"}, "id": "188", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488196772265984"}, "type": "Feature"}, {"bbox": [-69.77299391995403, 44.25948899232539, -69.7545408099261, 44.27015209325086], "geometry": {"coordinates": [[[-69.7545408099261, 44.267893465955375], [-69.7667963783596, 44.27015209325086], [-69.77299391995403, 44.261746277234366], [-69.76074145921177, 44.25948899232539], [-69.7545408099261, 44.267893465955375]]], "type": "Polygon"}, "id": "189", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488093693050880"}, "type": "Feature"}, {"bbox": [-69.78538039505692, 44.24268350808498, -69.76693923770117, 44.25334161612485], "geometry": {"coordinates": [[[-69.76693923770117, 44.25108567282464], [-69.77918859161781, 44.25334161612485], [-69.78538039505692, 44.244938110553804], [-69.77313414710017, 44.24268350808498], [-69.76693923770117, 44.25108567282464]]], "type": "Polygon"}, "id": "190", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488231132004352"}, "type": "Feature"}, {"bbox": [-69.77313414710017, 44.2404273964578, -69.75468973319546, 44.25108567282464], "geometry": {"coordinates": [[[-69.75468973319546, 44.248828219627875], [-69.76693923770117, 44.25108567282464], [-69.77313414710017, 44.24268350808498], [-69.76088774746036, 44.2404273964578], [-69.75468973319546, 44.248828219627875]]], "type": "Polygon"}, "id": "191", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488402930696192"}, "type": "Feature"}, {"bbox": [-69.77932618911356, 44.23202772790253, -69.76088774746036, 44.24268350808498], "geometry": {"coordinates": [[[-69.76088774746036, 44.2404273964578], [-69.77313414710017, 44.24268350808498], [-69.77932618911356, 44.23428249873737], [-69.76708289347519, 44.23202772790253], [-69.76088774746036, 44.2404273964578]]], "type": "Polygon"}, "id": "192", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488368570957824"}, "type": "Feature"}, {"bbox": [-69.78551536544494, 44.223629214592584, -69.76708289347519, 44.23428249873737], "geometry": {"coordinates": [[[-69.76708289347519, 44.23202772790253], [-69.77932618911356, 44.23428249873737], [-69.78551536544494, 44.22588264541197], [-69.7732751729435, 44.223629214592584], [-69.76708289347519, 44.23202772790253]]], "type": "Polygon"}, "id": "193", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488540369649664"}, "type": "Feature"}, {"bbox": [-69.7732751729435, 44.22137427612755, -69.7548394467064, 44.23202772790253], "geometry": {"coordinates": [[[-69.7548394467064, 44.22977144868466], [-69.76708289347519, 44.23202772790253], [-69.7732751729435, 44.223629214592584], [-69.76103482821935, 44.22137427612755], [-69.7548394467064, 44.22977144868466]]], "type": "Polygon"}, "id": "194", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488506009911296"}, "type": "Feature"}, {"bbox": [-69.7734169958243, 44.20232963151309, -69.75498994881171, 44.212978258668606], "geometry": {"coordinates": [[[-69.75498994881171, 44.210723153308464], [-69.76722734402493, 44.212978258668606], [-69.7734169958243, 44.20458339693697], [-69.76118269983861, 44.20232963151309], [-69.75498994881171, 44.210723153308464]]], "type": "Polygon"}, "id": "195", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525344842118332416"}, "type": "Feature"}, {"bbox": [-69.76722734402493, 44.210723153308464, -69.74879433291666, 44.22137427612755], "geometry": {"coordinates": [[[-69.74879433291666, 44.21911783005452], [-69.76103482821935, 44.22137427612755], [-69.76722734402493, 44.212978258668606], [-69.75498994881171, 44.210723153308464], [-69.74879433291666, 44.21911783005452]]], "type": "Polygon"}, "id": "196", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525344876478070784"}, "type": "Feature"}, {"bbox": [-69.77946458756767, 44.212978258668606, -69.76103482821935, 44.223629214592584], "geometry": {"coordinates": [[[-69.76103482821935, 44.22137427612755], [-69.7732751729435, 44.223629214592584], [-69.77946458756767, 44.21523185715757], [-69.76722734402493, 44.212978258668606], [-69.76103482821935, 44.22137427612755]]], "type": "Polygon"}, "id": "197", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526488609089126400"}, "type": "Feature"}, {"bbox": [-69.7673725876973, 44.19168333367213, -69.74894825273392, 44.20232963151309], "geometry": {"coordinates": [[[-69.74894825273392, 44.20007435999223], [-69.76118269983861, 44.20232963151309], [-69.7673725876973, 44.19393726529701], [-69.75514123786787, 44.19168333367213], [-69.74894825273392, 44.20007435999223]]], "type": "Polygon"}, "id": "198", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525344773398855680"}, "type": "Feature"}, {"bbox": [-69.7796037853175, 44.19393726529701, -69.76118269983861, 44.20458339693697], "geometry": {"coordinates": [[[-69.76118269983861, 44.20232963151309], [-69.7734169958243, 44.20458339693697], [-69.7796037853175, 44.1961896915609], [-69.7673725876973, 44.19393726529701], [-69.76118269983861, 44.20232963151309]]], "type": "Polygon"}, "id": "199", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525344807758594048"}, "type": "Feature"}, {"bbox": [-69.75514123786787, 44.18942789672425, -69.73671365615222, 44.20007435999223], "geometry": {"coordinates": [[[-69.73671365615222, 44.19781758241272], [-69.74894825273392, 44.20007435999223], [-69.75514123786787, 44.19168333367213], [-69.74290973747017, 44.18942789672425], [-69.73671365615222, 44.19781758241272]]], "type": "Polygon"}, "id": "200", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525344670319640576"}, "type": "Feature"}, {"bbox": [-69.76133136067163, 44.18103936569033, -69.74290973747017, 44.19168333367213], "geometry": {"coordinates": [[[-69.74290973747017, 44.18942789672425], [-69.75514123786787, 44.19168333367213], [-69.76133136067163, 44.18329346278296], [-69.74910295559859, 44.18103936569033], [-69.74290973747017, 44.18942789672425]]], "type": "Polygon"}, "id": "201", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525343124131414016"}, "type": "Feature"}, {"bbox": [-69.76751862284283, 44.172651989938615, -69.74910295559859, 44.18329346278296], "geometry": {"coordinates": [[[-69.74910295559859, 44.18103936569033], [-69.76133136067163, 44.18329346278296], [-69.76751862284283, 44.17490474795202], [-69.75529331223493, 44.172651989938615], [-69.74910295559859, 44.18103936569033]]], "type": "Polygon"}, "id": "202", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525343089771675648"}, "type": "Feature"}, {"bbox": [-69.75529331223493, 44.17039772811075, -69.73687440050729, 44.18103936569033], "geometry": {"coordinates": [[[-69.73687440050729, 44.1787837640484], [-69.74910295559859, 44.18103936569033], [-69.75529331223493, 44.172651989938615], [-69.74306785051924, 44.17039772811075], [-69.73687440050729, 44.1787837640484]]], "type": "Polygon"}, "id": "203", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525343192850890752"}, "type": "Feature"}, {"bbox": [-69.76148080907555, 44.16201284730621, -69.74306785051924, 44.172651989938615], "geometry": {"coordinates": [[[-69.74306785051924, 44.17039772811075], [-69.75529331223493, 44.172651989938615], [-69.76148080907555, 44.1642657700959], [-69.7492584398773, 44.16201284730621], [-69.74306785051924, 44.17039772811075]]], "type": "Polygon"}, "id": "204", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525343227210629120"}, "type": "Feature"}, {"bbox": [-69.77370302607785, 44.1642657700959, -69.75529331223493, 44.17490474795202], "geometry": {"coordinates": [[[-69.75529331223493, 44.172651989938615], [-69.76751862284283, 44.17490474795202], [-69.77370302607785, 44.16651718980574], [-69.76148080907555, 44.1642657700959], [-69.75529331223493, 44.172651989938615]]], "type": "Polygon"}, "id": "205", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525343261570367488"}, "type": "Feature"}, {"bbox": [-69.77988457207205, 44.15588070678811, -69.76148080907555, 44.16651718980574], "geometry": {"coordinates": [[[-69.76148080907555, 44.1642657700959], [-69.77370302607785, 44.16651718980574], [-69.77988457207205, 44.158130788969665], [-69.76766544781569, 44.15588070678811], [-69.76148080907555, 44.1642657700959]]], "type": "Polygon"}, "id": "206", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525343295930105856"}, "type": "Feature"}, {"bbox": [-69.76766544781569, 44.15362912226106, -69.7492584398773, 44.1642657700959], "geometry": {"coordinates": [[[-69.7492584398773, 44.16201284730621], [-69.76148080907555, 44.1642657700959], [-69.76766544781569, 44.15588070678811], [-69.75544617027658, 44.15362912226106], [-69.7492584398773, 44.16201284730621]]], "type": "Polygon"}, "id": "207", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525343330289844224"}, "type": "Feature"}, {"bbox": [-69.77384723014943, 44.14524655360075, -69.75544617027658, 44.15588070678811], "geometry": {"coordinates": [[[-69.75544617027658, 44.15362912226106], [-69.76766544781569, 44.15588070678811], [-69.77384723014943, 44.147496800640326], [-69.7616310434111, 44.14524655360075], [-69.75544617027658, 44.15362912226106]]], "type": "Polygon"}, "id": "208", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525342608735338496"}, "type": "Feature"}, {"bbox": [-69.7616310434111, 44.1429948049874, -69.74322674109146, 44.15362912226106], "geometry": {"coordinates": [[[-69.74322674109146, 44.151376035426445], [-69.75544617027658, 44.15362912226106], [-69.7616310434111, 44.14524655360075], [-69.74941470394029, 44.1429948049874], [-69.74322674109146, 44.151376035426445]]], "type": "Polygon"}, "id": "209", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525340787669204992"}, "type": "Feature"}, {"bbox": [-69.7678130609737, 44.13461473078274, -69.74941470394029, 44.14524655360075], "geometry": {"coordinates": [[[-69.74941470394029, 44.1429948049874], [-69.7616310434111, 44.14524655360075], [-69.7678130609737, 44.13686514194987], [-69.75559981036012, 44.13461473078274], [-69.74941470394029, 44.1429948049874]]], "type": "Polygon"}, "id": "210", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525340822028943360"}, "type": "Feature"}, {"bbox": [-69.76178206204258, 44.12398523887165, -69.74338640756362, 44.13461473078274], "geometry": {"coordinates": [[[-69.74338640756362, 44.1323628188133], [-69.75559981036012, 44.13461473078274], [-69.76178206204258, 44.12623581343656], [-69.74957174616138, 44.12398523887165], [-69.74338640756362, 44.1323628188133]]], "type": "Polygon"}, "id": "211", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525340890748420096"}, "type": "Feature"}, {"bbox": [-69.77399222465613, 44.12623581343656, -69.75559981036012, 44.13686514194987], "geometry": {"coordinates": [[[-69.75559981036012, 44.13461473078274], [-69.7678130609737, 44.13686514194987], [-69.77399222465613, 44.12848488793214], [-69.76178206204258, 44.12623581343656], [-69.75559981036012, 44.13461473078274]]], "type": "Polygon"}, "id": "212", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525340925108158464"}, "type": "Feature"}, {"bbox": [-69.780168536149, 44.117858053572085, -69.76178206204258, 44.12848488793214], "geometry": {"coordinates": [[[-69.76178206204258, 44.12623581343656], [-69.77399222465613, 44.12848488793214], [-69.780168536149, 44.12010579217041], [-69.76796146067824, 44.117858053572085], [-69.76178206204258, 44.12623581343656]]], "type": "Polygon"}, "id": "213", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525340959467896832"}, "type": "Feature"}, {"bbox": [-69.76796146067824, 44.115608815637145, -69.74957174616138, 44.12623581343656], "geometry": {"coordinates": [[[-69.74957174616138, 44.12398523887165], [-69.76178206204258, 44.12623581343656], [-69.76796146067824, 44.117858053572085], [-69.75575423085641, 44.115608815637145], [-69.74957174616138, 44.12398523887165]]], "type": "Polygon"}, "id": "214", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525340993827635200"}, "type": "Feature"}, {"bbox": [-69.78648255519246, 44.09048649239976, -69.76811064529431, 44.10110600877691], "geometry": {"coordinates": [[[-69.76811064529431, 44.09885944177975], [-69.78031170556547, 44.10110600877691], [-69.78648255519246, 44.09273172508838], [-69.77428457841243, 44.09048649239976], [-69.76811064529431, 44.09885944177975]]], "type": "Polygon"}, "id": "215", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525341440504233984"}, "type": "Feature"}, {"bbox": [-69.78031170556547, 44.09885944177975, -69.76193386333799, 44.109481451811696], "geometry": {"coordinates": [[[-69.76193386333799, 44.10723354973255], [-69.77413800795644, 44.109481451811696], [-69.78031170556547, 44.10110600877691], [-69.76811064529431, 44.09885944177975], [-69.76193386333799, 44.10723354973255]]], "type": "Polygon"}, "id": "216", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525341612302925824"}, "type": "Feature"}, {"bbox": [-69.77413800795644, 44.10723354973255, -69.75575423085641, 44.117858053572085], "geometry": {"coordinates": [[[-69.75575423085641, 44.115608815637145], [-69.76796146067824, 44.117858053572085], [-69.77413800795644, 44.109481451811696], [-69.76193386333799, 44.10723354973255], [-69.75575423085641, 44.115608815637145]]], "type": "Polygon"}, "id": "217", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525341646662664192"}, "type": "Feature"}, {"bbox": [-69.79265055852342, 44.08211470221277, -69.77428457841243, 44.09273172508838], "geometry": {"coordinates": [[[-69.77428457841243, 44.09048649239976], [-69.78648255519246, 44.09273172508838], [-69.79265055852342, 44.0843586013659], [-69.78045566437827, 44.08211470221277], [-69.77428457841243, 44.09048649239976]]], "type": "Polygon"}, "id": "218", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525341474863972352"}, "type": "Feature"}, {"bbox": [-69.80484529399753, 44.0843586013659, -69.78648255519246, 44.09497546063704], "geometry": {"coordinates": [[[-69.78648255519246, 44.09273172508838], [-69.7986803743794, 44.09497546063704], [-69.80484529399753, 44.086601004110825], [-69.79265055852342, 44.0843586013659], [-69.78648255519246, 44.09273172508838]]], "type": "Polygon"}, "id": "219", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525341509223710720"}, "type": "Feature"}, {"bbox": [-69.79881571724326, 44.07374407183807, -69.78045566437827, 44.0843586013659], "geometry": {"coordinates": [[[-69.78045566437827, 44.08211470221277], [-69.79265055852342, 44.0843586013659], [-69.79881571724326, 44.07598663822843], [-69.78662390487663, 44.07374407183807], [-69.78045566437827, 44.08211470221277]]], "type": "Polygon"}, "id": "220", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225373308026880"}, "type": "Feature"}, {"bbox": [-69.79278930159118, 44.06313187258471, -69.77443193438981, 44.07374407183807], "geometry": {"coordinates": [[[-69.77443193438981, 44.071500009807295], [-69.78662390487663, 44.07374407183807], [-69.79278930159118, 44.06537460189413], [-69.78060041095019, 44.06313187258471], [-69.77443193438981, 44.071500009807295]]], "type": "Polygon"}, "id": "221", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225442027503616"}, "type": "Feature"}, {"bbox": [-69.7989518562045, 44.054764895638286, -69.78060041095019, 44.06537460189413], "geometry": {"coordinates": [[[-69.78060041095019, 44.06313187258471], [-69.79278930159118, 44.06537460189413], [-69.7989518562045, 44.057006292998544], [-69.78676604455417, 44.054764895638286], [-69.78060041095019, 44.06313187258471]]], "type": "Polygon"}, "id": "222", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225613826195456"}, "type": "Feature"}, {"bbox": [-69.79292883688309, 44.044157519989746, -69.7745800742578, 44.054764895638286], "geometry": {"coordinates": [[[-69.7745800742578, 44.0525220041355], [-69.78676604455417, 44.054764895638286], [-69.79292883688309, 44.04639907958511], [-69.78074594364756, 44.044157519989746], [-69.7745800742578, 44.0525220041355]]], "type": "Polygon"}, "id": "223", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225682545672192"}, "type": "Feature"}, {"bbox": [-69.8049780330357, 44.06537460189413, -69.78662390487663, 44.07598663822843], "geometry": {"coordinates": [[[-69.78662390487663, 44.07374407183807], [-69.79881571724326, 44.07598663822843], [-69.8049780330357, 44.067615836294046], [-69.79278930159118, 44.06537460189413], [-69.78662390487663, 44.07374407183807]]], "type": "Polygon"}, "id": "224", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225407667765248"}, "type": "Feature"}, {"bbox": [-69.78676604455417, 44.0525220041355, -69.76841136273909, 44.06313187258471], "geometry": {"coordinates": [[[-69.76841136273909, 44.06088764840243], [-69.78060041095019, 44.06313187258471], [-69.78676604455417, 44.054764895638286], [-69.7745800742578, 44.0525220041355], [-69.76841136273909, 44.06088764840243]]], "type": "Polygon"}, "id": "225", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225579466457088"}, "type": "Feature"}, {"bbox": [-69.81729414256785, 44.048639145768064, -69.7989518562045, 44.059246196179984], "geometry": {"coordinates": [[[-69.7989518562045, 44.057006292998544], [-69.8111375075834, 44.059246196179984], [-69.81729414256785, 44.05087771850263], [-69.80511157039797, 44.048639145768064], [-69.7989518562045, 44.057006292998544]]], "type": "Polygon"}, "id": "226", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225201509335040"}, "type": "Feature"}, {"bbox": [-69.8111375075834, 44.057006292998544, -69.79278930159118, 44.067615836294046], "geometry": {"coordinates": [[[-69.79278930159118, 44.06537460189413], [-69.8049780330357, 44.067615836294046], [-69.8111375075834, 44.059246196179984], [-69.7989518562045, 44.057006292998544], [-69.79278930159118, 44.06537460189413]]], "type": "Polygon"}, "id": "227", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225235869073408"}, "type": "Feature"}, {"bbox": [-69.81716660365728, 44.067615836294046, -69.79881571724326, 44.078227708942066], "geometry": {"coordinates": [[[-69.79881571724326, 44.07598663822843], [-69.81100736986221, 44.078227708942066], [-69.81716660365728, 44.06985557574848], [-69.8049780330357, 44.067615836294046], [-69.79881571724326, 44.07598663822843]]], "type": "Polygon"}, "id": "228", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225304588550144"}, "type": "Feature"}, {"bbox": [-69.81100736986221, 44.07598663822843, -69.79265055852342, 44.086601004110825], "geometry": {"coordinates": [[[-69.79265055852342, 44.0843586013659], [-69.80484529399753, 44.086601004110825], [-69.81100736986221, 44.078227708942066], [-69.79881571724326, 44.07598663822843], [-69.79265055852342, 44.0843586013659]]], "type": "Polygon"}, "id": "229", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225338948288512"}, "type": "Feature"}, {"bbox": [-69.82344793966946, 44.040273160818586, -69.80511157039797, 44.05087771850263], "geometry": {"coordinates": [[[-69.80511157039797, 44.048639145768064], [-69.81729414256785, 44.05087771850263], [-69.82344793966946, 44.0425104038775], [-69.81126844585194, 44.040273160818586], [-69.80511157039797, 44.048639145768064]]], "type": "Polygon"}, "id": "230", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225854344364032"}, "type": "Feature"}, {"bbox": [-69.82959890056749, 44.03190833876514, -69.81126844585194, 44.0425104038775], "geometry": {"coordinates": [[[-69.81126844585194, 44.040273160818586], [-69.82344793966946, 44.0425104038775], [-69.82959890056749, 44.034144252919276], [-69.81742248424557, 44.03190833876514], [-69.81126844585194, 44.040273160818586]]], "type": "Polygon"}, "id": "231", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225957423579136"}, "type": "Feature"}, {"bbox": [-69.83574702694008, 44.02354468022192, -69.81742248424557, 44.034144252919276], "geometry": {"coordinates": [[[-69.81742248424557, 44.03190833876514], [-69.82959890056749, 44.034144252919276], [-69.83574702694008, 44.02577926624175], [-69.82357368725692, 44.02354468022192], [-69.81742248424557, 44.03190833876514]]], "type": "Polygon"}, "id": "232", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225991783317504"}, "type": "Feature"}, {"bbox": [-69.82357368725692, 44.0213086029435, -69.80524590443552, 44.03190833876514], "geometry": {"coordinates": [[[-69.80524590443552, 44.02967093262274], [-69.81742248424557, 44.03190833876514], [-69.82357368725692, 44.02354468022192], [-69.81140018301612, 44.0213086029435], [-69.80524590443552, 44.02967093262274]]], "type": "Polygon"}, "id": "233", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525226163582009344"}, "type": "Feature"}, {"bbox": [-69.79908878961717, 44.035794196581776, -69.78074594364756, 44.04639907958511], "geometry": {"coordinates": [[[-69.78074594364756, 44.044157519989746], [-69.79292883688309, 44.04639907958511], [-69.79908878961717, 44.03803442504146], [-69.78690897258852, 44.035794196581776], [-69.78074594364756, 44.044157519989746]]], "type": "Polygon"}, "id": "234", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225716905410560"}, "type": "Feature"}, {"bbox": [-69.82370023817042, 44.00235252263063, -69.80538103350312, 44.01294743661744], "geometry": {"coordinates": [[[-69.80538103350312, 44.01071119693818], [-69.81755162703584, 44.01294743661744], [-69.82370023817042, 44.0045874342574], [-69.81153271742785, 44.00235252263063], [-69.80538103350312, 44.01071119693818]]], "type": "Polygon"}, "id": "235", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525223311723724800"}, "type": "Feature"}, {"bbox": [-69.83586759383952, 44.0045874342574, -69.81755162703584, 44.015182185802246], "geometry": {"coordinates": [[[-69.81755162703584, 44.01294743661744], [-69.82972205656297, 44.015182185802246], [-69.83586759383952, 44.0068208561186], [-69.82370023817042, 44.0045874342574], [-69.81755162703584, 44.01294743661744]]], "type": "Polygon"}, "id": "236", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525223346083463168"}, "type": "Feature"}, {"bbox": [-69.82972205656297, 44.01294743661744, -69.81140018301612, 44.02354468022192], "geometry": {"coordinates": [[[-69.81140018301612, 44.0213086029435], [-69.82357368725692, 44.02354468022192], [-69.82972205656297, 44.015182185802246], [-69.81755162703584, 44.01294743661744], [-69.81140018301612, 44.0213086029435]]], "type": "Polygon"}, "id": "237", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525226129222270976"}, "type": "Feature"}, {"bbox": [-69.82984601809447, 43.99399501213123, -69.81153271742785, 44.0045874342574], "geometry": {"coordinates": [[[-69.81153271742785, 44.00235252263063], [-69.82370023817042, 44.0045874342574], [-69.82984601809447, 43.9962285964754], [-69.8176815692877, 43.99399501213123], [-69.81153271742785, 44.00235252263063]]], "type": "Polygon"}, "id": "238", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525223277363986432"}, "type": "Feature"}, {"bbox": [-69.80524590443552, 44.02743203452739, -69.78690897258852, 44.03803442504146], "geometry": {"coordinates": [[[-69.78690897258852, 44.035794196581776], [-69.79908878961717, 44.03803442504146], [-69.80524590443552, 44.02967093262274], [-69.79306916275968, 44.02743203452739], [-69.78690897258852, 44.035794196581776]]], "type": "Polygon"}, "id": "239", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225751265148928"}, "type": "Feature"}, {"bbox": [-69.81742248424557, 44.02967093262274, -69.79908878961717, 44.040273160818586], "geometry": {"coordinates": [[[-69.79908878961717, 44.03803442504146], [-69.81126844585194, 44.040273160818586], [-69.81742248424557, 44.03190833876514], [-69.80524590443552, 44.02967093262274], [-69.79908878961717, 44.03803442504146]]], "type": "Polygon"}, "id": "240", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525225785624887296"}, "type": "Feature"}, {"bbox": [-69.83598896848153, 43.985638666051464, -69.8176815692877, 43.9962285964754], "geometry": {"coordinates": [[[-69.8176815692877, 43.99399501213123], [-69.82984601809447, 43.9962285964754], [-69.83598896848153, 43.987870923882554], [-69.82382759075607, 43.985638666051464], [-69.8176815692877, 43.99399501213123]]], "type": "Polygon"}, "id": "241", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525223174284771328"}, "type": "Feature"}, {"bbox": [-69.84815017900182, 43.987870923882554, -69.82984601809447, 43.99846069178262], "geometry": {"coordinates": [[[-69.82984601809447, 43.9962285964754], [-69.84201030076127, 43.99846069178262], [-69.84815017900182, 43.990101693405066], [-69.83598896848153, 43.987870923882554], [-69.82984601809447, 43.9962285964754]]], "type": "Polygon"}, "id": "242", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525223208644509696"}, "type": "Feature"}, {"bbox": [-69.85428723023364, 43.979514417089156, -69.83598896848153, 43.990101693405066], "geometry": {"coordinates": [[[-69.83598896848153, 43.987870923882554], [-69.84815017900182, 43.990101693405066], [-69.85428723023364, 43.98174386159586], [-69.84212909100398, 43.979514417089156], [-69.83598896848153, 43.987870923882554]]], "type": "Polygon"}, "id": "243", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525223105565294592"}, "type": "Feature"}, {"bbox": [-69.84212909100398, 43.97728348500202, -69.82382759075607, 43.987870923882554], "geometry": {"coordinates": [[[-69.82382759075607, 43.985638666051464], [-69.83598896848153, 43.987870923882554], [-69.84212909100398, 43.979514417089156], [-69.8299707835053, 43.97728348500202], [-69.82382759075607, 43.985638666051464]]], "type": "Polygon"}, "id": "244", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525223139925032960"}, "type": "Feature"}, {"bbox": [-69.8299707835053, 43.97505106536851, -69.81166604744269, 43.985638666051464], "geometry": {"coordinates": [[[-69.81166604744269, 43.983404919946196], [-69.82382759075607, 43.985638666051464], [-69.8299707835053, 43.97728348500202], [-69.81781230935383, 43.97505106536851], [-69.81166604744269, 43.983404919946196]]], "type": "Polygon"}, "id": "245", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525229359037677568"}, "type": "Feature"}, {"bbox": [-69.83611114920657, 43.96669837566193, -69.81781230935383, 43.97728348500202], "geometry": {"coordinates": [[[-69.81781230935383, 43.97505106536851], [-69.8299707835053, 43.97728348500202], [-69.83611114920657, 43.9689294695927], [-69.82395574336373, 43.96669837566193], [-69.81781230935383, 43.97505106536851]]], "type": "Polygon"}, "id": "246", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525229736994799616"}, "type": "Feature"}, {"bbox": [-69.84224868952998, 43.958346851435756, -69.82395574336373, 43.9689294695927], "geometry": {"coordinates": [[[-69.82395574336373, 43.96669837566193], [-69.83611114920657, 43.9689294695927], [-69.84224868952998, 43.96057662043244], [-69.8300963511424, 43.958346851435756], [-69.82395574336373, 43.96669837566193]]], "type": "Polygon"}, "id": "247", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525229771354537984"}, "type": "Feature"}, {"bbox": [-69.8483834061445, 43.94999649329849, -69.8300963511424, 43.96057662043244], "geometry": {"coordinates": [[[-69.8300963511424, 43.958346851435756], [-69.84224868952998, 43.96057662043244], [-69.8483834061445, 43.95222493812939], [-69.83623413435876, 43.94999649329849], [-69.8300963511424, 43.958346851435756]]], "type": "Polygon"}, "id": "248", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525229874433753088"}, "type": "Feature"}, {"bbox": [-69.82408469434678, 43.94553514767906, -69.80579117448823, 43.95611559638164], "geometry": {"coordinates": [[[-69.80579117448823, 43.95388285530478], [-69.81794384559046, 43.95611559638164], [-69.82408469434678, 43.94776656313693], [-69.81193508772165, 43.94553514767906], [-69.80579117448823, 43.95388285530478]]], "type": "Polygon"}, "id": "249", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525230011872706560"}, "type": "Feature"}, {"bbox": [-69.83623413435876, 43.94776656313693, -69.81794384559046, 43.958346851435756], "geometry": {"coordinates": [[[-69.81794384559046, 43.95611559638164], [-69.8300963511424, 43.958346851435756], [-69.83623413435876, 43.94999649329849], [-69.82408469434678, 43.94776656313693], [-69.81794384559046, 43.95611559638164]]], "type": "Polygon"}, "id": "250", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525229840074014720"}, "type": "Feature"}, {"bbox": [-69.8243449848707, 43.907699286478355, -69.8060685469615, 43.91827009189645], "geometry": {"coordinates": [[[-69.8060685469615, 43.916039682552416], [-69.81820930001831, 43.91827009189645], [-69.8243449848707, 43.90992837182488], [-69.812207290769, 43.907699286478355], [-69.8060685469615, 43.916039682552416]]], "type": "Polygon"}, "id": "251", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218604439568384"}, "type": "Feature"}, {"bbox": [-69.81820930001831, 43.916039682552416, -69.79992698185445, 43.92661297818042], "geometry": {"coordinates": [[[-69.79992698185445, 43.92438124407106], [-69.81207079471478, 43.92661297818042], [-69.81820930001831, 43.91827009189645], [-69.8060685469615, 43.916039682552416], [-69.79992698185445, 43.92438124407106]]], "type": "Polygon"}, "id": "252", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525219051116167168"}, "type": "Feature"}, {"bbox": [-69.82421444206223, 43.92661297818042, -69.80592946729593, 43.93718860521329], "geometry": {"coordinates": [[[-69.80592946729593, 43.93495703007057], [-69.81807617635748, 43.93718860521329], [-69.82421444206223, 43.928843228514964], [-69.81207079471478, 43.92661297818042], [-69.80592946729593, 43.93495703007057]]], "type": "Polygon"}, "id": "253", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525219119835643904"}, "type": "Feature"}, {"bbox": [-69.81807617635748, 43.93495703007057, -69.7997853160964, 43.94553514767906], "geometry": {"coordinates": [[[-69.7997853160964, 43.94330224695989], [-69.81193508772165, 43.94553514767906], [-69.81807617635748, 43.93718860521329], [-69.80592946729593, 43.93495703007057], [-69.7997853160964, 43.94330224695989]]], "type": "Polygon"}, "id": "254", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525230080592183296"}, "type": "Feature"}, {"bbox": [-69.81207079471478, 43.92438124407106, -69.7937825937837, 43.93495703007057], "geometry": {"coordinates": [[[-69.7937825937837, 43.932723970427716], [-69.80592946729593, 43.93495703007057], [-69.81207079471478, 43.92661297818042], [-69.79992698185445, 43.92438124407106], [-69.7937825937837, 43.932723970427716]]], "type": "Polygon"}, "id": "255", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525219085475905536"}, "type": "Feature"}, {"bbox": [-69.812207290769, 43.90546871884189, -69.7939276289408, 43.916039682552416], "geometry": {"coordinates": [[[-69.7939276289408, 43.913807790193914], [-69.8060685469615, 43.916039682552416], [-69.812207290769, 43.907699286478355], [-69.80006943064285, 43.90546871884189], [-69.7939276289408, 43.913807790193914]]], "type": "Polygon"}, "id": "256", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218638799306752"}, "type": "Feature"}, {"bbox": [-69.81193508772165, 43.94330224695989, -69.7936383394498, 43.95388285530478], "geometry": {"coordinates": [[[-69.7936383394498, 43.951648628240484], [-69.80579117448823, 43.95388285530478], [-69.81193508772165, 43.94553514767906], [-69.7997853160964, 43.94330224695989], [-69.7936383394498, 43.951648628240484]]], "type": "Polygon"}, "id": "257", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525230046232444928"}, "type": "Feature"}, {"bbox": [-69.81234457425768, 43.88656467128904, -69.79407344330662, 43.89713081277245], "geometry": {"coordinates": [[[-69.79407344330662, 43.89490008755991], [-69.80620841186119, 43.89713081277245], [-69.81234457425768, 43.888794072590834], [-69.80021266084428, 43.88656467128904], [-69.79407344330662, 43.89490008755991]]], "type": "Polygon"}, "id": "258", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218398281138176"}, "type": "Feature"}, {"bbox": [-69.82447632113636, 43.888794072590834, -69.80620841186119, 43.899360056454576], "geometry": {"coordinates": [[[-69.80620841186119, 43.89713081277245], [-69.81834321493997, 43.899360056454576], [-69.82447632113636, 43.89102199308593], [-69.81234457425768, 43.888794072590834], [-69.80620841186119, 43.89713081277245]]], "type": "Polygon"}, "id": "259", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218432640876544"}, "type": "Feature"}, {"bbox": [-69.81834321493997, 43.89713081277245, -69.80006943064285, 43.907699286478355], "geometry": {"coordinates": [[[-69.80006943064285, 43.90546871884189], [-69.812207290769, 43.907699286478355], [-69.81834321493997, 43.899360056454576], [-69.80620841186119, 43.89713081277245], [-69.80006943064285, 43.90546871884189]]], "type": "Polygon"}, "id": "260", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218673159045120"}, "type": "Feature"}, {"bbox": [-69.81847791949305, 43.878230420743165, -69.80021266084428, 43.888794072590834], "geometry": {"coordinates": [[[-69.80021266084428, 43.88656467128904], [-69.81234457425768, 43.888794072590834], [-69.81847791949305, 43.88045849890142], [-69.80634906037484, 43.878230420743165], [-69.80021266084428, 43.88656467128904]]], "type": "Polygon"}, "id": "261", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218295201923072"}, "type": "Feature"}, {"bbox": [-69.80634906037484, 43.876000862536934, -69.788080582503, 43.88656467128904], "geometry": {"coordinates": [[[-69.788080582503, 43.88433378921611], [-69.80021266084428, 43.88656467128904], [-69.80634906037484, 43.878230420743165], [-69.79422003527016, 43.876000862536934], [-69.788080582503, 43.88433378921611]]], "type": "Polygon"}, "id": "262", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218329561661440"}, "type": "Feature"}, {"bbox": [-69.81248264355783, 43.86766910141959, -69.79422003527016, 43.878230420743165], "geometry": {"coordinates": [[[-69.79422003527016, 43.876000862536934], [-69.80634906037484, 43.878230420743165], [-69.81248264355783, 43.86989733652619], [-69.80035667084496, 43.86766910141959], [-69.79422003527016, 43.876000862536934]]], "type": "Polygon"}, "id": "263", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218226482446336"}, "type": "Feature"}, {"bbox": [-69.80050145903459, 43.846553462369336, -69.78224415066997, 43.85711011512663], "geometry": {"coordinates": [[[-69.78224415066997, 43.85488024525448], [-69.794367403224, 43.85711011512663], [-69.80050145903459, 43.84878200923102], [-69.78838125507039, 43.846553462369336], [-69.78224415066997, 43.85488024525448]]], "type": "Polygon"}, "id": "264", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244546042036224"}, "type": "Feature"}, {"bbox": [-69.80035667084496, 43.86543938702347, -69.7820908457847, 43.876000862536934], "geometry": {"coordinates": [[[-69.7820908457847, 43.87376982431861], [-69.79422003527016, 43.876000862536934], [-69.80035667084496, 43.86766910141959], [-69.78823053269309, 43.86543938702347], [-69.7820908457847, 43.87376982431861]]], "type": "Polygon"}, "id": "265", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525243068573286400"}, "type": "Feature"}, {"bbox": [-69.8064904908858, 43.85711011512663, -69.78823053269309, 43.86766910141959], "geometry": {"coordinates": [[[-69.78823053269309, 43.86543938702347], [-69.80035667084496, 43.86766910141959], [-69.8064904908858, 43.85933850646749], [-69.794367403224, 43.85711011512663], [-69.78823053269309, 43.86543938702347]]], "type": "Polygon"}, "id": "266", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525243102933024768"}, "type": "Feature"}, {"bbox": [-69.81262149704995, 43.84878200923102, -69.794367403224, 43.85933850646749], "geometry": {"coordinates": [[[-69.794367403224, 43.85711011512663], [-69.8064904908858, 43.85933850646749], [-69.81262149704995, 43.851009078283205], [-69.80050145903459, 43.84878200923102], [-69.794367403224, 43.85711011512663]]], "type": "Polygon"}, "id": "267", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244580401774592"}, "type": "Feature"}, {"bbox": [-69.80663270178096, 43.838227845321065, -69.78838125507039, 43.84878200923102], "geometry": {"coordinates": [[[-69.78838125507039, 43.846553462369336], [-69.80050145903459, 43.84878200923102], [-69.80663270178096, 43.84045506993875], [-69.79451554556424, 43.838227845321065], [-69.78838125507039, 43.846553462369336]]], "type": "Polygon"}, "id": "268", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244649121251328"}, "type": "Feature"}, {"bbox": [-69.80677569145068, 43.81935405310275, -69.78853274803727, 43.82990339471127], "geometry": {"coordinates": [[[-69.78853274803727, 43.82767601524036], [-69.80064702380639, 43.82990339471127], [-69.80677569145068, 43.82158011114074], [-69.79466446069043, 43.81935405310275], [-69.78853274803727, 43.82767601524036]]], "type": "Polygon"}, "id": "269", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244820919943168"}, "type": "Feature"}, {"bbox": [-69.81276113311809, 43.82990339471127, -69.79451554556424, 43.84045506993875], "geometry": {"coordinates": [[[-69.79451554556424, 43.838227845321065], [-69.80663270178096, 43.84045506993875], [-69.81276113311809, 43.832129297851054], [-69.80064702380639, 43.82990339471127], [-69.79451554556424, 43.838227845321065]]], "type": "Polygon"}, "id": "270", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244683480989696"}, "type": "Feature"}, {"bbox": [-69.80064702380639, 43.82767601524036, -69.78239822394505, 43.838227845321065], "geometry": {"coordinates": [[[-69.78239822394505, 43.835999143651264], [-69.79451554556424, 43.838227845321065], [-69.80064702380639, 43.82990339471127], [-69.78853274803727, 43.82767601524036], [-69.78239822394505, 43.835999143651264]]], "type": "Polygon"}, "id": "271", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244855279681536"}, "type": "Feature"}, {"bbox": [-69.81888675469988, 43.82158011114074, -69.80064702380639, 43.832129297851054], "geometry": {"coordinates": [[[-69.80064702380639, 43.82990339471127], [-69.81276113311809, 43.832129297851054], [-69.81888675469988, 43.82380469356834], [-69.80677569145068, 43.82158011114074], [-69.80064702380639, 43.82990339471127]]], "type": "Polygon"}, "id": "272", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244786560204800"}, "type": "Feature"}, {"bbox": [-69.81290155014982, 43.81103325783871, -69.79466446069043, 43.82158011114074], "geometry": {"coordinates": [[[-69.79466446069043, 43.81935405310275], [-69.80677569145068, 43.82158011114074], [-69.81290155014982, 43.81325799520939], [-69.80079336355712, 43.81103325783871], [-69.79466446069043, 43.81935405310275]]], "type": "Polygon"}, "id": "273", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525245061438111744"}, "type": "Feature"}, {"bbox": [-69.80691945828893, 43.800488738444656, -69.78868500999964, 43.81103325783871], "geometry": {"coordinates": [[[-69.78868500999964, 43.808807045613655], [-69.80079336355712, 43.81103325783871], [-69.80691945828893, 43.8027136300477], [-69.79481414700562, 43.800488738444656], [-69.78868500999964, 43.808807045613655]]], "type": "Polygon"}, "id": "274", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244992718635008"}, "type": "Feature"}, {"bbox": [-69.80079336355712, 43.808807045613655, -69.78255306401869, 43.81935405310275], "geometry": {"coordinates": [[[-69.78255306401869, 43.8171265194902], [-69.79466446069043, 43.81935405310275], [-69.80079336355712, 43.81103325783871], [-69.78868500999964, 43.808807045613655], [-69.78255306401869, 43.8171265194902]]], "type": "Polygon"}, "id": "275", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525244958358896640"}, "type": "Feature"}, {"bbox": [-69.79481414700562, 43.798262372743004, -69.77657649107594, 43.808807045613655], "geometry": {"coordinates": [[[-69.77657649107594, 43.80657935857038], [-69.78868500999964, 43.808807045613655], [-69.79481414700562, 43.800488738444656], [-69.78270866930313, 43.798262372743004], [-69.77657649107594, 43.80657935857038]]], "type": "Polygon"}, "id": "276", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525245645553664000"}, "type": "Feature"}, {"bbox": [-69.7888380393669, 43.78772003498833, -69.77060302677893, 43.798262372743004], "geometry": {"coordinates": [[[-69.77060302677893, 43.79603453297921], [-69.78270866930313, 43.798262372743004], [-69.7888380393669, 43.789946553456794], [-69.7767354361724, 43.78772003498833], [-69.77060302677893, 43.79603453297921]]], "type": "Polygon"}, "id": "277", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525245576834187264"}, "type": "Feature"}, {"bbox": [-69.80094047668702, 43.789946553456794, -69.78270866930313, 43.800488738444656], "geometry": {"coordinates": [[[-69.78270866930313, 43.798262372743004], [-69.79481414700562, 43.800488738444656], [-69.80094047668702, 43.79217159858217], [-69.7888380393669, 43.789946553456794], [-69.78270866930313, 43.798262372743004]]], "type": "Polygon"}, "id": "278", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525245611193925632"}, "type": "Feature"}, {"bbox": [-69.79496460291641, 43.779406703371876, -69.7767354361724, 43.789946553456794], "geometry": {"coordinates": [[[-69.7767354361724, 43.78772003498833], [-69.7888380393669, 43.789946553456794], [-69.79496460291641, 43.78163190131024], [-69.78286503821404, 43.779406703371876], [-69.7767354361724, 43.78772003498833]]], "type": "Polygon"}, "id": "279", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525245542474448896"}, "type": "Feature"}, {"bbox": [-69.79511582683278, 43.76055951132948, -69.77689514112267, 43.77109453872785], "geometry": {"coordinates": [[[-69.77689514112267, 43.768869188685144], [-69.78899183455187, 43.77109453872785], [-69.79511582683278, 43.762783541653455], [-69.78302216917056, 43.76055951132948], [-69.77689514112267, 43.768869188685144]]], "type": "Polygon"}, "id": "280", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525202146124890112"}, "type": "Feature"}, {"bbox": [-69.78899183455187, 43.768869188685144, -69.77076530818142, 43.779406703371876], "geometry": {"coordinates": [[[-69.77076530818142, 43.77718003284568], [-69.78286503821404, 43.779406703371876], [-69.78899183455187, 43.77109453872785], [-69.77689514112267, 43.768869188685144], [-69.77076530818142, 43.77718003284568]]], "type": "Polygon"}, "id": "281", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525202180484628480"}, "type": "Feature"}, {"bbox": [-69.8010883615998, 43.77109453872785, -69.78286503821404, 43.78163190131024], "geometry": {"coordinates": [[[-69.78286503821404, 43.779406703371876], [-69.79496460291641, 43.78163190131024], [-69.8010883615998, 43.773318416901], [-69.78899183455187, 43.77109453872785], [-69.78286503821404, 43.779406703371876]]], "type": "Polygon"}, "id": "282", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525202214844366848"}, "type": "Feature"}, {"bbox": [-69.80123701670267, 43.7522510013754, -69.78302216917056, 43.762783541653455], "geometry": {"coordinates": [[[-69.78302216917056, 43.76055951132948], [-69.79511582683278, 43.762783541653455], [-69.80123701670267, 43.754473712745025], [-69.78914639397087, 43.7522510013754], [-69.78302216917056, 43.76055951132948]]], "type": "Polygon"}, "id": "283", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525202524082012160"}, "type": "Feature"}, {"bbox": [-70.31967207426477, 43.60167035225082, -70.30170552373943, 43.612133366781705], "geometry": {"coordinates": [[[-70.30170552373943, 43.6099869686252], [-70.31371403507062, 43.612133366781705], [-70.31967207426477, 43.60381547267117], [-70.30766660610621, 43.60167035225082], [-70.30170552373943, 43.6099869686252]]], "type": "Polygon"}, "id": "284", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654704064397312"}, "type": "Feature"}, {"bbox": [-70.32562738081961, 43.59335494160112, -70.30766660610621, 43.60381547267117], "geometry": {"coordinates": [[[-70.30766660610621, 43.60167035225082], [-70.31967207426477, 43.60381547267117], [-70.32562738081961, 43.59549878503231], [-70.31362495495723, 43.59335494160112], [-70.30766660610621, 43.60167035225082]]], "type": "Polygon"}, "id": "285", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654738424135680"}, "type": "Feature"}, {"bbox": [-70.31362495495723, 43.59120964647835, -70.29566089721017, 43.60167035225082], "geometry": {"coordinates": [[[-70.29566089721017, 43.59952377941918], [-70.30766660610621, 43.60167035225082], [-70.31362495495723, 43.59335494160112], [-70.30162228737237, 43.59120964647835], [-70.29566089721017, 43.59952377941918]]], "type": "Polygon"}, "id": "286", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654772783874048"}, "type": "Feature"}, {"bbox": [-70.31958057190934, 43.58289671907774, -70.30162228737237, 43.59335494160112], "geometry": {"coordinates": [[[-70.30162228737237, 43.59120964647835], [-70.31362495495723, 43.59335494160112], [-70.31958057190934, 43.58504073723853], [-70.30758094476045, 43.58289671907774], [-70.30162228737237, 43.59120964647835]]], "type": "Polygon"}, "id": "287", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654807143612416"}, "type": "Feature"}, {"bbox": [-70.33157995635194, 43.58504073723853, -70.31362495495723, 43.59549878503231], "geometry": {"coordinates": [[[-70.31362495495723, 43.59335494160112], [-70.32562738081961, 43.59549878503231], [-70.33157995635194, 43.5871833044272], [-70.31958057190934, 43.58504073723853], [-70.31362495495723, 43.59335494160112]]], "type": "Polygon"}, "id": "288", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654841503350784"}, "type": "Feature"}, {"bbox": [-70.3375298024775, 43.57672773972465, -70.31958057190934, 43.5871833044272], "geometry": {"coordinates": [[[-70.31958057190934, 43.58504073723853], [-70.33157995635194, 43.5871833044272], [-70.3375298024775, 43.57886903141706], [-70.32553345857819, 43.57672773972465], [-70.31958057190934, 43.58504073723853]]], "type": "Polygon"}, "id": "289", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654875863089152"}, "type": "Feature"}, {"bbox": [-70.32553345857819, 43.574584997779326, -70.30758094476045, 43.58504073723853], "geometry": {"coordinates": [[[-70.30758094476045, 43.58289671907774], [-70.31958057190934, 43.58504073723853], [-70.32553345857819, 43.57672773972465], [-70.31353687099006, 43.574584997779326], [-70.30758094476045, 43.58289671907774]]], "type": "Polygon"}, "id": "290", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654910222827520"}, "type": "Feature"}, {"bbox": [-70.34347692081093, 43.56841594962027, -70.32553345857819, 43.57886903141706], "geometry": {"coordinates": [[[-70.32553345857819, 43.57672773972465], [-70.3375298024775, 43.57886903141706], [-70.34347692081093, 43.5705559665623], [-70.3314836165784, 43.56841594962027], [-70.32553345857819, 43.57672773972465]]], "type": "Polygon"}, "id": "291", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657796440850432"}, "type": "Feature"}, {"bbox": [-70.33167730011819, 43.60381547267117, -70.31371403507062, 43.61427831179656], "geometry": {"coordinates": [[[-70.31371403507062, 43.612133366781705], [-70.32572230508197, 43.61427831179656], [-70.33167730011819, 43.60595914067012], [-70.31967207426477, 43.60381547267117], [-70.31371403507062, 43.612133366781705]]], "type": "Polygon"}, "id": "292", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526647729037508608"}, "type": "Feature"}, {"bbox": [-70.3314836165784, 43.56627448314424, -70.31353687099006, 43.57672773972465], "geometry": {"coordinates": [[[-70.31353687099006, 43.574584997779326], [-70.32553345857819, 43.57672773972465], [-70.3314836165784, 43.56841594962027], [-70.31949006767584, 43.56627448314424], [-70.31353687099006, 43.574584997779326]]], "type": "Polygon"}, "id": "293", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657693361635328"}, "type": "Feature"}, {"bbox": [-70.33743104752352, 43.55796517573281, -70.31949006767584, 43.56841594962027], "geometry": {"coordinates": [[[-70.31949006767584, 43.56627448314424], [-70.3314836165784, 43.56841594962027], [-70.33743104752352, 43.56010536748532], [-70.32544053643124, 43.55796517573281], [-70.31949006767584, 43.56627448314424]]], "type": "Polygon"}, "id": "294", "properties": {"__folium_color": "LightCyan", "s2downstream": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526657727721373696"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_70724fd8b1bdcc5de6e8da39480dbf3b.addTo(feature_group_a2953805e09dd6fc1bc6774bdd4ee9df);
var layer_control_29becb82d46d0278f798dd7ab79f5d19_layers = {
base_layers : {
"openstreetmap" : tile_layer_e8c0bbfb13d3433fc3bc13080cd33fea,
},
overlays : {
"\u003cspan style=\"color: red;\"\u003eFacilities\u003c/span\u003e" : geo_json_077d8ec858699aa1b26f20b06e1ba23c,
"\u003cspan style=\"color: DarkBlue;\"\u003eReaches\u003c/span\u003e" : geo_json_f6b8711ecc192a8102d98d8fe915093b,
"\u003cspan style=\"color: DodgerBlue;\"\u003eDownstream Reaches\u003c/span\u003e" : geo_json_cf4224f40973c7d5f504340a558fe4ed,
"\u003cspan style=\"color: blue;\"\u003eWater Samples \u003c/span\u003e" : geo_json_7a7a86644d72105d0db207ae31bd66dc,
"\u003cspan style=\"color: salmon;\"\u003eSkinless Fish Samples\u003c/span\u003e" : geo_json_3b456b5ae8fedc30e49180256e544391,
"\u003cspan style=\"color:pink;\"\u003eSkin-On Fish Samples\u003c/span\u003e" : geo_json_d783563f612398558009ab02cdd0df93,
"S2 Cells" : feature_group_a2953805e09dd6fc1bc6774bdd4ee9df,
},
};
let layer_control_29becb82d46d0278f798dd7ab79f5d19 = L.control.layers(
layer_control_29becb82d46d0278f798dd7ab79f5d19_layers.base_layers,
layer_control_29becb82d46d0278f798dd7ab79f5d19_layers.overlays,
{"autoZIndex": true, "collapsed": false, "position": "topright"}
).addTo(map_246537f924c98c05df96a0a8a5dd041b);
tile_layer_e8c0bbfb13d3433fc3bc13080cd33fea.addTo(map_246537f924c98c05df96a0a8a5dd041b);
geo_json_077d8ec858699aa1b26f20b06e1ba23c.addTo(map_246537f924c98c05df96a0a8a5dd041b);
geo_json_cf4224f40973c7d5f504340a558fe4ed.addTo(map_246537f924c98c05df96a0a8a5dd041b);
geo_json_7a7a86644d72105d0db207ae31bd66dc.addTo(map_246537f924c98c05df96a0a8a5dd041b);
geo_json_3b456b5ae8fedc30e49180256e544391.addTo(map_246537f924c98c05df96a0a8a5dd041b);
geo_json_d783563f612398558009ab02cdd0df93.addTo(map_246537f924c98c05df96a0a8a5dd041b);
geo_json_c4af98399588b9f10f102bf4657a7ea0.addTo(feature_group_a2953805e09dd6fc1bc6774bdd4ee9df);
geo_json_70724fd8b1bdcc5de6e8da39480dbf3b.addTo(feature_group_a2953805e09dd6fc1bc6774bdd4ee9df);
</script>
</html>