-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
593 lines (531 loc) · 48.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Simple Map Viewer</title>
<link rel="shortcut icon" type="image/png" href="static/img/favicon.ico" />
<link rel="stylesheet" href="static/dist/all.min.css" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FK7WVLNVJ7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FK7WVLNVJ7');
</script>
<style>
@-webkit-keyframes spin{
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}
}
@keyframes spin{
0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}
.spinner {
background: transparent no-repeat center center;
/*src: https://design.google.com/icons/#ic_autorenew*/
background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjNjQ2RDVBIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTEyIDZ2M2w0LTQtNC00djNjLTQuNDIgMC04IDMuNTgtOCA4IDAgMS41Ny40NiAzLjAzIDEuMjQgNC4yNkw2LjcgMTQuOGMtLjQ1LS44My0uNy0xLjc5LS43LTIuOCAwLTMuMzEgMi42OS02IDYtNnptNi43NiAxLjc0TDE3LjMgOS4yYy40NC44NC43IDEuNzkuNyAyLjggMCAzLjMxLTIuNjkgNi02IDZ2LTNsLTQgNCA0IDR2LTNjNC40MiAwIDgtMy41OCA4LTggMC0xLjU3LS40Ni0zLjAzLTEuMjQtNC4yNnoiLz4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==);
animation: spin 2s infinite linear;
}
</style>
</head>
<body>
<div id="LoadingScrim" style="position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 10000; background: #FFF; padding: 15% 0 0 50%;">
<div class="spinner" style="width:100px;height:100px;background-size:100px;"></div>
</div>
<div id="TutorialContainer">
<div class="scrim"></div>
<div class="content">
<div class="header">Tutorial<span class="fa fa-times-circle" onclick="closeTutorial();"></span></div>
<iframe width="560" height="315" src="https://www.youtube.com/embed/rGQTy2CAa8Q" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div id="SharePageContainer" class="tooltipTopRight" onclick="event.stopPropagation();">
<div class="pointer"></div>
<div class="content">
<input type="url" readonly="readonly" style="display: table-cell; width: 97%"/>
<div style="margin-top: 5px;">Use Ctrl+C (Cmd+C on Mac) to copy the url.</div>
</div>
</div>
<div id="PdfSupportTooltipContainer" class="tooltipTopRight">
<div class="bridge"></div>
<div class="pointer"></div>
<div class="content">
Report generation is not supported for Internet Explorer.<br>
You can use <a href="https://www.mozilla.org/en-US/firefox/new/" target="_blank">Firefox</a> or <a href="https://www.google.com/chrome/" target="_blank">Chrome</a> for accessing this feature.
</div>
</div>
<div class="table fullwidth fullheight">
<div id="Header" class="table-row fullwidth">
<h3 class="left">Simple Map Viewer</h3>
<button id="PDFButton" class="button button-default right">
<span class="fa fa-file-pdf-o"></span>
Create Report
</button>
<button id="SharePageButton" class="button button-default right">
<span class="fa fa-share-alt"></span> Share
</button>
<button id="TutorialButtonSmall" class="button button-default right">
<span class="fa fa-play-circle"></span>
Tutorial
</button>
<div class="clear"></div>
</div>
<div id="Main" class="table fullwidth fullheight">
<div id="Sidebar" class="table-cell fullheight">
<!-- loading spinner -->
<div id="SidebarLoadingScrim" class="flex-container-centered hidden" style="padding-top:40px;">
<div class="spinner" style="width:50px;height:50px;background-size:50px;"></div>
</div>
<div id="SidebarContents" class="table fullheight fullwidth">
<!-- header row -->
<div class="table-row fullwidth">
<ul id="MainSidebarHeader" class="tabs">
<li class="active" data-tab="Intro">Info</li>
<li data-tab="PriorityFilter">Priorities</li>
<li data-tab="SppFilter">Species</li>
<li data-tab="LandUseFilter">Land Use</li>
<li data-tab="ThreatsFilter">Threats</li>
</ul>
<div id="DetailsHeader" class="hidden">
<div style="padding: 0px 6px;">
<div class="right">
<i id="DetailsClose" class="fa fa-times-circle"></i>
</div>
<h4 id="Unit"></h4>
<div class="quiet small">
<i>
<span id="UnitID"></span>
(<span id="UnitArea"></span> hectares)
</i>
</div>
</div>
<ul class="tabs small" style="padding-top: 8px;">
<li class="active" data-tab="DetailsOverview">Overview</li>
<li data-tab="DetailsCLIP">CLIP</li>
<li data-tab="DetailsLandUse">Land Use</li>
<li data-tab="DetailsThreats">Threats</li>
<li data-tab="DetailsPartners">Partners</li>
</ul>
</div>
</div>
<!-- content row -->
<div class="table-row fullwidth fullheight">
<div class="pos-rel fullwidth fullheight">
<div class="pos-abs fillspace scrolly">
<div id="MainSidebar">
<div id="Intro" class="tab">
<p style="font-size: 15px;margin-bottom:2px;">
<img src="static/img/ScrubJay.jpg" style="width:50%;margin:0 14px 6px 0; border-radius: 10px 0;box-shadow:2px 2px 5px #AAA;" align="left"/>
<span style="font-weight: bold;">
Welcome to the Simple Map Viewer.
</span>
<br/><br/>
This simple interface is designed to help inform conservation decisions by
allowing you to explore a suite of data layers and models.
You’ll find information on priority natural resources, biodiversity richness,
landscape connectivity and integrity, surface waters and factors
contributing to potential landscape change (sea level rise, urban development).
</p>
<button id="TutorialButtonBig" class="button button-primary">
<span class="fa-play-circle"></span>
Video Tutorial
</button>
<div class="divider divider-light"></div>
<div>
<h4><span class="badge">1</span> Compare Key Characteristics across Florida</h4>
<p class="inset" style="font-size: small">
Use one of the tabs above to explore
different combinations of key characteristics assessed at the
watershed scale across the state. Click on the bars in the charts to filter
the map by that class. You can combine filters across tabs and across factors within a tab.
You can also display that factor on the map by clicking the map icon next to the name.
</p>
<h4><span class="badge">2</span> Explore Details for Watershed(s)</h4>
<p class="inset" style="font-size: small">
To find out more information about a specific watershed, click on it in the map.
To select and aggregate details for multiple watersheds, hold down your Ctrl
or Cmd (Mac only) keys, then click on the watersheds you wish to select.
The detailed data for each watershed will be aggregated into a single aggregate
set of results.
</p>
<div id="CreateReportInstruction">
<h4><span class="badge">3</span> Create a Report</h4>
<p class="inset" style="font-size: small">
You can save your current view, including any filters and selected watersheds, to a detailed PDF report.
</p>
<p id="IEWarning" class="alert inset hidden" style="font-size:small; margin-top:-8px;margin-right:32px; padding:3px 6px; background:rgba(255,169,0,.2); border-radius:3px; color:#333;">
<i class="fa fa-exclamation-triangle"></i>
You are using Internet Explorer. Unfortunately, you will be unable to Create a Report. Please use another browser, such as Firefox or Chrome.
</p>
</div>
</div>
<div class="divider divider-light"></div>
<p class="small quiet" style="margin-top: 20px;">
We welcome your feedback. Please <a href="mailto:[email protected]">contact us</a>
to let us know what we can do to make this viewer more useful for you, or to report
any bugs.
</p>
</div>
<div id="PriorityFilter" class="tab hidden">
<p class="small quieter">
Each factor below represents a different conservation related measure.
Each factor is broken into 5 classes. Each class has an associated range of
values that represent the area of a factor within the watershed (HUC 12).
The bars represent the number of watersheds that fall into each class.
The initial setting divides the number of watersheds approximately equally
across the 5 classes for each factor.
<br/>
<br/>
Click one or more bars to filter the map. Click the map icon to show that
factor on the map.
</p>
</div>
<div id="SppFilter" class="tab hidden">
<p class="small" style="color: #AAA;">
Select one or more species below to select watersheds that have at least the amount
of potential habitat you specify (up to the maximum amount of potential
habitat area found for that species).
<br/>
<br/>
Use the slider or the number field to provide the maximum area value.
</p>
<div></div> <!-- selectors -->
<ul class="slider-list"></ul> <!-- items -->
</div>
<div id="LandUseFilter" class="tab hidden">
<p class="small" style="color: #AAA;">
Use one or more of the sliders below to select watersheds that contain at least the amount
you specify of these general land use categories. The categories were generalized from the
78 state level land cover types outlined in the Florida Cooperative Land Cover Map (CLC, version 3.2).
<br/>
<br/>
Use the slider or the number field to provide the maximum area value.
</p>
<div id="LandUseFilterList" class="slider-list"></div>
</div>
<div id="ThreatsFilter" class="tab hidden">
<p class="small" style="color: #AAA;">
Each factor below represents a different conservation related measure.
Each factor is broken into 5 classes. Each class has an associated range of
values that represent the area of a factor within the watershed (HUC 12).
The bars represent the number of watersheds that fall into each class.
The initial setting divides the number of watersheds approximately equally
across the 5 classes for each factor.
<br/>
<br/>
Click one or more bars to filter the map. Click the map icon to show that
factor on the map.
</p>
</div>
</div>
<div id="Details" class="hidden">
<div id="DetailsOverview" class="tab">
<section class="js-hasTooltip " data-tooltip-title="Florida Conservation Blueprint v. 1.0 Conservation Assets" data-tooltip="Blueprint v. 1.0 delineates Conservation Assets (CAs) the biological, ecological, and cultural features and ecological processes that are the focus of the Florida Landscape Conservation Design effort. Twelve Conservation Assets were collaboratively identified. Nine are based on natural land covers from the Cooperative Land Cover (CLC v. 3.2): High Pine and Scrub, Pine Flatwoods and Dry Prairie, Freshwater Forested Wetlands, Hardwood Forested Uplands, Coastal Uplands, Freshwater Non-forested Wetlands, Estuarine, Marine, and Freshwater Aquatic. The other three are Landscape Connectivity, Cultural Features and Working Lands. The Marine, Estuarine and Cultural Conservation Assets are not yet fully developed, however partial Estuarine is shown.">
<h4>Blueprint v. 1.0 Conservation Assets</h4>
<div>
<div id="PFLCC_PR_Bars" class="horiz-bars"></div>
</div>
</section>
<section id="DetailsSelectedWS" class="expandable">
<h4>Selected Watersheds</h4>
<div>
<ul id="PFLCC_SelectedWS_List" class="nomargin"></ul>
</div>
</section>
<section class="read-more">
<p class="small quiet">
<a href="https://flcpa.databasin.org/articles/784241b6f9c64be7b51ecd2382919287" target="_blank">Read more</a>
about conservation assets and
<a href="https://flcpa.databasin.org/datasets/d80a5f6d631d40ce88eb34c2499e13d8" target="_blank">access data.</a>
</p>
</section>
</div>
<div id="DetailsCLIP" class="tab hidden">
<ul class="tabs subtabs small" style="margin-top: 0; margin-bottom: 16px;">
<li class="active" data-tab="CLIPOverall">Overall</li>
<li data-tab="CLIPBiodiversity">Biodiversity</li>
<li data-tab="CLIPLandscape">Landscape</li>
<li data-tab="CLIPWater">Water Resources</li>
</ul>
<div id="CLIPOverall" class="tab">
<section class="js-hasTooltip" data-tooltip-title="CLIP Overall Priorities" data-tooltip="The Critical Lands and Waters Identification Project (CLIP) is a collection of spatial data that identify statewide priorities for a broad range of natural resources in Florida. CLIP 4.0 is organized into a set of core natural resource data layers which are combined into resource categories, three of which (biodiversity, landscapes, surface water) have been combined into the Aggregated CLIP model, which identifies five priority levels for natural resource conservation.">
<h4>CLIP Overall Priorities</h4>
<div>
<div id="CLIP_Chart"></div>
</div>
</section>
<section class="read-more">
<p class="small quiet">
<a href="http://www.fnai.org/clip.cfm" target="_blank">Read more</a> about CLIP 4.0
and <a href="https://flcpa.databasin.org/datasets/7788c43882ef4af3b2b57412ce572ef6" target="_blank">access data.</a>
</p>
</section>
</div>
<div id="CLIPBiodiversity" class="tab hidden">
<section class="expandable expanded js-hasTooltip" data-tooltip-title="Overall CLIP Biodiversity" data-tooltip="This model is a combination of the four CLIP core data layers in the Biodiversity Resource Category: Strategic Habitat Conservation Areas (SHCA), Vertebrate Potential Habitat Richness (VertRich), Rare Species Habitat Conservation Priorities (FNAIHAB), and Priority Natural Communities (Natcom). See the CLIP Technical Report for the rules used to assign the core data layers into the Biodiversity resource priority model.">
<h4>CLIP Biodiversity</h4>
<div>
<div id="Bio_Chart"></div>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Rare Species" data-tooltip="Species models were scored by weighted Global and State rarity rank multiplied by the habitat suitability score (10-point scale). Six priority classes were developed using class breaks along the continuum: Priority 1 is highest and Priority 6 is the lowest. See Appendix C of CLIP 4.0 Technical Report for further details.">
<h4>Rare Species</h4>
<div>
<div id="BioRareSpp_Chart"></div>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Strategic Habitat Conservation Areas" data-tooltip="This data layer was created by FWC to identify gaps in the existing statewide system of wildlife conservation areas, and to inform ongoing land acquisition and conservation efforts. FWC modeled areas of habitat that are essential to sustain viable populations for 34 species of terrestrial (land-based) vertebrates that are not adequately protected on existing conservation lands. The CLIP version also identifies habitat on conservation lands for all 62 species analyzed for the project.">
<h4>Strategic Habitat Conservation Areas</h4>
<div>
<div id="BioSHCA_Chart"></div>
<div id="BioSHCATable" class="detail-table"></div>
<p class="quiet" style="margin-top: 20px;">
* See listing of FWC's SHCA species in Appendix A of <a href="http://www.fnai.org/clip.cfm" target="_blank">CLIP Technical Report</a>.
</p>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Priority Natural Communities" data-tooltip="This data layer was created by FNAI originally to inform the Florida Forever environmental land acquisition program. The natural communities were mapped primarily based on the FNAI/FWC Cooperative Land Cover (CLC) data layer. This layer includes 12 priority natural community types: upland glades, pine rocklands, seepage slopes, scrub, sandhill, sandhill upland lakes, rockland hammock, coastal uplands, imperiled coastal lakes, dry prairie, upland pine, pine flatwoods, upland hardwood forest, or coastal wetlands. These natural communities are prioritized by a combination of their heritage global status rank (G-rank) and landscape context, based on the Land Use Intensity Index (subset of CLIP Landscape Integrity Index) and FNAI Potential Natural Areas.
<br/>
The qualifiers (Very High, High, Moderate) for the Priority Natural Communities in CLIP were based on the Landscape Integrity Priority Classifications created by FNAI. A more specific description of these prioritization can be found in Appendix D of the CLIP Technical Report.">
<h4>Priority Natural Communities</h4>
<div>
<div id="BioPNC_Chart"></div>
<div id="BioPNC_Table" class="detail-table"></div>
<p class="quiet" style="margin-top: 20px;">
* See listing of FWC's SHCA species in Appendix A of <a href="http://www.fnai.org/clip.cfm" target="_blank">CLIP Technical Report</a>.
</p>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Overall Vertebrate Species Richness" data-tooltip="Potential habitat for one or more rare or vulnerable vertebrate species. Richness refers to the number of species overlapping at any location. FWC modeled potential habitat for 62 species of terrestrial (land-based) vertebrates that may not be adequately protected on existing conservation lands. The most overlapping species in this model is 13.">
<h4>Overall Vertebrate Species Richness</h4>
<div>
<div id="BioSppRich_Chart"></div>
<div id="BioSppRichTable" class="detail-table"></div>
</div>
</section>
<section class="read-more">
<p class="small quiet">
<a href="http://www.fnai.org/clip.cfm" target="_blank">Read more</a> about CLIP 4.0
and <a href="https://flcpa.databasin.org/datasets/7788c43882ef4af3b2b57412ce572ef6" target="_blank">access data.</a>
</p>
</section>
</div>
<div id="CLIPLandscape" class="tab hidden">
<section class="expandable expanded js-hasTooltip" data-tooltip-title="CLIP Landscape" data-tooltip="This model is a combination of the two core data layers in the Landscape Resource Category: Florida Ecological Greenways Network, and Landscape Integrity Index. See the CLIP Technical Report for the rules used to assign the core data layers into the Landscape resource priority model.">
<h4>CLIP Landscape</h4>
<div>
<div id="Land_Chart"></div>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Florida Ecological Greenways Network" data-tooltip="This data layer was created by the University of Florida Center for Landscape Conservation Planning to provide an ecological component to the Statewide Greenways System plan developed by the Dept. of Environmental Protection, Office of Greenways and Trails. It is intended to represent a statewide network of ecological hubs and linkages designed to maintain landscape-scale ecological functions and fragmentation sensitive biodiversity throughout the state.">
<h4>Florida Ecological Greenways Network</h4>
<div>
<div id="Greenways_Chart"></div>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Landscape Integrity Index" data-tooltip="This data layer was created by the University of Florida Center for Landscape Conservation Planning specifically for CLIP. It combines two models: natural land cover patch size and land use intensity. Both are based on the Cooperative Land Cover (CLC) data layer and major roads data from the Florida Department of Transportation (which are used to help delineate patches). Higher priorites indicate large expanses of remote, intact natural and semi-natural areas. Lower priorites indicate more fragmented landscapes with increasingly intensive land uses from agriculture to urban development.">
<h4>Landscape Integrity Index</h4>
<div>
<div id="LI_Chart"></div>
</div>
</section>
<section class="read-more">
<p class="small quiet">
<a href="http://www.fnai.org/clip.cfm" target="_blank">Read more</a> about CLIP 4.0
and <a href="https://flcpa.databasin.org/datasets/7788c43882ef4af3b2b57412ce572ef6" target="_blank">access data.</a>
</p>
</section>
</div>
<div id="CLIPWater" class="tab hidden">
<section class="expandable expanded js-hasTooltip" data-tooltip-title="CLIP Surface Water" data-tooltip="This model is a combination of the three core data layers in the Surface Water Resource Category: Significant Surface Waters, Natural Floodplain, and Wetlands. See the CLIP Technical Report for the rules used to assign the core data layers into the Surface Water resource priority model.">
<h4>CLIP Surface Water</h4>
<div>
<div id="Water_Chart"></div>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Significant Surface Waters" data-tooltip="This data layer was created by FNAI, in consultation with water resource experts, originally to inform the Florida Forever environmental land acquisition program. It identifies buffers to important surface water bodies as well as watersheds that contribute to those water bodies.">
<h4>Significant Surface Waters</h4>
<div>
<div id="SSW_Chart"></div>
<p class="quiet" style="margin-top: 20px;">
* See Appendix A of <a href="http://www.fnai.org/clip.cfm" target="_blank">CLIP Technical Report</a>.
</p>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Natural Floodplain" data-tooltip="This data layer was created by FNAI, in consultation with water resource experts, originally to inform the Florida Forever environmental land acquisition program. It identifies FEMA 100-year floodplain for most counties, or a surrogate model for 100-year floodplain (based on wetlands and soils) where FEMA data isn’t complete.">
<h4>Natural Floodplain</h4>
<div>
<div id="Floodplain_Chart"></div>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Wetlands" data-tooltip="This data layer was created by FNAI, in consultation with water resource experts, originally to inform the Florida Forever environmental land acquisition program. Wetlands were mapped based on the Cooperative Land Cover (CLC) data layer. Highest priorities indicate wetlands within large intact natural landscapes (although the wetlands themselves may be small or large). Lowest priorities indicate wetlands within fragmented landscapes surrounded by intensive agriculture or urban development">
<h4>Wetlands</h4>
<div>
<div id="Wetlands_Chart"></div>
<p class="quiet" style="margin-top: 20px;">
* See Appendix A of <a href="http://www.fnai.org/clip.cfm" target="_blank">CLIP Technical Report</a>.
</p>
</div>
</section>
<section class="expandable js-hasTooltip" data-tooltip-title="Aquifer Recharge" data-tooltip="This data layer was created by FNAI, in collaboration with Advanced Geospatial, Inc., originally to inform the Florida Forever environmental land acquisition program. AGI developed an initial Recharge Potential model following a similar model to the Florida Aquifer Vulnerability Assessment (FAVA). FNAI removed discharge areas and prioritized the model based on overlap with Springs Protection Areas and buffers to public water supply wells. High priorities indicate high potential for recharge to an underlying aquifer system. The highest priorities indicate high potential for recharge to springs or public water supplies.">
<h4>Aquifer Recharge</h4>
<div>
<div id="Aquifer_Chart"></div>
</div>
</section>
<section class="read-more">
<p class="small quiet">
<a href="http://www.fnai.org/clip.cfm" target="_blank">Read more</a> about CLIP 4.0
and <a href="https://flcpa.databasin.org/datasets/7788c43882ef4af3b2b57412ce572ef6" target="_blank">access data.</a>
</p>
</section>
</div>
</div>
<div id="DetailsLandUse" class="tab hidden">
<section class="js-hasTooltip" data-tooltip-title="Land Use" data-tooltip="These land use categories were generalized from the 78 state level land cover types outlined in the Florida Cooperative Land Cover Map (CLC, version 3.2) currently maintained by FWC and FNAI. This generalization was performed to make visualization and calculation in this tool manageable.">
<h4>Land Use</h4>
<div id="LU_Bars" class="horiz-bars"></div>
</section>
<section class="read-more">
<p class="small quiet">
Read more about the Florida Cooperative Land Cover Map and access data <a href="https://flcpa.databasin.org/datasets/1a365ed0c9fd45d392d6a46a3d858627" target="_blank">here.</a>
</p>
</section>
</div>
<div id="DetailsThreats" class="tab hidden">
<section class="expandable expanded js-hasTooltip " data-tooltip-title="Projected Sea Level Rise" data-tooltip="These sea level rise projections were produced by the University of Florida Geoplan Center.
These projections measure sea level rise in meter increments up until 3 meters, based on Bathtub sea level rise models.
The graph below reports the area affected for each of these three scenarios (as well as the area unaffected).
Time ranges were extrapolated from the High Bathtub Projections (for Mean Sea Level Rise) used in the University of
Florida GeoPlan Center's Sea Level Rise Sketch tool.<br/><br/>
The hectares reported for each of these scenarios are cumulative figures.">
<h4>Projected Sea Level Rise</h4>
<div>
<div id="SLR_Bars" class="horiz-bars"></div>
<p class="small quiet">
Read more about sea level rise projections and access data <a href="https://flcpa.databasin.org/datasets/dd54d301894f4322a7a30832572c4a7e" target="_blank">here.</a>
</p>
</div>
</section>
<section class="expandable expanded js-hasTooltip " style="margin-top:20px;" data-tooltip-title="Urban Development / Population Growth" data-tooltip="These development projections are derived from the Florida 2060 development dataset. This projections explores the physical reality and consequences of the population growth from 2005 to 2060 if existing land use policy or population growth patterns do not change. The land use suitability analysis displayed in this dataset was performed by the University of Florida GeoPlan Center for 1000 Friends of Florida. The graph below reports the area affected for each of the three time steps used in this model, the existing extent of urbanization in 2005, and the area unaffected by urbanization. The hectares reported for each of the three time steps are cumulative figures.">
<h4>Urban Development / Population Growth</h4>
<div>
<div id="Dev_Bars" class="horiz-bars"></div>
<p class="small quiet">
Read more about urban development projections and access data <a href="https://flcpa.databasin.org/datasets/4a1340791089437dae38593f0ef39439" target="_blank">here.</a>
</p>
</div>
</section>
</div>
<div id="DetailsPartners" class="tab hidden">
<ul class="tabs subtabs small" style="margin-top: 0; margin-bottom: 16px;">
<li class="active" data-tab="OwnershipTab">Overall Ownership</li>
<li data-tab="PartnerTab">Partner Conservation Efforts</li>
<li data-tab="OpportunitiesTab">Private Landowner Opportunities</li>
</ul>
<div id="OwnershipTab" class="tab">
<section class="js-hasTooltip " data-tooltip-title="Overall Ownership" data-tooltip="Land ownership is broken down into Federal, State, Local, Private Conserved Land, and Other Lands categories.">
<div id="Owner_Chart"></div>
<div id="Owner_Table" class="detail-table"></div>
</section>
<section class="read-more" style="margin-top: 10px;">
<p class="small quiet">
Read more about land ownership and access data <a href="https://flcpa.databasin.org/datasets/b3866cc50e8e49b98358765ea6a66ceb" target="_blank">here.</a>
</p>
</section>
</div>
<div id="PartnerTab" class="tab hidden">
<section style="margin-top: 30px;" class="js-hasTooltip " data-tooltip-title="Regional / Partner Conservation Efforts" data-tooltip="Conservation priorities and potential areas of interest for partner
organizations and land trusts. Each partner prioritizes conservation
need differently and so these identified areas are not entirely comparable.
Nevertheless, an attempt was made to standardize the summarization of
these differing efforts. To start, a prioritization was only associated
with a HUC12 if it occupied a significant portion of that HUC
(greater than a third). In terms of prioritizations, if an organization
ranked its priorities, only better than average/normal priority
areas were included. For instance, for the National Bobwhite
Conservation Initiative, only High and Moderate rankings were included.
Or, for the Nature Conservancy Resilient Sites, any above average
resiliency area was included (Slightly Above Average, Above Average, and Far Above Average).
For other prioritizations, the results were binary such as the Nature
Conservancy’s Ecoregional Priorities where all areas designated as
priorities or linkages were included.">
<h4>Regional / Partner Conservation Efforts</h4>
<ul id="PartnersList"></ul>
<p class="small quiet">
Read more about partner priorities access data <a href="https://flcpa.databasin.org/galleries/ae944bf240534e46971d3cf9c48c6a32#expand=100185%2C100257" target="_blank">here.</a>
</p>
</section>
<section class="js-hasTooltip " data-tooltip-title="Land Trusts by County" data-tooltip="Land Trusts are listed by county by the Land Trust Alliance. You can follow the link for the county to search for land trusts operating in that area.">
<h4>Land Trusts by County</span></h4>
<ul id="LTList"></ul>
</section>
</div>
<div id="OpportunitiesTab" class="tab hidden">
<section style="margin-top: 30px;" data-tooltip-title="Private Landowner Opportunities">
<div id="OpportunitiesList"></div>
</section>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- clear filter row -->
<div id="ClearFilterContainer" class="table-row fullwidth hidden">
<div>
<div id="ClearAllButton" class="button button-primary inline-middle small" style="margin: 10px 0;">
Clear All Filters
</div>
</div>
</div>
</div>
</div>
<div id="Map" class="table-cell fullheight"></div>
</div>
<div id="Footer" class="table-row small">
<ul>
<li>
<a href="https://flcpa.databasin.org/" target="_blank">Access Data</a>
</li>
<li>
<a href="http://www.fnai.org/clip.cfm" target="_blank">CLIP 4.0</a>
</li>
<li>
<a href="mailto:[email protected]">Contact Us</a>
</li>
<li class="small right">
Created by the
<a href="http://consbio.org" target="_blank">Conservation Biology Institute</a>
</li>
</ul>
</div>
</div>
<div id="Tooltip" class="tooltip" style="left: -9999px;top:-9999px;"></div>
<div id="Legend" class="map-panel hidden">
<h4></h4>
<h5 class="quiet"></h5>
<div></div>
<div title="Layer transparency">
<i class="fa fa-eye"></i>
<input type="range" min="0" max="1" defaultValue="0.3" value="0.25" step="0.25"/>
<i class="fa fa-eye-slash"></i>
</div>
<div class="hidden quiet small center legend-count"></div>
</div>
<div id="IEAlert" class="modal alert hidden">
<div class="center">
<h1>
<i class="fa fa-exclamation-triangle"></i>
<br/>
You are using an unsupported version of Internet Explorer.
</h1>
Please <a href="https://www.microsoft.com/en-us/windows/microsoft-edge#6rxB9czcCIb8mG8j.97" target="_blank">upgrade your browser</a>
or use
<a href="https://www.google.com/chrome/browser/features.html" target="_blank">Google Chrome.</a>
</div>
</div>
<script src="static/dist/all.min.js"></script>
</body>
</html>