-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
416 lines (374 loc) · 178 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
<!doctype html>
<html lang="en" dir="ltr">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6YLQ7M6F82"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-6YLQ7M6F82');
</script>
<!-- End Google tag (gtag.js) -->
<meta charset="utf-8">
<title>GEOLAND ELD</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI="
crossorigin=""/>
<style>
body {
margin: 0;
font-family: Tahoma, Arial, sans-serif;
}
#map {
width: 100%;
height: 100vh;
}
.header {
position: fixed;
top: 0;
left: 50%;
transform: translateX(-50%);
background-color: #ffffff; /* White background */
color: #000000; /* Black text */
border: 1px solid #ccc;
border-radius: 10px;
padding: 10px;
width: auto;
max-width: 80%;
text-align: center;
z-index: 1000;
font-size: 16px; /* Adjusted font size for the banner */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header h1 {
margin: 0;
font-size: 1em; /* Adjusted font size for header */
}
.logo-container {
position: fixed;
bottom: 10px; /* Adjust this value as needed */
left: 10px; /* Move to bottom-left corner */
z-index: 1000;
text-align: left; /* Align logo to the left */
}
.logo-container img {
max-width: 150px; /* Adjust the size as needed */
height: auto;
}
.small-banner {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%); /* Center the email */
background-color: #f8f9fa;
border: 1px solid #ddd;
border-radius: 3px;
padding: 5px;
font-size: 12px; /* Very small font size */
box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
z-index: 1000;
text-align: center;
}
.small-banner a {
color: black; /* Set the email color to black */
text-decoration: none;
}
.small-banner a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="header">
<h1>GeoLand Aviation Emergency Landing Site Database (Alpha release)</h1>
</div>
<div class="logo-container">
<img src="https://geolandblog.wordpress.com/wp-content/uploads/2016/08/logomakr_86r3om.png" alt="Geoland Logo">
</div>
<div id="map"></div>
<div class="small-banner">
<a href="mailto:geolandav@gmail.com">geolandav@gmail.com</a>
</div>
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM="
crossorigin="">
</script>
</body>
</html>
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM="
crossorigin="">
</script>
<script>
//initialize map
var map = L.map('map').setView([26.592304, -80.084910], 15.6);
//var map = L.map('map', {
//center: [26.59, -80.04],
//zoom: 15.6,
//layers: [sat, zones]
//});
// colors to use in a geoJson style object
var polygonColors = {
'green': "#00ff22",
'yellow': "#eed202",
'red': "#ff0000",
'blue': "#102ebd",
}
//maptile
var sat = L.tileLayer('https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}', {
attribution: 'Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community'
}).addTo(map);
//var zones = L.layerGroup([Safe, Caution, Danger]);
//GeoJSON
var geojsonFeature = {
"type": "FeatureCollection",
"name": "My Places",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Name": "15mi" }, "geometry": { "type": "Point", "coordinates": [ -80.253957214207006, 26.745089979375201 ] } },
{ "type": "Feature", "properties": { "Name": "geolandbetacircle" }, "geometry": { "type": "LineString", "coordinates": [ [ -80.254619782412703, 26.7476153788094 ], [ -80.238771404760499, 26.7602290930548 ], [ -80.221748754368406, 26.7715594448992 ], [ -80.203681644432606, 26.7815198078479 ], [ -80.184707987783796, 26.790034008076098 ], [ -80.164972734831096, 26.7970369155173 ], [ -80.144626753653597, 26.802474949758501 ], [ -80.123825661276996, 26.806306496573399 ], [ -80.1027286156625, 26.808502231647498 ], [ -80.081497078338103, 26.809045348813299 ], [ -80.060293557898902, 26.807931690897 ], [ -80.039280344805704, 26.805169782089202 ], [ -80.018618247996599, 26.800780761571499 ], [ -79.998465343809798, 26.794798218948799 ], [ -79.978975747587896, 26.787267932857901 ], [ -79.960298418101502, 26.7782475149214 ], [ -79.942576004592198, 26.767805961998 ], [ -79.925943745805696, 26.756023120426001 ], [ -79.910528429859298, 26.742989066671999 ], [ -79.896447423187894, 26.7288034094626 ], [ -79.8838077761324, 26.713574519091001 ], [ -79.872705411998894, 26.697418690157502 ], [ -79.863224405624905, 26.6804592444986 ], [ -79.855436356659894, 26.662825581499799 ], [ -79.849399861904999, 26.644652183359799 ], [ -79.845160090182205, 26.626077583176102 ], [ -79.842748462311505, 26.6072433039553 ], [ -79.842182437895104, 26.5882927768236 ], [ -79.843465409728694, 26.569370246800901 ], [ -79.846586705807397, 26.550619674541799 ], [ -79.851521698064005, 26.532183642404 ], [ -79.858232016180906, 26.514202273108999 ], [ -79.8666658640565, 26.496812169103801 ], [ -79.876758435791501, 26.480145380508301 ], [ -79.888432427386306, 26.4643284092726 ], [ -79.901598639715502, 26.449481256838698 ], [ -79.916156667769997, 26.435716522239598 ], [ -79.931995670627401, 26.423138557153798 ], [ -79.948995216135501, 26.411842683986698 ], [ -79.967026193864299, 26.401914482562599 ], [ -79.985951789500206, 26.393429150493599 ], [ -80.005628513524897, 26.3864509417484 ], [ -80.025907276732994, 26.381032687370698 ], [ -80.046634504901206, 26.377215401710899 ], [ -80.067653284722496, 26.375027976920599 ], [ -80.088804532964303, 26.374486967843001 ], [ -80.109928180694595, 26.3755964687941 ], [ -80.130864364345797, 26.378348083092899 ], [ -80.151454615354496, 26.3827209855517 ], [ -80.171543040121193, 26.388682077491499 ], [ -80.190977482080896, 26.396186233206301 ], [ -80.209610657764102, 26.4051766361581 ], [ -80.227301258854297, 26.415585202557399 ], [ -80.243915012420899, 26.4273330893657 ], [ -80.259325691717194, 26.440331283151799 ], [ -80.273416070192894, 26.454481265652401 ], [ -80.286078811671103, 26.4696757513248 ], [ -80.297217289991195, 26.485799491641298 ], [ -80.306746331814395, 26.502730140372599 ], [ -80.314592876735304, 26.5203391736284 ], [ -80.320696549337995, 26.538492857990601 ], [ -80.325010138378801, 26.5570532596766 ], [ -80.327499978872098, 26.575879287318202 ], [ -80.328146233498899, 26.594827760637301 ], [ -80.326943070442198, 26.613754497049101 ], [ -80.323898735491099, 26.632515408025199 ], [ -80.3190355170223, 26.650967596909801 ], [ -80.312389603281702, 26.668970449808398 ], [ -80.304010832223, 26.6863867111506 ], [ -80.293962335025995, 26.703083535586401 ], [ -80.282320075294805, 26.718933507993501 ], [ -80.269172286823206, 26.733815623562698 ], [ -80.254619782412703, 26.7476153788094 ] ] } },
{ "type": "Feature", "properties": { "Name": "KLNA BASE", "zone": "Safe", "date": "2024-08-21" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0873323232166, 26.595370371350299 ], [ -80.089241814958996, 26.594328805683201 ], [ -80.089448196978793, 26.594027310807299 ], [ -80.089649597403195, 26.593647733273201 ], [ -80.089743692809293, 26.593279624741999 ], [ -80.089822952051193, 26.592355560925199 ], [ -80.090417494287607, 26.592050121842899 ], [ -80.091514925380096, 26.5920810748771 ], [ -80.093445076977702, 26.592741311483099 ], [ -80.093720588903693, 26.591483676381401 ], [ -80.093667284487395, 26.5893991814652 ], [ -80.092673952415694, 26.5893576141805 ], [ -80.092610990382298, 26.588574261208802 ], [ -80.089612687416107, 26.588439677736801 ], [ -80.088679003773805, 26.590082162400901 ], [ -80.080862759838894, 26.589852872091399 ], [ -80.080909664209301, 26.5886378274969 ], [ -80.080003059120699, 26.589324095876599 ], [ -80.079623611007094, 26.590016823767101 ], [ -80.0801151283911, 26.590243402415901 ], [ -80.079993895978504, 26.590452802185801 ], [ -80.079408266396797, 26.5904085265093 ], [ -80.079474064111693, 26.591582821764 ], [ -80.080074883139105, 26.591817120851399 ], [ -80.080433623923895, 26.592470214967499 ], [ -80.080667831560405, 26.592395927389099 ], [ -80.082894891912005, 26.595912792915701 ], [ -80.083485385061195, 26.597441612650901 ], [ -80.083124732077096, 26.598923972599898 ], [ -80.085269231484205, 26.599494276199099 ], [ -80.086701498846693, 26.598813583308601 ], [ -80.086386789297407, 26.597914309110099 ], [ -80.0873323232166, 26.595370371350299 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.092657101599499, 26.592488006989001 ], [ -80.092250804866495, 26.592323544688899 ], [ -80.091411765803301, 26.592075928800401 ], [ -80.090441461787705, 26.592063029524699 ], [ -80.090105891380702, 26.592178275885299 ], [ -80.089813754529004, 26.592896110251999 ], [ -80.089689408421407, 26.593615439678398 ], [ -80.089594204982006, 26.5938113530996 ], [ -80.089345409100801, 26.594309770953299 ], [ -80.088694466861298, 26.594658845931502 ], [ -80.087353824575899, 26.595395478322999 ], [ -80.086623653480004, 26.597314587568199 ], [ -80.086435073791606, 26.597889778722902 ], [ -80.086450374764198, 26.598056833084499 ], [ -80.086756285649699, 26.598972837488098 ], [ -80.087570121325498, 26.598585409833198 ], [ -80.087842238692005, 26.598380150530399 ], [ -80.087656993458197, 26.598082938865101 ], [ -80.088329807929, 26.597781898205699 ], [ -80.088756719220996, 26.597990608846299 ], [ -80.089021568246594, 26.597165299437499 ], [ -80.089607446948094, 26.5975370998786 ], [ -80.088840689982803, 26.600461040274698 ], [ -80.089338012198297, 26.600680369607002 ], [ -80.093386686362706, 26.592737560983 ], [ -80.092657101599499, 26.592488006989001 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Danger ramp", "zone": "Danger"}, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.089565201555601, 26.588432050726801 ], [ -80.085476644474596, 26.588297652817801 ], [ -80.085468316403293, 26.588480685163098 ], [ -80.085199244783695, 26.588597305370701 ], [ -80.085116592121494, 26.5883645728414 ], [ -80.085061804686205, 26.588149461514998 ], [ -80.084923602617707, 26.588141150185098 ], [ -80.084914010541695, 26.5882565190009 ], [ -80.084832194747605, 26.588445828025499 ], [ -80.084779926199701, 26.5887066916364 ], [ -80.081039080144905, 26.588615067943401 ], [ -80.080896506807306, 26.589815341975399 ], [ -80.0885945689826, 26.590051230541601 ], [ -80.089565201555601, 26.588432050726801 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.084868601392401, 26.592208606608299 ], [ -80.084836532197201, 26.5922090596289 ], [ -80.084835496815401, 26.592256126149 ], [ -80.084937035729894, 26.592250923569999 ], [ -80.084871650580695, 26.5922608943448 ], [ -80.0848710348819, 26.592326735091799 ], [ -80.084948844890505, 26.592353913160899 ], [ -80.084868601392401, 26.592208606608299 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.080316607850804, 26.588057204120901 ], [ -80.077031643802101, 26.587839817213499 ], [ -80.0769296974225, 26.591087401409801 ], [ -80.076680231539996, 26.592001079199001 ], [ -80.076549756019801, 26.593198550026202 ], [ -80.076863638810806, 26.5934517557302 ], [ -80.077656308714495, 26.593279259912901 ], [ -80.078090521462698, 26.5935619413845 ], [ -80.078212482081994, 26.593905523328999 ], [ -80.077734804351394, 26.594641292405701 ], [ -80.077624879489704, 26.594752577924499 ], [ -80.076170402046202, 26.594658355536801 ], [ -80.076255998955503, 26.594909280160099 ], [ -80.076470274786303, 26.595297484897799 ], [ -80.0766640556769, 26.5954955784877 ], [ -80.077022058654293, 26.595823476545899 ], [ -80.077530543847203, 26.5963061010311 ], [ -80.077760370152205, 26.5965678381415 ], [ -80.077910483786496, 26.596842916693301 ], [ -80.077771576502201, 26.59873865886 ], [ -80.078187204720393, 26.598890927999602 ], [ -80.078171315066697, 26.598985058547498 ], [ -80.078341762673105, 26.5991968699464 ], [ -80.078540231223698, 26.599303060492201 ], [ -80.079738793749399, 26.601323357675199 ], [ -80.079838730800105, 26.60069917177 ], [ -80.079793923025903, 26.6002510055743 ], [ -80.079690575790394, 26.5998548080582 ], [ -80.079910724079895, 26.599223370246701 ], [ -80.080318480439104, 26.5989858052464 ], [ -80.080071908959695, 26.598620529180199 ], [ -80.079977795858895, 26.598250645090001 ], [ -80.079976491221899, 26.5979536948395 ], [ -80.079894504175698, 26.597637367168801 ], [ -80.0798799996425, 26.5975106984531 ], [ -80.079763801347895, 26.597462727266599 ], [ -80.079619767092296, 26.597384828324799 ], [ -80.079469610253398, 26.597314578744999 ], [ -80.079030026724595, 26.5960292324989 ], [ -80.079220962582696, 26.595698444063899 ], [ -80.079313502832406, 26.595563317144499 ], [ -80.079354633646403, 26.595170470909999 ], [ -80.079345366215307, 26.594787453133101 ], [ -80.079273389202996, 26.5943781530958 ], [ -80.079413319722903, 26.5939490895333 ], [ -80.079202827308393, 26.5937221915399 ], [ -80.078933071705507, 26.593368261384999 ], [ -80.0787517212772, 26.593107436216499 ], [ -80.078758069734306, 26.5924064582927 ], [ -80.0788244599309, 26.5917373740734 ], [ -80.078903239320695, 26.591179280985799 ], [ -80.079179694853906, 26.590233526495599 ], [ -80.0796363786136, 26.589365389229499 ], [ -80.080116021563995, 26.588711307503601 ], [ -80.080364281018703, 26.5887209883346 ], [ -80.080554485196899, 26.588503629913301 ], [ -80.080466386012404, 26.5881762143948 ], [ -80.080316607850804, 26.588057204120901 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Caution" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.078169530954398, 26.593912973553799 ], [ -80.078084020279405, 26.593820580051201 ], [ -80.077941456376394, 26.593478438266398 ], [ -80.077723439072599, 26.593532071281199 ], [ -80.077393977042107, 26.593425451804901 ], [ -80.076892798399797, 26.593537143209499 ], [ -80.076802669010704, 26.593889404242798 ], [ -80.076784051636906, 26.594168779336201 ], [ -80.076877396865797, 26.594617946882298 ], [ -80.077595461602201, 26.594690950348099 ], [ -80.078005278246593, 26.5940566088493 ], [ -80.078169530954398, 26.593912973553799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094451216885702, 26.594343953623799 ], [ -80.094483658918605, 26.594267643647701 ], [ -80.094517621090503, 26.594224664388801 ], [ -80.094571352344104, 26.594167530629601 ], [ -80.094619323573198, 26.594108563025401 ], [ -80.094632457951704, 26.594018590146 ], [ -80.094626063679698, 26.5939394196424 ], [ -80.094643827467195, 26.593707952852199 ], [ -80.094719104146606, 26.593536049680999 ], [ -80.094846472562907, 26.593390488177398 ], [ -80.095059792500606, 26.593239972653301 ], [ -80.095144882455799, 26.593181687411001 ], [ -80.095189970570402, 26.5931056820035 ], [ -80.095200247237301, 26.593042469269498 ], [ -80.095242969657093, 26.592930468806799 ], [ -80.095309380207894, 26.592809184803901 ], [ -80.095380556453307, 26.5927388541716 ], [ -80.095428320641801, 26.5926994513351 ], [ -80.095535738089197, 26.592657585172201 ], [ -80.095676174540102, 26.592605740336801 ], [ -80.095622278855402, 26.592533034407602 ], [ -80.095420763886494, 26.5923842754836 ], [ -80.095291171086501, 26.592251626381401 ], [ -80.095191768388901, 26.5920224407554 ], [ -80.095216769180396, 26.591893786413301 ], [ -80.095354201393604, 26.591622150668002 ], [ -80.095428377774198, 26.591425144389 ], [ -80.095448094644794, 26.591288059035801 ], [ -80.095493731937395, 26.5911793795511 ], [ -80.095643258005694, 26.591033797866601 ], [ -80.095747845154705, 26.590933336828002 ], [ -80.095865515798195, 26.590884531994501 ], [ -80.095990568085796, 26.590924259046499 ], [ -80.096104229459002, 26.590970685877998 ], [ -80.096215465154799, 26.591042373179398 ], [ -80.096378901682598, 26.591048913395401 ], [ -80.096408185385897, 26.590986839121999 ], [ -80.096363418441399, 26.590876577185298 ], [ -80.0960564283954, 26.590669070744902 ], [ -80.095796495029902, 26.590530716781199 ], [ -80.095781084696597, 26.590113268888999 ], [ -80.095843428380306, 26.5899967629964 ], [ -80.095959011656106, 26.589914439071599 ], [ -80.096326865086795, 26.589819635842598 ], [ -80.096577789831997, 26.589754969968599 ], [ -80.096807032062301, 26.5896971069592 ], [ -80.097250653008203, 26.589682360032199 ], [ -80.097522403250196, 26.5896622798764 ], [ -80.097719764901001, 26.589519498124702 ], [ -80.097865427696902, 26.589398157304799 ], [ -80.097949866066301, 26.589304656696299 ], [ -80.098121139501004, 26.589191222475499 ], [ -80.098446174712194, 26.589159921534499 ], [ -80.098549140863994, 26.589163146318199 ], [ -80.098736207925498, 26.589160368416898 ], [ -80.098932503146997, 26.589237777666199 ], [ -80.099033761307297, 26.589293276295901 ], [ -80.099140764572198, 26.589370315872799 ], [ -80.099280007059093, 26.589345401879001 ], [ -80.099240055442294, 26.589249157266501 ], [ -80.099206270667196, 26.589111898967499 ], [ -80.0990232873216, 26.5889003925042 ], [ -80.098447309603799, 26.588663494599 ], [ -80.096968134141207, 26.588675713560502 ], [ -80.096294872718801, 26.588958628399201 ], [ -80.095476211296798, 26.589413536211399 ], [ -80.095182646726101, 26.589914823696802 ], [ -80.094620516506495, 26.590205015570199 ], [ -80.094555457090806, 26.590200978441001 ], [ -80.094556597128502, 26.590247203095402 ], [ -80.094592099888203, 26.5902821538082 ], [ -80.094598263413801, 26.590297362027599 ], [ -80.094480687918207, 26.5904348275552 ], [ -80.0944345246089, 26.590332222666699 ], [ -80.094297219021797, 26.590547178606801 ], [ -80.094352980208598, 26.590558252887799 ], [ -80.094339417049198, 26.590661916307099 ], [ -80.094256980000495, 26.590680145653401 ], [ -80.094242209956903, 26.590749538366602 ], [ -80.094228830770504, 26.590861033456999 ], [ -80.094258302868695, 26.5909211819124 ], [ -80.094328152291197, 26.590988332966401 ], [ -80.094337152978895, 26.591134477962001 ], [ -80.094275945966203, 26.591263911702601 ], [ -80.094195716757397, 26.591420188385602 ], [ -80.094170551810507, 26.591582335061599 ], [ -80.094166779941901, 26.5920175665836 ], [ -80.094119799603007, 26.5921800557559 ], [ -80.094101459261196, 26.592287415049899 ], [ -80.094029474359999, 26.592361512880299 ], [ -80.094012257242596, 26.592440775069399 ], [ -80.094024649978394, 26.592536771569801 ], [ -80.094051838432705, 26.592595187762502 ], [ -80.093992397508899, 26.5927052861256 ], [ -80.093899982765606, 26.592778027130599 ], [ -80.093858109868805, 26.592917072110399 ], [ -80.093754176636395, 26.593266637057301 ], [ -80.093782978501494, 26.593394851589601 ], [ -80.093700633887707, 26.593610696467799 ], [ -80.093601642578705, 26.593723127099999 ], [ -80.093521206751504, 26.5939839545273 ], [ -80.0937991861162, 26.594053232957101 ], [ -80.093921009524806, 26.5941543427023 ], [ -80.093870565571507, 26.594122721334799 ], [ -80.093977223993804, 26.5942124262797 ], [ -80.094079341628998, 26.594247586720901 ], [ -80.0941524189641, 26.594262028537202 ], [ -80.094230981368895, 26.5942752469293 ], [ -80.094288077003498, 26.594262005655601 ], [ -80.094317200090501, 26.594299533762499 ], [ -80.094408096151696, 26.594353244082999 ], [ -80.094434457635998, 26.594409504056902 ], [ -80.094451216885702, 26.594343953623799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0945865750476, 26.5901140799531 ], [ -80.094613161699698, 26.590185474575399 ], [ -80.095017728211701, 26.589988654405101 ], [ -80.095007708782603, 26.5899212516569 ], [ -80.095037006945205, 26.589858743972901 ], [ -80.095064751912801, 26.589740974306 ], [ -80.095935736797102, 26.589149947686501 ], [ -80.095662013295197, 26.5891961224334 ], [ -80.095274952356803, 26.589342365162299 ], [ -80.095167550142193, 26.5895471314936 ], [ -80.095136668491193, 26.5896086350185 ], [ -80.0945865750476, 26.5901140799531 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0953267580621, 26.589563730678599 ], [ -80.095070754832406, 26.589758661401302 ], [ -80.095007530012893, 26.589955610121901 ], [ -80.095200474017801, 26.589957554123899 ], [ -80.0954241408147, 26.589499618388501 ], [ -80.0953267580621, 26.589563730678599 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.095202441405704, 26.590097360064899 ], [ -80.095221500180898, 26.590349228565099 ], [ -80.095317902543698, 26.590328652995002 ], [ -80.095301733954102, 26.590059646082999 ], [ -80.095202441405704, 26.590097360064899 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094842940413798, 26.5908320147735 ], [ -80.094874443886397, 26.5908276965536 ], [ -80.094856203396901, 26.590791612733899 ], [ -80.094814952084405, 26.590788648713499 ], [ -80.094842940413798, 26.5908320147735 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094804099590803, 26.591279782929501 ], [ -80.094720456842694, 26.591262729257299 ], [ -80.094704615696301, 26.591366396211502 ], [ -80.094748309411401, 26.5913976469724 ], [ -80.094804099590803, 26.591279782929501 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094727439734399, 26.5923457294885 ], [ -80.094710282443202, 26.592395611106099 ], [ -80.094766356989794, 26.592412555823401 ], [ -80.094779781128395, 26.592381333015499 ], [ -80.094727439734399, 26.5923457294885 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094826052194705, 26.592524456899199 ], [ -80.094777896268596, 26.5925111556997 ], [ -80.094762076711007, 26.592554864357801 ], [ -80.094797509263401, 26.5925777559791 ], [ -80.094826052194705, 26.592524456899199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094696658833598, 26.592474619527199 ], [ -80.094652520973696, 26.592460077694501 ], [ -80.094650925811905, 26.592507156031701 ], [ -80.094691056233998, 26.5925525752703 ], [ -80.094696658833598, 26.592474619527199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094644978903801, 26.592584488230099 ], [ -80.094618208071907, 26.592557637302299 ], [ -80.094606357222901, 26.592610460364501 ], [ -80.094639887153093, 26.592655429000601 ], [ -80.094644978903801, 26.592584488230099 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094424423019404, 26.593034025139001 ], [ -80.094375320323607, 26.592999321622599 ], [ -80.094345269204993, 26.593040200433698 ], [ -80.094393663783194, 26.593096639234599 ], [ -80.094424423019404, 26.593034025139001 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094378968843102, 26.5931566966341 ], [ -80.094339798332598, 26.593129833857201 ], [ -80.0943158920131, 26.5931705053173 ], [ -80.094349515003998, 26.593215982153499 ], [ -80.094378968843102, 26.5931566966341 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094041089092698, 26.592589774270401 ], [ -80.093940934052299, 26.592701908476801 ], [ -80.093988004194401, 26.5926994185598 ], [ -80.094055340761699, 26.592614677024802 ], [ -80.094041089092698, 26.592589774270401 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.093869399467806, 26.594285655573898 ], [ -80.093795472845997, 26.5941633323649 ], [ -80.093704936727306, 26.594041950624302 ], [ -80.093643640820602, 26.594079714653901 ], [ -80.093631831187395, 26.594127541325602 ], [ -80.093691307868298, 26.5942036570856 ], [ -80.093726704865006, 26.5942833636743 ], [ -80.093796237104996, 26.594344280046698 ], [ -80.093869399467806, 26.594285655573898 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.084574705849803, 26.591776443354799 ], [ -80.084366576886396, 26.591777015163998 ], [ -80.084356742774006, 26.5921385795756 ], [ -80.084572634720999, 26.592141300834701 ], [ -80.084574705849803, 26.591776443354799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.096886281869502, 26.593400580518502 ], [ -80.097551849798506, 26.591841876389001 ], [ -80.0976109601921, 26.591439401586701 ], [ -80.097804965966603, 26.591261691860598 ], [ -80.0977680075748, 26.591168290108101 ], [ -80.097863165724405, 26.591070930625101 ], [ -80.098011013960701, 26.590818101800998 ], [ -80.097896706262901, 26.590721071666099 ], [ -80.097877086868493, 26.5907195537735 ], [ -80.097870349023495, 26.590765610967502 ], [ -80.097867451373105, 26.590772410884501 ], [ -80.097842713342303, 26.5907862510666 ], [ -80.097814050630703, 26.590806906538798 ], [ -80.097888569180995, 26.590897146652701 ], [ -80.097808316503702, 26.5908139454104 ], [ -80.097802385704199, 26.590833989589999 ], [ -80.097772568141806, 26.5908315954645 ], [ -80.097758148026102, 26.590838618149501 ], [ -80.097747415052694, 26.5908455293883 ], [ -80.0977994386093, 26.590808954514699 ], [ -80.0978206461225, 26.590749080320901 ], [ -80.097741879683298, 26.590759155247301 ], [ -80.097752472816893, 26.5907743699685 ], [ -80.097718058669003, 26.590895289749 ], [ -80.097687799198695, 26.5908975469561 ], [ -80.097739742280694, 26.590729067359099 ], [ -80.097749196326006, 26.590691058096699 ], [ -80.097385015839095, 26.591212522279999 ], [ -80.096495788842006, 26.592304154513702 ], [ -80.096551284887099, 26.5927586741604 ], [ -80.096659926026803, 26.592917997414101 ], [ -80.096615705119902, 26.593016490756199 ], [ -80.096350485613996, 26.593056680419298 ], [ -80.096322336884597, 26.5931308943264 ], [ -80.096287813872095, 26.5933916405071 ], [ -80.096162417355899, 26.593572530283499 ], [ -80.096129541335998, 26.593632575938599 ], [ -80.096132926403996, 26.593708177417199 ], [ -80.096119808500902, 26.593803538799399 ], [ -80.096320318814193, 26.593838106279399 ], [ -80.096341459339797, 26.594028893491799 ], [ -80.096531446652506, 26.5942461707128 ], [ -80.096775070695102, 26.594124760526501 ], [ -80.096921325420098, 26.594075439623499 ], [ -80.096886281869502, 26.593400580518502 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082492615950301, 26.596215531867699 ], [ -80.081318078797196, 26.594180611565399 ], [ -80.081411642392197, 26.594596414459801 ], [ -80.081168569901394, 26.594877739777001 ], [ -80.082148595894495, 26.596311493767399 ], [ -80.0823233211065, 26.596370690089 ], [ -80.082492615950301, 26.596215531867699 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.076790114909599, 26.594619781412501 ], [ -80.076839693769799, 26.5934479832016 ], [ -80.076465841405494, 26.593262637438102 ], [ -80.0762067644703, 26.594631803800901 ], [ -80.076790114909599, 26.594619781412501 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.084161199089394, 26.5996361912634 ], [ -80.084113597863904, 26.599619232112602 ], [ -80.083985504021499, 26.5996090908301 ], [ -80.083781586197205, 26.5995827860311 ], [ -80.083451369102903, 26.599557472922498 ], [ -80.083139924799497, 26.5995562714755 ], [ -80.082932272983001, 26.599530268635 ], [ -80.082626087948697, 26.599613630584201 ], [ -80.082077925519499, 26.5997195706396 ], [ -80.081862110447105, 26.599629713137901 ], [ -80.081615480192497, 26.599532956142198 ], [ -80.081424449131106, 26.599415470781601 ], [ -80.081166184202502, 26.599317373232399 ], [ -80.081147150537504, 26.599395799416801 ], [ -80.081061122661197, 26.599614754774201 ], [ -80.080947535079105, 26.599862339580401 ], [ -80.080785900494405, 26.599985722814601 ], [ -80.080632464628096, 26.600259908554801 ], [ -80.080371529994807, 26.6007185886189 ], [ -80.080536865300203, 26.600826446509899 ], [ -80.081263148697204, 26.600784199056601 ], [ -80.081664052742497, 26.600687574492099 ], [ -80.082194452633601, 26.6006160315101 ], [ -80.082885650610095, 26.600607829044399 ], [ -80.083411685547105, 26.600601589046299 ], [ -80.083634838000194, 26.600521117543899 ], [ -80.083967882138495, 26.600281341140001 ], [ -80.084163776287696, 26.599671313256099 ], [ -80.084161199089394, 26.5996361912634 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.091698224791998, 26.599725700221502 ], [ -80.091490488571495, 26.597466973180001 ], [ -80.091435495359804, 26.597587495409002 ], [ -80.091306595986595, 26.5978261554882 ], [ -80.091299497204801, 26.597833648673198 ], [ -80.091204238115196, 26.597999072038299 ], [ -80.091132503742998, 26.5981825663725 ], [ -80.0910478329005, 26.598376101463298 ], [ -80.091033826036806, 26.598405966954701 ], [ -80.090950445243806, 26.598577993680401 ], [ -80.090943748886701, 26.5985944479858 ], [ -80.0908617873976, 26.5988037940011 ], [ -80.090849310885702, 26.598841934394901 ], [ -80.090695411175304, 26.599067844781999 ], [ -80.090680045430403, 26.599084206149399 ], [ -80.090544593513997, 26.599308329673899 ], [ -80.090517169841704, 26.599456467300399 ], [ -80.090761040009795, 26.599680818137401 ], [ -80.090848275477398, 26.599757308818599 ], [ -80.090865884807997, 26.5997743902366 ], [ -80.091037671496295, 26.599859138445801 ], [ -80.091042773387898, 26.5998194512485 ], [ -80.091201730317906, 26.5999557660082 ], [ -80.091445578126596, 26.599950419194599 ], [ -80.091552535130006, 26.599826902784201 ], [ -80.091530528611997, 26.599728380031699 ], [ -80.091237942439193, 26.599616319804401 ], [ -80.091338956866593, 26.5994506349736 ], [ -80.091694220384099, 26.599331277113698 ], [ -80.091714533436701, 26.5992367273121 ], [ -80.091908029690899, 26.598816598128298 ], [ -80.092144014559295, 26.5989190988162 ], [ -80.092388263487607, 26.598402390066401 ], [ -80.092136828304703, 26.598273560126401 ], [ -80.092219489324407, 26.598173091935799 ], [ -80.092296441245196, 26.597726937850901 ], [ -80.091509522420395, 26.597423944702701 ], [ -80.091698224791998, 26.599725700221502 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082427183366605, 26.588261215919999 ], [ -80.082172025819503, 26.588010079636 ], [ -80.080609245464302, 26.587996281310499 ], [ -80.080824665772298, 26.588485335860799 ], [ -80.082395416547797, 26.5885327554487 ], [ -80.082427183366605, 26.588261215919999 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0953267580621, 26.589563730678599 ], [ -80.095070754832406, 26.589758661401302 ], [ -80.095007530012893, 26.589955610121901 ], [ -80.095200474017801, 26.589957554123899 ], [ -80.0954241408147, 26.589499618388501 ], [ -80.0953267580621, 26.589563730678599 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.095202441405704, 26.590097360064899 ], [ -80.095221500180898, 26.590349228565099 ], [ -80.095317902543698, 26.590328652995002 ], [ -80.095301733954102, 26.590059646082999 ], [ -80.095202441405704, 26.590097360064899 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094842940413798, 26.5908320147735 ], [ -80.094874443886397, 26.5908276965536 ], [ -80.094856203396901, 26.590791612733899 ], [ -80.094814952084405, 26.590788648713499 ], [ -80.094842940413798, 26.5908320147735 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094804099590803, 26.591279782929501 ], [ -80.094720456842694, 26.591262729257299 ], [ -80.094704615696301, 26.591366396211502 ], [ -80.094748309411401, 26.5913976469724 ], [ -80.094804099590803, 26.591279782929501 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094727439734399, 26.5923457294885 ], [ -80.094710282443202, 26.592395611106099 ], [ -80.094766356989794, 26.592412555823401 ], [ -80.094779781128395, 26.592381333015499 ], [ -80.094727439734399, 26.5923457294885 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094826052194705, 26.592524456899199 ], [ -80.094777896268596, 26.5925111556997 ], [ -80.094762076711007, 26.592554864357801 ], [ -80.094797509263401, 26.5925777559791 ], [ -80.094826052194705, 26.592524456899199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094696658833598, 26.592474619527199 ], [ -80.094652520973696, 26.592460077694501 ], [ -80.094650925811905, 26.592507156031701 ], [ -80.094691056233998, 26.5925525752703 ], [ -80.094696658833598, 26.592474619527199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094644978903801, 26.592584488230099 ], [ -80.094618208071907, 26.592557637302299 ], [ -80.094606357222901, 26.592610460364501 ], [ -80.094639887153093, 26.592655429000601 ], [ -80.094644978903801, 26.592584488230099 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094424423019404, 26.593034025139001 ], [ -80.094375320323607, 26.592999321622599 ], [ -80.094345269204993, 26.593040200433698 ], [ -80.094393663783194, 26.593096639234599 ], [ -80.094424423019404, 26.593034025139001 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094378968843102, 26.5931566966341 ], [ -80.094339798332598, 26.593129833857201 ], [ -80.0943158920131, 26.5931705053173 ], [ -80.094349515003998, 26.593215982153499 ], [ -80.094378968843102, 26.5931566966341 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094041089092698, 26.592589774270401 ], [ -80.093940934052299, 26.592701908476801 ], [ -80.093988004194401, 26.5926994185598 ], [ -80.094055340761699, 26.592614677024802 ], [ -80.094041089092698, 26.592589774270401 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.093869399467806, 26.594285655573898 ], [ -80.093795472845997, 26.5941633323649 ], [ -80.093704936727306, 26.594041950624302 ], [ -80.093643640820602, 26.594079714653901 ], [ -80.093631831187395, 26.594127541325602 ], [ -80.093691307868298, 26.5942036570856 ], [ -80.093726704865006, 26.5942833636743 ], [ -80.093796237104996, 26.594344280046698 ], [ -80.093869399467806, 26.594285655573898 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.084574705849803, 26.591776443354799 ], [ -80.084366576886396, 26.591777015163998 ], [ -80.084356742774006, 26.5921385795756 ], [ -80.084572634720999, 26.592141300834701 ], [ -80.084574705849803, 26.591776443354799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.096886281869502, 26.593400580518502 ], [ -80.097551849798506, 26.591841876389001 ], [ -80.0976109601921, 26.591439401586701 ], [ -80.097804965966603, 26.591261691860598 ], [ -80.0977680075748, 26.591168290108101 ], [ -80.097863165724405, 26.591070930625101 ], [ -80.098011013960701, 26.590818101800998 ], [ -80.097896706262901, 26.590721071666099 ], [ -80.097877086868493, 26.5907195537735 ], [ -80.097870349023495, 26.590765610967502 ], [ -80.097867451373105, 26.590772410884501 ], [ -80.097842713342303, 26.5907862510666 ], [ -80.097814050630703, 26.590806906538798 ], [ -80.097888569180995, 26.590897146652701 ], [ -80.097808316503702, 26.5908139454104 ], [ -80.097802385704199, 26.590833989589999 ], [ -80.097772568141806, 26.5908315954645 ], [ -80.097758148026102, 26.590838618149501 ], [ -80.097747415052694, 26.5908455293883 ], [ -80.0977994386093, 26.590808954514699 ], [ -80.0978206461225, 26.590749080320901 ], [ -80.097741879683298, 26.590759155247301 ], [ -80.097752472816893, 26.5907743699685 ], [ -80.097718058669003, 26.590895289749 ], [ -80.097687799198695, 26.5908975469561 ], [ -80.097739742280694, 26.590729067359099 ], [ -80.097749196326006, 26.590691058096699 ], [ -80.097385015839095, 26.591212522279999 ], [ -80.096495788842006, 26.592304154513702 ], [ -80.096551284887099, 26.5927586741604 ], [ -80.096659926026803, 26.592917997414101 ], [ -80.096615705119902, 26.593016490756199 ], [ -80.096350485613996, 26.593056680419298 ], [ -80.096322336884597, 26.5931308943264 ], [ -80.096287813872095, 26.5933916405071 ], [ -80.096162417355899, 26.593572530283499 ], [ -80.096129541335998, 26.593632575938599 ], [ -80.096132926403996, 26.593708177417199 ], [ -80.096119808500902, 26.593803538799399 ], [ -80.096320318814193, 26.593838106279399 ], [ -80.096341459339797, 26.594028893491799 ], [ -80.096531446652506, 26.5942461707128 ], [ -80.096775070695102, 26.594124760526501 ], [ -80.096921325420098, 26.594075439623499 ], [ -80.096886281869502, 26.593400580518502 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082492615950301, 26.596215531867699 ], [ -80.081318078797196, 26.594180611565399 ], [ -80.081411642392197, 26.594596414459801 ], [ -80.081168569901394, 26.594877739777001 ], [ -80.082148595894495, 26.596311493767399 ], [ -80.0823233211065, 26.596370690089 ], [ -80.082492615950301, 26.596215531867699 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.076790114909599, 26.594619781412501 ], [ -80.076839693769799, 26.5934479832016 ], [ -80.076465841405494, 26.593262637438102 ], [ -80.0762067644703, 26.594631803800901 ], [ -80.076790114909599, 26.594619781412501 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.084161199089394, 26.5996361912634 ], [ -80.084113597863904, 26.599619232112602 ], [ -80.083985504021499, 26.5996090908301 ], [ -80.083781586197205, 26.5995827860311 ], [ -80.083451369102903, 26.599557472922498 ], [ -80.083139924799497, 26.5995562714755 ], [ -80.082932272983001, 26.599530268635 ], [ -80.082626087948697, 26.599613630584201 ], [ -80.082077925519499, 26.5997195706396 ], [ -80.081862110447105, 26.599629713137901 ], [ -80.081615480192497, 26.599532956142198 ], [ -80.081424449131106, 26.599415470781601 ], [ -80.081166184202502, 26.599317373232399 ], [ -80.081147150537504, 26.599395799416801 ], [ -80.081061122661197, 26.599614754774201 ], [ -80.080947535079105, 26.599862339580401 ], [ -80.080785900494405, 26.599985722814601 ], [ -80.080632464628096, 26.600259908554801 ], [ -80.080371529994807, 26.6007185886189 ], [ -80.080536865300203, 26.600826446509899 ], [ -80.081263148697204, 26.600784199056601 ], [ -80.081664052742497, 26.600687574492099 ], [ -80.082194452633601, 26.6006160315101 ], [ -80.082885650610095, 26.600607829044399 ], [ -80.083411685547105, 26.600601589046299 ], [ -80.083634838000194, 26.600521117543899 ], [ -80.083967882138495, 26.600281341140001 ], [ -80.084163776287696, 26.599671313256099 ], [ -80.084161199089394, 26.5996361912634 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.091698224791998, 26.599725700221502 ], [ -80.091490488571495, 26.597466973180001 ], [ -80.091435495359804, 26.597587495409002 ], [ -80.091306595986595, 26.5978261554882 ], [ -80.091299497204801, 26.597833648673198 ], [ -80.091204238115196, 26.597999072038299 ], [ -80.091132503742998, 26.5981825663725 ], [ -80.0910478329005, 26.598376101463298 ], [ -80.091033826036806, 26.598405966954701 ], [ -80.090950445243806, 26.598577993680401 ], [ -80.090943748886701, 26.5985944479858 ], [ -80.0908617873976, 26.5988037940011 ], [ -80.090849310885702, 26.598841934394901 ], [ -80.090695411175304, 26.599067844781999 ], [ -80.090680045430403, 26.599084206149399 ], [ -80.090544593513997, 26.599308329673899 ], [ -80.090517169841704, 26.599456467300399 ], [ -80.090761040009795, 26.599680818137401 ], [ -80.090848275477398, 26.599757308818599 ], [ -80.090865884807997, 26.5997743902366 ], [ -80.091037671496295, 26.599859138445801 ], [ -80.091042773387898, 26.5998194512485 ], [ -80.091201730317906, 26.5999557660082 ], [ -80.091445578126596, 26.599950419194599 ], [ -80.091552535130006, 26.599826902784201 ], [ -80.091530528611997, 26.599728380031699 ], [ -80.091237942439193, 26.599616319804401 ], [ -80.091338956866593, 26.5994506349736 ], [ -80.091694220384099, 26.599331277113698 ], [ -80.091714533436701, 26.5992367273121 ], [ -80.091908029690899, 26.598816598128298 ], [ -80.092144014559295, 26.5989190988162 ], [ -80.092388263487607, 26.598402390066401 ], [ -80.092136828304703, 26.598273560126401 ], [ -80.092219489324407, 26.598173091935799 ], [ -80.092296441245196, 26.597726937850901 ], [ -80.091509522420395, 26.597423944702701 ], [ -80.091698224791998, 26.599725700221502 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082427183366605, 26.588261215919999 ], [ -80.082172025819503, 26.588010079636 ], [ -80.080609245464302, 26.587996281310499 ], [ -80.080824665772298, 26.588485335860799 ], [ -80.082395416547797, 26.5885327554487 ], [ -80.082427183366605, 26.588261215919999 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.093853171894807, 26.596215268574799 ], [ -80.093849970292595, 26.596211342849401 ], [ -80.093837296039993, 26.5961992620438 ], [ -80.093818506365906, 26.596186565937401 ], [ -80.093806161273307, 26.596185373393801 ], [ -80.093790831888995, 26.596188723870299 ], [ -80.093778597060904, 26.596195437492199 ], [ -80.093766360529798, 26.5962055382915 ], [ -80.093757146186405, 26.596212119767301 ], [ -80.093741738812795, 26.5962219554015 ], [ -80.093732480738097, 26.596232390226799 ], [ -80.093735621087902, 26.596246720053099 ], [ -80.093745012216303, 26.5962612697945 ], [ -80.093750617520797, 26.5962210658966 ], [ -80.093759642423507, 26.596222326202099 ], [ -80.093767223673296, 26.596307992105299 ], [ -80.093779937062706, 26.5963199141584 ], [ -80.093792568928393, 26.5963209699676 ], [ -80.093808373577005, 26.596322291432699 ], [ -80.093819464176903, 26.596284073255699 ], [ -80.093834269027994, 26.596268374521099 ], [ -80.093855898525604, 26.596326479663301 ], [ -80.093853171894807, 26.596215268574799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.093888049779693, 26.595703902544798 ], [ -80.093896803689901, 26.595707489491101 ], [ -80.093912039029902, 26.595746719785101 ], [ -80.093917178335502, 26.595734627435899 ], [ -80.093916514240505, 26.595717510383199 ], [ -80.093916032959996, 26.595705757502699 ], [ -80.093912540361401, 26.5956918903406 ], [ -80.093909099828196, 26.595676630675701 ], [ -80.0939058995355, 26.595665402271301 ], [ -80.0938999215347, 26.595653961579298 ], [ -80.093891145556597, 26.595641854987999 ], [ -80.093882637473797, 26.595635749545501 ], [ -80.093874185830003, 26.5956300671285 ], [ -80.093863094187896, 26.595627230626398 ], [ -80.093843845461606, 26.595627230499499 ], [ -80.093838345966603, 26.5956272298959 ], [ -80.093821903259595, 26.595629959226802 ], [ -80.093813642682704, 26.595629829890399 ], [ -80.093794457350796, 26.595635103994798 ], [ -80.093783519588698, 26.595640807109898 ], [ -80.093769818646805, 26.595649192454701 ], [ -80.093758839181703, 26.595657718570401 ], [ -80.093753426416598, 26.595675006488801 ], [ -80.093750723560603, 26.595686602129 ], [ -80.093750835692205, 26.595704102433199 ], [ -80.093750929753696, 26.595718784596102 ], [ -80.093756624551304, 26.595730595923801 ], [ -80.093767970747805, 26.595740300957502 ], [ -80.0937792928557, 26.595745778832001 ], [ -80.093793527228499, 26.595754868132101 ], [ -80.093819091222898, 26.5957613253589 ], [ -80.093847452431106, 26.595764325937999 ], [ -80.093864433276906, 26.595764326747499 ], [ -80.093888049779693, 26.595703902544798 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.093823657276999, 26.594889576037598 ], [ -80.093825845030096, 26.594888112638699 ], [ -80.093832685800095, 26.594886687306602 ], [ -80.093848528543603, 26.5949258532249 ], [ -80.093857454391994, 26.594923547839699 ], [ -80.093866146537906, 26.594918710873301 ], [ -80.093862536931496, 26.594903521494501 ], [ -80.093857125702002, 26.594893388539301 ], [ -80.093845163737399, 26.594885568774799 ], [ -80.093833257836906, 26.594877797134298 ], [ -80.093816525344096, 26.5948649861513 ], [ -80.093811478712198, 26.594857488276698 ], [ -80.093799914880194, 26.594852268516799 ], [ -80.093792687267296, 26.594844759838399 ], [ -80.093776802834995, 26.594839962637099 ], [ -80.093763236111002, 26.594835622851299 ], [ -80.093752102313104, 26.5948353227271 ], [ -80.093736532185702, 26.594834967182599 ], [ -80.093721096609301, 26.594837166408102 ], [ -80.093710249966307, 26.594843528401199 ], [ -80.093701465894696, 26.594845977457599 ], [ -80.093692965562298, 26.594855612097899 ], [ -80.093684288460594, 26.594862416327999 ], [ -80.093671215041596, 26.594873260804501 ], [ -80.093664774908504, 26.594882356582001 ], [ -80.093662726735303, 26.594889053447702 ], [ -80.093671914856799, 26.5948954799976 ], [ -80.093685674828805, 26.594902342420198 ], [ -80.093695608437798, 26.594838163201398 ], [ -80.093699576658395, 26.594834015039901 ], [ -80.093710702653695, 26.594838138937401 ], [ -80.093719468780407, 26.594840136761199 ], [ -80.093738466332098, 26.5949182391162 ], [ -80.093752431740398, 26.594922693468401 ], [ -80.093761754916798, 26.5949259953526 ], [ -80.093764969209204, 26.594861158330598 ], [ -80.093801098526797, 26.594932264091899 ], [ -80.093812712035003, 26.594935026356101 ], [ -80.093816029785998, 26.594897853719601 ], [ -80.093830345295601, 26.594892215625901 ], [ -80.093823657276999, 26.594889576037598 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094329463628597, 26.597752120791199 ], [ -80.094326167350005, 26.597748522967901 ], [ -80.094306811501497, 26.5976649179938 ], [ -80.094291111543598, 26.597650401578299 ], [ -80.094272390523102, 26.597588503681202 ], [ -80.094259818780998, 26.5975725616 ], [ -80.094247369147794, 26.597558490473499 ], [ -80.094234966839196, 26.5975440195038 ], [ -80.094217781431993, 26.597535360097801 ], [ -80.094205228597303, 26.5975191327773 ], [ -80.094199362671006, 26.5975117907503 ], [ -80.094180599220806, 26.597515231879701 ], [ -80.094169299207607, 26.597508507393002 ], [ -80.094155945904305, 26.597513147938699 ], [ -80.094139038043195, 26.597508895385499 ], [ -80.094122772711998, 26.597513760817101 ], [ -80.0941034892071, 26.597465279980199 ], [ -80.094091989388502, 26.597454802370201 ], [ -80.094063567764493, 26.5974271841506 ], [ -80.094044157988804, 26.597415641684101 ], [ -80.094033253089407, 26.5974146137705 ], [ -80.094022220574303, 26.597410688720402 ], [ -80.094013974190702, 26.5974084512969 ], [ -80.093997429054198, 26.5973918383566 ], [ -80.093967511987401, 26.597382209218701 ], [ -80.093948526470299, 26.597381147942102 ], [ -80.093937652255207, 26.5973803960004 ], [ -80.093918538196206, 26.5973823390026 ], [ -80.093904738043705, 26.597386288031402 ], [ -80.093891330317703, 26.5973812534356 ], [ -80.0938745838708, 26.597388173833401 ], [ -80.093863859233593, 26.597384652223301 ], [ -80.093852872611905, 26.5973829054284 ], [ -80.093841826162702, 26.597383436203099 ], [ -80.093819665224302, 26.597382883364599 ], [ -80.093802669197999, 26.5973866344093 ], [ -80.093791530133004, 26.597386918823801 ], [ -80.093780416654198, 26.597386730142301 ], [ -80.093757911657903, 26.597388529822101 ], [ -80.093744027678099, 26.597388092256001 ], [ -80.093731834887095, 26.597348918661201 ], [ -80.093711069607295, 26.597337492959099 ], [ -80.093697390261099, 26.597335759658598 ], [ -80.093691811727197, 26.597333929595699 ], [ -80.093675040390295, 26.597337741906301 ], [ -80.093666942607896, 26.597337601497902 ], [ -80.093648739107607, 26.597337637468801 ], [ -80.093625425939507, 26.597339555718499 ], [ -80.093614751988795, 26.597342090817602 ], [ -80.093603004135304, 26.597353609136601 ], [ -80.093594047389999, 26.597364450450101 ], [ -80.093588776619399, 26.597369812979501 ], [ -80.093582208526499, 26.597386771483901 ], [ -80.093581840590801, 26.597391771868399 ], [ -80.093592136482002, 26.597404121964001 ], [ -80.093602594729305, 26.597411209898901 ], [ -80.093632851315604, 26.597413928073799 ], [ -80.093643743130002, 26.597415355878301 ], [ -80.0936599051755, 26.597417998549101 ], [ -80.093670815837299, 26.597419306577699 ], [ -80.093684193079, 26.597421046506501 ], [ -80.093703410280696, 26.597421394002399 ], [ -80.093706140124596, 26.597421338492001 ], [ -80.093729531215104, 26.5974324371184 ], [ -80.093743336434699, 26.597431227244499 ], [ -80.093758733372496, 26.5974425443959 ], [ -80.093769736278404, 26.5974454913021 ], [ -80.093784714770294, 26.597431791349301 ], [ -80.093795572981193, 26.597433985234002 ], [ -80.093819298219799, 26.597446733263698 ], [ -80.093841029832305, 26.5974516245434 ], [ -80.093857242529396, 26.597459705285299 ], [ -80.093876617921595, 26.597459222848801 ], [ -80.093898458137801, 26.597465393698499 ], [ -80.093912084358394, 26.597473734652201 ], [ -80.0939343469134, 26.597470618760401 ], [ -80.093961780112494, 26.597492037128902 ], [ -80.093989543607904, 26.597491636178901 ], [ -80.094023071784804, 26.5975152026944 ], [ -80.094037357441707, 26.5975326640223 ], [ -80.094057573217697, 26.597551996002899 ], [ -80.094080915683904, 26.597572074991501 ], [ -80.094111879050701, 26.597569534991901 ], [ -80.094148658635604, 26.597573320643999 ], [ -80.094167576381693, 26.597564338885899 ], [ -80.094196478307296, 26.597577744593199 ], [ -80.094208065127205, 26.597583477358899 ], [ -80.094329463628597, 26.597752120791199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094556167074899, 26.597840876511501 ], [ -80.094548961100003, 26.5978327932939 ], [ -80.094530835620006, 26.5978364136732 ], [ -80.094511172107204, 26.597832555939199 ], [ -80.094499619877098, 26.597839914755699 ], [ -80.094493903550401, 26.597843916288699 ], [ -80.094470486942001, 26.597819897247199 ], [ -80.094457942633397, 26.5978181597212 ], [ -80.094444888616806, 26.5978168836752 ], [ -80.094426636871503, 26.597818900545899 ], [ -80.094407802176605, 26.597819106649801 ], [ -80.094398307607307, 26.597837737284699 ], [ -80.094388939094799, 26.597879915254399 ], [ -80.094380724152899, 26.597894247540601 ], [ -80.094377773921707, 26.597864041005099 ], [ -80.094383327151704, 26.597865161166499 ], [ -80.094394882952997, 26.597865540446399 ], [ -80.094407203936697, 26.597865933045501 ], [ -80.094428560593798, 26.597865340653399 ], [ -80.094437144725305, 26.597860140217701 ], [ -80.094450449663896, 26.597864424466 ], [ -80.094477816997596, 26.597879550527502 ], [ -80.094481716599105, 26.5978821446345 ], [ -80.094504291523606, 26.597933229527801 ], [ -80.094508673324299, 26.5978573327322 ], [ -80.094556167074899, 26.597840876511501 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger"}, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094758630750704, 26.5990128559793 ], [ -80.094755929370194, 26.5990125817512 ], [ -80.094745839984597, 26.598994056813002 ], [ -80.094736629953502, 26.5989827834686 ], [ -80.0947218620435, 26.598969478008101 ], [ -80.094710063320704, 26.598957764258898 ], [ -80.094701183491907, 26.598948885312002 ], [ -80.094687044522502, 26.598938127091898 ], [ -80.094677997196499, 26.598926349050501 ], [ -80.094666260522899, 26.598913612243098 ], [ -80.094655352601293, 26.598908521759299 ], [ -80.094643862853303, 26.598896666494799 ], [ -80.094627924932595, 26.598891796864301 ], [ -80.094619714808303, 26.598886822004602 ], [ -80.094606885251906, 26.598886785334901 ], [ -80.094594327072002, 26.598890150514698 ], [ -80.094587260045401, 26.598897819992199 ], [ -80.094571793924302, 26.5988583823578 ], [ -80.094565647215404, 26.5989176243346 ], [ -80.094558473092107, 26.598925420698599 ], [ -80.094557176754904, 26.598943616820399 ], [ -80.094560981049497, 26.598959670514802 ], [ -80.094561541638598, 26.598878523858001 ], [ -80.094572177162703, 26.598865630173702 ], [ -80.094603632192403, 26.599000275712399 ], [ -80.094621256787605, 26.5990204771077 ], [ -80.094632249342595, 26.5990245868303 ], [ -80.0946674553782, 26.5990579204501 ], [ -80.094672804134404, 26.599057844100901 ], [ -80.094673797670694, 26.5989980327961 ], [ -80.094688497125105, 26.598992890987901 ], [ -80.094691592983295, 26.5989959257967 ], [ -80.094725437360296, 26.5990735207744 ], [ -80.094735677861905, 26.5990691259987 ], [ -80.0947392726804, 26.599026995426499 ], [ -80.094749244184499, 26.599020874475901 ], [ -80.094757426207707, 26.599006539544401 ], [ -80.094758630750704, 26.5990128559793 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0947608756546, 26.599060550976098 ], [ -80.094785647344395, 26.599039272827799 ], [ -80.094774919060399, 26.599016762675401 ], [ -80.094735757274194, 26.5990515238021 ], [ -80.0947608756546, 26.599060550976098 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.083121983092695, 26.5980277263481 ], [ -80.083109695510004, 26.597830526270101 ], [ -80.083286453308602, 26.597689560871501 ], [ -80.0834892099884, 26.597381759939299 ], [ -80.083486920707301, 26.596920498512802 ], [ -80.083363748647301, 26.5966240178284 ], [ -80.083152329546607, 26.596298280781099 ], [ -80.082707862329997, 26.596172183528601 ], [ -80.082109579, 26.596944458090199 ], [ -80.082163504563695, 26.597079829882802 ], [ -80.082300993934396, 26.597333132077502 ], [ -80.082525342729596, 26.597284442562302 ], [ -80.082770173758902, 26.5974308555821 ], [ -80.082610747275893, 26.597707437648499 ], [ -80.0824684948673, 26.597897178324999 ], [ -80.083028216081502, 26.598287327803199 ], [ -80.083121983092695, 26.5980277263481 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.083124141445495, 26.598578786001699 ], [ -80.083085034164597, 26.598452698666399 ], [ -80.082673312630703, 26.5983038561481 ], [ -80.082583375288394, 26.598419907538101 ], [ -80.082480725837598, 26.598356213041399 ], [ -80.082463113100104, 26.598245098144599 ], [ -80.082353418802697, 26.598186917703 ], [ -80.082298413100503, 26.598153056209799 ], [ -80.082216758394097, 26.5981856815777 ], [ -80.082151929403906, 26.598180037676698 ], [ -80.082079799665294, 26.598061474640801 ], [ -80.082061230469293, 26.5979788870989 ], [ -80.082060151845297, 26.5979092758168 ], [ -80.082105409853597, 26.597789344569499 ], [ -80.082159174569497, 26.597731492194999 ], [ -80.0822586236239, 26.597675756680399 ], [ -80.0823112027702, 26.597479617146799 ], [ -80.082256389390395, 26.597381896780099 ], [ -80.082226807715301, 26.597120928688501 ], [ -80.082126958279602, 26.597196711208301 ], [ -80.081967341091101, 26.5972100022693 ], [ -80.0812068707137, 26.598418893724801 ], [ -80.081900339511805, 26.5986460229499 ], [ -80.082395274405798, 26.5987804703623 ], [ -80.083074883282805, 26.598890160981199 ], [ -80.083124141445495, 26.598578786001699 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0824091404358, 26.598002988464099 ], [ -80.082352740559202, 26.597962452252599 ], [ -80.082286966090095, 26.597931837572599 ], [ -80.082166281327503, 26.597925899650701 ], [ -80.082101962424005, 26.597946997681301 ], [ -80.082088460261204, 26.598014558859202 ], [ -80.082096228928407, 26.598038622808598 ], [ -80.082135044056102, 26.598075402050799 ], [ -80.082176566385797, 26.598069940344502 ], [ -80.0821929785414, 26.598035627191901 ], [ -80.082223909396603, 26.598038634350001 ], [ -80.0822386934978, 26.598060450970799 ], [ -80.082431825861704, 26.598065077725099 ], [ -80.0824091404358, 26.598002988464099 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082389135803297, 26.5978156584681 ], [ -80.082358231410097, 26.597813831278302 ], [ -80.082354241084801, 26.597858161935999 ], [ -80.0823943530158, 26.597839316716701 ], [ -80.082389135803297, 26.5978156584681 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082488620658594, 26.597601576455901 ], [ -80.082507368402105, 26.597601989564701 ], [ -80.082491095867198, 26.597631012912299 ], [ -80.082515493613002, 26.597631017371398 ], [ -80.082488620658594, 26.597601576455901 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082593960101704, 26.597561235654599 ], [ -80.082573515714898, 26.5975752365391 ], [ -80.082585417752199, 26.5976175595009 ], [ -80.082608796020196, 26.597576534687999 ], [ -80.082593960101704, 26.597561235654599 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082507267565006, 26.597433351533301 ], [ -80.082481294499104, 26.597443665386901 ], [ -80.082491950987503, 26.5974673821508 ], [ -80.082522561609295, 26.5974661837061 ], [ -80.082507267565006, 26.597433351533301 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082355057182497, 26.597392864877001 ], [ -80.082321530750704, 26.5973682510039 ], [ -80.082308448046604, 26.597391468445899 ], [ -80.082320982635807, 26.597410760738899 ], [ -80.082347273429207, 26.5974148121803 ], [ -80.082355057182497, 26.597392864877001 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082533066568502, 26.597286570413601 ], [ -80.082527240813505, 26.597288202659001 ], [ -80.082508005865094, 26.597300755909899 ], [ -80.082506765269301, 26.597300755762401 ], [ -80.082499931308405, 26.597343370059001 ], [ -80.082537154690996, 26.597372910377199 ], [ -80.082550395922297, 26.597366129622799 ], [ -80.082557696634495, 26.597363163879699 ], [ -80.082579177425202, 26.597347978107202 ], [ -80.082598290346098, 26.597347975263499 ], [ -80.082533066568502, 26.597286570413601 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.082233719018703, 26.5952118041441 ], [ -80.082204991800495, 26.595181764324799 ], [ -80.082159633260503, 26.595116910550601 ], [ -80.082124814680796, 26.59506329445 ], [ -80.082067904606404, 26.594970516457899 ], [ -80.082014400797902, 26.594935204046301 ], [ -80.081982322597199, 26.5948513827333 ], [ -80.082024113417702, 26.594859309082199 ], [ -80.082082337211503, 26.594850379392899 ], [ -80.082158204312606, 26.594824993776299 ], [ -80.082253927537295, 26.5947312912025 ], [ -80.082228023307593, 26.5946809322263 ], [ -80.082173119784798, 26.594639498971301 ], [ -80.082081046636404, 26.594640845802299 ], [ -80.082007340778503, 26.594539829412501 ], [ -80.081913863835993, 26.5944770195063 ], [ -80.081835013305593, 26.594422321728501 ], [ -80.0817427830399, 26.594369282436698 ], [ -80.081698264468201, 26.594283908295299 ], [ -80.081668373851102, 26.594151893767901 ], [ -80.081585472619395, 26.594117182763799 ], [ -80.081509040891603, 26.5939003957163 ], [ -80.081543728097401, 26.5937297142993 ], [ -80.081471613471194, 26.593738383927398 ], [ -80.081416392603899, 26.593801808838901 ], [ -80.081401069169402, 26.5937735899399 ], [ -80.081318304811603, 26.593733339341 ], [ -80.081244418301395, 26.593797253293001 ], [ -80.081298830485906, 26.593915465987799 ], [ -80.081586704109995, 26.594509154743498 ], [ -80.082075451715198, 26.595236066619002 ], [ -80.082197470376798, 26.595257060452301 ], [ -80.082233719018703, 26.5952118041441 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.081455337177502, 26.5935166596262 ], [ -80.081435179659707, 26.593475498333401 ], [ -80.081366257693404, 26.593481738515699 ], [ -80.081350024282003, 26.593538651105799 ], [ -80.081378546500702, 26.593598956367099 ], [ -80.081451153938303, 26.593591735169198 ], [ -80.081455337177502, 26.5935166596262 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.081340053209004, 26.593305900339299 ], [ -80.081319863764193, 26.593280861065299 ], [ -80.081286049339596, 26.5932597119129 ], [ -80.081262262052903, 26.593300038074499 ], [ -80.081287536622, 26.593338208158499 ], [ -80.081314109641198, 26.5933125482862 ], [ -80.081340053209004, 26.593305900339299 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.081264390419804, 26.5936587953166 ], [ -80.081282967692701, 26.593644305981201 ], [ -80.081274298215703, 26.593622910403099 ], [ -80.081256940482007, 26.593582035719301 ], [ -80.081233095422903, 26.593550976532601 ], [ -80.081197681473498, 26.5935406779613 ], [ -80.081179123324205, 26.593527661645101 ], [ -80.081189234685496, 26.593507821372299 ], [ -80.0812129306847, 26.593507507441402 ], [ -80.081239694950796, 26.593475038843199 ], [ -80.081204895856203, 26.593408515366299 ], [ -80.081167162857497, 26.593342617219001 ], [ -80.081159290089602, 26.593313927533401 ], [ -80.0811961612375, 26.593302962851901 ], [ -80.081260416783806, 26.5932695244726 ], [ -80.081252372475305, 26.593242144917198 ], [ -80.081232467994795, 26.593189836022798 ], [ -80.081172575504198, 26.5931120932452 ], [ -80.081078399410202, 26.593035318739201 ], [ -80.081048205977396, 26.592979184074199 ], [ -80.081050388505005, 26.592975280649402 ], [ -80.080972542133296, 26.5928342462072 ], [ -80.080866729403695, 26.592769424024201 ], [ -80.0806986296042, 26.592492727150798 ], [ -80.080487583875893, 26.5925649640016 ], [ -80.080692033650195, 26.592965736685102 ], [ -80.081151494605905, 26.5936876394323 ], [ -80.081255746731102, 26.593666358839201 ], [ -80.081264390419804, 26.5936587953166 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087710625618897, 26.600344189279799 ], [ -80.087658644533605, 26.600340758533601 ], [ -80.0876628294792, 26.600473917974899 ], [ -80.087709893926302, 26.600484467038601 ], [ -80.087710625618897, 26.600344189279799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087605901844995, 26.6004016292698 ], [ -80.087540257188294, 26.600418567493801 ], [ -80.087551978131401, 26.600462420664002 ], [ -80.087599516837201, 26.60046230615 ], [ -80.087605901844995, 26.6004016292698 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087681537744302, 26.600134151800201 ], [ -80.087627394368994, 26.600143449836001 ], [ -80.087647972878898, 26.600276590096499 ], [ -80.087696855173405, 26.600272938538101 ], [ -80.087681537744302, 26.600134151800201 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087580460353394, 26.600088759307202 ], [ -80.087508355773195, 26.6000900668563 ], [ -80.087537149118702, 26.600298965432 ], [ -80.087593773525896, 26.600289742900099 ], [ -80.087580460353394, 26.600088759307202 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger"}, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087199687738902, 26.600284281944901 ], [ -80.087173299744805, 26.600272105348001 ], [ -80.087156678782605, 26.600228874046699 ], [ -80.087092586394903, 26.600176998271198 ], [ -80.087067301354296, 26.600235590321201 ], [ -80.087007574325497, 26.600313886364301 ], [ -80.086979676722507, 26.6003329841108 ], [ -80.086991945615793, 26.600399433864599 ], [ -80.087043381204296, 26.600418369369699 ], [ -80.087061300073898, 26.6003577140742 ], [ -80.087116742061895, 26.600301321748901 ], [ -80.087155812040393, 26.600307967655102 ], [ -80.087174461559798, 26.600443680203799 ], [ -80.087221418747802, 26.600465390112099 ], [ -80.087199687738902, 26.600284281944901 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087689494853507, 26.600078894966899 ], [ -80.087736185274807, 26.600072598468099 ], [ -80.0877515835395, 26.600039664224699 ], [ -80.087752055720401, 26.600037372938299 ], [ -80.087753703353897, 26.599966994182701 ], [ -80.087753890079895, 26.5999654403401 ], [ -80.087731995923406, 26.599926716005999 ], [ -80.087707966192696, 26.599895343879801 ], [ -80.087706830578696, 26.5998943008019 ], [ -80.087669168998005, 26.599857380295202 ], [ -80.087657078930405, 26.599819419221401 ], [ -80.087702454222693, 26.599751718884001 ], [ -80.087701342060001, 26.599750552212399 ], [ -80.087650008121599, 26.5997583212602 ], [ -80.087575732108903, 26.5997760914378 ], [ -80.087638953067696, 26.600018684039899 ], [ -80.087689494853507, 26.600078894966899 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087714176874698, 26.599687431096498 ], [ -80.087710702277505, 26.599665893404399 ], [ -80.087572426690699, 26.599549965093601 ], [ -80.087501201557998, 26.5995836678145 ], [ -80.087667804092405, 26.5996866251871 ], [ -80.087714176874698, 26.599687431096498 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087646987915093, 26.5994727089872 ], [ -80.087644006700302, 26.5994375875846 ], [ -80.087614061376897, 26.599395485350101 ], [ -80.087549069210297, 26.599342111969701 ], [ -80.087490492511805, 26.599371402787199 ], [ -80.087603088097694, 26.599517303176398 ], [ -80.087646987915093, 26.5994727089872 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087707782222296, 26.599381382005699 ], [ -80.087706858935604, 26.5993798120526 ], [ -80.087705157609307, 26.5993544430954 ], [ -80.0877054703857, 26.599352924092798 ], [ -80.087690733294707, 26.5993128902685 ], [ -80.087650000786994, 26.599276898756099 ], [ -80.087614594336301, 26.599298510025999 ], [ -80.087662791836806, 26.5993484236764 ], [ -80.087707782222296, 26.599381382005699 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088129109354497, 26.599271396145799 ], [ -80.0881402162331, 26.599243838551502 ], [ -80.088142354526298, 26.599240786569201 ], [ -80.088097390963597, 26.599191931342698 ], [ -80.088033005774705, 26.5991981372525 ], [ -80.087959745979902, 26.599263599783502 ], [ -80.088006959151997, 26.599358231525699 ], [ -80.088133854025301, 26.599329091354999 ], [ -80.088129109354497, 26.599271396145799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088290118035104, 26.599625165523101 ], [ -80.088284344225997, 26.599561165809099 ], [ -80.088231753117299, 26.599560922908399 ], [ -80.088226361339906, 26.599562326447099 ], [ -80.088125680912299, 26.599552600257901 ], [ -80.088090792629302, 26.599582112147601 ], [ -80.088108705791498, 26.599647408059401 ], [ -80.088171924311794, 26.599671896396 ], [ -80.088272025063702, 26.599671303567 ], [ -80.088290118035104, 26.599625165523101 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088276387481997, 26.599426765229001 ], [ -80.088285079851403, 26.599429518008499 ], [ -80.088258068217996, 26.599375670729401 ], [ -80.088196844352098, 26.599362917653199 ], [ -80.088128951888507, 26.599362139706901 ], [ -80.088103487882094, 26.59940217207 ], [ -80.088100593269203, 26.599466861010299 ], [ -80.088283022965797, 26.599475580161801 ], [ -80.088276387481997, 26.599426765229001 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087968395572005, 26.599656153711202 ], [ -80.087945625671296, 26.599534312911199 ], [ -80.087921220740796, 26.599618601293901 ], [ -80.087885441345804, 26.599655021209301 ], [ -80.087893104419507, 26.599700687647498 ], [ -80.087928432778199, 26.599692854880701 ], [ -80.087968395572005, 26.599656153711202 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0879727555633, 26.599867684474098 ], [ -80.087972759335997, 26.5998164140616 ], [ -80.087939423723697, 26.599783073087099 ], [ -80.087894213739901, 26.5998018808823 ], [ -80.087902024160996, 26.599867683888402 ], [ -80.087940054372496, 26.599855954257499 ], [ -80.0879727555633, 26.599867684474098 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088311024232695, 26.598622116529299 ], [ -80.088335268827095, 26.598669143743901 ], [ -80.088339005450905, 26.598670117760399 ], [ -80.088363781158094, 26.598651699416202 ], [ -80.088369906640196, 26.598600756933902 ], [ -80.088382106934603, 26.598573584532399 ], [ -80.088381926623597, 26.598570409830501 ], [ -80.088361617192902, 26.5985357493789 ], [ -80.088315071010697, 26.5985231911562 ], [ -80.088258233721305, 26.598517310665098 ], [ -80.088253687678304, 26.598518232709399 ], [ -80.088191818774106, 26.5985484486086 ], [ -80.088163854616695, 26.598602157793401 ], [ -80.088164436928693, 26.598653734717701 ], [ -80.088209814932497, 26.598692925597199 ], [ -80.088308827069199, 26.5986616382832 ], [ -80.088311024232695, 26.598622116529299 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088063606284194, 26.598612886448699 ], [ -80.088083617954695, 26.598576586591101 ], [ -80.088077377286695, 26.598545903364801 ], [ -80.088044199884294, 26.598534142259901 ], [ -80.088007220477905, 26.598533238618199 ], [ -80.087971016391606, 26.598540575059701 ], [ -80.087954183678505, 26.598580348837899 ], [ -80.087952324477499, 26.598626340058999 ], [ -80.087988379669198, 26.598647787904401 ], [ -80.088056294240502, 26.598643883785599 ], [ -80.088063606284194, 26.598612886448699 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088233313614197, 26.598474633957199 ], [ -80.088220078254594, 26.598440496255499 ], [ -80.088175270415306, 26.598418107009099 ], [ -80.088088816608206, 26.598386242526701 ], [ -80.088087750265302, 26.598386053879398 ], [ -80.087999206542804, 26.598410444284699 ], [ -80.088044795716499, 26.598477120199501 ], [ -80.088189194414497, 26.598506746298899 ], [ -80.088233313614197, 26.598474633957199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "reds", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088893090468702, 26.599404410214198 ], [ -80.088903038826899, 26.599369881191599 ], [ -80.088884317564705, 26.599342126209301 ], [ -80.088837447540797, 26.5992926215295 ], [ -80.0887744538215, 26.5993196901155 ], [ -80.088743199522796, 26.599402114360799 ], [ -80.088787572334098, 26.599422030634098 ], [ -80.088861844342603, 26.599443847440099 ], [ -80.088893090468702, 26.599404410214198 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086921977994393, 26.600628444095499 ], [ -80.086679456448294, 26.600628417599602 ], [ -80.086695974357298, 26.601410159885599 ], [ -80.0869209933863, 26.601415262391299 ], [ -80.086921977994393, 26.600628444095499 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086599585868896, 26.6006564437088 ], [ -80.086480037960399, 26.600653948723998 ], [ -80.086479553596206, 26.601444146083299 ], [ -80.086598108837805, 26.601446403999699 ], [ -80.086599585868896, 26.6006564437088 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086424767036604, 26.601458602482499 ], [ -80.086345125211196, 26.601463770965701 ], [ -80.086360138050196, 26.6015620696576 ], [ -80.086413220814705, 26.6015639544684 ], [ -80.086424767036604, 26.601458602482499 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086390856657601, 26.6013238938116 ], [ -80.086219454870204, 26.601340456617301 ], [ -80.086233515414605, 26.6014086082048 ], [ -80.086397289307897, 26.6013983687048 ], [ -80.086390856657601, 26.6013238938116 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086288511976704, 26.600799304711799 ], [ -80.085553304003895, 26.600786522836501 ], [ -80.085563522033894, 26.6008906192524 ], [ -80.086179219036893, 26.600918247510901 ], [ -80.086217128953095, 26.601065228623298 ], [ -80.086274057386404, 26.6010679127169 ], [ -80.086288511976704, 26.600799304711799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086148343952701, 26.601330563068 ], [ -80.086099568247604, 26.601291160212401 ], [ -80.085820958403104, 26.601284138421001 ], [ -80.085820598898096, 26.6013824818112 ], [ -80.085934021142194, 26.601376022091799 ], [ -80.086069158663506, 26.601395422901099 ], [ -80.086095297781796, 26.601502654636501 ], [ -80.086143507833896, 26.601502878589699 ], [ -80.086148343952701, 26.601330563068 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086132303256207, 26.5998380217695 ], [ -80.086062993035995, 26.5998352765275 ], [ -80.086078857438494, 26.600491302900199 ], [ -80.086152464627204, 26.600495523610601 ], [ -80.086132303256207, 26.5998380217695 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085847569541201, 26.600304461833499 ], [ -80.0856720600801, 26.600292034364099 ], [ -80.085667742086699, 26.600562828590899 ], [ -80.085840102203903, 26.600574057348702 ], [ -80.085847569541201, 26.600304461833499 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085927748398007, 26.601805534311101 ], [ -80.086099265714694, 26.601817401189301 ], [ -80.085917698310297, 26.601881593757899 ], [ -80.086097386361701, 26.601891636323099 ], [ -80.085927748398007, 26.601805534311101 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085866306773198, 26.601787533956799 ], [ -80.085558693773905, 26.601802563378602 ], [ -80.085572433850402, 26.601938639314898 ], [ -80.085859968256003, 26.6019322708351 ], [ -80.085866306773198, 26.601787533956799 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085955643859293, 26.601652275192698 ], [ -80.085672029978099, 26.6016487113164 ], [ -80.085669857400106, 26.601539824958699 ], [ -80.085529367878394, 26.601551413847101 ], [ -80.085546845094697, 26.601769623687201 ], [ -80.085944590572197, 26.601763126504999 ], [ -80.085955643859293, 26.601652275192698 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085130990506897, 26.601864436213098 ], [ -80.084972751524603, 26.6019613890393 ], [ -80.085048831476698, 26.602062057454301 ], [ -80.085202409610005, 26.601928341175299 ], [ -80.085130990506897, 26.601864436213098 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085459150184406, 26.6017240246303 ], [ -80.085342673276699, 26.601729197096699 ], [ -80.085320604453102, 26.6008403488464 ], [ -80.085241167730999, 26.600854998680401 ], [ -80.085269838188196, 26.601797423311599 ], [ -80.085462832598594, 26.6017926887858 ], [ -80.085459150184406, 26.6017240246303 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085272264603802, 26.6003410147229 ], [ -80.085186432539103, 26.600352843194901 ], [ -80.085193810733301, 26.600590273251601 ], [ -80.085261537854294, 26.600588693987898 ], [ -80.085272264603802, 26.6003410147229 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085406927831897, 26.600289777810701 ], [ -80.085339565559195, 26.6002824219395 ], [ -80.085348579465602, 26.600473670714202 ], [ -80.085428063006802, 26.600488857083501 ], [ -80.085406927831897, 26.600289777810701 ] ] ] } }, { "type": "Feature", "properties": { "Name": "Untitled Polygon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085380857733199, 26.599952924781899 ], [ -80.085348209105703, 26.599961985631602 ], [ -80.085358421852405, 26.6002181843598 ], [ -80.085373228329303, 26.600204119259999 ], [ -80.085380857733199, 26.599952924781899 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085183924881605, 26.5998097569137 ], [ -80.085181219237896, 26.599792502714799 ], [ -80.085110757152407, 26.599772625907701 ], [ -80.085165767868901, 26.600238785257901 ], [ -80.085264512995707, 26.600249378615 ], [ -80.085183924881605, 26.5998097569137 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085513277909598, 26.599825883291601 ], [ -80.085447181578104, 26.599832720204699 ], [ -80.085485653378299, 26.600439484630002 ], [ -80.085513990170696, 26.600451655936599 ], [ -80.085513277909598, 26.599825883291601 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085515110230205, 26.599726284942999 ], [ -80.0855027910427, 26.5996709516441 ], [ -80.085434604141398, 26.5996935563353 ], [ -80.0852741515274, 26.599669573855302 ], [ -80.085135742165704, 26.599705757094199 ], [ -80.085131272269393, 26.5997488012415 ], [ -80.085183269340106, 26.599749613411799 ], [ -80.085238300881798, 26.599771961361601 ], [ -80.085239911324194, 26.599839509914101 ], [ -80.085492243456102, 26.5998154770495 ], [ -80.085515110230205, 26.599726284942999 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086033666959196, 26.601153974648099 ], [ -80.085947923846305, 26.601161958473998 ], [ -80.0859466174131, 26.6012336991304 ], [ -80.086028808983698, 26.601212741581101 ], [ -80.086033666959196, 26.601153974648099 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085771025508393, 26.601050861534599 ], [ -80.085715829156598, 26.601051202357599 ], [ -80.085704908072799, 26.601114362431801 ], [ -80.085770883461706, 26.601100529754302 ], [ -80.085771025508393, 26.601050861534599 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.085626344969597, 26.601034287404499 ], [ -80.085605886689507, 26.601026035194 ], [ -80.085563209599002, 26.601028229598999 ], [ -80.085487203862499, 26.601043478976901 ], [ -80.085457031489796, 26.601087915344699 ], [ -80.085506949892505, 26.601121121452099 ], [ -80.085616742085904, 26.601055014129901 ], [ -80.085626344969597, 26.601034287404499 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086511587122899, 26.6018243672507 ], [ -80.086433266548894, 26.601763117348401 ], [ -80.086452318228297, 26.602015564624001 ], [ -80.0864977237989, 26.6020098663823 ], [ -80.086511587122899, 26.6018243672507 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.086314127334205, 26.6018501194104 ], [ -80.086342002605605, 26.601867357234799 ], [ -80.086368932168298, 26.601802063518399 ], [ -80.086378795345198, 26.6017573927233 ], [ -80.086350365349205, 26.601763831899898 ], [ -80.086241820233695, 26.601796207941501 ], [ -80.0862558403131, 26.601944943958799 ], [ -80.086337663397103, 26.601985715325501 ], [ -80.086314127334205, 26.6018501194104 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087910870776696, 26.601831854600199 ], [ -80.087720799745099, 26.601859622442898 ], [ -80.087760081256306, 26.6020560344164 ], [ -80.087948304942799, 26.602045255932399 ], [ -80.087910870776696, 26.601831854600199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087692081894602, 26.6017241722768 ], [ -80.087640583277107, 26.601631514624401 ], [ -80.087561329464407, 26.6015899761647 ], [ -80.087559831861697, 26.6015916793881 ], [ -80.0874438994299, 26.6016389041623 ], [ -80.087461802548304, 26.601726392703199 ], [ -80.087692067261699, 26.6018146370414 ], [ -80.087692081894602, 26.6017241722768 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.089374298642895, 26.6021664048838 ], [ -80.089394453814805, 26.602103694763301 ], [ -80.089378276752697, 26.601960912949401 ], [ -80.0893764892256, 26.601848464167599 ], [ -80.089399291522199, 26.601759133640901 ], [ -80.089382336732299, 26.6015781273004 ], [ -80.089368663774593, 26.601395525265399 ], [ -80.089401804569405, 26.601244136371601 ], [ -80.089416838510004, 26.601161437558101 ], [ -80.089435709678895, 26.600889698128899 ], [ -80.089409495184597, 26.600813667979601 ], [ -80.089412728392702, 26.600807553510599 ], [ -80.089422592868104, 26.6007924058529 ], [ -80.089335372603401, 26.600765780005901 ], [ -80.089183531571706, 26.600781294866401 ], [ -80.089077985486696, 26.600971275600202 ], [ -80.0891331316639, 26.601110235472301 ], [ -80.0891720827575, 26.601416081402199 ], [ -80.089183533135099, 26.601655127866501 ], [ -80.089217840343593, 26.6019645065067 ], [ -80.089273577702002, 26.602294363951501 ], [ -80.089340396684904, 26.6022763463424 ], [ -80.089374298642895, 26.6021664048838 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088258803346903, 26.601945955739001 ], [ -80.088199174186798, 26.601920296434201 ], [ -80.088134496831501, 26.601976316574699 ], [ -80.088154217374594, 26.6020120735927 ], [ -80.088233803415093, 26.6020357501693 ], [ -80.088258803346903, 26.601945955739001 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088414418354603, 26.602007707101901 ], [ -80.088357544663694, 26.602014232629699 ], [ -80.088371282567607, 26.602070374629701 ], [ -80.0884320352705, 26.6020712231714 ], [ -80.088414418354603, 26.602007707101901 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088763791871997, 26.6021213248485 ], [ -80.088675152979306, 26.602138789925199 ], [ -80.088701455666694, 26.602231801058 ], [ -80.088801446486798, 26.602170585509899 ], [ -80.088763791871997, 26.6021213248485 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.089026355723405, 26.601835787076801 ], [ -80.088981456667398, 26.6017960820197 ], [ -80.088923615475096, 26.6018351423462 ], [ -80.088909719345097, 26.601933317505601 ], [ -80.088991473025402, 26.601879954975299 ], [ -80.089026355723405, 26.601835787076801 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger"}, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.089109821238495, 26.6018540722994 ], [ -80.089062529810903, 26.601869900648399 ], [ -80.0890687898397, 26.601923694439702 ], [ -80.089128770562397, 26.6019295729966 ], [ -80.089109821238495, 26.6018540722994 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088907940464793, 26.600933634355201 ], [ -80.088817845290393, 26.6008934243896 ], [ -80.088783284233003, 26.600918433069999 ], [ -80.088784726710202, 26.601041105063601 ], [ -80.088917625564306, 26.601100186379799 ], [ -80.088907940464793, 26.600933634355201 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088098648776395, 26.601547558407599 ], [ -80.088069282585394, 26.6015443624194 ], [ -80.088103386680302, 26.601576178116701 ], [ -80.088098648776395, 26.601547558407599 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088097244225906, 26.601482549459099 ], [ -80.088110317774493, 26.601431833006501 ], [ -80.088098091516201, 26.601371057566102 ], [ -80.088067338273902, 26.601377751832199 ], [ -80.088076757555996, 26.601474449768698 ], [ -80.088097244225906, 26.601482549459099 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087976011030904, 26.601381678912801 ], [ -80.087983831320003, 26.6011080041837 ], [ -80.087888776159303, 26.601075326519101 ], [ -80.087952136540594, 26.601382151317001 ], [ -80.087976011030904, 26.601381678912801 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088093487235398, 26.6012759681965 ], [ -80.088104747585106, 26.600930468162399 ], [ -80.088055898034398, 26.600942390310799 ], [ -80.088029311127102, 26.601282865868001 ], [ -80.088093487235398, 26.6012759681965 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087965750350804, 26.600952156502501 ], [ -80.087945763586404, 26.600900249075099 ], [ -80.087906472477698, 26.6009619151857 ], [ -80.087965750350804, 26.600952156502501 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "redend", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087964464888998, 26.6008149263806 ], [ -80.087950810982605, 26.600768854185301 ], [ -80.087879941449103, 26.600711403927701 ], [ -80.087914616535699, 26.600812871058601 ], [ -80.087964464888998, 26.6008149263806 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.094254191343595, 26.597310952021001 ], [ -80.094237561046, 26.597162155155502 ], [ -80.094226272507996, 26.5969048062559 ], [ -80.094021484566795, 26.596625272506699 ], [ -80.093887024511901, 26.596444118371899 ], [ -80.093815272187001, 26.596092163484698 ], [ -80.093892329518397, 26.595698821954901 ], [ -80.093910574986893, 26.595403693558499 ], [ -80.094084187445702, 26.5952408382534 ], [ -80.093962590555606, 26.5950438383978 ], [ -80.093869271796194, 26.594972577872898 ], [ -80.093822290760301, 26.5949999475392 ], [ -80.093673421671497, 26.594942429098499 ], [ -80.093541561313501, 26.594882349919502 ], [ -80.093424985759697, 26.5949077133894 ], [ -80.093431729974995, 26.5949800219514 ], [ -80.093392837863107, 26.595071300894698 ], [ -80.093339352795695, 26.5950896490607 ], [ -80.093326024480902, 26.595194434938701 ], [ -80.093259188966499, 26.595343011070401 ], [ -80.093222003669993, 26.595484989012 ], [ -80.0934265721923, 26.595517936081698 ], [ -80.093504994725393, 26.595695293253598 ], [ -80.093385368503505, 26.595779972118599 ], [ -80.093344339547997, 26.596002455841099 ], [ -80.093138543056597, 26.5961171344767 ], [ -80.093227877335593, 26.596476596975499 ], [ -80.093477495213804, 26.596714546013501 ], [ -80.093438122093204, 26.596919991597801 ], [ -80.093543275969395, 26.597280768544 ], [ -80.094383298556906, 26.5975611803912 ], [ -80.094254191343595, 26.597310952021001 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.095364170531695, 26.599251998154401 ], [ -80.095229914387602, 26.599209007255698 ], [ -80.094682952782094, 26.598994915949898 ], [ -80.094585671420106, 26.5987596787256 ], [ -80.094359474172293, 26.598593630893799 ], [ -80.094268843499506, 26.598436255608298 ], [ -80.094237266471495, 26.598270163518499 ], [ -80.094395858293396, 26.598178050150501 ], [ -80.094410193893395, 26.598045266792901 ], [ -80.094323237261904, 26.597918607791101 ], [ -80.094238890765297, 26.5977971121604 ], [ -80.0940913195451, 26.597755871049198 ], [ -80.093875195886795, 26.597663574668399 ], [ -80.093781189994303, 26.5977076083851 ], [ -80.093824646097502, 26.5981008830782 ], [ -80.0938394712621, 26.5983818064784 ], [ -80.093925839489401, 26.598688634833099 ], [ -80.093981305496001, 26.5988634217988 ], [ -80.094153569379301, 26.5991140098944 ], [ -80.094301367609305, 26.5993650475219 ], [ -80.094541770260406, 26.599586825294999 ], [ -80.094974050675305, 26.599693988592701 ], [ -80.095465698655403, 26.599698106073198 ], [ -80.095481434601993, 26.599392001187699 ], [ -80.095364170531695, 26.599251998154401 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.097244478770307, 26.598799187508199 ], [ -80.097138470651601, 26.598785316287 ], [ -80.096960394145299, 26.5985065702695 ], [ -80.097143376727402, 26.598402297648601 ], [ -80.097063672285699, 26.598174525042801 ], [ -80.0970068009958, 26.5979844136751 ], [ -80.096756572767603, 26.597927844741001 ], [ -80.096719044349001, 26.597825411259699 ], [ -80.096682169545304, 26.5977640057366 ], [ -80.096736687222801, 26.5976461898689 ], [ -80.096930754164504, 26.597568990762401 ], [ -80.096898172450906, 26.597393694024699 ], [ -80.0966746428427, 26.597480909570098 ], [ -80.096631336111102, 26.597345300656901 ], [ -80.096614321683802, 26.597149138169499 ], [ -80.096593957445293, 26.596864649532801 ], [ -80.096589057754301, 26.5967015865875 ], [ -80.096668460790596, 26.596586253104601 ], [ -80.096840357385801, 26.596533673550798 ], [ -80.096887595303798, 26.596449461611002 ], [ -80.096742610675406, 26.596320147480998 ], [ -80.096747479365504, 26.596107518734598 ], [ -80.096913110080493, 26.596011301379001 ], [ -80.096924160372097, 26.5956863975393 ], [ -80.096553271602602, 26.5956523114756 ], [ -80.096244110564896, 26.595824501968199 ], [ -80.096120537033798, 26.596529529193901 ], [ -80.096151828237694, 26.597400795792598 ], [ -80.096203629891704, 26.5976294912154 ], [ -80.096262312141107, 26.597985904211299 ], [ -80.0962649818469, 26.598141505597301 ], [ -80.096224804743002, 26.598329785663498 ], [ -80.096270028713306, 26.5985079345744 ], [ -80.096507054604004, 26.598630130295199 ], [ -80.096462213302303, 26.598554258870902 ], [ -80.096525429340204, 26.5988440200186 ], [ -80.096624048002596, 26.599073865759301 ], [ -80.096690297939602, 26.599269064604499 ], [ -80.096880436974203, 26.599419774279902 ], [ -80.097282726464897, 26.599140938984199 ], [ -80.097244478770307, 26.598799187508199 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.089011499952505, 26.603826667373699 ], [ -80.089028696091802, 26.6036064598682 ], [ -80.089034064846501, 26.603507186855602 ], [ -80.0891645502995, 26.603517115783202 ], [ -80.089302819579999, 26.603550708828799 ], [ -80.089331715231296, 26.603367211146299 ], [ -80.089148819811101, 26.603347572783601 ], [ -80.089061435146704, 26.603189639889301 ], [ -80.089215536490499, 26.603197051438599 ], [ -80.089353103168605, 26.603114056406699 ], [ -80.089343428097195, 26.602768134397301 ], [ -80.087853728582701, 26.602771189208099 ], [ -80.086446688434705, 26.6026609797755 ], [ -80.086421867489193, 26.6027729652033 ], [ -80.086416317011896, 26.6028653408673 ], [ -80.086323839239995, 26.602989672710599 ], [ -80.086325765162599, 26.603176680272899 ], [ -80.086319533901502, 26.603388948519299 ], [ -80.086415890338401, 26.603461072074701 ], [ -80.086454806194595, 26.603616589212201 ], [ -80.086854292901407, 26.603687489573399 ], [ -80.087256318693903, 26.603788586936101 ], [ -80.088012341614203, 26.604052309831101 ], [ -80.088972530212104, 26.6041345184987 ], [ -80.089011499952505, 26.603826667373699 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087811798101001, 26.603236091666101 ], [ -80.0874176864384, 26.603130529441 ], [ -80.087401254536601, 26.603278370588299 ], [ -80.087798875224806, 26.603393869304298 ], [ -80.087811798101001, 26.603236091666101 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "r", "zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087309106884206, 26.603022047996902 ], [ -80.087143477726798, 26.603018354592301 ], [ -80.087127767069404, 26.603101046859599 ], [ -80.087295527414199, 26.603128332224699 ], [ -80.087309106884206, 26.603022047996902 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.087575994101499, 26.5992661873067 ], [ -80.087701470087396, 26.5991344983501 ], [ -80.087704289198399, 26.598947101751499 ], [ -80.087704711414901, 26.598524475783702 ], [ -80.087452595946502, 26.598683884752901 ], [ -80.087334387022906, 26.5987260691812 ], [ -80.087382385255196, 26.598776875244599 ], [ -80.087395725080697, 26.598879338912699 ], [ -80.087287587339404, 26.598889636421799 ], [ -80.087227647298107, 26.598806397247099 ], [ -80.0871432069316, 26.5987833064545 ], [ -80.087112010380693, 26.598844246173101 ], [ -80.087075446985395, 26.598906175749999 ], [ -80.086863546259707, 26.598970362561399 ], [ -80.086977228932696, 26.599537988112299 ], [ -80.0871440939802, 26.599704641987699 ], [ -80.087214981548996, 26.599915866903299 ], [ -80.087526639655806, 26.599894324178301 ], [ -80.087575994101499, 26.5992661873067 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.096422436853501, 26.587352382708499 ], [ -80.094852019120694, 26.5873184346442 ], [ -80.094936945503505, 26.587894404861299 ], [ -80.096397383267799, 26.587970460178902 ], [ -80.096422436853501, 26.587352382708499 ] ] ] } }, { "type": "Feature", "properties": { "Name": "g" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.095450350801499, 26.585958248645301 ], [ -80.095031006742403, 26.584752667479101 ], [ -80.094254017107602, 26.5835562615102 ], [ -80.093411317008204, 26.583693324435501 ], [ -80.093015726592597, 26.5840675306127 ], [ -80.094244436745896, 26.587073004428401 ], [ -80.095645182116598, 26.587031025281501 ], [ -80.095450350801499, 26.585958248645301 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "g", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.101101434688701, 26.5932382749283 ], [ -80.101106274067106, 26.593093268341999 ], [ -80.101062654120994, 26.592871626335601 ], [ -80.1009910922552, 26.5928163997303 ], [ -80.100899213823894, 26.5927697784022 ], [ -80.100785697625597, 26.592764957243599 ], [ -80.100647860546999, 26.592788962065502 ], [ -80.100600878054493, 26.5928667561315 ], [ -80.100469947862507, 26.592930964211099 ], [ -80.100378516821493, 26.592925968403801 ], [ -80.100330666307599, 26.592822760873499 ], [ -80.100248794584104, 26.592861772613201 ], [ -80.100107693219002, 26.593026446332399 ], [ -80.099773955071697, 26.593197072156102 ], [ -80.098920232108, 26.593380351601901 ], [ -80.099051138837297, 26.593915558522902 ], [ -80.101027495323905, 26.593394640279399 ], [ -80.101101434688701, 26.5932382749283 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "BLUE", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.079527096305995, 26.587210682472499 ], [ -80.079028449955501, 26.5870943777172 ], [ -80.078968842598499, 26.586866446240101 ], [ -80.079077226782601, 26.5866488263425 ], [ -80.079247152897906, 26.5863167450254 ], [ -80.079145713094604, 26.585189967532202 ], [ -80.079031190883896, 26.584787933339801 ], [ -80.079096315417701, 26.5841082862331 ], [ -80.079445778196103, 26.583597952593902 ], [ -80.079734854157394, 26.583022323277401 ], [ -80.080136250092707, 26.581701945470801 ], [ -80.080214275624698, 26.580859287493201 ], [ -80.080453143333699, 26.5798575545343 ], [ -80.079526760011603, 26.5797917506301 ], [ -80.079025061311498, 26.579803500800899 ], [ -80.078983275453098, 26.579803694089598 ], [ -80.078435763394197, 26.579687094997301 ], [ -80.078421862659795, 26.579687092683901 ], [ -80.078193339010994, 26.5794521219347 ], [ -80.077968142965304, 26.579220379173599 ], [ -80.077815491703205, 26.579048830675301 ], [ -80.077677629037694, 26.578886869085899 ], [ -80.077433401072, 26.5788744264899 ], [ -80.077188733858307, 26.578973625124501 ], [ -80.076903243958, 26.578961237988999 ], [ -80.076755787464407, 26.578849526271402 ], [ -80.076390101695694, 26.5788484210793 ], [ -80.076563945051802, 26.579492529609102 ], [ -80.076838035481401, 26.579634772906701 ], [ -80.076641169303301, 26.5797518739381 ], [ -80.076390207998699, 26.580252954824701 ], [ -80.076658951981699, 26.580914317526499 ], [ -80.077003201124199, 26.581068944419801 ], [ -80.077306566405994, 26.5814110465517 ], [ -80.077232260049499, 26.581715886691399 ], [ -80.077067688729599, 26.581995174581898 ], [ -80.077025462524901, 26.583323243451598 ], [ -80.077155958732405, 26.584787434854999 ], [ -80.077585076353103, 26.587174285120199 ], [ -80.079418088468302, 26.5874099831079 ], [ -80.079527096305995, 26.587210682472499 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.103541954095903, 26.590840978947401, 0.0 ], [ -80.103511366921296, 26.590867035983901, 0.0 ], [ -80.103459997461499, 26.590856798776901, 0.0 ], [ -80.103363645133697, 26.590869327010498, 0.0 ], [ -80.103246407675599, 26.5909887154892, 0.0 ], [ -80.1032052862667, 26.590986348552999, 0.0 ], [ -80.103125820428204, 26.591042202242001, 0.0 ], [ -80.103054195853701, 26.591104082284101, 0.0 ], [ -80.102941269316204, 26.591451484997901, 0.0 ], [ -80.103083920178193, 26.5914144373738, 0.0 ], [ -80.103433494931494, 26.591183426123699, 0.0 ], [ -80.103706157893697, 26.590965380899899, 0.0 ], [ -80.103541954095903, 26.590840978947401, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.098484032292305, 26.594197183821201, 0.0 ], [ -80.098608656597904, 26.5943594495714, 0.0 ], [ -80.098839438452401, 26.594581392623901, 0.0 ], [ -80.099472093978903, 26.594394054696401, 0.0 ], [ -80.099860985269302, 26.594197294406801, 0.0 ], [ -80.100382964847199, 26.5941387745162, 0.0 ], [ -80.100882162398904, 26.5940989201444, 0.0 ], [ -80.101818959736093, 26.594189986967901, 0.0 ], [ -80.1023112340946, 26.5943858553544, 0.0 ], [ -80.102659220298094, 26.594469577511099, 0.0 ], [ -80.102890749525699, 26.594616524637999, 0.0 ], [ -80.102877355346806, 26.5943981885301, 0.0 ], [ -80.102830122375806, 26.5941757064566, 0.0 ], [ -80.102394950664902, 26.594006624582601, 0.0 ], [ -80.102436060429, 26.593904914168, 0.0 ], [ -80.102422136822895, 26.593710727716299, 0.0 ], [ -80.101463942283303, 26.593730025871899, 0.0 ], [ -80.101234348047498, 26.593683760963401, 0.0 ], [ -80.101052391499707, 26.5935734937893, 0.0 ], [ -80.100147856056907, 26.5938016062657, 0.0 ], [ -80.099181060473896, 26.594033944724099, 0.0 ], [ -80.098434563057097, 26.594069109247201, 0.0 ], [ -80.098484032292305, 26.594197183821201, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.1059935985392, 26.5913114089402, 0.0 ], [ -80.105430459368705, 26.591195676093101, 0.0 ], [ -80.105168271031005, 26.591128777344998, 0.0 ], [ -80.105027590402003, 26.591126763828999, 0.0 ], [ -80.104964239240999, 26.591317616031699, 0.0 ], [ -80.104760357387704, 26.591525615858998, 0.0 ], [ -80.104648472747797, 26.591869043264801, 0.0 ], [ -80.104524902520296, 26.591931501478602, 0.0 ], [ -80.104385215244207, 26.592056415938998, 0.0 ], [ -80.104250900084395, 26.592190937285999, 0.0 ], [ -80.104138065291906, 26.592287017137899, 0.0 ], [ -80.104052010987004, 26.592368672194901, 0.0 ], [ -80.103778193877304, 26.5924791974325, 0.0 ], [ -80.103660066332495, 26.592565651433599, 0.0 ], [ -80.103477239063494, 26.592690597031002, 0.0 ], [ -80.103374848373903, 26.592772382764601, 0.0 ], [ -80.103219219784805, 26.5929068505076, 0.0 ], [ -80.103143626475401, 26.592979096677301, 0.0 ], [ -80.103009266263001, 26.593142508476198, 0.0 ], [ -80.102977017094503, 26.593517406614101, 0.0 ], [ -80.103046892785599, 26.593387634677001, 0.0 ], [ -80.103342558271706, 26.593320303935801, 0.0 ], [ -80.103611503101803, 26.593123047237999, 0.0 ], [ -80.104213263755398, 26.5926041826364, 0.0 ], [ -80.104999151625407, 26.5922006491963, 0.0 ], [ -80.1050052950512, 26.5921017614377, 0.0 ], [ -80.105196273810506, 26.592008125348801, 0.0 ], [ -80.105360565618696, 26.5922065109879, 0.0 ], [ -80.105447250601799, 26.592123876325399, 0.0 ], [ -80.105472216027806, 26.5919204578997, 0.0 ], [ -80.105438934890799, 26.591845180468301, 0.0 ], [ -80.105631954109001, 26.5917391555083, 0.0 ], [ -80.105748443389899, 26.5920029533217, 0.0 ], [ -80.105945293133999, 26.5918655092153, 0.0 ], [ -80.105835523414399, 26.591667340157102, 0.0 ], [ -80.1059935985392, 26.5913114089402, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.1049522946129, 26.5923842453915, 0.0 ], [ -80.104650860669295, 26.5923905145582, 0.0 ], [ -80.104548189318706, 26.592500824306001, 0.0 ], [ -80.1043577136289, 26.592523843774899, 0.0 ], [ -80.104337038674998, 26.592565325626001, 0.0 ], [ -80.1043677441032, 26.592616055888801, 0.0 ], [ -80.104249606197698, 26.5925836890884, 0.0 ], [ -80.104162090544193, 26.592643533641599, 0.0 ], [ -80.103986666673293, 26.592795679199199, 0.0 ], [ -80.104099628663107, 26.592901549373899, 0.0 ], [ -80.103970446628594, 26.592923661099899, 0.0 ], [ -80.104046988927095, 26.592849869361402, 0.0 ], [ -80.103989283149005, 26.592800031064801, 0.0 ], [ -80.103613074107699, 26.593123376640399, 0.0 ], [ -80.103845988896694, 26.593348246453399, 0.0 ], [ -80.103672958591304, 26.593370788245601, 0.0 ], [ -80.103697788792203, 26.5932008488534, 0.0 ], [ -80.103613074107699, 26.593123376640399, 0.0 ], [ -80.103331943638906, 26.593328528429701, 0.0 ], [ -80.103614686806594, 26.593569351153501, 0.0 ], [ -80.103488028401898, 26.593680886073201, 0.0 ], [ -80.103300312297804, 26.593861490095399, 0.0 ], [ -80.103039569491898, 26.594017991615601, 0.0 ], [ -80.102936757473103, 26.594268864711999, 0.0 ], [ -80.102992124418606, 26.5944676972839, 0.0 ], [ -80.103146238041901, 26.594588671795201, 0.0 ], [ -80.104625611571095, 26.593172476420701, 0.0 ], [ -80.105297497036602, 26.592477946936899, 0.0 ], [ -80.1049522946129, 26.5923842453915, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.106591650734202, 26.5931775787774, 0.0 ], [ -80.106437287739496, 26.5929741237853, 0.0 ], [ -80.106371930266903, 26.593013817451201, 0.0 ], [ -80.106282395409096, 26.593002810174902, 0.0 ], [ -80.106195493152399, 26.593012766195798, 0.0 ], [ -80.105803066893003, 26.593122927958401, 0.0 ], [ -80.105519511844093, 26.593161517718901, 0.0 ], [ -80.105377733852606, 26.593172544317, 0.0 ], [ -80.105106508529403, 26.593189084819102, 0.0 ], [ -80.104835209439003, 26.593238691236401, 0.0 ], [ -80.104631398582299, 26.593365388296299, 0.0 ], [ -80.104453107319898, 26.593585960499102, 0.0 ], [ -80.104213594133498, 26.593796686954001, 0.0 ], [ -80.104052437871701, 26.593993855774301, 0.0 ], [ -80.104003125069895, 26.594082048892101, 0.0 ], [ -80.103929155186194, 26.594164730807702, 0.0 ], [ -80.103855184717403, 26.594208827730899, 0.0 ], [ -80.103590124269502, 26.594412775073099, 0.0 ], [ -80.103484415070994, 26.594504621121501, 0.0 ], [ -80.103411063267998, 26.594560673124199, 0.0 ], [ -80.103220291653699, 26.594566918941702, 0.0 ], [ -80.103140183659605, 26.594599888514601, 0.0 ], [ -80.103140133506301, 26.594649796713501, 0.0 ], [ -80.103793538882201, 26.594671815335001, 0.0 ], [ -80.104188054351397, 26.594252922686, 0.0 ], [ -80.104865798630499, 26.593850380746598, 0.0 ], [ -80.105445547656004, 26.593525315308401, 0.0 ], [ -80.106086548035705, 26.593401560542802, 0.0 ], [ -80.106611339656794, 26.5934206312964, 0.0 ], [ -80.106591650734202, 26.5931775787774, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.111520850106103, 26.591273695745201, 0.0 ], [ -80.111411154890106, 26.591209709277798, 0.0 ], [ -80.111163445577205, 26.5911438776076, 0.0 ], [ -80.1108313511711, 26.591040667029301, 0.0 ], [ -80.110368941986806, 26.5910052110004, 0.0 ], [ -80.110016358691198, 26.5910118193847, 0.0 ], [ -80.109686489993095, 26.590990768587499, 0.0 ], [ -80.109348766868393, 26.5909486445974, 0.0 ], [ -80.1089868501533, 26.5909702792978, 0.0 ], [ -80.108571223272094, 26.590941660556101, 0.0 ], [ -80.108303880930904, 26.590949093871501, 0.0 ], [ -80.107942613353003, 26.590998374025101, 0.0 ], [ -80.107746366062401, 26.591012327298799, 0.0 ], [ -80.107487033771406, 26.5910480635984, 0.0 ], [ -80.107259402035396, 26.591104223076201, 0.0 ], [ -80.107118244969499, 26.591243813672801, 0.0 ], [ -80.107314587671098, 26.591482580295001, 0.0 ], [ -80.107715001210707, 26.5913422928278, 0.0 ], [ -80.108013609832199, 26.591327959433201, 0.0 ], [ -80.108398084749595, 26.591307233017702, 0.0 ], [ -80.108861592095394, 26.591285968266401, 0.0 ], [ -80.109576550597296, 26.591313843194602, 0.0 ], [ -80.1101813189578, 26.591341901504599, 0.0 ], [ -80.110989335700495, 26.5913843208568, 0.0 ], [ -80.111602931428706, 26.591482283566101, 0.0 ], [ -80.111520850106103, 26.591273695745201, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.111706775548697, 26.592060272771501, 0.0 ], [ -80.111638521916205, 26.592027934320299, 0.0 ], [ -80.111593179391804, 26.592006439585099, 0.0 ], [ -80.111546211901597, 26.591966837396399, 0.0 ], [ -80.111586320063495, 26.5919704329288, 0.0 ], [ -80.111660458310894, 26.5919638456649, 0.0 ], [ -80.111667400776298, 26.591898476818599, 0.0 ], [ -80.111622679800703, 26.591898528550601, 0.0 ], [ -80.111529913775897, 26.591899917156599, 0.0 ], [ -80.1115030586393, 26.5918372502483, 0.0 ], [ -80.111555332740494, 26.591804869571401, 0.0 ], [ -80.111691625927804, 26.5918373229316, 0.0 ], [ -80.111684066600802, 26.591740095285001, 0.0 ], [ -80.111615721799296, 26.591711301778702, 0.0 ], [ -80.111579457309205, 26.5914846246941, 0.0 ], [ -80.110968584235593, 26.591390028228101, 0.0 ], [ -80.111021012079703, 26.591476509619099, 0.0 ], [ -80.111049102949806, 26.591555926105499, 0.0 ], [ -80.111092877060798, 26.591574372877002, 0.0 ], [ -80.111141131325098, 26.591592411537601, 0.0 ], [ -80.111154019148401, 26.591635122875498, 0.0 ], [ -80.111165030642596, 26.591671745676699, 0.0 ], [ -80.111060493468599, 26.591707686461302, 0.0 ], [ -80.1109157469932, 26.5917291858214, 0.0 ], [ -80.110750748486396, 26.591765120089601, 0.0 ], [ -80.110589706631998, 26.591750495091802, 0.0 ], [ -80.110497018712707, 26.591707475356099, 0.0 ], [ -80.110456810268502, 26.5917221598353, 0.0 ], [ -80.110350465792806, 26.5917436099977, 0.0 ], [ -80.110271703850501, 26.591678989093101, 0.0 ], [ -80.110078597891402, 26.591643053862501, 0.0 ], [ -80.110006200045206, 26.591679052506699, 0.0 ], [ -80.109788723357497, 26.591639380307601, 0.0 ], [ -80.109567850467002, 26.591610799354601, 0.0 ], [ -80.109387478323498, 26.591639792424001, 0.0 ], [ -80.109004505627695, 26.591621564416901, 0.0 ], [ -80.108655177513597, 26.591666459990599, 0.0 ], [ -80.108423477621301, 26.5916068674805, 0.0 ], [ -80.108111267566898, 26.5916035876465, 0.0 ], [ -80.107910448256405, 26.591600051839599, 0.0 ], [ -80.107726026800904, 26.5916612877087, 0.0 ], [ -80.107670249311695, 26.5917548430516, 0.0 ], [ -80.1075652106598, 26.5918662892893, 0.0 ], [ -80.107589342715897, 26.591891463039001, 0.0 ], [ -80.107753380444905, 26.591992177680002, 0.0 ], [ -80.107671155004894, 26.592114384255201, 0.0 ], [ -80.107752757909296, 26.5921720588928, 0.0 ], [ -80.107903208318007, 26.592110823336998, 0.0 ], [ -80.108204905151297, 26.591977758720599, 0.0 ], [ -80.108498278644902, 26.591970552613098, 0.0 ], [ -80.109044395782107, 26.591974106612099, 0.0 ], [ -80.109422860474297, 26.591992086400399, 0.0 ], [ -80.109652067263596, 26.591952494168599, 0.0 ], [ -80.1100304368492, 26.591974075610299, 0.0 ], [ -80.110541324304407, 26.591992041752398, 0.0 ], [ -80.110939244975697, 26.592045945998802, 0.0 ], [ -80.111586037873394, 26.592169263052899, 0.0 ], [ -80.111706775548697, 26.592060272771501, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.107267398496603, 26.591508282073399, 0.0 ], [ -80.107193235074206, 26.591463761815199, 0.0 ], [ -80.107090576528705, 26.591383333774601, 0.0 ], [ -80.106827787906397, 26.591308362381, 0.0 ], [ -80.106623373056195, 26.591244283676399, 0.0 ], [ -80.106379153139102, 26.591255769009798, 0.0 ], [ -80.1060070108594, 26.591303040136602, 0.0 ], [ -80.105845886640594, 26.591663647522399, 0.0 ], [ -80.106038539622205, 26.5917730314141, 0.0 ], [ -80.106283153218698, 26.591657816888599, 0.0 ], [ -80.106365149572497, 26.591623034643298, 0.0 ], [ -80.106449904050606, 26.591721300591701, 0.0 ], [ -80.106649160463505, 26.591744280375899, 0.0 ], [ -80.106891260664597, 26.5917050137692, 0.0 ], [ -80.107009746124305, 26.59184749924, 0.0 ], [ -80.107259639023894, 26.591617874501399, 0.0 ], [ -80.107267398496603, 26.591508282073399, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.106404916960003, 26.591922463825199, 0.0 ], [ -80.106379202207094, 26.5918534909645, 0.0 ], [ -80.106251289054299, 26.591828137067001, 0.0 ], [ -80.106353491214506, 26.591744286119901, 0.0 ], [ -80.106321540262002, 26.591646447039299, 0.0 ], [ -80.106064249958294, 26.591767285818101, 0.0 ], [ -80.105980628449601, 26.591899525201001, 0.0 ], [ -80.105800713038903, 26.5919914549929, 0.0 ], [ -80.105774670847197, 26.592072130632499, 0.0 ], [ -80.105614163641704, 26.592123760565698, 0.0 ], [ -80.1054340990366, 26.592158362314699, 0.0 ], [ -80.1053250066646, 26.5922329324627, 0.0 ], [ -80.105427843448297, 26.592376585043901, 0.0 ], [ -80.105492026899398, 26.5924628025139, 0.0 ], [ -80.105776518210703, 26.592343508100299, 0.0 ], [ -80.105774491569605, 26.592256052663799, 0.0 ], [ -80.105993279643698, 26.592152493840899, 0.0 ], [ -80.106179952833799, 26.592031673690599, 0.0 ], [ -80.106360603874094, 26.592134912042301, 0.0 ], [ -80.106482088372999, 26.592014407717802, 0.0 ], [ -80.106404916960003, 26.591922463825199, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.107542979851104, 26.591627811529801, 0.0 ], [ -80.107400518853794, 26.591676874851199, 0.0 ], [ -80.107351581213393, 26.591760557921301, 0.0 ], [ -80.107269379713998, 26.5917084766327, 0.0 ], [ -80.107228987248106, 26.5917565366187, 0.0 ], [ -80.107071941554906, 26.591898341489099, 0.0 ], [ -80.1069262785701, 26.592010709446399, 0.0 ], [ -80.106779882719593, 26.592068089853299, 0.0 ], [ -80.106579341216801, 26.592135607636699, 0.0 ], [ -80.106730733307998, 26.592250418213499, 0.0 ], [ -80.107054372599407, 26.592151908157401, 0.0 ], [ -80.107193923352298, 26.5920607634622, 0.0 ], [ -80.107579935304699, 26.591784998305801, 0.0 ], [ -80.107542979851104, 26.591627811529801, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.112213024556794, 26.594764600310999, 0.0 ], [ -80.112250734021302, 26.594717189326602, 0.0 ], [ -80.112253204891601, 26.594645816404999, 0.0 ], [ -80.112211678539893, 26.594544738983, 0.0 ], [ -80.112264124031896, 26.594407776174901, 0.0 ], [ -80.111895145774398, 26.594283103092199, 0.0 ], [ -80.111580397629197, 26.5942029242273, 0.0 ], [ -80.111376040396607, 26.5941513693034, 0.0 ], [ -80.111301812690598, 26.594082733189399, 0.0 ], [ -80.111266062590403, 26.594089753356599, 0.0 ], [ -80.1111911571452, 26.594046193162999, 0.0 ], [ -80.111114120405105, 26.594014314437, 0.0 ], [ -80.111062867371302, 26.593975494168401, 0.0 ], [ -80.111023578452603, 26.593898679638698, 0.0 ], [ -80.110907895542297, 26.5938621824432, 0.0 ], [ -80.110846870135305, 26.5939757759168, 0.0 ], [ -80.110811401886195, 26.5940304728013, 0.0 ], [ -80.110773454170896, 26.594102813314802, 0.0 ], [ -80.110839503395894, 26.594137072774, 0.0 ], [ -80.110862147257507, 26.594196230524101, 0.0 ], [ -80.110948599913002, 26.594249154019199, 0.0 ], [ -80.110967460553397, 26.594276701352399, 0.0 ], [ -80.111001622695198, 26.5943317068411, 0.0 ], [ -80.111022960587704, 26.594389963894699, 0.0 ], [ -80.111062598111999, 26.594404422715101, 0.0 ], [ -80.111084828118607, 26.5944462555297, 0.0 ], [ -80.1110445484114, 26.5944939428373, 0.0 ], [ -80.111004153228393, 26.594568719132699, 0.0 ], [ -80.110964036125907, 26.594599642036599, 0.0 ], [ -80.110918728113006, 26.5946582387941, 0.0 ], [ -80.111031684984795, 26.594671241805798, 0.0 ], [ -80.1111485173208, 26.594677697731999, 0.0 ], [ -80.111157615348205, 26.594627311730701, 0.0 ], [ -80.111195180875399, 26.594613127244799, 0.0 ], [ -80.111235104548896, 26.594611365752801, 0.0 ], [ -80.111266843619006, 26.594611065630101, 0.0 ], [ -80.1112740892506, 26.594651673557198, 0.0 ], [ -80.111293974424896, 26.5946874319432, 0.0 ], [ -80.111339406761502, 26.5947004305206, 0.0 ], [ -80.111477519116704, 26.594726436007502, 0.0 ], [ -80.111577484240797, 26.5947426720011, 0.0 ], [ -80.111611983076799, 26.5947604842194, 0.0 ], [ -80.111615790199494, 26.594713161492699, 0.0 ], [ -80.111648796299306, 26.594654221120201, 0.0 ], [ -80.111695674727599, 26.5946451640371, 0.0 ], [ -80.111748336421499, 26.594671161092901, 0.0 ], [ -80.111781056307294, 26.5947134164938, 0.0 ], [ -80.111817411164395, 26.594754046508999, 0.0 ], [ -80.111844679246303, 26.594761389572898, 0.0 ], [ -80.111891697108803, 26.594766952915698, 0.0 ], [ -80.1119168668328, 26.5947538727252, 0.0 ], [ -80.111951368485194, 26.5947522722694, 0.0 ], [ -80.111975232154194, 26.5947766861782, 0.0 ], [ -80.111993153177494, 26.594779853381301, 0.0 ], [ -80.112030813143306, 26.594761872249698, 0.0 ], [ -80.112042156253693, 26.5947973270018, 0.0 ], [ -80.112065904555905, 26.594826973690399, 0.0 ], [ -80.112076710130495, 26.594835057073599, 0.0 ], [ -80.112107461758697, 26.594836638072401, 0.0 ], [ -80.112097670002399, 26.594781261707801, 0.0 ], [ -80.112119086595698, 26.594764972676799, 0.0 ], [ -80.112213024556794, 26.594764600310999, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.112239481634802, 26.594920516866502, 0.0 ], [ -80.112216952280605, 26.594885505802299, 0.0 ], [ -80.112125326016297, 26.594848323550298, 0.0 ], [ -80.1117500511115, 26.5947866282573, 0.0 ], [ -80.111329231517999, 26.5946968952071, 0.0 ], [ -80.111131587660296, 26.594680931462602, 0.0 ], [ -80.110931673123702, 26.5946712144193, 0.0 ], [ -80.110850162223301, 26.594626141930199, 0.0 ], [ -80.110724183392307, 26.5945387746726, 0.0 ], [ -80.110546062917194, 26.594546315021699, 0.0 ], [ -80.110265110545797, 26.594526603935201, 0.0 ], [ -80.110100262496204, 26.5945339134108, 0.0 ], [ -80.109941422522894, 26.594499552201, 0.0 ], [ -80.109832768849799, 26.594384442031501, 0.0 ], [ -80.109751803482695, 26.5943917827822, 0.0 ], [ -80.1095512291852, 26.5943993458196, 0.0 ], [ -80.109392316269293, 26.594426807590501, 0.0 ], [ -80.109292075833594, 26.594441717369701, 0.0 ], [ -80.1092074243697, 26.5944880301948, 0.0 ], [ -80.109175042108703, 26.594526442933901, 0.0 ], [ -80.109134725656901, 26.594555961567799, 0.0 ], [ -80.109010367942304, 26.594578903425202, 0.0 ], [ -80.109016202183994, 26.5944990397435, 0.0 ], [ -80.108844073627694, 26.594509721112299, 0.0 ], [ -80.108721115513006, 26.594471577702201, 0.0 ], [ -80.108595540140797, 26.594411827072101, 0.0 ], [ -80.108509778524194, 26.5944139607331, 0.0 ], [ -80.108419832024296, 26.5944442467523, 0.0 ], [ -80.108322328921801, 26.594481623245901, 0.0 ], [ -80.108272052981107, 26.594516598780199, 0.0 ], [ -80.108149560470906, 26.594576317734099, 0.0 ], [ -80.108139045950097, 26.594708207014701, 0.0 ], [ -80.108153891682505, 26.594805019571901, 0.0 ], [ -80.108197209648296, 26.594937514449899, 0.0 ], [ -80.108198753943299, 26.595042804486301, 0.0 ], [ -80.108202452785704, 26.5951494759531, 0.0 ], [ -80.108419889001894, 26.595161884243399, 0.0 ], [ -80.1084250576355, 26.5950475117852, 0.0 ], [ -80.108603715878004, 26.594994985287101, 0.0 ], [ -80.108746075793306, 26.594872715257999, 0.0 ], [ -80.108859839775803, 26.5948306845819, 0.0 ], [ -80.108977041413794, 26.594895390340099, 0.0 ], [ -80.109063751649202, 26.5949291441028, 0.0 ], [ -80.109135162592693, 26.594936934419099, 0.0 ], [ -80.109185670927701, 26.594913569490402, 0.0 ], [ -80.109238551694105, 26.594863580422899, 0.0 ], [ -80.109327322008099, 26.5948635775718, 0.0 ], [ -80.109361917234295, 26.594916568828801, 0.0 ], [ -80.109447141071797, 26.594943068044, 0.0 ], [ -80.109585051119595, 26.594963118740001, 0.0 ], [ -80.109738149709401, 26.594946025300001, 0.0 ], [ -80.109827192116896, 26.594928680695201, 0.0 ], [ -80.109928723802398, 26.594901089071499, 0.0 ], [ -80.110022180184302, 26.594917453559798, 0.0 ], [ -80.110089918903995, 26.594909700944999, 0.0 ], [ -80.110204583748299, 26.594919303199699, 0.0 ], [ -80.110253299772396, 26.594948967742798, 0.0 ], [ -80.110296665278497, 26.5949903555946, 0.0 ], [ -80.110395881956606, 26.5950059156823, 0.0 ], [ -80.110545573882803, 26.5949810048978, 0.0 ], [ -80.1105960983855, 26.594938968314501, 0.0 ], [ -80.110641342823698, 26.594945193433499, 0.0 ], [ -80.110724856692002, 26.594976326322701, 0.0 ], [ -80.110770319646804, 26.595044712113801, 0.0 ], [ -80.110799708032303, 26.595051031644701, 0.0 ], [ -80.1108693324299, 26.5950494715273, 0.0 ], [ -80.110909366994505, 26.5950556948921, 0.0 ], [ -80.110951141744906, 26.5950572492291, 0.0 ], [ -80.110998006020694, 26.595068265428399, 0.0 ], [ -80.1110253045251, 26.595025146654901, 0.0 ], [ -80.111050152223996, 26.594953089838199, 0.0 ], [ -80.111097634550305, 26.594949971804599, 0.0 ], [ -80.111144345387402, 26.594996537571198, 0.0 ], [ -80.111208747002095, 26.594984082548201, 0.0 ], [ -80.111250596972994, 26.5949790233093, 0.0 ], [ -80.111294042273002, 26.594981082766001, 0.0 ], [ -80.111342808915296, 26.594982627377, 0.0 ], [ -80.111386355948596, 26.594991980058701, 0.0 ], [ -80.111414181594895, 26.594996585689699, 0.0 ], [ -80.111418506141803, 26.5949798116933, 0.0 ], [ -80.111443832452395, 26.594973287218298, 0.0 ], [ -80.111504794614703, 26.594984185967402, 0.0 ], [ -80.111520365782496, 26.594990935089498, 0.0 ], [ -80.111550034314803, 26.5950121796897, 0.0 ], [ -80.111581283725599, 26.595024561905401, 0.0 ], [ -80.111583825613593, 26.595043203154098, 0.0 ], [ -80.111602133400197, 26.595102349637799, 0.0 ], [ -80.111600229903502, 26.595145748749701, 0.0 ], [ -80.1116421702786, 26.595142814663699, 0.0 ], [ -80.111704762563406, 26.595127193861799, 0.0 ], [ -80.111680459580597, 26.5950867809137, 0.0 ], [ -80.111654321947597, 26.595030735298099, 0.0 ], [ -80.111658642420295, 26.594987047508301, 0.0 ], [ -80.111716763566804, 26.594987062414901, 0.0 ], [ -80.111736154081697, 26.595016737688699, 0.0 ], [ -80.1117518239829, 26.595075881599701, 0.0 ], [ -80.1117970813673, 26.595097669296401, 0.0 ], [ -80.111845818829593, 26.5950992230518, 0.0 ], [ -80.111882606605207, 26.595074425985299, 0.0 ], [ -80.111946585531996, 26.595085128314899, 0.0 ], [ -80.1119750053616, 26.595108013388501, 0.0 ], [ -80.112045492797193, 26.5951285682725, 0.0 ], [ -80.112122029424299, 26.595123898222301, 0.0 ], [ -80.1121340837405, 26.595010461981801, 0.0 ], [ -80.1121928748301, 26.595010667731099, 0.0 ], [ -80.112262119763898, 26.595114975889899, 0.0 ], [ -80.112334720607393, 26.5950553383854, 0.0 ], [ -80.112276262652301, 26.595013025706798, 0.0 ], [ -80.112297297715202, 26.594974529851299, 0.0 ], [ -80.112415493586298, 26.595003014636202, 0.0 ], [ -80.112431679230895, 26.594965357818001, 0.0 ], [ -80.112306319939506, 26.5949553720592, 0.0 ], [ -80.112239481634802, 26.594920516866502, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.110859247798899, 26.594296897457401, 0.0 ], [ -80.110825364585295, 26.594231728346301, 0.0 ], [ -80.110775216062507, 26.594159549623001, 0.0 ], [ -80.110779960880095, 26.5940769189504, 0.0 ], [ -80.110773595721795, 26.594052310390602, 0.0 ], [ -80.110748801999605, 26.594032128460601, 0.0 ], [ -80.110696247752799, 26.594036622106, 0.0 ], [ -80.110645978118498, 26.594047842538298, 0.0 ], [ -80.110553460906104, 26.593989496992901, 0.0 ], [ -80.1104993848258, 26.593984495760498, 0.0 ], [ -80.110311871481798, 26.5940540074672, 0.0 ], [ -80.110032228794097, 26.593941176095399, 0.0 ], [ -80.110053631943202, 26.5938977204911, 0.0 ], [ -80.110108377781998, 26.5938805505141, 0.0 ], [ -80.110192464096002, 26.593873951381202, 0.0 ], [ -80.110329555902595, 26.593852845163202, 0.0 ], [ -80.110340191588605, 26.593795032326501, 0.0 ], [ -80.110099445733297, 26.593781564475702, 0.0 ], [ -80.110000441093803, 26.593772404976399, 0.0 ], [ -80.109785044715295, 26.593792136799301, 0.0 ], [ -80.109616843874306, 26.593837047722602, 0.0 ], [ -80.109192826769998, 26.593848134110601, 0.0 ], [ -80.109024503757098, 26.593841372122199, 0.0 ], [ -80.109012195363505, 26.593881838308601, 0.0 ], [ -80.108896595866895, 26.593859369953801, 0.0 ], [ -80.108610404216705, 26.593841421615998, 0.0 ], [ -80.108353178348494, 26.593844433900699, 0.0 ], [ -80.108036177190101, 26.5938488129744, 0.0 ], [ -80.107708305300704, 26.5938192008418, 0.0 ], [ -80.107456708637301, 26.593806559205699, 0.0 ], [ -80.107409430635201, 26.593869724835201, 0.0 ], [ -80.107314536388103, 26.5938275190802, 0.0 ], [ -80.107191059898994, 26.593857736516298, 0.0 ], [ -80.107087847318496, 26.593898372278101, 0.0 ], [ -80.106999153315499, 26.593992227464799, 0.0 ], [ -80.106938472372704, 26.594053803159099, 0.0 ], [ -80.106854397918994, 26.5941097445045, 0.0 ], [ -80.106822134976497, 26.5941656329802, 0.0 ], [ -80.106825509606296, 26.594200544370199, 0.0 ], [ -80.106888373325106, 26.594213873890599, 0.0 ], [ -80.106931501306704, 26.594207556775899, 0.0 ], [ -80.106992204001997, 26.594203390006399, 0.0 ], [ -80.106987999118402, 26.594228480971701, 0.0 ], [ -80.1069615528871, 26.5942578021026, 0.0 ], [ -80.106957903778294, 26.594302616243599, 0.0 ], [ -80.10698874933, 26.594336266536899, 0.0 ], [ -80.107061282289195, 26.594396181408101, 0.0 ], [ -80.107088430066497, 26.594337776942702, 0.0 ], [ -80.107116428982295, 26.594281854719899, 0.0 ], [ -80.107193034729306, 26.594266245828099, 0.0 ], [ -80.107302913832797, 26.594206241775801, 0.0 ], [ -80.107359939445104, 26.594211287465502, 0.0 ], [ -80.107457434882903, 26.594274917505199, 0.0 ], [ -80.107498269433805, 26.594308510267499, 0.0 ], [ -80.107563053940098, 26.594371479884099, 0.0 ], [ -80.107611851248194, 26.594439972393101, 0.0 ], [ -80.107649133716293, 26.594472139749499, 0.0 ], [ -80.1076991658841, 26.594479128537699, 0.0 ], [ -80.107688625884904, 26.594441356676501, 0.0 ], [ -80.107671269882303, 26.594386858008701, 0.0 ], [ -80.107654468148695, 26.594337963370599, 0.0 ], [ -80.107654466648697, 26.5943016402145, 0.0 ], [ -80.107699774186599, 26.5942764920744, 0.0 ], [ -80.107749769874601, 26.5942974460302, 0.0 ], [ -80.107802915019406, 26.5943365636065, 0.0 ], [ -80.107820079372999, 26.5943910460925, 0.0 ], [ -80.107919817874304, 26.594403621700501, 0.0 ], [ -80.108010685845002, 26.5944008193127, 0.0 ], [ -80.108060878079996, 26.594410588601701, 0.0 ], [ -80.1081422959804, 26.594395222157999, 0.0 ], [ -80.108174963961403, 26.5943770724787, 0.0 ], [ -80.108151447489504, 26.594335175337601, 0.0 ], [ -80.108234457172898, 26.594314284267799, 0.0 ], [ -80.108338903143704, 26.594270960371599, 0.0 ], [ -80.108375264502996, 26.594223305803599, 0.0 ], [ -80.108482138446007, 26.594207275276599, 0.0 ], [ -80.108521440252105, 26.594201135044099, 0.0 ], [ -80.108558629919898, 26.5942317834722, 0.0 ], [ -80.108603022574201, 26.5942358270309, 0.0 ], [ -80.108673253144403, 26.594237208598098, 0.0 ], [ -80.108684103616397, 26.5942092430404, 0.0 ], [ -80.108792532781493, 26.5942047747663, 0.0 ], [ -80.108835062236594, 26.594225155747399, 0.0 ], [ -80.108863867930395, 26.5942595532144, 0.0 ], [ -80.108896668918604, 26.5942972827016, 0.0 ], [ -80.108920115132094, 26.594335016521399, 0.0 ], [ -80.108976381386995, 26.594337809566099, 0.0 ], [ -80.108960751470505, 26.5943014750566, 0.0 ], [ -80.108943720995796, 26.5942679611682, 0.0 ], [ -80.108934436851001, 26.594223281864998, 0.0 ], [ -80.108956614314906, 26.594198249508, 0.0 ], [ -80.109019922245693, 26.594219491676501, 0.0 ], [ -80.109050744803497, 26.594263068503999, 0.0 ], [ -80.1091192080995, 26.5942993162524, 0.0 ], [ -80.1092223634638, 26.594307697974202, 0.0 ], [ -80.109275502655095, 26.594290924807702, 0.0 ], [ -80.109295833127206, 26.594261580029901, 0.0 ], [ -80.109370741478102, 26.594236363214801, 0.0 ], [ -80.1094482539918, 26.594260631971199, 0.0 ], [ -80.1095052815418, 26.594306301452001, 0.0 ], [ -80.109563199902894, 26.594388781164302, 0.0 ], [ -80.109676093260504, 26.5943931902403, 0.0 ], [ -80.109827215709998, 26.594383066281999, 0.0 ], [ -80.109815560226394, 26.594327644093202, 0.0 ], [ -80.109844413697203, 26.594260587402999, 0.0 ], [ -80.109905463150895, 26.594241598966398, 0.0 ], [ -80.109977341473595, 26.594275399178802, 0.0 ], [ -80.109991450842699, 26.594303325126798, 0.0 ], [ -80.110032141779698, 26.5943396743153, 0.0 ], [ -80.110085243151403, 26.5943690906204, 0.0 ], [ -80.110122785293498, 26.594390060467902, 0.0 ], [ -80.110138523438096, 26.594420802523999, 0.0 ], [ -80.110170361038001, 26.594420101246101, 0.0 ], [ -80.110197692477598, 26.594381712842299, 0.0 ], [ -80.110211567436295, 26.594330075537201, 0.0 ], [ -80.110253634584296, 26.594308283578599, 0.0 ], [ -80.110324895561405, 26.594312169269902, 0.0 ], [ -80.110391438727007, 26.594347176355502, 0.0 ], [ -80.110453175185796, 26.594429273534701, 0.0 ], [ -80.110531960816402, 26.5944614715245, 0.0 ], [ -80.110548349581904, 26.594543515024998, 0.0 ], [ -80.110623717020403, 26.594534720897901, 0.0 ], [ -80.110604048725705, 26.594461468208699, 0.0 ], [ -80.110715464278996, 26.594458531947499, 0.0 ], [ -80.110849455326999, 26.594335535769599, 0.0 ], [ -80.110859247798899, 26.594296897457401, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.1080385406228, 26.594799702276902, 0.0 ], [ -80.107437494232997, 26.594643440755199, 0.0 ], [ -80.107061648470804, 26.594521552984901, 0.0 ], [ -80.106390478421901, 26.594321458043101, 0.0 ], [ -80.106095717730994, 26.5942433493286, 0.0 ], [ -80.105794570820393, 26.594240064358601, 0.0 ], [ -80.105260388969697, 26.594565579096798, 0.0 ], [ -80.104381538142206, 26.594912151864399, 0.0 ], [ -80.104240623435402, 26.595170331551099, 0.0 ], [ -80.104229091027904, 26.595507394855598, 0.0 ], [ -80.104660247718499, 26.595360983863301, 0.0 ], [ -80.105440571803697, 26.594907333271099, 0.0 ], [ -80.106008362631698, 26.594721757521398, 0.0 ], [ -80.106051817587897, 26.594633728701499, 0.0 ], [ -80.106194037302799, 26.594751087917899, 0.0 ], [ -80.106324653597298, 26.5947863034039, 0.0 ], [ -80.106390675460105, 26.5947120656833, 0.0 ], [ -80.106641362060302, 26.5947606869906, 0.0 ], [ -80.106851739804299, 26.5948211013011, 0.0 ], [ -80.107099892258304, 26.594848546997301, 0.0 ], [ -80.107201361801103, 26.594742914113201, 0.0 ], [ -80.107345404438703, 26.594858274282501, 0.0 ], [ -80.1075098864616, 26.5948731128905, 0.0 ], [ -80.107651031942197, 26.5948241039364, 0.0 ], [ -80.107791141193204, 26.594912241135798, 0.0 ], [ -80.108087360631004, 26.594921629360901, 0.0 ], [ -80.1080385406228, 26.594799702276902, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.103145948463094, 26.594760161612601, 0.0 ], [ -80.103048746308602, 26.594674938511201, 0.0 ], [ -80.102711430645002, 26.594647297242101, 0.0 ], [ -80.102122058217105, 26.594536855031301, 0.0 ], [ -80.101808711400594, 26.5944820728512, 0.0 ], [ -80.101385315868498, 26.594400241627199, 0.0 ], [ -80.101066126088895, 26.594378323429101, 0.0 ], [ -80.100506031388704, 26.594339129628398, 0.0 ], [ -80.100205123053001, 26.594355683905999, 0.0 ], [ -80.099721286309503, 26.594444052584699, 0.0 ], [ -80.099708730425704, 26.5944494583206, 0.0 ], [ -80.099383155141595, 26.594564738869799, 0.0 ], [ -80.0992171328719, 26.594581162296201, 0.0 ], [ -80.098884812882204, 26.594602996027, 0.0 ], [ -80.098854633726702, 26.594663501076099, 0.0 ], [ -80.098903673840297, 26.594723902102299, 0.0 ], [ -80.099144390346694, 26.594707623341002, 0.0 ], [ -80.099352581406805, 26.5946954031327, 0.0 ], [ -80.099555739267103, 26.594811943304599, 0.0 ], [ -80.099905458082702, 26.5948009328118, 0.0 ], [ -80.100340970107098, 26.5947624044422, 0.0 ], [ -80.100683884179801, 26.5947895906924, 0.0 ], [ -80.101698369316097, 26.594905278856299, 0.0 ], [ -80.101962305485003, 26.595004000008601, 0.0 ], [ -80.102410818288504, 26.595135858405602, 0.0 ], [ -80.102588638065399, 26.595163343692501, 0.0 ], [ -80.102742187330307, 26.595158090036499, 0.0 ], [ -80.102996077806594, 26.595141847044399, 0.0 ], [ -80.103233097410197, 26.595146881479401, 0.0 ], [ -80.1033560730895, 26.594971199770399, 0.0 ], [ -80.103145948463094, 26.594760161612601, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.102461599487, 26.595416815022599, 0.0 ], [ -80.102228893994905, 26.595321868848998, 0.0 ], [ -80.102235205557093, 26.595266734156102, 0.0 ], [ -80.102502625253905, 26.5951577742808, 0.0 ], [ -80.1020516204144, 26.595039400418301, 0.0 ], [ -80.101806551209805, 26.594971394459701, 0.0 ], [ -80.101732457567095, 26.5951263418693, 0.0 ], [ -80.101533169340001, 26.5950177116551, 0.0 ], [ -80.101447390408495, 26.595022146851399, 0.0 ], [ -80.101441836125801, 26.595094813991299, 0.0 ], [ -80.1013663517422, 26.5950901618024, 0.0 ], [ -80.1013160016998, 26.595017484558099, 0.0 ], [ -80.101326772487099, 26.594876612295899, 0.0 ], [ -80.100780005170606, 26.5948031019323, 0.0 ], [ -80.100597623779706, 26.594788998458, 0.0 ], [ -80.100536108774904, 26.594871198064499, 0.0 ], [ -80.100403491989795, 26.594771578478799, 0.0 ], [ -80.100383455240404, 26.594939478328499, 0.0 ], [ -80.100286816934599, 26.594962242918601, 0.0 ], [ -80.100032570197598, 26.594898754482099, 0.0 ], [ -80.099986802105406, 26.594812504368001, 0.0 ], [ -80.099626048876999, 26.594812496687499, 0.0 ], [ -80.099488854309598, 26.594853365951899, 0.0 ], [ -80.099209223135503, 26.594894094558398, 0.0 ], [ -80.099126802677404, 26.595008915551901, 0.0 ], [ -80.099077712234205, 26.5950762025054, 0.0 ], [ -80.098915070676199, 26.595235088690998, 0.0 ], [ -80.098818310058107, 26.595362231984499, 0.0 ], [ -80.099000399163501, 26.595607750915701, 0.0 ], [ -80.099122462409895, 26.595630487271698, 0.0 ], [ -80.100007353207999, 26.595462266968902, 0.0 ], [ -80.100393778588597, 26.595504227468101, 0.0 ], [ -80.100618902752899, 26.595565623432101, 0.0 ], [ -80.100742187410205, 26.5954521413029, 0.0 ], [ -80.100915965942903, 26.595506762807101, 0.0 ], [ -80.101053171111801, 26.595558586258999, 0.0 ], [ -80.101108687075197, 26.5956912681647, 0.0 ], [ -80.101289267983304, 26.595741786136902, 0.0 ], [ -80.101423985568502, 26.595735936255998, 0.0 ], [ -80.101393009689502, 26.595610238948201, 0.0 ], [ -80.101427325019003, 26.595590713183601, 0.0 ], [ -80.101577063298393, 26.595571188872299, 0.0 ], [ -80.101659318723307, 26.595646750720501, 0.0 ], [ -80.101714305786501, 26.595772351646801, 0.0 ], [ -80.102469289330799, 26.595707891216001, 0.0 ], [ -80.103074447875102, 26.595643726013499, 0.0 ], [ -80.102461599487, 26.595416815022599, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.103985039018895, 26.594693209173201, 0.0 ], [ -80.103823956672002, 26.594693100654599, 0.0 ], [ -80.103744039710804, 26.594827543630199, 0.0 ], [ -80.103632617150296, 26.5947728059631, 0.0 ], [ -80.103632136958893, 26.5948818986536, 0.0 ], [ -80.103599829522693, 26.5949552014205, 0.0 ], [ -80.103484822184996, 26.595081697402801, 0.0 ], [ -80.1035044940798, 26.595111153536202, 0.0 ], [ -80.103547665056297, 26.595172903669699, 0.0 ], [ -80.103541139734304, 26.595334860625201, 0.0 ], [ -80.103352426181303, 26.595375996152601, 0.0 ], [ -80.103270331074896, 26.5954348314085, 0.0 ], [ -80.103056994785007, 26.5955027033697, 0.0 ], [ -80.103120027359907, 26.595635546315702, 0.0 ], [ -80.103965576515293, 26.5955968626347, 0.0 ], [ -80.103939417160902, 26.595208248757601, 0.0 ], [ -80.103945034716205, 26.595117121705801, 0.0 ], [ -80.104149623072203, 26.595181795315401, 0.0 ], [ -80.104338008026005, 26.594884323238901, 0.0 ], [ -80.103985039018895, 26.594693209173201, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.104308186704998, 26.5957441077448, 0.0 ], [ -80.104012520588896, 26.5957179696845, 0.0 ], [ -80.104037279142005, 26.595974958414502, 0.0 ], [ -80.1040123087447, 26.596175900519299, 0.0 ], [ -80.104099753767002, 26.596270764767802, 0.0 ], [ -80.104012308993404, 26.596309862015701, 0.0 ], [ -80.104006068035304, 26.596588948371899, 0.0 ], [ -80.103974533897997, 26.597053678845899, 0.0 ], [ -80.103845042804295, 26.5973222027189, 0.0 ], [ -80.103806319783203, 26.597442951583702, 0.0 ], [ -80.103868743517296, 26.597549004435201, 0.0 ], [ -80.103700200795302, 26.5975824952897, 0.0 ], [ -80.103644020310398, 26.597710874981299, 0.0 ], [ -80.103730908200404, 26.597816145151601, 0.0 ], [ -80.103618919272193, 26.598078961528, 0.0 ], [ -80.103588935074299, 26.5982714270469, 0.0 ], [ -80.103825052513699, 26.598252305109199, 0.0 ], [ -80.103932855535703, 26.598100266971901, 0.0 ], [ -80.104193349961207, 26.598045779096498, 0.0 ], [ -80.104249527982802, 26.597783435932801, 0.0 ], [ -80.104180860468404, 26.597549003047501, 0.0 ], [ -80.104217915246394, 26.597446505044601, 0.0 ], [ -80.104380614475204, 26.5974038772565, 0.0 ], [ -80.104274738081699, 26.597242104411201, 0.0 ], [ -80.104380610486004, 26.597096882204401, 0.0 ], [ -80.104567880752896, 26.597080135021599, 0.0 ], [ -80.104580361546297, 26.596778722373699, 0.0 ], [ -80.104567872979104, 26.5964326562016, 0.0 ], [ -80.104574114204596, 26.596293112198101, 0.0 ], [ -80.104306617527499, 26.5959017688327, 0.0 ], [ -80.104308186704998, 26.5957441077448, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.103651687493496, 26.597977626343901, 0.0 ], [ -80.103487169045906, 26.597792680510299, 0.0 ], [ -80.103534302833907, 26.597704375928, 0.0 ], [ -80.103576660848702, 26.5976159989103, 0.0 ], [ -80.103506040836095, 26.597582319186301, 0.0 ], [ -80.103492040480901, 26.597477152503501, 0.0 ], [ -80.103520269169096, 26.597422428548398, 0.0 ], [ -80.103576660143503, 26.597355077505998, 0.0 ], [ -80.103569941794404, 26.597230127442899, 0.0 ], [ -80.103685348477299, 26.597018188935898, 0.0 ], [ -80.103741444906902, 26.596563828177899, 0.0 ], [ -80.103835369138594, 26.596261082376, 0.0 ], [ -80.103882984642198, 26.596087735634502, 0.0 ], [ -80.103760558321, 26.5960582642691, 0.0 ], [ -80.103656370372306, 26.5958954508205, 0.0 ], [ -80.103883134478494, 26.595843232080799, 0.0 ], [ -80.103963035714997, 26.5958308961951, 0.0 ], [ -80.103939489772301, 26.595729841157301, 0.0 ], [ -80.103605344019599, 26.5957293450968, 0.0 ], [ -80.103115471471497, 26.595792812350499, 0.0 ], [ -80.1031390904662, 26.595833775592599, 0.0 ], [ -80.103247482214798, 26.596010805190499, 0.0 ], [ -80.103299226138901, 26.596200872876299, 0.0 ], [ -80.103374441807603, 26.596475103509601, 0.0 ], [ -80.103407402868996, 26.5966814158384, 0.0 ], [ -80.103374442516795, 26.596870885693601, 0.0 ], [ -80.103336712029105, 26.5970056876819, 0.0 ], [ -80.103247208489194, 26.5971362387582, 0.0 ], [ -80.103242448461302, 26.597334035124199, 0.0 ], [ -80.103242473478105, 26.597485517844198, 0.0 ], [ -80.103251913007199, 26.597712792888899, 0.0 ], [ -80.103275418140896, 26.597897895109799, 0.0 ], [ -80.103322341471497, 26.598116321951998, 0.0 ], [ -80.103308391149199, 26.598251470325799, 0.0 ], [ -80.103308331588707, 26.598305959193201, 0.0 ], [ -80.103463638696695, 26.5983481003911, 0.0 ], [ -80.103473119218705, 26.598243054368201, 0.0 ], [ -80.103571958169894, 26.598251470036001, 0.0 ], [ -80.103651687493496, 26.597977626343901, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.111938096819799, 26.598831294784201, 0.0 ], [ -80.110982063365796, 26.598416891639999, 0.0 ], [ -80.110355088962095, 26.598296514604101, 0.0 ], [ -80.110017277489504, 26.598142762520801, 0.0 ], [ -80.109754615893493, 26.598136211785999, 0.0 ], [ -80.109306788795493, 26.598015736984799, 0.0 ], [ -80.108969648603306, 26.597929108837601, 0.0 ], [ -80.108954870204798, 26.597875550898301, 0.0 ], [ -80.108955332857704, 26.5977214711444, 0.0 ], [ -80.108589707500997, 26.597566313422, 0.0 ], [ -80.108349862735295, 26.597640302433, 0.0 ], [ -80.107952902015597, 26.597874453991601, 0.0 ], [ -80.107780527641907, 26.597961482413801, 0.0 ], [ -80.1075936271789, 26.598082356587, 0.0 ], [ -80.107316057255005, 26.5982027489632, 0.0 ], [ -80.107114405457693, 26.5984639708335, 0.0 ], [ -80.106927401557599, 26.598584454199099, 0.0 ], [ -80.106896427948598, 26.5988593452077, 0.0 ], [ -80.106980276801096, 26.598892159229699, 0.0 ], [ -80.107115550458403, 26.598784844764801, 0.0 ], [ -80.107324952166195, 26.5986778432802, 0.0 ], [ -80.107781156253196, 26.598671142423001, 0.0 ], [ -80.108005525315093, 26.598824941727301, 0.0 ], [ -80.108377581084994, 26.598921715368899, 0.0 ], [ -80.108865588692098, 26.598931907563301, 0.0 ], [ -80.1089328919998, 26.5988182215597, 0.0 ], [ -80.109232073986306, 26.598771410458301, 0.0 ], [ -80.109201825937404, 26.5985172461695, 0.0 ], [ -80.109359061863501, 26.5985038925099, 0.0 ], [ -80.109508751725599, 26.598691140285201, 0.0 ], [ -80.110391257074497, 26.598771346341501, 0.0 ], [ -80.110585708137407, 26.598771337926902, 0.0 ], [ -80.110660069787301, 26.598670975054901, 0.0 ], [ -80.110787629920594, 26.5986643314532, 0.0 ], [ -80.110727806662993, 26.598778017657899, 0.0 ], [ -80.111161588457904, 26.598838181613299, 0.0 ], [ -80.111512186290895, 26.598901386868999, 0.0 ], [ -80.111995871572802, 26.5989379522936, 0.0 ], [ -80.111938096819799, 26.598831294784201, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.112237363748605, 26.598544113786101, 0.0 ], [ -80.112145216377698, 26.598482673534299, 0.0 ], [ -80.112116776164299, 26.598347950694301, 0.0 ], [ -80.112217758519293, 26.598322862936001, 0.0 ], [ -80.112217423722299, 26.5982261198433, 0.0 ], [ -80.112114697357697, 26.5982158994108, 0.0 ], [ -80.112071543157398, 26.598116665291698, 0.0 ], [ -80.112217103821905, 26.598070921961298, 0.0 ], [ -80.112145727507993, 26.597986995364799, 0.0 ], [ -80.112194091546797, 26.597928503556201, 0.0 ], [ -80.112248122246598, 26.5978623832099, 0.0 ], [ -80.112262338022703, 26.597808979474099, 0.0 ], [ -80.112291034164102, 26.5976050596981, 0.0 ], [ -80.112282822217495, 26.597437844884599, 0.0 ], [ -80.112284882136606, 26.597277522086902, 0.0 ], [ -80.112205605071495, 26.597226972139602, 0.0 ], [ -80.112130599752106, 26.597234389777, 0.0 ], [ -80.111950224099104, 26.597241932787899, 0.0 ], [ -80.111909351126798, 26.597275878759699, 0.0 ], [ -80.111775169090095, 26.597299281126201, 0.0 ], [ -80.111664512352903, 26.597272999679099, 0.0 ], [ -80.111498086262102, 26.5973121334345, 0.0 ], [ -80.111325425245994, 26.597333275984202, 0.0 ], [ -80.111284871198293, 26.5974166088115, 0.0 ], [ -80.111059673009905, 26.597565710195902, 0.0 ], [ -80.110963297913301, 26.5975813840701, 0.0 ], [ -80.110761776941402, 26.5974873829398, 0.0 ], [ -80.110630367132003, 26.597479515200799, 0.0 ], [ -80.110531071943399, 26.597479457699901, 0.0 ], [ -80.1103908491922, 26.597513291935499, 0.0 ], [ -80.110287959597102, 26.597605284304301, 0.0 ], [ -80.110159855700203, 26.5975260644903, 0.0 ], [ -80.109841930844595, 26.597647577388301, 0.0 ], [ -80.109923260822498, 26.597748384237502, 0.0 ], [ -80.109979099531998, 26.5978321302333, 0.0 ], [ -80.110110254955202, 26.5978006087038, 0.0 ], [ -80.110267998896504, 26.5978920038743, 0.0 ], [ -80.1103235515953, 26.5980227435907, 0.0 ], [ -80.110373277132496, 26.5980541229019, 0.0 ], [ -80.110428851500401, 26.5980645715, 0.0 ], [ -80.110545692775901, 26.598056685964, 0.0 ], [ -80.110671173632497, 26.598111479437701, 0.0 ], [ -80.110753174743806, 26.5981167746375, 0.0 ], [ -80.110773342884201, 26.598051440640099, 0.0 ], [ -80.110872693464202, 26.598027926178101, 0.0 ], [ -80.111016200765903, 26.598077580998599, 0.0 ], [ -80.111077459056801, 26.598161164365401, 0.0 ], [ -80.110959911616106, 26.5982287356608, 0.0 ], [ -80.110874552446006, 26.598287215395001, 0.0 ], [ -80.110857467076599, 26.598376135696, 0.0 ], [ -80.110985445122793, 26.5984117299625, 0.0 ], [ -80.111110338076699, 26.598472407629799, 0.0 ], [ -80.111181266358301, 26.598162350998301, 0.0 ], [ -80.111267305002102, 26.598127186881101, 0.0 ], [ -80.111260178239505, 26.5980748667425, 0.0 ], [ -80.111335100324496, 26.597959956079599, 0.0 ], [ -80.1113817177539, 26.597892011244799, 0.0 ], [ -80.111477647814198, 26.597855502814699, 0.0 ], [ -80.111553696807107, 26.597910346290199, 0.0 ], [ -80.111533255088204, 26.598046195553302, 0.0 ], [ -80.111530333737505, 26.598054033030099, 0.0 ], [ -80.111562478374594, 26.5981376301174, 0.0 ], [ -80.111685394815595, 26.5981507060587, 0.0 ], [ -80.111705844429395, 26.598158542852499, 0.0 ], [ -80.111714583914306, 26.5981689908593, 0.0 ], [ -80.111711898856399, 26.598343373567602, 0.0 ], [ -80.111566769459301, 26.598366057255401, 0.0 ], [ -80.111456936979593, 26.598390908049499, 0.0 ], [ -80.111401643805294, 26.598422330399199, 0.0 ], [ -80.111550518685604, 26.598480200748799, 0.0 ], [ -80.111673855306506, 26.598567647682099, 0.0 ], [ -80.111693121976899, 26.598623021838002, 0.0 ], [ -80.111698619554801, 26.5986680412, 0.0 ], [ -80.1117471794159, 26.598696166955499, 0.0 ], [ -80.111797883064597, 26.598633096139999, 0.0 ], [ -80.111943664446599, 26.598627710783699, 0.0 ], [ -80.112087915430095, 26.598596847027501, 0.0 ], [ -80.112199815923702, 26.598696467243599, 0.0 ], [ -80.112214583478206, 26.598607700644301, 0.0 ], [ -80.112237363748605, 26.598544113786101, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.109926577089993, 26.597353034663399, 0.0 ], [ -80.109824037414995, 26.597360681150001, 0.0 ], [ -80.109029378518301, 26.5972843138589, 0.0 ], [ -80.108279006626603, 26.597242904671401, 0.0 ], [ -80.108244887499296, 26.5972353871176, 0.0 ], [ -80.108212257510203, 26.597235158203201, 0.0 ], [ -80.107200842620202, 26.597146852837799, 0.0 ], [ -80.106599697530299, 26.5972987782438, 0.0 ], [ -80.106093017134, 26.5975591928072, 0.0 ], [ -80.106097613530494, 26.598242167363502, 0.0 ], [ -80.105702757618104, 26.598652770107499, 0.0 ], [ -80.105446624427799, 26.598985999354301, 0.0 ], [ -80.104444948448503, 26.599355738906301, 0.0 ], [ -80.103989165313806, 26.5994290735694, 0.0 ], [ -80.103428992279603, 26.599778606853299, 0.0 ], [ -80.103032992964003, 26.600147912388898, 0.0 ], [ -80.103347827457796, 26.600711289661501, 0.0 ], [ -80.104116361939205, 26.600791229561501, 0.0 ], [ -80.104945151116993, 26.600516259565701, 0.0 ], [ -80.105585906044993, 26.600081923268601, 0.0 ], [ -80.105568626441098, 26.599908025154299, 0.0 ], [ -80.106629700401697, 26.599349707804599, 0.0 ], [ -80.106800320076502, 26.5987752984372, 0.0 ], [ -80.107399280065195, 26.598071746472499, 0.0 ], [ -80.107689965792105, 26.597926388265801, 0.0 ], [ -80.107894105095795, 26.5978039483497, 0.0 ], [ -80.108161675378895, 26.597673957291601, 0.0 ], [ -80.108355665648901, 26.5975134538138, 0.0 ], [ -80.108820662427107, 26.597597407675401, 0.0 ], [ -80.109135546560907, 26.597712034056801, 0.0 ], [ -80.1094836952783, 26.597651009503, 0.0 ], [ -80.109999232311097, 26.5975056406715, 0.0 ], [ -80.109926577089993, 26.597353034663399, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.101805487443301, 26.599490459643899, 0.0 ], [ -80.101653755808698, 26.599473499771602, 0.0 ], [ -80.101502023168393, 26.5995243750085, 0.0 ], [ -80.101075276162703, 26.5995837256167, 0.0 ], [ -80.100800593038997, 26.5995815001904, 0.0 ], [ -80.100534732058506, 26.599532838688202, 0.0 ], [ -80.100420934717903, 26.599473479833701, 0.0 ], [ -80.100212304943298, 26.599414118453002, 0.0 ], [ -80.099616628726395, 26.599457709528199, 0.0 ], [ -80.099159124977007, 26.599532563599301, 0.0 ], [ -80.098941662647604, 26.5996600319971, 0.0 ], [ -80.098790422003006, 26.599880579953201, 0.0 ], [ -80.098647539495602, 26.600050039696701, 0.0 ], [ -80.098656430278197, 26.600211129756399, 0.0 ], [ -80.098859493228801, 26.600304351043501, 0.0 ], [ -80.098942251242505, 26.6002027155678, 0.0 ], [ -80.0991685297641, 26.600083901075401, 0.0 ], [ -80.0995202886496, 26.600033162870101, 0.0 ], [ -80.0996812242647, 26.599990713953499, 0.0 ], [ -80.099858833090195, 26.599900206284399, 0.0 ], [ -80.100070012294097, 26.5999567920848, 0.0 ], [ -80.100621927803004, 26.5999932984381, 0.0 ], [ -80.100857153608402, 26.5999483412267, 0.0 ], [ -80.101198539599295, 26.599905962728201, 0.0 ], [ -80.1014545983885, 26.6000416251281, 0.0 ], [ -80.101871816002102, 26.5998974959282, 0.0 ], [ -80.101805487443301, 26.599490459643899, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.101984532261397, 26.600241604157102, 0.0 ], [ -80.101566536784503, 26.6001962527424, 0.0 ], [ -80.101274252683297, 26.6001266796825, 0.0 ], [ -80.101101148109606, 26.6001024656249, 0.0 ], [ -80.100912259401596, 26.600044137357699, 0.0 ], [ -80.100868346628502, 26.599968083652801, 0.0 ], [ -80.100752898943199, 26.599974154262402, 0.0 ], [ -80.100724684481904, 26.600069213044399, 0.0 ], [ -80.1005587629232, 26.6000505937869, 0.0 ], [ -80.1005457731235, 26.600001475771201, 0.0 ], [ -80.100386184344003, 26.5999771842732, 0.0 ], [ -80.100111150575501, 26.5999893234249, 0.0 ], [ -80.099869790153207, 26.600029917534499, 0.0 ], [ -80.0997341475707, 26.600069388447899, 0.0 ], [ -80.099696829396507, 26.6000971266762, 0.0 ], [ -80.099581504428201, 26.600135537123101, 0.0 ], [ -80.099434888269201, 26.600172292360899, 0.0 ], [ -80.099418962133399, 26.600066831600099, 0.0 ], [ -80.099272739010303, 26.600056671255899, 0.0 ], [ -80.099286187166996, 26.600129246963998, 0.0 ], [ -80.099347333643294, 26.600238615682699, 0.0 ], [ -80.099238655787005, 26.600366734734902, 0.0 ], [ -80.099014105607694, 26.6003685840728, 0.0 ], [ -80.098843463164599, 26.600480591095, 0.0 ], [ -80.098917809267704, 26.6005898760416, 0.0 ], [ -80.099043655052796, 26.6007967470917, 0.0 ], [ -80.099115141560304, 26.600812116252499, 0.0 ], [ -80.099219975780898, 26.6008595148583, 0.0 ], [ -80.099650817717006, 26.600646286845802, 0.0 ], [ -80.099595424654794, 26.600588728881299, 0.0 ], [ -80.0996287855654, 26.600497623113199, 0.0 ], [ -80.099747303465705, 26.600483890994099, 0.0 ], [ -80.099828155792494, 26.600451951710699, 0.0 ], [ -80.099919071339698, 26.600448946674199, 0.0 ], [ -80.100024331971298, 26.6004671657385, 0.0 ], [ -80.100122800798403, 26.6004975289882, 0.0 ], [ -80.100194105589395, 26.600536999679299, 0.0 ], [ -80.100262016175606, 26.600527892899201, 0.0 ], [ -80.100183920974303, 26.600473241612299, 0.0 ], [ -80.100143176744496, 26.600406446693, 0.0 ], [ -80.100221274772395, 26.6003426906275, 0.0 ], [ -80.1002857894306, 26.600351800272598, 0.0 ], [ -80.100374071413796, 26.600394307234101, 0.0 ], [ -80.100425002676602, 26.600442885766402, 0.0 ], [ -80.100421605711006, 26.6005036073004, 0.0 ], [ -80.100418316845904, 26.600585554012699, 0.0 ], [ -80.100472853372807, 26.600606737574498, 0.0 ], [ -80.100567954201395, 26.600618850400899, 0.0 ], [ -80.100635520053501, 26.600609874403801, 0.0 ], [ -80.100645707257797, 26.600582549833401, 0.0 ], [ -80.100604962524898, 26.600524863558, 0.0 ], [ -80.100557426124396, 26.600494501732101, 0.0 ], [ -80.100513286091498, 26.600433779182801, 0.0 ], [ -80.100535468834806, 26.600373463722999, 0.0 ], [ -80.100577803131301, 26.600327517514, 0.0 ], [ -80.100677752440802, 26.6003619293956, 0.0 ], [ -80.100764554277205, 26.600382170332399, 0.0 ], [ -80.100829068225707, 26.600403424011802, 0.0 ], [ -80.100866418529293, 26.600412532916799, 0.0 ], [ -80.100907277585193, 26.6003734965837, 0.0 ], [ -80.101019217509801, 26.600357886289501, 0.0 ], [ -80.101093919638998, 26.600363961031501, 0.0 ], [ -80.101121084082195, 26.600421641165099, 0.0 ], [ -80.101168613287598, 26.600509684161299, 0.0 ], [ -80.101239866707601, 26.6005217742062, 0.0 ], [ -80.101222942654502, 26.6004398624329, 0.0 ], [ -80.101239924153603, 26.600342709048, 0.0 ], [ -80.101370155747901, 26.600361890980999, 0.0 ], [ -80.101392682904105, 26.600421646463602, 0.0 ], [ -80.101477570812193, 26.600491471064, 0.0 ], [ -80.101589549064201, 26.600497530958801, 0.0 ], [ -80.101738820621804, 26.600476273482201, 0.0 ], [ -80.101772987384507, 26.600433796915102, 0.0 ], [ -80.101796680943707, 26.600397366290899, 0.0 ], [ -80.101857738640902, 26.600357907171301, 0.0 ], [ -80.101963130120694, 26.6003730796564, 0.0 ], [ -80.101984532261397, 26.600241604157102, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.111738177055301, 26.599895989954899, 0.0 ], [ -80.111737554732301, 26.599892339979199, 0.0 ], [ -80.111732629110193, 26.5998541157505, 0.0 ], [ -80.111577708763306, 26.599928342390701, 0.0 ], [ -80.111599557090798, 26.600002914061001, 0.0 ], [ -80.111630847897402, 26.600149907263201, 0.0 ], [ -80.1116617465741, 26.6005562938428, 0.0 ], [ -80.111604624389201, 26.6006812046544, 0.0 ], [ -80.111556906954405, 26.600843374287901, 0.0 ], [ -80.111518739389993, 26.6010524861275, 0.0 ], [ -80.111504438851796, 26.601317075944099, 0.0 ], [ -80.111465270472394, 26.601475053315099, 0.0 ], [ -80.111393853784705, 26.601705352867501, 0.0 ], [ -80.111314721101294, 26.601849060904499, 0.0 ], [ -80.111199033644596, 26.602072447871901, 0.0 ], [ -80.111179786312803, 26.6022387854972, 0.0 ], [ -80.111346137062696, 26.602370640002899, 0.0 ], [ -80.111417008351694, 26.602429927132398, 0.0 ], [ -80.111489522437097, 26.602609651184402, 0.0 ], [ -80.111486833806396, 26.602829849358901, 0.0 ], [ -80.111471149462702, 26.603002753202599, 0.0 ], [ -80.111441860532693, 26.603159906183802, 0.0 ], [ -80.111622281225294, 26.603188874543399, 0.0 ], [ -80.111907337137097, 26.603200774799799, 0.0 ], [ -80.111956407476498, 26.6027968876163, 0.0 ], [ -80.111947962230403, 26.602631206930901, 0.0 ], [ -80.111871404407594, 26.602575637668199, 0.0 ], [ -80.111862468771704, 26.602371138954499, 0.0 ], [ -80.112004727179098, 26.602383552219901, 0.0 ], [ -80.111910188142602, 26.602110814568899, 0.0 ], [ -80.111871983976002, 26.601833426953998, 0.0 ], [ -80.111919698607494, 26.601654187267901, 0.0 ], [ -80.111938777786406, 26.601487752120399, 0.0 ], [ -80.111985558626003, 26.6012489277268, 0.0 ], [ -80.112000206872693, 26.601087363572599, 0.0 ], [ -80.112004613536399, 26.600903883044001, 0.0 ], [ -80.112061852500204, 26.600805772997099, 0.0 ], [ -80.112133398228295, 26.600656476268998, 0.0 ], [ -80.112119072985095, 26.600477325524899, 0.0 ], [ -80.112096183036996, 26.600204080511801, 0.0 ], [ -80.112075353188203, 26.5999828058596, 0.0 ], [ -80.111738177055301, 26.599895989954899, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.111621422737301, 26.600082020353199, 0.0 ], [ -80.111522020997896, 26.600061069338999, 0.0 ], [ -80.111341977200595, 26.600105879591599, 0.0 ], [ -80.111107637629303, 26.6001746248633, 0.0 ], [ -80.111117076821103, 26.600234315147901, 0.0 ], [ -80.110666805076306, 26.600216509223401, 0.0 ], [ -80.110362553600396, 26.600138812357301, 0.0 ], [ -80.110258956651904, 26.600126854114901, 0.0 ], [ -80.110058308966899, 26.600087988215002, 0.0 ], [ -80.109781145546606, 26.600025306830599, 0.0 ], [ -80.109459807550806, 26.5999744102423, 0.0 ], [ -80.109162219564595, 26.5999863814219, 0.0 ], [ -80.108991691126405, 26.599989377742499, 0.0 ], [ -80.108888036314696, 26.599983402502001, 0.0 ], [ -80.108864624338693, 26.599860823090399, 0.0 ], [ -80.108767657018404, 26.599857836981801, 0.0 ], [ -80.108684066675906, 26.599911656540399, 0.0 ], [ -80.108700564896907, 26.5999803957321, 0.0 ], [ -80.108583542799906, 26.5999684423556, 0.0 ], [ -80.108563692796196, 26.5999176395859, 0.0 ], [ -80.108440876169894, 26.5999446515555, 0.0 ], [ -80.108368155350007, 26.599980878924299, 0.0 ], [ -80.108436640153599, 26.600111978976301, 0.0 ], [ -80.108813639250201, 26.600198696926, 0.0 ], [ -80.109015497620504, 26.600255433803301, 0.0 ], [ -80.109188985968402, 26.600315254026, 0.0 ], [ -80.109178948096002, 26.600192674358802, 0.0 ], [ -80.109359452432201, 26.600255749384601, 0.0 ], [ -80.109546763243003, 26.600357095619199, 0.0 ], [ -80.109831069597504, 26.6005035143823, 0.0 ], [ -80.110006328881596, 26.600548580054699, 0.0 ], [ -80.110118607538297, 26.600548260459998, 0.0 ], [ -80.110222230234598, 26.600419673092901, 0.0 ], [ -80.110321725212501, 26.600517168833498, 0.0 ], [ -80.110406107047694, 26.600638092635901, 0.0 ], [ -80.110720081972801, 26.600625756645101, 0.0 ], [ -80.110887421747805, 26.600667812378202, 0.0 ], [ -80.111017946158597, 26.600670906265801, 0.0 ], [ -80.111001122906998, 26.600557530315498, 0.0 ], [ -80.111044593850494, 26.6004406802891, 0.0 ], [ -80.111150501454404, 26.6004821115725, 0.0 ], [ -80.111242029650995, 26.600623100602402, 0.0 ], [ -80.111415759819096, 26.600593138476501, 0.0 ], [ -80.111526016664698, 26.600539301748999, 0.0 ], [ -80.111652859763296, 26.600422677487899, 0.0 ], [ -80.111621422737301, 26.600082020353199, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.111465056969195, 26.602982368690199, 0.0 ], [ -80.111274088014397, 26.602969062708901, 0.0 ], [ -80.111141501038006, 26.6029027589815, 0.0 ], [ -80.110993313770507, 26.602768082633499, 0.0 ], [ -80.110733123561801, 26.602731023894801, 0.0 ], [ -80.110378274676904, 26.602624822084699, 0.0 ], [ -80.110174040092801, 26.602562245390999, 0.0 ], [ -80.110060549923801, 26.6024351650968, 0.0 ], [ -80.109969280613896, 26.6023669086856, 0.0 ], [ -80.109757169965903, 26.602340367813898, 0.0 ], [ -80.109583238128295, 26.602372616942102, 0.0 ], [ -80.109345093382203, 26.602361662586901, 0.0 ], [ -80.109296343853899, 26.6024435066047, 0.0 ], [ -80.109184261778296, 26.602439007334201, 0.0 ], [ -80.109074036460896, 26.602401248529599, 0.0 ], [ -80.109061269394999, 26.6024657564584, 0.0 ], [ -80.109026705039994, 26.602592932933899, 0.0 ], [ -80.108906614585607, 26.602577473683102, 0.0 ], [ -80.108912928402205, 26.602327225408199, 0.0 ], [ -80.108746302421395, 26.602327652103899, 0.0 ], [ -80.108564344522804, 26.6022820648794, 0.0 ], [ -80.108364596515798, 26.602233146194301, 0.0 ], [ -80.108195627575199, 26.602228205052199, 0.0 ], [ -80.108071611638593, 26.602239133397799, 0.0 ], [ -80.107973731594896, 26.602224905839901, 0.0 ], [ -80.107923079985397, 26.602236129965299, 0.0 ], [ -80.107751590888398, 26.602252972767001, 0.0 ], [ -80.107736238701406, 26.602276104259399, 0.0 ], [ -80.107449859932004, 26.6022883004485, 0.0 ], [ -80.107173552697404, 26.602292144419799, 0.0 ], [ -80.106949269629794, 26.602332308561699, 0.0 ], [ -80.106930484413198, 26.6023332221278, 0.0 ], [ -80.106802829276504, 26.602338818361901, 0.0 ], [ -80.1067616942602, 26.602381070319002, 0.0 ], [ -80.106649792315196, 26.602359821466401, 0.0 ], [ -80.106629507180998, 26.6022660700357, 0.0 ], [ -80.1065610827375, 26.602228123895799, 0.0 ], [ -80.106454709812695, 26.602222340246499, 0.0 ], [ -80.106423474779504, 26.602170720866901, 0.0 ], [ -80.106342210162794, 26.6023006975899, 0.0 ], [ -80.106298813055503, 26.6023585906302, 0.0 ], [ -80.106116417789494, 26.602438189429101, 0.0 ], [ -80.105958295555894, 26.602441988303401, 0.0 ], [ -80.105816326954994, 26.602406460004801, 0.0 ], [ -80.105686391025301, 26.60233751629, 0.0 ], [ -80.105577193075405, 26.602239117512699, 0.0 ], [ -80.1054873115162, 26.602257770233599, 0.0 ], [ -80.105378890380095, 26.602195368221899, 0.0 ], [ -80.105406724687199, 26.602095577121801, 0.0 ], [ -80.105304231518303, 26.602050196693401, 0.0 ], [ -80.105267176447697, 26.6020549872309, 0.0 ], [ -80.105161696900097, 26.6020852415596, 0.0 ], [ -80.105087689641806, 26.602117126437101, 0.0 ], [ -80.104904151974196, 26.602150261489399, 0.0 ], [ -80.104710125819096, 26.602229955156599, 0.0 ], [ -80.104569782909806, 26.602440482427902, 0.0 ], [ -80.1044944314866, 26.602545953945899, 0.0 ], [ -80.104420117019103, 26.6025974795356, 0.0 ], [ -80.104406188877704, 26.602654443311099, 0.0 ], [ -80.104419390271801, 26.602691009122001, 0.0 ], [ -80.104458677108695, 26.6028639349671, 0.0 ], [ -80.104617517076704, 26.602878719305199, 0.0 ], [ -80.104905914125695, 26.602894690684799, 0.0 ], [ -80.105611418791199, 26.602867518537, 0.0 ], [ -80.105671119480107, 26.6028466990734, 0.0 ], [ -80.105691563387893, 26.6027957162907, 0.0 ], [ -80.105809208901306, 26.6027881675945, 0.0 ], [ -80.105872023212001, 26.6027787013176, 0.0 ], [ -80.105946184003301, 26.6028196587155, 0.0 ], [ -80.105896123504294, 26.602854258548501, 0.0 ], [ -80.105974988455102, 26.602882715404299, 0.0 ], [ -80.105981246257798, 26.602854345479798, 0.0 ], [ -80.106005512589604, 26.602791883614302, 0.0 ], [ -80.106075618959807, 26.602744526842301, 0.0 ], [ -80.106210724293902, 26.602755552594399, 0.0 ], [ -80.106299214637602, 26.602759815057102, 0.0 ], [ -80.106447240278996, 26.602752281713201, 0.0 ], [ -80.1064885036931, 26.6028465709608, 0.0 ], [ -80.106573707750997, 26.602912558370299, 0.0 ], [ -80.106761570519396, 26.602921923342301, 0.0 ], [ -80.1067686479862, 26.602833384245301, 0.0 ], [ -80.106851738419905, 26.602767466329801, 0.0 ], [ -80.106964021368995, 26.602746542785798, 0.0 ], [ -80.107057828696099, 26.602782506534201, 0.0 ], [ -80.107134438331897, 26.602791972056899, 0.0 ], [ -80.107301342854598, 26.602855966095301, 0.0 ], [ -80.107382655254497, 26.602889924616001, 0.0 ], [ -80.107537007320502, 26.602831649985699, 0.0 ], [ -80.107664286814298, 26.602884718296899, 0.0 ], [ -80.107848893540904, 26.602911189349999, 0.0 ], [ -80.108014365265106, 26.602941255616301, 0.0 ], [ -80.108163998468797, 26.602933849221099, 0.0 ], [ -80.108276694945602, 26.6028880025356, 0.0 ], [ -80.108331595341099, 26.602971113667799, 0.0 ], [ -80.108632072753906, 26.603009536528798, 0.0 ], [ -80.108800160284005, 26.602996858132698, 0.0 ], [ -80.108848814523895, 26.602956860930899, 0.0 ], [ -80.108895752894099, 26.6028590364553, 0.0 ], [ -80.109074940587007, 26.6028070801488, 0.0 ], [ -80.109264039934203, 26.602813487914599, 0.0 ], [ -80.109335629748202, 26.602897694199601, 0.0 ], [ -80.109364596058001, 26.602992642183899, 0.0 ], [ -80.109499813495404, 26.603044293974701, 0.0 ], [ -80.109635278830197, 26.6030627815184, 0.0 ], [ -80.109635400867006, 26.602997629334801, 0.0 ], [ -80.109634893866897, 26.602910649127502, 0.0 ], [ -80.109673593739501, 26.602874149981702, 0.0 ], [ -80.109735541870407, 26.602873031661499, 0.0 ], [ -80.1098328014305, 26.6029365153003, 0.0 ], [ -80.109905589364999, 26.6029774340426, 0.0 ], [ -80.1100277523025, 26.602998254212899, 0.0 ], [ -80.110151491818101, 26.6029667887538, 0.0 ], [ -80.110263218650104, 26.603000206477901, 0.0 ], [ -80.110320381880598, 26.603035792828599, 0.0 ], [ -80.110469833281101, 26.603048633159499, 0.0 ], [ -80.110526217325301, 26.6030135982312, 0.0 ], [ -80.110617452194205, 26.602982347330698, 0.0 ], [ -80.110760093963407, 26.603036765343099, 0.0 ], [ -80.110812794864401, 26.6031221014976, 0.0 ], [ -80.110817630241996, 26.603122103679201, 0.0 ], [ -80.1110420208976, 26.603166780496998, 0.0 ], [ -80.111039515299893, 26.603092564469701, 0.0 ], [ -80.1111696436773, 26.603087439939198, 0.0 ], [ -80.111440177507603, 26.603156544899502, 0.0 ], [ -80.111465056969195, 26.602982368690199, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.108209616691497, 26.600203836923601, 0.0 ], [ -80.108169376633498, 26.600158170972001, 0.0 ], [ -80.108130924362897, 26.600100431925899, 0.0 ], [ -80.108034512634802, 26.600121065919001, 0.0 ], [ -80.107988673469407, 26.6001392769723, 0.0 ], [ -80.107846172434904, 26.600158537988801, 0.0 ], [ -80.107761667306505, 26.600186248364398, 0.0 ], [ -80.107699665613794, 26.600231618287001, 0.0 ], [ -80.107583794925404, 26.600148961344001, 0.0 ], [ -80.107496433660401, 26.600171745502902, 0.0 ], [ -80.107541810486495, 26.600269526096401, 0.0 ], [ -80.107457242298594, 26.600299844770898, 0.0 ], [ -80.107378213957702, 26.600217051077301, 0.0 ], [ -80.107330363186307, 26.600232152956298, 0.0 ], [ -80.107364142945698, 26.600297591319901, 0.0 ], [ -80.107299644355095, 26.6003727240534, 0.0 ], [ -80.107327558232896, 26.600418396651001, 0.0 ], [ -80.107375583144105, 26.60055919349, 0.0 ], [ -80.107228733867998, 26.600460817197799, 0.0 ], [ -80.107139123768604, 26.6004885284454, 0.0 ], [ -80.1069363029969, 26.600546688183101, 0.0 ], [ -80.106855984569506, 26.6005929625031, 0.0 ], [ -80.106792694803104, 26.6006825784646, 0.0 ], [ -80.106747496514004, 26.600805414463998, 0.0 ], [ -80.1065983366273, 26.600649800167101, 0.0 ], [ -80.1065504878556, 26.600692632084101, 0.0 ], [ -80.106550506829507, 26.600697680351701, 0.0 ], [ -80.106584243917297, 26.600740451853099, 0.0 ], [ -80.106584143637605, 26.6008487152321, 0.0 ], [ -80.106511444117203, 26.600808759884998, 0.0 ], [ -80.106390327746894, 26.6007341487099, 0.0 ], [ -80.106316552830094, 26.6008059091969, 0.0 ], [ -80.106336165751202, 26.6008713868253, 0.0 ], [ -80.106375489929505, 26.6009595670854, 0.0 ], [ -80.106398529024503, 26.601012787582199, 0.0 ], [ -80.106398356223394, 26.6010254687559, 0.0 ], [ -80.106477743498999, 26.601162131600599, 0.0 ], [ -80.106486304765596, 26.601174752549799, 0.0 ], [ -80.106500366081704, 26.601235553694099, 0.0 ], [ -80.106520146303197, 26.601341907075, 0.0 ], [ -80.106543282532002, 26.601412208380001, 0.0 ], [ -80.106543273828706, 26.601414747417301, 0.0 ], [ -80.106569240567396, 26.601477204961999, 0.0 ], [ -80.1066234349437, 26.6015770996447, 0.0 ], [ -80.106702150691305, 26.601628148299, 0.0 ], [ -80.106834825462201, 26.601597470240598, 0.0 ], [ -80.107006793728999, 26.601541652873902, 0.0 ], [ -80.107099663748301, 26.601478234525999, 0.0 ], [ -80.107087966825105, 26.6014290366804, 0.0 ], [ -80.107219759399399, 26.601370996519101, 0.0 ], [ -80.107270619886407, 26.601351340784799, 0.0 ], [ -80.107324565163196, 26.601351936350699, 0.0 ], [ -80.107417780338807, 26.601296867519899, 0.0 ], [ -80.107468506340695, 26.601304449809899, 0.0 ], [ -80.107510605381407, 26.601266606739799, 0.0 ], [ -80.107445804030903, 26.601203655035601, 0.0 ], [ -80.107479145784794, 26.601133030935799, 0.0 ], [ -80.107534880308705, 26.601145429291002, 0.0 ], [ -80.107582918529801, 26.601140483994701, 0.0 ], [ -80.107582271874506, 26.601095086005799, 0.0 ], [ -80.107611465687299, 26.601004782072799, 0.0 ], [ -80.107794267616498, 26.600992196836899, 0.0 ], [ -80.107933167101095, 26.601035048414602, 0.0 ], [ -80.108036651437402, 26.601090343680202, 0.0 ], [ -80.108205056603694, 26.600967033107299, 0.0 ], [ -80.108141539846997, 26.6008462000766, 0.0 ], [ -80.108172856029199, 26.600667354254, 0.0 ], [ -80.108246698881203, 26.6005222321341, 0.0 ], [ -80.1082746417583, 26.600330761113401, 0.0 ], [ -80.108209616691497, 26.600203836923601, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.106393577343496, 26.601480795378901, 0.0 ], [ -80.106325795932605, 26.601376005497698, 0.0 ], [ -80.106408183067202, 26.6009721936754, 0.0 ], [ -80.106265046408893, 26.600949835703101, 0.0 ], [ -80.106172333060996, 26.601069449817299, 0.0 ], [ -80.105838379030104, 26.6011964889409, 0.0 ], [ -80.105554208312199, 26.601301118164699, 0.0 ], [ -80.105488160945399, 26.601428251309098, 0.0 ], [ -80.105553513450303, 26.601532684280802, 0.0 ], [ -80.105074977593105, 26.601592812163901, 0.0 ], [ -80.104673570542204, 26.6016900211599, 0.0 ], [ -80.104523043524793, 26.601854523122199, 0.0 ], [ -80.104212470184805, 26.602033600560301, 0.0 ], [ -80.104012925224296, 26.602138661463101, 0.0 ], [ -80.103895199743604, 26.602287896756501, 0.0 ], [ -80.1035864314901, 26.602295685957401, 0.0 ], [ -80.103268649983804, 26.602161091542001, 0.0 ], [ -80.103193386173103, 26.601944251461799, 0.0 ], [ -80.102959237575405, 26.601764797444201, 0.0 ], [ -80.102181189287094, 26.601712154652098, 0.0 ], [ -80.101796725089002, 26.601644892381401, 0.0 ], [ -80.101654639587196, 26.601704676484299, 0.0 ], [ -80.101654638956504, 26.6017569887434, 0.0 ], [ -80.101562699005697, 26.601921396881899, 0.0 ], [ -80.101345395976793, 26.601704672445901, 0.0 ], [ -80.100426026021694, 26.601637398535001, 0.0 ], [ -80.099690538268405, 26.601689690670302, 0.0 ], [ -80.099417483996803, 26.6017860416957, 0.0 ], [ -80.099306587351293, 26.601644733874299, 0.0 ], [ -80.099214038633306, 26.6014899075053, 0.0 ], [ -80.098970921316393, 26.600841143666901, 0.0 ], [ -80.098867247305293, 26.600563020085801, 0.0 ], [ -80.098580643742295, 26.599984923866899, 0.0 ], [ -80.097375469377397, 26.600872100750198, 0.0 ], [ -80.097537511650799, 26.6014687721235, 0.0 ], [ -80.097340140913104, 26.601849685921501, 0.0 ], [ -80.0975903445771, 26.6022003183711, 0.0 ], [ -80.097001360253898, 26.6021594696679, 0.0 ], [ -80.096365691563307, 26.602077429340699, 0.0 ], [ -80.096354159168001, 26.602077421739999, 0.0 ], [ -80.095748542635604, 26.6022022005676, 0.0 ], [ -80.0959327374472, 26.602611934631401, 0.0 ], [ -80.097165905703307, 26.602735179691201, 0.0 ], [ -80.098442733230002, 26.602684196382601, 0.0 ], [ -80.098960177318403, 26.6024271184368, 0.0 ], [ -80.100394065054004, 26.602628628511599, 0.0 ], [ -80.102035284781195, 26.602664437562101, 0.0 ], [ -80.103773961723405, 26.602817654042301, 0.0 ], [ -80.104915315539401, 26.6019124611534, 0.0 ], [ -80.105228170331699, 26.601974925357801, 0.0 ], [ -80.105389925223804, 26.602005978145598, 0.0 ], [ -80.105524816963396, 26.6019636054499, 0.0 ], [ -80.105720115451703, 26.601901683565099, 0.0 ], [ -80.106006948705101, 26.601942576574199, 0.0 ], [ -80.106307636365003, 26.601922337427499, 0.0 ], [ -80.106330205444294, 26.601695730676301, 0.0 ], [ -80.106393577343496, 26.601480795378901, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.096418109713497, 26.6008271738696, 0.0 ], [ -80.096288533435001, 26.600809574260001, 0.0 ], [ -80.096183306658801, 26.6008637531353, 0.0 ], [ -80.096162935113398, 26.6008147276244, 0.0 ], [ -80.096100193285096, 26.600805923965101, 0.0 ], [ -80.0960140993827, 26.600802436857599, 0.0 ], [ -80.095991743700395, 26.600731573847501, 0.0 ], [ -80.095994508154504, 26.600753417954401, 0.0 ], [ -80.095990521719997, 26.600672911360999, 0.0 ], [ -80.095966556206903, 26.600620585963402, 0.0 ], [ -80.095901831156894, 26.600607208850601, 0.0 ], [ -80.095922400077498, 26.600880625227799, 0.0 ], [ -80.095853124341204, 26.601578016800499, 0.0 ], [ -80.0958877792213, 26.601844575217601, 0.0 ], [ -80.096061070743303, 26.601774282063602, 0.0 ], [ -80.096172202751703, 26.601805506359799, 0.0 ], [ -80.096371084027396, 26.601784215572199, 0.0 ], [ -80.096418109713497, 26.6008271738696, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "green", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.088965298895403, 26.607382786677601, 0.0 ], [ -80.088928071882293, 26.607191301407699, 0.0 ], [ -80.088834137723694, 26.6070905811738, 0.0 ], [ -80.088815878857304, 26.606966052122502, 0.0 ], [ -80.088740975856297, 26.6068324647316, 0.0 ], [ -80.0886758800076, 26.606765931870701, 0.0 ], [ -80.088415350008205, 26.606574557758901, 0.0 ], [ -80.088377935289202, 26.606349670780801, 0.0 ], [ -80.088314070096899, 26.606025920724701, 0.0 ], [ -80.087922540184607, 26.606117186543599, 0.0 ], [ -80.087783412068504, 26.606267673242101, 0.0 ], [ -80.087606351576298, 26.606192610226302, 0.0 ], [ -80.087457346789293, 26.606225986681501, 0.0 ], [ -80.087289462930002, 26.606200603246702, 0.0 ], [ -80.086907580806297, 26.606142072293999, 0.0 ], [ -80.086684117872096, 26.606125942619201, 0.0 ], [ -80.086191573394103, 26.6060646671062, 0.0 ], [ -80.086106570099602, 26.606167386545799, 0.0 ], [ -80.086026534339297, 26.607508533431901, 0.0 ], [ -80.086944622306206, 26.607574064161302, 0.0 ], [ -80.088340995404593, 26.607631898785598, 0.0 ], [ -80.088503152826107, 26.607685252352098, 0.0 ], [ -80.088889922774996, 26.607539988412899, 0.0 ], [ -80.088965298895403, 26.607382786677601, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "Untitled Polygon", "zone": "Safe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0891239075697, 26.6050266630332, 0.0 ], [ -80.089162137348495, 26.604593593942599, 0.0 ], [ -80.088984261275499, 26.6045853926597, 0.0 ], [ -80.088313486418997, 26.604502168871601, 0.0 ], [ -80.087643455019901, 26.604218929101201, 0.0 ], [ -80.0869358203676, 26.603985734094199, 0.0 ], [ -80.086218837243095, 26.604002302160001, 0.0 ], [ -80.085846068171193, 26.605226153554099, 0.0 ], [ -80.085715449136998, 26.605384444557099, 0.0 ], [ -80.085584814917993, 26.605642736976801, 0.0 ], [ -80.085519587323304, 26.605767675268702, 0.0 ], [ -80.085547845082999, 26.6058174144625, 0.0 ], [ -80.085622703281501, 26.6058670782574, 0.0 ], [ -80.085791744429898, 26.605956974465698, 0.0 ], [ -80.085994962108998, 26.605983917241101, 0.0 ], [ -80.086340346051301, 26.606022798560701, 0.0 ], [ -80.086739535418403, 26.606045247474, 0.0 ], [ -80.087307668688894, 26.606049990357999, 0.0 ], [ -80.087605050551204, 26.606057831931899, 0.0 ], [ -80.087847753662103, 26.605967053938201, 0.0 ], [ -80.0880057195305, 26.606075047560299, 0.0 ], [ -80.088220439533998, 26.6060089264348, 0.0 ], [ -80.088453544313296, 26.6058592518457, 0.0 ], [ -80.089087374985596, 26.605876185286199, 0.0 ], [ -80.0891239075697, 26.6050266630332, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "Name": "red","zone": "Danger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.0879897948424, 26.605540129830899, 0.0 ], [ -80.087945204940894, 26.605466812589601, 0.0 ], [ -80.0879131572175, 26.6053989821641, 0.0 ], [ -80.0879318873626, 26.605276552351299, 0.0 ], [ -80.087968834496607, 26.6052237965757, 0.0 ], [ -80.088064795145996, 26.605186769042099, 0.0 ], [ -80.088011815912793, 26.605104146477501, 0.0 ], [ -80.087865391535502, 26.605186127058001, 0.0 ], [ -80.087825658248207, 26.605325702687502, 0.0 ], [ -80.087721551768993, 26.6053919238215, 0.0 ], [ -80.087510755755801, 26.6054095328839, 0.0 ], [ -80.087412138451, 26.605415219286499, 0.0 ], [ -80.087364083580894, 26.605486026451999, 0.0 ], [ -80.087293837283895, 26.605551796315201, 0.0 ], [ -80.087312355322396, 26.605605678894101, 0.0 ], [ -80.087426920447498, 26.605581172288002, 0.0 ], [ -80.087576743888107, 26.605572456261299, 0.0 ], [ -80.087731882581394, 26.605531631735801, 0.0 ], [ -80.087792505973795, 26.605491797753398, 0.0 ], [ -80.0878542926677, 26.6055105955861, 0.0 ], [ -80.087920034170097, 26.6055875209947, 0.0 ], [ -80.088015492786596, 26.6056485495385, 0.0 ], [ -80.088044476631694, 26.605622517883798, 0.0 ], [ -80.0879897948424, 26.605540129830899, 0.0 ] ] ] } }
]
};
//var myLayer = L.geoJSON(geojsonFeature, {style:function(feature) {
// switch (feature.properties.zone) {
// case 'Safe': return {color: polygonColors.green};
// case 'Caution': return {color: polygonColors.yellow};
// case 'Danger' : return {color: polygonColors.red};
// default: return {color: polygonColors.blue}
// }
// }
//}).addTo(map);
// Create separate layers for each zone
var safeLayer = L.geoJSON(geojsonFeature, {
filter: function(feature) {
return feature.properties.zone === 'Safe';
},
style: function() {
return { color: polygonColors.green };
}
});
var cautionLayer = L.geoJSON(geojsonFeature, {
filter: function(feature) {
return feature.properties.zone === 'Caution';
},
style: function() {
return { color: polygonColors.yellow };
}
});
var dangerLayer = L.geoJSON(geojsonFeature, {
filter: function(feature) {
return feature.properties.zone === 'Danger';
},
style: function() {
return { color: polygonColors.red };
}
});
// Add these layers to the map (optional if you want them visible by default)
safeLayer.addTo(map);
cautionLayer.addTo(map);
dangerLayer.addTo(map);
//Layers
var baseMaps = {
"Satellite": sat
};
var overlayMaps = {
"Safe": safeLayer,
"Caution": cautionLayer,
"Danger": dangerLayer
};
// Legend control with white background
var legend = L.control({ position: 'bottomright' });
legend.onAdd = function(map) {
var div = L.DomUtil.create('div', 'info legend');
// Style the legend with a white background
div.style.backgroundColor = 'white';
div.style.padding = '8px';
div.style.border = '1px solid #ccc';
var zones = ['Safe', 'Caution', 'Danger'];
var labels = [];
// Loop through the zones and generate a label with a colored square for each zone
for (var i = 0; i < zones.length; i++) {
div.innerHTML +=
'<i style="background:' + getColor(zones[i]) + '; width: 18px; height: 18px; display: inline-block; margin-right: 8px;"></i> ' +
zones[i] + '<br>';
}
return div;
};
// Function to get color based on zone
function getColor(zone) {
switch (zone) {
case 'Safe': return polygonColors.green;
case 'Caution': return polygonColors.yellow;
case 'Danger': return polygonColors.red;
default: return polygonColors.blue;
}
}
legend.addTo(map);
L.control.layers(baseMaps, overlayMaps).addTo(map)
</script>