-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaps.html
More file actions
392 lines (316 loc) · 11.3 KB
/
maps.html
File metadata and controls
392 lines (316 loc) · 11.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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;
}
.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; }
}
.top_button {
background-color: #29292f;
color: #949794;
cursor: pointer;
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 24px;
border: none;
outline: none;
animation: fadeIn 1.4s;
}
.top_button:hover {
color: #e6e6e6;
}
/* 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) */
.accordion_pub {
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;
}
.accordion_pub:hover {
color: #949794;
}
.accordion_pub:after {
content: 'View';
font-size: 16px;
color: #e6e6e6;
float: right;
margin-left: 5px;
}
.accordion_pub:hover::after {
content: 'View';
color: #949794;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0px 40px;
width: min(80%, 500px);
background-color: #29292f;
color: #e6e6e6;
font-size: 15px;
display: none;
overflow: hidden;
}
.year {
position: relative;
left: 7px;
margin-top:6px;
font-size: 16px;
color: #949794;
animation: fadeIn 1.4s;
}
.subtitle {
position: relative;
left: 7px;
margin-top:6px;
font-size: 28px;
color: #e6e6e6;
animation: fadeIn 1.4s;
}
.filter {
position: absolute;
left: 38px;
bottom: 5px;
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 15px;
line-height: 24px;
color: #949794;
cursor: pointer;
}
.filter:hover {
color: #e6e6e6;
}
.pub_button {
box-sizing: border-box;
border: 1px solid #FFFFFF;
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
border-radius: 12px;
}
.more_btn { color: #949794;
text-decoration:none;
cursor: pointer;
}
.more_btn:hover { color: #e6e6e6;
}
.side_open {
position: relative;
left: 1.5%;
bottom: -75px;
width: 220px;
height: 30px;
}
.alt_link { color: #949794;
text-decoration:none;
}
.alt_link:hover { color: #e6e6e6;
}
/* 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
class="content"
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">Maps</h2>
<span class="year">2025</span>
<a href="https://matsim-eth.github.io/webmap/" target="_blank">
<button class="accordion_pub">MATSim Model Visualization</button>
</a>
<a href="./flightisochrones/" target="_blank">
<button class="accordion_pub">Flight Isochrones</button>
</a>
<span class="year">2024</span>
<a href="./pdfs/GEOG471_FinalPoster.pdf" target="_blank">
<button class="accordion_pub">Myanmar Civil War - Remote Sensing Analysis</button>
</a>
<a href="https://metrobooming.vercel.app/" target="_blank">
<button class="accordion_pub">ESRI ECCE App Challenge - Metro Booming</button>
</a>
<a href="./langleytransit" target="_blank">
<button class="accordion_pub">Langley Skytrain Extension</button>
</a>
<span class="year">2023</span>
<a href="./BAdemographics" target="_blank">
<button class="accordion_pub">BA Group - Demographics Module</button>
</a>
<a href="./BAdurham" target="_blank">
<button class="accordion_pub">BA Group - Durham Regional Development Module</button>
</a>
<a href="./travelmap">
<button class="accordion_pub">Travel Map</button>
</a>
<span class="year">2021</span>
<a href="./pdfs/OperationsMap.pdf" target="_blank">
<button class="accordion_pub">Region of Waterloo - Water Services Operations Map </button>
</a>
<span class="year">2020</span>
<a href="./greatlakesmap">
<button class="accordion_pub">
Bathymetric Map of the Great Lakes
</button>
</a>
<a href="https://webmap.peterborough.ca/heritagewalkingtour/" target="_blank">
<button class="accordion_pub">
City of Peterborough - Interactive Walking Tour Web App
</button>
</a>
<a href="./PeterboroughBasemap">
<button class="accordion_pub">
City of Peterborough - Heritage Styled Basemap
</button>
</a>
<span class="year">2019</span>
<a href="./pdfs/iGeo2019Poster_Canada.pdf" target="_blank">
<button class="accordion_pub">2019 International Geography Olympiad - Poster Competition Submission</button>
</a>
<a href="https://public.tableau.com/app/profile/andrew.ding/viz/AnAnalysisofGlobalFlightRoutes/Dashboard1" target="_blank">
<button class="accordion_pub">Tableau Student Viz Contest - An Analysis of Global Flight Routes</button>
</a>
</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>
<!--
<p class ="filter"
onclick="myFunction()">Show All</p> -->
<!-- <hr class = 'bottom_line' style="opacity: 0.25"> -->
</main>
<script>
</script>
</body>
</html>