-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
826 lines (777 loc) · 44.7 KB
/
index.html
File metadata and controls
826 lines (777 loc) · 44.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="portfolio" content="portfolio">
<meta name="author" content="Lis Fano">
<link rel="icon" type="image/svg+xml" href="./fav.svg">
<title>Lis Fano</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.7.1/font/bootstrap-icons.min.css">
<link href="./css/styles.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<div class="container-fluid">
<div class="navbar-header nav-logo">
<div class="container-fluid">
<a class="navbar-brand" target="_blank" href="https://github.com/efano">
<i class="bi bi-geo-fill nav-logo"></i>
Lis Fano
</a>
</div>
</div>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="mailto:lisfano@gmail.com">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<!-- modals -->
<div class="modal fade" id="buoys" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Great Lakes Buoys Status Tracker</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- carousel-->
<div id="buoy-carousel" class="carousel carousel-dark slide carousel-slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#buoy-carousel" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#buoy-carousel" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#buoy-carousel" data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button type="button" data-bs-target="#buoy-carousel" data-bs-slide-to="3"
aria-label="Slide 4"></button>
<button type="button" data-bs-target="#buoy-carousel" data-bs-slide-to="4"
aria-label="Slide 5"></button>
<button type="button" data-bs-target="#buoy-carousel" data-bs-slide-to="5"
aria-label="Slide 6"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/buoy1.png" class="d-block w-100" alt="slide one">
<div class="modal-footer footer-buoy">
<div class="carousel-caption d-none d-md-block">
<p class="caption">
The application dynamically displays 2-way, real-time buoy locations on a Leaflet map and as a sidebar accordion list.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/buoy2.png" class="d-block w-100" alt="slide two">
<div class="modal-footer footer-buoy">
<div class="carousel-caption d-none d-md-block">
<p class="caption">
Once opened, the accordion displays realtime sensor data retrieved from the THREDDS data server,
and user comments retrieved from the application's database.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/buoy3.png" class="d-block w-50 carousel-img-vertical" alt="slide three">
<div class="modal-footer footer-buoy">
<div class="carousel-caption d-none d-md-block">
<p class="caption">
The Django authentication system handles both authentication and authorization.
The user can choose to register for an account, log in, or view the application as a guest.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/buoy4.png" class="d-block w-100" alt="slide four">
<div class="modal-footer footer-buoy">
<div class="carousel-caption d-none d-md-block">
<p class="caption">
A logged-in user can add a comment.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/buoy5.png" class="d-block w-100" alt="slide five">
<div class="modal-footer footer-buoy">
<div class="carousel-caption d-none d-md-block">
<p class="caption">
The submitted comment is immediately displayed with user information, date/time and a delete button.
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/buoy67.png" class="d-block w-75 carousel-img-vertical" alt="slide six">
<div class="modal-footer footer-buoy">
<div class="carousel-caption d-none d-md-block">
<p class="caption">
The application is fully responsive.
</p>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#buoy-carousel"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#buoy-carousel"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- end carousel-->
</div>
</div>
</div>
</div>
<div class="modal fade" id="HBCQT" tabindex="-1">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Humboldt Capture Query Tool</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- carousel-->
<div id="humboldt-carousel" class="carousel carousel-dark slide carousel-slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#humboldt-carousel" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#humboldt-carousel" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#humboldt-carousel" data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button type="button" data-bs-target="#humboldt-carousel" data-bs-slide-to="3"
aria-label="Slide 4"></button>
<button type="button" data-bs-target="#humboldt-carousel" data-bs-slide-to="4"
aria-label="Slide 5"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/hb1.jpg" class="d-block w-100" alt="slide one">
<div class="modal-footer footer-humboldt">
<div class="carousel-caption d-none d-md-block">
<p class="caption">A three-step process</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/hb2.jpg" class="d-block w-100" alt="slide two">
<div class="modal-footer footer-humboldt">
<div class="carousel-caption d-none d-md-block">
<p class="caption">Step 1: Select a location by either clicking on the map or <br> by entering
coordinates in the text boxes</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/hb3.jpg" class="d-block w-100" alt="slide three">
<div class="modal-footer footer-humboldt">
<div class="carousel-caption d-none d-md-block">
<p class="caption">Step 2: Enter the desired depth below surface in the text box<br>
Step 3: Using the range slider, select the number of years of pumping<br>Select the Results button
</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/hb4.jpg" class="d-block w-100" alt="slide four">
<div class="modal-footer footer-humboldt">
<div class="carousel-caption d-none d-md-block">
<p class="caption">An SQLite database is queried based on user inputs <br>and a report is generated
as a side panel</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/hb5.jpg" class="d-block w-100" alt="slide five">
<div class="modal-footer">
<div class="carousel-caption d-none d-md-block">
<p class="caption">The report is fully interactive and can be printed</p>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#humboldt-carousel"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#humboldt-carousel"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- end carousel-->
</div>
</div>
</div>
</div>
<div class="modal fade" id="fieldtrips" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">Field Trip Visualization Tool</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- carousel-->
<div id="fieldtrip-carousel" class="carousel carousel-dark slide carousel-slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#fieldtrip-carousel" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#fieldtrip-carousel" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#fieldtrip-carousel" data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button type="button" data-bs-target="#fieldtrip-carousel" data-bs-slide-to="3"
aria-label="Slide 4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/trips1.jpg" class="d-block w-100" alt="slide one">
<div class="modal-footer footer-trips">
<div class="carousel-caption d-none d-md-block">
<p class="caption">Select a USGS Water Science Center <br>to filter the national dataset</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/trips2.jpg" class="d-block w-100" alt="slide two">
<div class="modal-footer footer-trips">
<div class="carousel-caption d-none d-md-block">
<p class="caption">Select a USGS field office to further filter data</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/trips3.png" class="d-block w-100" alt="slide three">
<div class="modal-footer footer-trips">
<div class="carousel-caption d-none d-md-block">
<p class="caption">Field trip site locations are aggregated by color</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="./images/trips4.png" class="d-block w-100" alt="slide four">
<div class="modal-footer footer-trips">
<div class="carousel-caption d-none d-md-block">
<p class="caption">Individual site locations are fully interactive</p>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#fieldtrip-carousel"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#fieldtrip-carousel"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- end carousel-->
</div>
</div>
</div>
</div>
<div class="modal fade" id="IPHC_Web" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">IPHC Statistical Harvest Data</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<a href="./images/IPHC_Web.png" id="IPHC_web"> <img src="./images/IPHC_Web.png" style="width: 100%;"></a>
</div>
<div class="modal-footer" id="footer-IPHC">
<p>The International Pacific Halibut Commission (IPHC) studies the management
of the stocks of Pacific halibut (Hippoglossus stenolepis) within the Convention waters of
the United States and Canada. Commercial fishing is still permitted under certain circumstances
within Glacier Bay National Park. This screenshot displays an interactive web map
developed for the National Park Service that combines both spatial and temporal IPHC statistical
harvest data.</p>
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="GSENM_wx" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Grand Staircase - Escalante National Monument Live Weather</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<a href="./images/GSENM_wx.png" id="GSENM_weather"> <img src="./images/GSENM_wx.png" style="width: 100%;"></a>
</div>
<div class="modal-footer" id="footer-GSENM">
<p>This live, interactive weather application was designed for the Visitor
Information Stations throughout <a target="_blank"
href="https://www.blm.gov/programs/national-conservation-lands/utah/grand-staircase-escalante-national-monument">Grand
Staircase-Escalante National Monument, Utah</a>. This application hybrid combines GIS, monument data,
streaming National Weather Service radar data, weather watches, warnings, and public alerts.
</p>
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--main webpage-->
<div class="container fade-in">
<div class="row">
<div class="col-lg-12">
<h2 class="title">Featured Geospatial Applications</h2>
</div>
</div>
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-2 container-main">
<h3 class="title-project">Great Lakes Buoys Status Tracker</h3>
<hr class="hr-sm" />
<p>The Great Lakes Buoys Status Tracker application is designed to provide an interactive web experience
that visualizes the current buoy location within the Great Lakes region, realtime sensor data access, and a comment thread
interface that is editable by a logged-in user. The premise of this projects is a concept study of how
multiple agencies could quickly access realtime data that could indicate instrument sensor issues, as well as a medium
of sharing maintenance and transportation scheduling. This full-stack application was built using the Django framework
and an SQLite database. The code for this web application can be viewed on <a target="_blank" href="https://github.com/efano/buoys-django">GitHub</a>.
</p>
<p style="margin-top:15px;"><b>Languages:</b> Python, JavaScript, HTML, CSS
<br><b>Libraries:</b> Leaflet, jQuery, Bootstrap
<br><b>Data Sources: </b>
<a target="_blank"
href="https://www.ucar.edu/">University Corporation for Atmospheric Research (UCAR)</a>'s
<a target="_blank" href="https://unidata.github.io/python-training/workshop/Surface_Data/surface-data-with-siphon-and-metpy/"> THREDDS data server</a>
</p>
<p>
<button type="button" class="btn btn-primary " data-bs-toggle="modal" data-bs-target="#buoys">
<i class="bi bi-map-fill"></i>  View »
</button>
</p>
</div>
<div class="col-5 col-md-5 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a data-bs-toggle="modal" data-bs-target="#buoys">
<img class="img-circle img-responsive" src="./images/buoysT.png" alt="Image of Chicago buoys">
</a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-lg-1 order-md-2 order-2 container-main">
<h3 class="title-project">Our Vanishing Glaciers</h3>
<hr class="hr-sm" />
<p>
<span class="winner">
<i class="bi bi-trophy-fill trophy"></i>
Winner (tie) of the 2020 NACIS Individual Student Dynamic Mapping Competition!</span>
<br>
Over 150 alpine glaciers existed in <a target="_blank" href="https://www.nps.gov/glac/index.htm">
Glacier National Park,</a> Montana (NPS) at the end of the Little Ice Age. In 1966, the park had
35 named glaciers large enough to be considered active. By
2015, only 26 of those glaciers remained. The <a target="_blank"
href="https://www.usgs.gov/centers/norock/science/retreat-glaciers-glacier-national-park?qt-science_center_objects=0#qt-science_center_objects">
United States Geological Survey (USGS)</a> has been documenting glacial area loss since 1966.
This web mapping project integrates these digitized glacier areas, displays them interactively, and
combines them with local climate data. The application is designed to provide an interactive web
experience that visualizes the decrease in
glacier extent over time. The code for this web map can be
viewed on <a target="_blank" href="https://github.com/efano/GNP-glaciers">GitHub</a>.
</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, Python, HTML, CSS
<br><b>Libraries:</b> Leaflet, D3.js, jQuery, Assembly.css
<br><b>Data Sources: </b><a target="_blank"
href="https://www.usgs.gov/centers/norock/science/retreat-glaciers-glacier-national-park?qt-science_center_objects=0#qt-science_center_objects">USGS,</a>
<a target="_blank" href="https://www.nps.gov/glac/index.htm"> NPS,</a><a target="_blank"
href="https://glaciers.us/glaciers.research.pdx.edu/index.html"> Portland State University,</a>
<a target="_blank" href="http://prism.oregonstate.edu/"> Oregon State University Parameter-elevation
Regressions on Independent Slopes Model (PRISM)</a>
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/GNP-glaciers/index.html"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-lg-2 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/GNP-glaciers/index.html">
<img class="img-circle img-responsive" src="./images/glaciersT.jpg" alt="Our vanishing glaciers">
</a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-2 container-main text-right">
<h3 class="title-project">CTD Profile Measurements</h3>
<hr class="hr-sm" />
<p><a target="_blank" href="https://www.nps.gov/glba/index.htm">Glacier Bay National Park and
Preserve's</a>
oceanography program consists of 22 permanent monitoring stations that measure standard
oceanographic parameters throughout the water column: temperature, salinity, pressure (depth),
photosynthetically active radiation (PAR - light penetration from the surface), optical
backscatterance (turbidity), dissolved oxygen concentration, and fluorescence (proxy for
chlorophyll-a concentration). Relying heavily on the D3.js library, this web application quickly
queries each station by sampling date and data type, allowing users to easily compare monthly,
seasonal, and inter-annual variances and profile data trends. The code for this web map can be
viewed on <a target="_blank" href="https://github.com/efano/glba-ctd">GitHub</a>.
</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, Python, HTML, CSS
<br><b>Libraries:</b> Leaflet, D3.js, jQuery, Assembly.css
<br><b>Data Sources: </b><a target="_blank" href="https://www.nps.gov/im/sean/oceanography.htm">NPS
Southeast Alaska Inventory & Monitoring Network</a>
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/glba-ctd/index.html"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/glba-ctd/index.html"><img class="img-circle img-responsive"
src="./images/glbaCTD.png" alt="CTD Oceanographic Data"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-lg-1 order-md-2 order-2 container-main">
<h3 class="title-project">Humboldt Capture Query Tool</h3>
<hr class="hr-sm" />
<p>The Humboldt Capture Query Tool was developed as part of a USGS research project to
visualize
modeled location-based groundwater
depletion within Nevada's Humboldt River Basin. The interactive, 3-step tool provides the Nevada
State Engineer and stakeholders the information needed to understand and evaluate the potential
effects of groundwater withdrawals within the basin and processes related to the interaction between
groundwater and surface water.
</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS, SQL
<br><b>Libraries:</b> Leaflet, D3.js, C3.js, Node.js, Express, Turf.js, jQuery, Bootstrap
<br><b>Data Sources: </b><a target="_blank" href="https://www.usgs.gov/centers/nv-water">USGS
Nevada Water Science Center</a>
</p>
<p>
<button type="button" class="btn btn-primary " data-bs-toggle="modal" data-bs-target="#HBCQT">
<i class="bi bi-map-fill"></i>  View »
</button>
</p>
</div>
<div class="col-5 col-md-5 order-lg-2 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a data-bs-toggle="modal" data-bs-target="#HBCQT"><img class="img-circle img-responsive"
src="./images/hbT.jpg" alt="Humboldt Capture Query Tool"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-2 container-main text-right">
<h3 class="title-project">IPHC Setline Surveys</h3>
<hr class="hr-sm" />
<p>The <a target="_blank" href="http://www.iphc.int/">International Pacific Halibut Commission
(IPHC)</a> conducts annual surveys that collect standardized data used for halibut stock
assessment. This interactive web map displays the station locations and regulatory areas where the
annual setline surveys occur. The data used in this exploratory analysis are from 1998 through 2015,
and include total count and weight of fish at each survey station. The code for this web map can be
viewed on <a target="_blank" href="https://github.com/efano/iphc_survey_map">GitHub</a>.</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Libraries:</b> Mapbox, Leaflet, jQuery
<br><b>Data Sources: </b><a target="_blank" href="http://www.iphc.int/">International Pacific
Halibut Commission</a>
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/iphc_survey_map/"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/iphc_survey_map/"><img
class="img-circle img-responsive img-center" src="./images/IPHCS_T.png" alt="An IPHC survey map"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-lg-1 order-md-2 order-2 container-main">
<h3 class="title-project">Data Collecting Utilizing Local Storage and Geolocation</h3>
<hr class="hr-sm" />
<p>
This Street Food Tracker web application collects data input by having the user click on a location on the
map and then filling out a data input form. The submitted data is then stored in the browser via the <a
target="_blank"
href="https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage">localStorage</a> property
which allows the app to save key-value pairs within the web browser. These data will persist even after the
browser window is closed. The application also utilizes the <a target="_blank"
href="https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API">Geolocation API</a> which
automatically orients the basemap near the user's physical location. The code for this web map can be viewed
on <a target="_blank" href="https://github.com/efano/local-storage">GitHub</a>.
</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Libraries:</b> Leaflet, Esri Calcite Web
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/local-storage/"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-lg-2 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/local-storage/">
<img class="img-circle img-responsive" src="./images/local-storage.png" alt="Data collecting example">
</a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-2 container-main">
<h3 class="title-project" src="./images/fieldtripsT.png">Field Trip Visualization Tool</h3>
<hr class="hr-sm" />
<p>The Field Trip Visualization Tool is a nationwide, internal USGS application designed to assist
managers and employees in field trip planning. The tool queries data from a national database
via multiple APIs and filters and aggregates site locations by field office. Site locations are
color-coded by field trip, and selectable through the use of an interactive legend. A site location
popup links to additional websites for convientent access to additional, detailed site information.
</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Libraries:</b> Leaflet, jQuery, Bootstrap, Lodash
<br><b>Data Sources: </b><a target="_blank" href="https://www.usgs.gov/centers/nv-water">USGS
Nevada Water Science Center</a>
</p>
<p>
<button type="button" class="btn btn-primary " data-bs-toggle="modal" data-bs-target="#fieldtrips">
<i class="bi bi-map-fill"></i>  View »
</button>
</p>
</div>
<div class="col-5 col-md-5 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a data-bs-toggle="modal" data-bs-target="#fieldtrips"><img class="img-circle img-responsive"
src="./images/fieldtripsT.png" alt="Field Trip Visualization Tool"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-lg-1 order-md-2 order-2 container-main">
<h3 class="title-project">Fatal Journeys</h3>
<hr class="hr-sm" />
<p>
<span class="winner">
<i class="bi bi-trophy-fill trophy"></i>
2019 CaGIS Digital Map Honorable Mention!</span><br>
Every year, hundreds of thousands of people leave their homes in search of a better life. Many are
injured or killed, while many more go missing. The <a target="_blank"
href="https://missingmigrants.iom.int/">U.N.’s
International Organization for Migration's (IOM) Missing Migrants Project </a>tracks incidents
involving migrants, including refugees and asylum-seekers, who have died or gone missing in the
process of migration towards an international
destination. The code for this web map can be
viewed on <a target="_blank" href="https://github.com/efano/global-migrant-deaths">GitHub</a>.
</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Libraries:</b> Mapbox GL JS, D3.js, Turf.js, Assembly.css
<br><b>Data Sources: </b><a target="_blank" href="https://missingmigrants.iom.int/downloads">Missing
Migrant Project</a>
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/global-migrant-deaths/"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-lg-2 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/global-migrant-deaths/"><img
class="img-circle img-responsive" src="./images/migrant-deathsT.png" alt="mapping migrant deaths"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-2 container-main">
<h3 class="title-project">Coastal Vulnerability</h3>
<hr class="hr-sm" />
<p>This web map visualizes the relative susceptibility of coastal beaches to sea-level rise through the
use of a <a target="_blank"
href="https://marine.usgs.gov/coastalchangehazardsportal/ui/info/item/CDKmLpj">coastal
vulnerability index (CVI)</a>. The initial classification used in the CVI is based upon
geomorphology, regional coastal slope, tide range, wave height,
relative sea-level rise and shoreline erosion and accretion rates. The combination of these
variables furnish a broad overview where physical changes are likely to occur due to
sea-level rise. The code for this web map can be viewed on <a target="_blank"
href="https://github.com/efano/coastal-vulnerability">GitHub</a>.</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Libraries:</b> Leaflet, GDAL, ogr2ogr, mapshaper, Node.js
<br><b>Data Sources: </b><a target="_blank"
href="https://marine.usgs.gov/coastalchangehazardsportal/ui/info/item/CDKmLpj">USGS Coastal
Change Hazards Portal </a>and
<a target="_blank"
href="https://www.usgs.gov/core-science-systems/ngp/board-on-geographic-names/download-gnis-data">U.S.
Board on Geographic Names</a>
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/coastal-vulnerability/"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/coastal-vulnerability/"><img
class="img-circle img-responsive" src="./images/beachesT.png" alt="coastal vulnerability"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-lg-1 order-md-2 order-2 container-main">
<h3 class="title-project">Invasive Flora Species</h3>
<hr class="hr-sm" />
<p>Node.js is an open-source, JavaScript framework that executes JavaScript code outside of a browser.
This project uses Node and npm to load and process data including reading, parsing and writing JSON
system files used to create and structure the data used in the web map. A coordinated legend and
data
layer visualization, along with point aggregation using the Leaflet marker
cluster plugin are also demonstrated. The code for this web map can be viewed on <a target="_blank"
href="https://github.com/efano/invasive-water-buttercup">GitHub</a>. </p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Libraries:</b> Leaflet, D3.js, Node.js, jQuery, mapshaper
<br><b>Data Sources: </b><a target="_blank"
href="https://datafinder.stats.govt.nz/search/?q=statsnzregional-council-2015-v1-00-clipped-SHP">
Stats NZ </a>and
<a target="_blank" href="https://data.mfe.govt.nz/layer/52742-freshwater-pests-water-buttercup/">MfE
Data Service</a>
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/invasive-water-buttercup/"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-lg-2 order-1 img-container justify-content-center align-items-center">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/invasive-water-buttercup/"><img
class="img-circle img-responsive" src="./images/NZ-invasiveT.png" alt="invasive flora species"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-2 container-main">
<h3 class="title-project">U.S. Power Plants</h3>
<hr class="hr-sm" />
<p>This interactive bivariate web map displays nuclear, hydroelectric, and solar power plants within the
United States, symbolized by fuel source and energy output. The proportional circle symbols indicate
the amount of power produced from one fuel source. The user can click any blank area on the map to
visually filter power plants within 500 kilometers from the click location, then click on a power
plant location circle to display its attributes and distance from the original click point. The code
for this web map can be viewed on <a target="_blank"
href="https://github.com/efano/bi-variate-prop">GitHub</a>. </p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Libraries:</b> Leaflet
<br><b>Data Sources: </b><a target="_blank" href="https://www.eia.gov/electricity/data/eia923/">U.S.
Energy Information Administration</a>
</p>
<p>
<a class="btn btn-primary " target="_blank" href="https://efano.github.io/bi-variate-prop/"
role="button"><i class="bi bi-geo-fill"></i> View Web Application »</a>
</p>
</div>
<div class="col-5 col-md-5 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a target="_blank" href="https://efano.github.io/bi-variate-prop/"><img
class="img-circle img-responsive img-center" src="./images/PwrPlantsT.png"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-lg-1 order-md-2 order-2 container-main">
<h3 class="title-project">Statistical Harvest Data</h3>
<hr class="hr-sm" />
<p>The <a target="_blank" href="http://www.iphc.int/">International Pacific Halibut Commission</a>
(IPHC) studies the management of the stocks of Pacific halibut within the
Convention waters of the United States and Canada. Commercial fishing is still permitted under
certain circumstances within Glacier Bay National Park. This screenshot displays an interactive web
map developed for the National Park Service that combines both spatial and temporal IPHC statistical
harvest data.</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Data Sources: </b><a target="_blank" href="http://www.iphc.int/">International Pacific
Halibut Commission</a>
</p>
<p>
<button type="button" class="btn btn-primary " data-bs-toggle="modal" data-bs-target="#IPHC_Web">
<i class="bi bi-map-fill"></i>  View »
</button>
</p>
</div>
<div class="col-5 col-md-5 order-lg-2 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a data-bs-toggle="modal" data-bs-target="#IPHC_Web"><img class="img-circle img-responsive img-center"
src="./images/IPHC_T.png"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette justify-content-center align-items-center">
<div class="col-6 col-md-6 order-2 container-main">
<h3 class="title-project">Real-time Visitor Weather App</h3>
<hr class="hr-sm" />
<p>This live, interactive weather application was designed for the Visitor Information Stations
throughout <a target="_blank"
href="https://www.blm.gov/programs/national-conservation-lands/utah/grand-staircase-escalante-national-monument">Grand
Staircase-Escalante National Monument, Utah</a>. This application hybrid combines GIS, monument
data,
streaming National Weather Service radar data, weather watches, warnings, and public alerts.</p>
<p style="margin-top:15px;"><b>Languages:</b> JavaScript, HTML, CSS
<br><b>Data Sources: </b><a target="_blank" href="https://www.weather.gov/">National Weather
Service</a>
</p>
<p>
<button type="button" class="btn btn-primary " data-bs-toggle="modal" data-bs-target="#GSENM_wx">
<i class="bi bi-map-fill"></i>  View »
</button>
</p>
</div>
<div class="col-5 col-md-5 order-1 justify-content-center align-items-center img-container">
<div class="img-hover-zoom img-hover-zoom--slowmo">
<a data-bs-toggle="modal" data-bs-target="#GSENM_wx"><img class="img-circle img-responsive"
src="./images/GSENM_wx_T.png"></a>
</div>
</div>
</div>
<hr class="featurette-divider">
</div>
<footer class="container">
<p class="float-end"><a href="#">Back to top</a></p>
<p>© 2022 <a target="_blank" href="https://github.com/efano">Lis Fano</a></p>
</footer>
</main>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous">
</script>
</body>
</html>