-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
952 lines (947 loc) · 59.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Resume Ivan Palmegiani</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="crossorigin" />
<link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@300;400;500;700&display=swap" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@300;400;500;700&display=swap"
media="print" onload="this.media='all'" />
<noscript>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto:wght@300;400;500;700&display=swap" />
</noscript>
<link href="css/font-awesome/css/all.min.css?ver=1.2.1" rel="stylesheet">
<link href="css/mdb.min.css?ver=1.2.1" rel="stylesheet">
<link href="css/aos.css?ver=1.2.1" rel="stylesheet">
<link href="css/main.css?ver=1.2.1" rel="stylesheet">
<noscript>
<style type="text/css">
[data-aos] {
opacity: 1 !important;
transform: translate(0) scale(1) !important;
}
</style>
</noscript>
</head>
<body class="bg-light" id="top">
<header class="d-print-none">
<div class="container text-center text-lg-left">
<div class="pt-4 clearfix">
<h1 class="site-title mb-0">Ivan Palmegiani</h1>
<div class="site-nav">
<nav role="navigation">
<ul class="nav justify-content-center">
<li class="nav-item"><a class="nav-link" href="#about" title="About"><span
class="menu-title">About</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="#skills" title="Skills"><span
class="menu-title">Skills</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="#experience" title="Experience"><span
class="menu-title">Experience</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="#education" title="Education"><span
class="menu-title">Education</span></a>
</li>
<!--
<li class="nav-item"><a class="nav-link" href="#portfolio" title="Portfolio"><span class="menu-title">Portfolio</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="#references" title="References"><span class="menu-title">References</span></a>
</li>
-->
<li class="nav-item"><a class="nav-link" href="#contact" title="Contact"><span
class="menu-title">Contact</span></a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="page-content">
<div class="container">
<div class="resume-container">
<div class="shadow-1-strong bg-white my-5" id="intro">
<div class="bg-info text-white">
<div class="cover bg-image"><img src="images/header_img_forest_1600x685.jpg" />
<!--
<div class="cover bg-image"><img src="images/header_img_trees_1920x1280.jpg"/>
-->
<div class="mask" style="background-color: rgba(0, 0, 0, 0.7);backdrop-filter: blur(0.8px);">
<div class="text-center p-5">
<div class="avatar p-1"><img class="img-thumbnail shadow-2-strong"
src="images/Pic_CV_BW65_400x400.jpg" width="160" height="160" /></div>
<div class="header-bio mt-3">
<div data-aos="zoom-in" data-aos-delay="0">
<h2 class="h1">Ivan Palmegiani</h2>
<p>Environmental Data Analyst and Consultant</p>
</div>
<div class="header-social mb-3 d-print-none" data-aos="zoom-in" data-aos-delay="200">
<nav role="navigation">
<ul class="nav justify-content-center">
<!--
<li class="nav-item"><a class="nav-link" href="https://twitter.com/templateflip" title="Twitter"><i class="fab fa-twitter"></i><span class="menu-title sr-only">Twitter</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="https://www.facebook.com/templateflip" title="Facebook"><i class="fab fa-facebook"></i><span class="menu-title sr-only">Facebook</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="https://www.instagram.com/templateflip" title="Instagram"><i class="fab fa-instagram"></i><span class="menu-title sr-only">Instagram</span></a>
</li>
-->
<li class="nav-item"><a class="nav-link"
href="https://www.linkedin.com/in/ivan-palmegiani-13a4a15b/" title="Linkedin"><i
class="fab fa-linkedin"></i><span class="menu-title sr-only">LinkedIn</span></a>
<li class="nav-item"><a class="nav-link" href="https://github.com/IvanPalm" title="Github"><i
class="fab fa-github"></i><span class="menu-title sr-only">Github</span></a>
</li>
</ul>
</nav>
</div>
<div class="d-print-none"><a class="btn btn-outline-light btn-lg shadow-sm mt-1 me-3"
href="md_version/CV_IvanPalmegiani_GitHub.pdf" data-aos="fade-right"
data-aos-delay="700">Download CV</a><a class="btn btn-info btn-lg shadow-sm mt-1"
href="#contact" data-aos="fade-left" data-aos-delay="700">Contact Me</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="shadow-1-strong bg-white my-5 p-5" id="about">
<div class="about-section">
<div class="row">
<div class="col-md-6">
<h2 class="h2 fw-light mb-4">About Me</h2>
<p>
With a strong background in land ecosystems, I bring a wealth of knowledge and enthusiasm to the field of environmental analysis. My proficiency in spatial and quantitative data analysis, as well as my expertise in remote sensing, allow me to design and carry out precise data analysis projects.
</p>
<p>
This combination of theoretical understanding and practical experience make me a valuable addition to any team striving to comprehend ecological dynamics and sustainably manage natural resources. It's important to note that I am committed to only supporting projects and working with clients who have a positive impact on the environment and society, aligning with my values and principles.
</p>
</div>
<div class="col-md-5 offset-lg-1">
<div class="row mt-2">
<h2 class="h2 fw-light mb-4">General Information</h2>
<!--
<div class="col-sm-5">
<div class="pb-2 fw-bolder"><i class="far fa-calendar-alt pe-2 text-muted" style="width:24px;opacity:0.85;"></i> Age</div>
</div>
<div class="col-sm-7">
<div class="pb-2">28</div>
</div>
-->
<div class="col-sm-5">
<div class="pb-2 fw-bolder"><i class="far fa-envelope pe-2 text-muted"
style="width:24px;opacity:0.85;"></i> Email</div>
</div>
<div class="col-sm-7">
<div class="pb-2">ivan.palmegiani@gmail.com</div>
</div>
<!--
<div class="col-sm-5">
<div class="pb-2 fw-bolder"><i class="fab fa-skype pe-2 text-muted" style="width:24px;opacity:0.85;"></i> Skype</div>
</div>
<div class="col-sm-7">
<div class="pb-2">username@skype.com</div>
</div>
<div class="col-sm-5">
<div class="pb-2 fw-bolder"><i class="fas fa-phone pe-2 text-muted" style="width:24px;opacity:0.85;"></i> Phone</div>
</div>
<div class="col-sm-7">
<div class="pb-2">+0718-111-0011</div>
</div>
-->
<div class="col-sm-5">
<div class="pb-2 fw-bolder"><i class="fas fa-map-marker-alt pe-2 text-muted"
style="width:24px;opacity:0.85;"></i> Location</div>
</div>
<div class="col-sm-7">
<div class="pb-2">Berlin, Germany</div>
</div>
<div class="col-sm-5">
<div class="pb-2 fw-bolder"><i class="fas fa-language pe-2 text-muted"
style="width:24px;opacity:0.85;"></i> Languages</div>
</div>
<div class="col-sm-7">
<div class="pb-2">English, Italian, Spanish, Portuguese, German</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="shadow-1-strong bg-white my-5 p-5" id="skills">
<div class="skills-section">
<h2 class="h2 fw-light mb-4">Technical and Organizational Skills</h2>
<div class="row">
<div class="col-md-6">
<div class="mb-3"><span class="fw-bolder">QGIS</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="100"
data-aos-anchor=".skills-section" style="width: 85%;" aria-valuenow="85" aria-valuemin="0"
aria-valuemax="100">Advanced</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Python for Geospatial Analysis</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="200"
data-aos-anchor=".skills-section" style="width: 85%" aria-valuenow="85" aria-valuemin="0"
aria-valuemax="100">Advanced</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">R Spatial, Stats and Visualization</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="300"
data-aos-anchor=".skills-section" style="width: 85%" aria-valuenow="85" aria-valuemin="0"
aria-valuemax="100">Advanced</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Database Management in PostgreSQL-PostGIS</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="300"
data-aos-anchor=".skills-section" style="width: 75%" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100">Intermediate</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Remote Sensing in Google Earth Engine</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="300"
data-aos-anchor=".skills-section" style="width: 75%" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100">Intermediate</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Linux Bash & CLI Tools</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="300"
data-aos-anchor=".skills-section" style="width: 75%" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100">Intermediate</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Containerization in Docker</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="300"
data-aos-anchor=".skills-section" style="width: 50%" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100">Just Enough</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="mb-3"><span class="fw-bolder">Self-Motivation</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right"
data-aos-delay="500" data-aos-anchor=".skills-section" style="width: 98%" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100">Jedi</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Physical & Mental Organization</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right"
data-aos-delay="400" data-aos-anchor=".skills-section" style="width: 95%" aria-valuenow="95"
aria-valuemin="0" aria-valuemax="100">Excellent</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Problem Solving</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right"
data-aos-delay="400" data-aos-anchor=".skills-section" style="width: 95%" aria-valuenow="95"
aria-valuemin="0" aria-valuemax="100">Excellent</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Communication</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right"
data-aos-delay="500" data-aos-anchor=".skills-section" style="width: 90%" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">Very good</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Prioritization</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right"
data-aos-delay="500" data-aos-anchor=".skills-section" style="width: 90%" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">Very Good</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Planning</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right"
data-aos-delay="400" data-aos-anchor=".skills-section" style="width: 90%" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">Very Good</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Teamwork</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right"
data-aos-delay="600" data-aos-anchor=".skills-section" style="width: 90%" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">Very good</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="shadow-1-strong bg-white my-5 p-5" id="skills">
<div class="skills-section">
<h2 class="h2 fw-light mb-4">Complementary Skills</h2>
<div class="row">
<div class="col-md-6">
<div class="mb-3"><span class="fw-bolder">QGIS</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="100" data-aos-anchor=".skills-section" style="width: 85%;" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">Advanced</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Python for Geospatial Analyses</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="200" data-aos-anchor=".skills-section" style="width: 85%" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">Advanced</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">R for Statistical Computing</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="300" data-aos-anchor=".skills-section" style="width: 85%" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">Advanced</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">PostgreSQL-PostGIS</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-info" role="progressbar" data-aos="zoom-in-right" data-aos-delay="300" data-aos-anchor=".skills-section" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">Intermediate</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="mb-3"><span class="fw-bolder">Physical Organization</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right" data-aos-delay="400" data-aos-anchor=".skills-section" style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">Excelent</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Planning</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right" data-aos-delay="400" data-aos-anchor=".skills-section" style="width: 90%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">Very Good</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Teamwork</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right" data-aos-delay="600" data-aos-anchor=".skills-section" style="width: 90%" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">Very good</div>
</div>
</div>
<div class="mb-3"><span class="fw-bolder">Self-Motivation</span>
<div class="progress my-2 rounded" style="height: 20px">
<div class="progress-bar bg-secondary" role="progressbar" data-aos="zoom-in-right" data-aos-delay="500" data-aos-anchor=".skills-section" style="width: 98%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">Jedi</div>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<!--WORK EXPERIENCE-->
<div class="shadow-1-strong bg-white my-5 p-5" id="experience">
<div class="work-experience-section">
<h2 class="h2 fw-light mb-4">Work Experience</h2>
<div class="timeline">
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Land Use Consultant <a href="https://climatefocus.com/"
class="text-muted h6">at Climate Focus </a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Full-time, Berlin, Jul. 2022 - present</div>
<div>
As an expert ecologist, I work at the intersection of science and policy, conducting research and advisory projects in the
fields of sustainable land use, Nature-based Solutions (NbS), ecosystem restoration, sustainable agriculture, and environmental finance.
My aim is to bring a holistic perspective to these crucial areas, leveraging my expertise and experience to drive positive change.
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Geospatial Data Consultant <a href="https://waterriskfilter.panda.org/"
class="text-muted h6">at WWF Water Risk Filter</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Contract, Home-based, Feb. 2021 - present</div>
<div>Reviewed methodologies for corporate water risks assessment and scenarios analysis in close
cooperation with the technical project manager |
Designed data visualizations and maps of global water risks for efficient data communication in
stakeholder engagement |
Established automation workflows for data analysis and for data reporting |
Developed a R package with over 70 exported functions necessary to generate Risk Assessment
and Scenarios Analysis reports
<br><br>
Tech stack: R Spatial, Tidyverse, R-Plotly, OfficeR, RStudio, MS Office, Conda, Git & GitHub</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Data Analytic Consultant <a href="https://www.unccd.int/"
class="text-muted h6">at UNCCD </a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Contract, Home-based, Jan. 2022 - May 2022</div>
<div>Development of an analytical framework for the synthesis of data gathered within the CRIC 21 reporting process |
Prototyping data visualizations for the CRIC synthesis documents | Cooperation with internal and external stakeholders at the
development of a relational database for the effective storage and querying of reporting data
<br><br>
Tech stack: Python, Jupyter, PostgreSQL-PostGIS, R Tidyverse, RStudio, Docker, Conda, Git & GitHub</div>
</div>
</div>
<div class="timeline">
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Geospatial Data Consultant <a href="https://www.wwf.se/english/wwf-in-sweden/"
class="text-muted h6">at WWF Sweden </a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Contract, Home-based, Jul. 2021 - Feb. 2022</div>
<div>Analysed data to estimate corporate water risks at site level |
Generated data visualizations such as charts and maps | Produced reports and slide-shows
presentations
in accordance with WWF Water Risk Filter reporting process and standards
<br><br>
Tech stack: R Spatial, Tidyverse, R-Plotly, OfficeR, RStudio, MS Office, Conda, Git & GitHub</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Research Fellow <a href="https://www.plan-adapt.org/climate-co-adaptation-lab/"
class="text-muted h6">at PlanAdapt Climate Co-Adaptation Lab</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Fellowship, Home-based, Apr. 2021 - Jun. 2022</div>
<div>Proposal development with focus on GIS and Earth Observation technologies for the design of
Nature-Based Solutions.
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="200">
<div class="timeline-head px-4 pt-3">
<div class="h5">Geospatial Data Scientist <a href="https://smartcloudfarming.com/"
class="text-muted h6">at SmartCloudFarming GmbH</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Contract, Home-based, Mar. 2020 - Jan. 2021</div>
<div>Coordinated a small team of data professionals in a production context, i.e. research and
development.
Developed a minimum viable product (MVP) for soil moisture monitoring from Earth Observation data
<ul>
<li>Performed literature research to identify state-of-the-art methods for the estimation of soil
water content and soil organic carbon from satellite imagery</li>
<li>Presented key findings in bibliographical reports</li>
<li>Identified suitable data sources to facilitate programmatic access to satellite imagery, and
to ground data</li>
<li>Developed data science pipelines to source and composite satellite imagery to train machine
learning models, and prepared ground data to test and validate predictions</li>
<li>Co-developed and fine-tuned ML models to predict soil moisture content from satellite data.
The accuracy of predictions is satisfactory (R squared > 0.95, RMSE < 0.05)</li> <li>Generated
interactive data visualizations and 3D maps to report model predictions to executives</li>
<li>Developed dashboards to display ground data and model predictions to investors, and to
potential clients</li>
</ul>
Tech stack: Python Spatial Modules, Jupyter, QGIS, Google Earth Engine, Scikit Learn, Python-Plotly,
Streamlit, Conda, Git & GitHub, Docker, PostgreSQL-PostGIS, Google Cloud Platform, Google App Engine
</div>
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="400">
<div class="timeline-head px-4 pt-3">
<div class="h5">Data Scientist <a href="https://www.earthratings.com/" class="text-muted h6">at Earth
Ratings UG</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Contract, Home-based, May 2020 - Jun. 2020</div>
<div>Explored CDP data and methodologies | Identified additional data sources on Corporate
Environmental Footprint (CEF) and Social Responsibility (CSR) | Developed a web scraper
program to source publicly available data sets in accordance with the respective terms of use |
Transformed unstructured data into to tabular formats and integration of open data sets from several
sources |
Exploratory analyses and visualization of the resulting data sets
<br><br>
Tech stack: all technical work was performed in Python
</div>
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="600">
<div class="timeline-head px-4 pt-3">
<div class="h5">Data Management Consultant <a href="https://www.famnit.upr.si/en/"
class="text-muted h6">at University of Primorska</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Contract, Home-based, Jan 2020</div>
<div>
<div>Revised data storage procedures at the Conservation and Population Genetic research group |
Data wrangling | Migration from data sheets to relational database (ETL) |
Automation of data queries | Advising the research team on data management
<br><br>
Tech stack: data wrangling in Python, user interfaces for data entry were generated with Microsoft
Access</div>
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="600">
<div class="timeline-head px-4 pt-3">
<div class="h5">Professional Requalification <span class="text-muted h6">at On-site and Online Training
Institutes</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Oct. 2018 - Nov. 2019</div>
<div>
<div>Data Science and Python programming courses | German language course
| Conflict management and non-violent-communication (NVC) self-training | Personal development
</div>
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="600">
<div class="timeline-head px-4 pt-3">
<div class="h5">Graduate Research Assistant <a href="https://www.izw-berlin.de/en/home.html"
class="text-muted h6">at Leibniz Institute for Zoo and Wildlife Research</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Full-time, Berlin and Central Namibia, Apr. 2013 - Jun. 2018</div>
<div>
<div>
Desk research activities:
<ul>
<li>Development of data collection protocols</li>
<li>Field project management</li>
<li>Planning and supervising field campaigns for the live-capture of cheetahs</li>
<li>Spatial and movement analyses of high-resolution GPS-telemetry data</li>
<li>Modeling distribution of the species and the use of space</li>
<li>Modeling individual movement patterns and interactions</li>
<li>Data management in <a style=color:#464242
href="https://www.movebank.org/cms/movebank-main">Movebank</a></li>
<li>Design and maintenance of PostgreSQL-PostGIS database</li>
<li>Formulation and statistical testing of evolutionary hypothesis</li>
<li>Presenting scientific results to stakeholders and to the general public through talks, data
visualizations and reports</li>
<li>Organization of scientific symposia</li>
</ul>
Field activities:
<ul>
<li>Undertaking live-capture campaigns of cheetahs using custom-build box traps</li>
<li>Assisting in the live-capture of leopards using custom-build box traps</li>
<li>Collecting and analyzing presence-absence data via camera-trap surveys</li>
<li>Engaging with local stakeholders and rural communities for the mitigation of human-wildlife
conflict</li>
<li>Coordinating data collection in the field, supervising technicians and volunteers</li>
</ul>
</div>
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="600">
<div class="timeline-head px-4 pt-3">
<div class="h5">Graduate Research Assistant <a href="https://cibio.up.pt/" class="text-muted h6">at CIBIO
- Research Center in Biodiversity and Genetic Resources</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Full-time, various areas of Portugal and Spain, Feb. 2012 -
Feb. 2013</div>
<div>
<div>
Field activities:
<ul>
<li>Undertaking live-capture campaigns of wolves</li>
<li>Collecting presence-absence data along transects and via camera-trap surveys</li>
<li>Engaging with rural communities in the attempt to mitigate human-wildlife conflict</li>
</ul>
Desk research activities:
<ul>
<li>Modeling species habitat, distribution and use of space with statistical learning
models</li>
</ul>
</div>
</div>
</div>
</div>
<div class="timeline-card timeline-card-info" data-aos="fade-in" data-aos-delay="600">
<div class="timeline-head px-4 pt-3">
<div class="h5">Graduate Research Assistant <a href="https://en.uniss.it/ugov/person/2348"
class="text-muted h6">at
Department of Zoology and Evolutionary Genetics, University of Sassari</a></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">Full-time, various areas of Italy, Nov. 2010 -
Nov. 2011</div>
<div>
<div>
Field activities:
<ul>
<li>Undertaking live-capture campaigns of wolves</li>
<li>Estimating pack size and reproductive success via wolf-howling surveys</li>
<li>Collecting presence-absence data along transects and via camera-trap surveys</li>
<li>Engaging with rural communities in the attempt to mitigate human-wildlife conflict</li>
</ul>
Desk research activities:
<ul>
<li>Biocustical analysis of wolves vocalizations</li>
<li>Ensuring proper storage and management of GIS data</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!--EDUCATION AND TRAINING-->
<div class="shadow-1-strong bg-white my-5 p-5" id="education">
<div class="education-section">
<h2 class="h2 fw-light mb-4">Education</h2>
<div class="timeline">
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Masters in Environmental Sciences and Natural Resources Management <span
class="text-muted h6">from University of Sassari</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Grade: 110/110 <i>Summa cum Laude</i>, Jul. 2010</div>
<div>Systems ecology, landscape ecology, regional geology, pedology, sedimentology, wildlife
conservation and management,
conservation genetics, environmental modeling, statistical inference, advanced statistical theory,
environmental economics</div>
</div>
</div>
<!--
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="200">
<div class="timeline-head px-4 pt-3">
<div class="h5">Bachelor of Computer Science <span class="text-muted h6">from Regional College</span> </div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">2007 - 2011</div>
<div>Override the digital divide with additional clickthroughs from DevOps. Nanotechnology immersion along the information highway will close the loop on focusing solely on the bottom line.</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="400">
<div class="timeline-head px-4 pt-3">
<div class="h5">Science and Mathematics <span class="text-muted h6">from Mt. High Scool</span> </div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3">1995 - 2007</div>
<div>User generated content in real-time will have multiple touchpoints for offshoring. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</div>
</div>
</div>
-->
<h2 class="h2 fw-light mb-4">Training Courses</h2>
<div class="timeline">
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">ARSET - Evaluating Ecosystem Services with Remote Sensing <span class="text-muted h6">by Applied Remote Sensing Training Program, NASA </span>
</div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Aug. 2022, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/1MvctalK">Certificate of Completion</a></div>
<div>
Summarize primary concepts of ecosystem services and natural capital accounting | Recall global frameworks and initiatives for ecosystem assessments
Outline the role of NASA Earth Observations (EO) in conducting ecosystem assessments | Identify natural capital accounting models that incorporate EO
Discover case study examples of the use of EO for ecosystem assessments
</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">ARSET - Using the UN Biodiversity Lab to Monitor the Pulse of the Planet <span class="text-muted h6">by Applied Remote Sensing Training Program, NASA </span>
</div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Apr. 2022, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/1MvctalK">Certificate of Completion</a></div>
<div>Using remote sensing and geospatial data within the NASA-supported UN Biodiversity Lab (UNBL)
to take action on national conservation and sustainable development priorities
</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Artificial Intelligence (AI) for Earth Monitoring <span class="text-muted h6">by EUMETSAT and European Centre for Medium-Range Weather Forecasts (ECMWF) </span>
</div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Feb. 2022, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/1MvctalK">Certificate of Completion</a></div>
<div>Introduction to European Union's Copernicus Programme | Copernicus Data Collections | Types of AI, Machine Learning, and Deep Learning algorithms |
Practical, Real-world Applications of AI for Earth Monitoring of Land, Ocean, Atmosphere, and Climate |
Hands-on training using Python in Jupyter Notebooks on the WEkEO platform
</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">ARSET Advanced Training - Using Earth Observations for Pre- and Post-Fire Monitoring <span
class="text-muted h6">by Applied Remote Sensing Training Program, NASA</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Jan. 2022, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/YndctalK">Certificate of Completion</a></div>
<div>Identify land cover and climate variables related to wildfire risk |
Access and display geospatial wildfire risk data layers | Create a burn severity map using
satellite imagery | Calculate burned area using satellite imagery </div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">End-to-End Google Earth Engine <span class="text-muted h6">by Spatial Thoughts </span>
</div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Nov. 2021, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/loyctalK">Certificate of Completion</a></div>
<div>Data Import/Export | Calculating Indices | Extracting Time Series | Supervised
Classification | Building UI Apps | Using Python API</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Danube Floodplain Management <span class="text-muted h6">by Technical University of
Munich within EU Interreg Project</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Sept. 2021<a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/XOqitalK">Certificate of Completion</a></div>
<div>Principles of floodplain management and its relevance to EU legislation |
Knowledge on technical aspects such as modelling, ecosystem services valuation, stakeholder
engagement | Principles of feasibility studies and cost-benefit analysis |
Presentation of newly developed Web-GIS tools for evaluating floodplains and their restoration
potential</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Advanced QGIS <span class="text-muted h6">by Spatial Thoughts</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Sept. 2021, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/MK0ctalK">Official QGIS Certification</a></div>
<div>Modeling and Automating GIS Workflows | Visualizing Time Series and 3D Data | Advanced
Expressions</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">ARSET - Species Distribution Modeling with Remote Sensing <span
class="text-muted h6">by Applied Remote Sensing Training Program, NASA</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Aug. 2021, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/PazrtalK">Certificate of Completion</a></div>
<div>Overview of Species Distribution Models (SDMs) | Data Sources for Species Distribution and
Remote
Sensing Data for Landscape Characterization |
Tools for conducting SDM for a variety of ecosystems such Wallace R-based platform for modeling of
species niches and distributions</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">ARSET - Satellite Observations and Tools for Fire Risk, Detection, and Analysis
<span class="text-muted h6">by Applied Remote Sensing Training Program, NASA</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>May 2021, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/72UrtalK">Certificate of Completion</a></div>
<div>Overview of Species Distribution Models (SDMs) | Data Sources for Species Distribution and
Remote
Sensing Data for Landscape Characterization
| Terminology regarding type and components of fire (pre, during, post) | Climatic and biophysical
conditions pre-, during-, and post-fire | The satellites and instruments used in conducting fire
science
| The applications of passive and active remote sensing for fires | How to visualize fire
emissions
and particulate matter
| The use of tools for active fires, emissions, and burned areas | How to acquire data for
conducting analysis in a given study area</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Echoes in Space <span class="text-muted h6">by EO College, European Space Agency &
Friedrich-Schiller University Jena</span></div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Jul. 2020, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/u2NrtalK">Certificate of Completion</a></div>
<div>History of Radar technology and the discovery of electromagnetic waves | Image acquisition
| Geometry of airborne and space borne Radar systems | Land applications of Radar remote sensing
| Applications of radar remote sensing over Water | Application of Radar remote sensing for Hazard
management</div>
</div>
</div>
<div class="timeline-card timeline-card-success" data-aos="fade-in" data-aos-delay="0">
<div class="timeline-head px-4 pt-3">
<div class="h5">Data Science Bootcamp <span class="text-muted h6">by Business Trends
Academy</span>
</div>
</div>
<div class="timeline-body px-4 pb-4">
<div class="text-muted text-small mb-3"><span>Aug. 2019 - Nov. 2019, <a class="text-muted text-small mb-3" style=color:#464242
href="http://u.pc.cd/gNfctalK">Certificate of Completion</a></div>
<div>Data protection and ethical matters | Linear and nonlinear regression | A/B testing |
Hypothesis
testing | Data visualization in Tableau | Object oriented programming (OOP) |
Python modules and functions | Pandas and NumPy | Multiprocessing and multithreading | RESTful API
| Webscraping | Neural Networks and Machine Learning techniques | Keras and TensorFlow</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="shadow-1-strong bg-white my-5 p-5 d-print-none" id="portfolio">
<div class="portfolio-section">
<h2 class="h2 fw-light mb-4">Portfolio</h2>
<div class="row g-0">
<div class="col-md-6"><a href="https://dribbble.com/" target="_blank"><img class="img-fluid" src="images/project-1.jpg" width="800" height="500"/></a></div>
<div class="col-md-6 d-flex align-items-center" data-aos="fade-left" data-aos-delay="100">
<div class="m-4 mt-md-2">
<p class="text-teal text-small">Frontend / HTML / CSS / JavaScript</p>
<h3>Photo Agency Website</h3>
<p class="text-muted">Built highly performant website front end for a Photography agency. Delivered codebase in HTML, CSS and modern JavaScript.</p>
</div>
</div>
</div>
<div class="row g-0 portfolio-reverse">
<div class="col-md-6 d-flex align-items-center" data-aos="fade-right" data-aos-delay="100">
<div class="m-4 mt-md-2 text-end">
<p class="text-teal text-small">Graphic Design / Photoshop / Sketch</p>
<h3>Restaurant Website Design</h3>
<p class="text-muted">Web design for popular resturant chain involving complex layouts done in both Photoshop and Sketch. Collaborated with back-end and front-end team for finished product.</p>
</div>
</div>
<div class="col-md-6"><a href="https://www.behance.net/" target="_blank"><img class="img-fluid" src="images/project-2.jpg" width="800" height="500"/></a></div>
</div>
<div class="row g-0">
<div class="col-md-6"><a href="https://dribbble.com/" target="_blank"><img class="img-fluid" src="images/project-3.jpg" width="800" height="500"/></a></div>
<div class="col-md-6 d-flex align-items-center" data-aos="fade-left" data-aos-delay="100">
<div class="m-4 mt-md-2">
<p class="text-teal text-small">Frontend / HTML / CSS / JavaScript</p>
<h3>E-Commerce Website</h3>
<p class="text-muted">Built highly performant website for an E-commerce Portal. Worked with back-end team to timely deliver codebase in HTML, CSS and modern JavaScript.</p>
</div>
</div>
</div>
</div>
</div>
<div class="shadow-1-strong bg-white my-5 p-5" id="references">
<div class="reference-section">
<h2 class="h2 fw-light mb-4">References</h2>
<div class="row">
<div class="col-md-6">
<div class="d-flex mb-2">
<div class="avatar"><img src="images/reference-image-1.jpg" width="60" height="60"/></div>
<div class="header-bio m-3 mb-0">
<h3 class="h6 mb-1" data-aos="fade-left" data-aos-delay="0">Aiyana</h3>
<p class="text-muted text-small" data-aos="fade-left" data-aos-delay="100">CEO / Web Design Company</p>
</div>
</div>
<div class="d-flex"><i class="text-secondary fas fa-quote-left"></i>
<p class="lead mx-2" data-aos="fade-left" data-aos-delay="100">Walter displays exemplary professionalism and is able to take on challenges. He learns quickly and is an asset to any team.</p>
</div>
</div>
<div class="col-md-6">
<div class="d-flex mb-2">
<div class="avatar"><img src="images/reference-image-2.jpg" width="60" height="60"/></div>
<div class="header-bio m-3 mb-0">
<h3 class="h6 mb-1" data-aos="fade-left" data-aos-delay="0">Alexander</h3>
<p class="text-muted text-small" data-aos="fade-left" data-aos-delay="100">Front-end Developer / Web Design Company</p>
</div>
</div>
<div class="d-flex"><i class="text-secondary fas fa-quote-left"></i>
<p class="lead mx-2" data-aos="fade-left" data-aos-delay="100">Walter is a great co-worker and problem solver. He is quick to extend his helping hand and makes a good team player.</p>
</div>
</div>
</div>
</div>
</div>
-->
<!--CONTACT ME-->
<div class="shadow-1-strong bg-white my-5 p-5" id="contact">
<div class="contant-section">
<h2 class="h2 fw-light text mb-4">Contact</h2>
<div class="row mb-4">
<div class="col-md-5" data-aos="fade-left" data-aos-delay="200">
<div class="mt-1">
<!--
<div class="h6"><i class="fas fa-phone pe-2 text-muted" style="width:24px;opacity:0.85;"></i> +0718-111-0011</div>
-->
<div class="h6"><i class="far fa-envelope pe-2 text-muted" style="width:24px;opacity:0.85;"></i>
ivan.palmegiani@gmail.com</div>
</div>
<div class="mt-5 d-print-none">
<form action="https://formspree.io/f/xpzkejaz" method="POST">
<div class="form-outline mb-4">
<input type="text" id="name" name="name" class="form-control" required />
<label class="form-label" for="name">Name</label>
</div>
<div class="form-outline mb-4">
<input type="email" id="email" name="_replyto" class="form-control" required />
<label class="form-label" for="email">Email address</label>
</div>
<div class="form-outline mb-4">
<textarea class="form-control" style="resize: none;" id="message" name="message" rows="4"
required></textarea>
<label class="form-label" for="message">Message</label>
</div>
<button class="btn btn-info btn-block mb-4" type="submit">Send</button>
</form>
</div>
</div>
<div class="col-md-7 d-print-none" data-aos="zoom-in" data-aos-delay="100">
<iframe width="550" height="400" frameborder="0" scrolling="yes" marginheight="0" marginwidth="0"
src="https://www.openstreetmap.org/export/embed.html?bbox=13.410809040069582%2C52.51145451459145%2C13.45132112503052%2C52.52769715623354&layer=mapnik"
style="border: 0.2px solid rgba(58, 57, 57, 0.623)"></iframe><br /><small><a
href="https://www.openstreetmap.org/#map=16/52.5196/13.4311">View Larger Map</a></small>
<!--
<iframe width="550" height="400" frameborder="0" scrolling="yes" marginheight="0" marginwidth="0"
src="https://www.openstreetmap.org/export/embed.html?bbox=13.363838195800783%2C52.47603676238261%2C13.525886535644533%2C52.54102364808312&layer=mapnik"
style="border: 0.2px solid black">
</iframe><br/><small><a href="https://www.openstreetmap.org/#map=14/52.5085/13.4449">View Larger Map</a></small>
-->
<!--
<iframe src="https://maps.google.com/maps?q=Berlin%20Friedrichshain&t=&z=12&ie=UTF8&iwloc=&output=embed" width="550" height="400" style="border:0;width:100%;" allowfullscreen="" loading="lazy"></iframe></div>
-->
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="pt-4 pb-4 text-muted text-center d-print-none">
<div class="container">
<div class="my-3">
<div class="h4">Ivan Palmegiani</div>
<div class="footer-nav">
<nav role="navigation">
<ul class="nav justify-content-center">
<!--
<li class="nav-item"><a class="nav-link" href="https://twitter.com/templateflip" title="Twitter"><i class="fab fa-twitter"></i><span class="menu-title sr-only">Twitter</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="https://www.facebook.com/templateflip" title="Facebook"><i class="fab fa-facebook"></i><span class="menu-title sr-only">Facebook</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="https://www.instagram.com/templateflip" title="Instagram"><i class="fab fa-instagram"></i><span class="menu-title sr-only">Instagram</span></a>
</li>
-->
<li class="nav-item"><a class="nav-link" href="https://www.linkedin.com/in/ivan-palmegiani-13a4a15b/"
title="Linkedin"><i class="fab fa-linkedin"></i><span class="menu-title sr-only">LinkedIn</span></a>
<li class="nav-item"><a class="nav-link" href="https://github.com/IvanPalm" title="Github"><i
class="fab fa-github"></i><span class="menu-title sr-only">Github</span></a>
</li>
</ul>
</nav>
</div>
</div>
<div class="text-small">
<div class="mb-1">© Material Resume. All rights reserved.</div>
<div>Design - <a href="https://templateflip.com/" target="_blank">TemplateFlip</a></div>
</div>
</div>
</footer>
<script src="scripts/mdb.min.js?ver=1.2.1"></script>
<script src="scripts/aos.js?ver=1.2.1"></script>
<script src="scripts/main.js?ver=1.2.1"></script>
</body>
</html>