-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
353 lines (297 loc) · 13.7 KB
/
experience.html
File metadata and controls
353 lines (297 loc) · 13.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Andrew Ding</title>
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<!-- Font Awesome-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/baa8a15a0c.js" crossorigin="anonymous"></script>
<style>
:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: light) {
:root { font-family: 'Inter var', sans-serif; }
}
body {
background-color: #29292f;
color: #e6e6e6;
}
.link { color: #e6e6e6;
text-decoration:none;
}
.link:hover { color: #949794;
}
.alt_text { color: #949794;
font-size: 15px;
}
.alt_link { color: #949794;
text-decoration:none;
}
.alt_link:hover { color: #e6e6e6;
}
.text_up p {
position: absolute;
width: 100%;
height: 100%;
/* Apply animation to this element */
animation: text_up 1s ease-out;
}
.text_down p {
position: absolute;
width: 100%;
height: 100%;
/* Apply animation to this element */
animation: text_down 1s ease-out;
}
.text_down i {
position: absolute;
width: 100%;
height: 100%;
/* Apply animation to this element */
animation: text_down 1s ease-out;
}
/* Move it (define the animation) */
@keyframes text_up {
0% {
transform: translateY(50%);
}
100% {
transform: translateY(0%);
}
}
/* Move it (define the animation) */
@keyframes text_up_button {
0% {
transform: translateY(100%);
}
100% {
transform: translateY(0%);
}
}
/* Move it (define the animation) */
@keyframes text_down {
0% {
transform: translateY(-100%);
}
100% {
transform: translateY(0%);
}
}
.fade-in-text { animation: fadeIn 1.4s; }
@keyframes fadeIn {
0% { opacity: 0.00; }
20% { opacity: 0.02; }
100% { opacity: 1; }
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
background-color: #29292f;
color: #e6e6e6;
cursor: pointer;
padding: 9px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 24px;
animation: fadeIn 1.4s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active {
color: #e6e6e6;
}
.accordion:hover {
color: #949794;
}
.accordion:after {
content: '+'; /* Unicode character for "plus" sign (+) */
font-size: 30px;
color: #949794;
float: right;
vertical-align: middle;
line-height: 0.0em;
margin-left: 5px;
}
.accordion:hover::after {
content: '+'; /* Unicode character for "plus" sign (+) */
color: #e6e6e6;
}
.active:after {
content: "-"; /* Unicode character for "minus" sign (-) */
}
.active:hover::after {
content: "-";
color: #e6e6e6;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0px 10px;
width: 100%;
background-color: #29292f;
color: #e6e6e6;
font-size: 15px;
display: none;
overflow: hidden;
line-height: 20px;
}
.subtitle {
position: relative;
left: 7px;
margin-top:6px;
font-size: 28px;
color: #e6e6e6;
animation: fadeIn 1.4s;
}
.float-child {
width: 350px;
float: left;
padding: 15px;
padding-right: 80px !important;
}
@media only screen and (max-width: 600px) {
.float-child{
width: min(80%, 300px);
}
}
/* Scrollbar styling for the entire page */
html, body {
scrollbar-width: thin; /* For Firefox */
scrollbar-color: #555 #222; /* Thumb color and track color */
}
</style>
</head>
<body>
<main>
<div>
<a href="./" class="link">
<div class ='text_down fade-in-text'>
<p style="position: absolute;
width: 186px;
height: 76px;
left: 38px;
top: 5px;
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 24px;"
>Andrew<br>Ding.</p>
</div>
</a>
<div
style="position: relative;
left: 5%;
top: 150px;
width: 88%;
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 24px;
padding-bottom:100px;"
>
<h2 class="subtitle">Educational</h2>
<button class="accordion">ETH Zürich<span class="alt_text"><br>Master in Data Science · Sep 2024 - Aug 2026</span></button>
<div class="panel">
<div class="float-child">Master of Science ETH in Data Science
</div>
</div>
<button class="accordion">University of Waterloo <span class="alt_text"><br>Honours Geomatics & Joint Honours Mathematics · Sep 2019 - Jun 2024</span></button>
<div class="panel">
<div class="float-child">Bachelor of Environmental Studies<br>Cumulative Average: 96.3%<br><br>
Diploma of Excellence in Geographic Information Systems and Certificate in Global Experience.
</div>
</div>
<br>
<br>
<h2 class="subtitle">Professional</h2>
<button class="accordion">Center for Sustainable Future Mobility - ETH Zürich <span class="alt_text"><br>Research Assistant · Dec 2024 - Present</span></button>
<div class="panel">
<div class="float-child">Currently working on the <a href="https://csfm.ethz.ch/en/research/integrative-projects/digital-twin.html" class ='alt_link' target="_blank">Digital Twin of Switzerland</a> project.
</div>
</div>
<button class="accordion">Capital One <span class="alt_text"><br>Co-op/Intern Data Science · May 2023 - Aug 2023</span></button>
<div class="panel">
<div class="float-child">Adapted a Markov chain model by overhauling the process of training and validating transition matrices. These matrices forecast customer charge-off rates by predicting future delinquency progression over several statements.
</div>
</div>
<button class="accordion">BA Consulting Group Ltd. <span class="alt_text"><br>Spatial Data Analyst · Jan 2023 - Apr 2023</span></button>
<div class="panel">
<div class="float-child">Designed and developed <a href="./BAdurham" class ='alt_link' target="_blank">interactive web applications</a> using Mapbox GL JS and Turf.js, empowering both clients and colleagues to make data-driven decisions through easy-to-use spatial analysis tools.
</div>
<div class="float-child">Streamlined transit reach modeling and analysis efforts by developing an automation script that converts GTFS files into a Network Dataset, resulting in more efficient and accurate transit network analysis.
</div>
</div>
<button class="accordion">Urban Demography Lab - EPFL <span class="alt_text"><br>Research Intern · May 2022 - Jul 2022</span></button>
<div class="panel">
<div class="float-child">Conducted in-depth exploratory spatial analysis using R and various packages such as sf, raster, and ggplot, utilizing a combination of raster and microdata to analyze demographic trends over different temporal periods.
</div>
<div class="float-child">Developed a methodology to categorize and assign sets of census polygons to functional urban areas in developing countries, resulting in a more accurate representation of demographic data, to be used in a future research publication.
</div>
</div>
<button class="accordion">Region of Waterloo <span class="alt_text"><br>Engineering and Planning Student Coordinator · Sep 2021 - Dec 2021</span></button>
<div class="panel">
<div class="float-child">Developed efficient workflows and methods using ArcGIS Pro to automate the identification and removal of extraneous line segments, reducing the runtime of water distribution model simulations and improving overall performance.
</div>
<div class="float-child">Conducted data analysis using Python to compare and validate the accuracy of predicted discharge flow against calculated discharge flow, as well as identify deviations in discharge flow during water break events.
</div>
</div>
<button class="accordion">Environment and Climate Change Canada <span class="alt_text"><br>Geospatial Technician · Jan 2021 - Apr 2021</span></button>
<div class="panel">
<div class="float-child"> Created multiple geoprocessing tools using ArcGIS ModelBuilder to streamline the analysis of vector features, and incorporated the results into an interactive dashboard using PowerBI for easy visualization and interpretation.
</div>
<div class="float-child">Utilized NDVI and EVI rasters, accessed through NASA Earthdata, to assess vegetation levels in the wintering ranges of migratory birds. This research was <a href="https://doi.org/10.1139/cjz-2021-0207" class ='alt_link' target="_blank">published</a>, providing valuable insights on the habitats of these species.
</div>
</div>
<button class="accordion">City of Peterborough <span class="alt_text"><br>Heritage GIS Student · May 2020 - Aug 2020</span></button>
<div class="panel">
<div class="float-child">
Refined and deployed an <a href="https://webmap.peterborough.ca/heritagewalkingtour/" class ='alt_link' target="_blank">interactive walking tour webapp</a> using ArcGIS Webapp Builder and ArcGIS Online, providing users with a dynamic and engaging way to explore a given historical interest.
</div>
</div>
</div>
<div class ='text_down fade-in-text'>
<a class="link" href="https://www.linkedin.com/in/andrewcding/" target="_blank"><i class="fa-brands fa-linkedin fa-lg"
style="position: absolute;
width: 15px;
height: 15px;
right: 50px;
top: 40px;"></i></a>
<a class="link" href="mailto:anding@student.ethz.ch"><i class="fa-solid fa-envelope fa-lg"
style="position: absolute;
width: 15px;
height: 15px;
right: 90px;
top: 40px;"></i></a>
</div>
</div>
<!-- <hr class = 'bottom_line' style="opacity: 0.25"> -->
</main>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
/* Toggle between adding and removing the "active" class,
to highlight the button that controls the panel */
this.classList.toggle("active");
/* Toggle between hiding and showing the active panel */
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
</script>
</body>
</html>