-
Notifications
You must be signed in to change notification settings - Fork 1
/
CV.qmd
118 lines (85 loc) · 2.44 KB
/
CV.qmd
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
<style>
.cv-wrapper{
display: grid;
grid-template-columns: minmax(300px, 2fr) minmax(200px, 1fr);
column-gap: 10px;
}
@media only screen and (max-width: 500px) {
.cv-wrapper {
grid-template-columns: 1fr;
}
}
#formal-edu{
margin-top: 0rem
}
#portrait{
width: 75%;
max-width: 200px;
border-radius: 100%;
text-align: center;
padding: 20px;
}
#skills{
padding: 10px
}
#skills > ul{
list-style-type: "\2611 ";
}
#skills li{
padding-left: 10px
}
.cv-side{
background-color: #073b4c;
border-radius: 10px
}
.cv-container{
display: grid;
justify-content: start;
grid-template-columns: auto auto;
align-items: center;
grid-gap: 20px;
}
.year{
text-align: center;
font-size: small;
line-height: 100%;
}
</style>
<div class="cv-wrapper">
<div>
<h2 id="formal-edu"> {{< fa graduation-cap size=fw >}} Formal Education</h2>
<div class="cv-container">
<div class="year">2017<br>I<br>2014</div>
<div>Master of Science ZFH in Life Sciences, Specialisation in Natural Ressource Sciences @ ZHAW </div>
<div class="year">2013<br>I<br>2009</div>
<div>Bachelor of Science in Natural Resource Sciences, Specialisation in Nature Management @ ZHAW </div>
<div class="year">2006<br>I<br>2003</div>
<div>Commercial apprenticeship (Kaufmännische Lehre mit Berufsmatura) @ AXA Winterthur</div>
</div>
<h2> {{< fa building size=fw >}} Employment</h2>
<div class="cv-container">
<div class="year">now<br>I<br>2019</div>
<div>Research fellow @ ZHAW</div>
<div class="year">2016<br>I<br>2019</div>
<div>Research assistant @ ZHAW</div>
<div class="year">2021<br>I<br>2013</div>
<div>Deputy project lead (part time) @ Wiesel & Co am Zimmerberg</div>
<div class="year">2006<br>I<br>2008</div>
<div>Cunsultant aviation insurances @ AXA Winterthur Aviation insurances</div>
</div>
</div>
<div class="cv-side">
<!-- <div style="text-align: center"><img id="portrait" src="images/rata_print-sw.jpg"> </div> -->
<div id="skills">
Skills:
<ul>
<li>Geodata analysis, modelling and visualisation with R, Python, ArcGIS, QGIS, PostGIS, gdal, ogr2ogr</li>
<li>Spatial-R: sf, terra, sp, raster</li>
<li>Spatial-Py: geopandas, rasterio, gdal</li>
<li>Project management in various roles (project lead, supervisor, collaborator)</li>
<li>Reproducible reporting with RMarkdown, Jupyter Notebook, HTML, CSS, LaTeX</li>
<li>Regex, Webscraping, Network analysis, git / GitHub, CI/CD, bash</li>
</ul>
</div>
</div>
</div>