-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
429 lines (421 loc) · 21.1 KB
/
index.html
File metadata and controls
429 lines (421 loc) · 21.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ganmin Yin</title>
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Lora', 'Times New Roman', serif;
line-height: 1.6;
color: #333;
max-width: 900px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
}
p {
text-align: justify;
text-justify: inter-word;
hyphens: auto;
margin-bottom: 1.0em;
}
li {
margin-bottom: 8px;
}
li p {
margin: 3px 0;
}
#toptitle,
.nav-links,
.profile-info {
text-align: center;
}
.publication p {
text-align: justify;
text-justify: inter-word;
}
#layout-content {
background-color: #fff;
padding: 40px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin: 0 auto;
max-width: 800px;
}
#toptitle {
text-align: center;
margin-bottom: 40px;
}
h1 {
font-family: 'Playfair Display', serif;
font-size: 2.5em;
color: #2c3e50;
margin-bottom: 20px;
text-align: center;
}
.nav-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.nav-links a {
color: #2c3e50;
text-decoration: none;
padding: 5px 10px;
border: none;
transition: all 0.3s;
font-size: 1.1em;
}
.nav-links a:hover {
color: #3498db;
transform: translateY(-2px);
}
.imgtable {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 30px;
margin: 30px 0;
}
.imgtable img {
width: 160px;
height: 160px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.profile-info {
flex-grow: 1;
max-width: 400px;
}
h2 {
font-family: 'Playfair Display', serif;
font-size: 1.8em;
color: #2c3e50;
margin-top: 40px;
padding-bottom: 10px;
border-bottom: 2px solid #eee;
}
/* New styles for collapsible news section */
.news-list-collapsed li {
display: none;
}
.news-list-collapsed li.show {
display: list-item;
}
#news-toggle-btn {
display: block;
margin: 16px auto 0 auto;
padding: 6px 18px;
background: #3498db;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1em;
transition: background 0.2s;
}
#news-toggle-btn:hover {
background: #217dbb;
}
.pub-year-group {
margin-bottom: 18px;
}
.pub-year-title {
font-weight: bold;
font-size: 1.2em;
color: #444;
margin-top: 18px;
margin-bottom: 4px;
}
@media (max-width: 768px) {
body {
padding: 10px;
}
#layout-content {
padding: 20px;
}
.imgtable {
flex-direction: column;
align-items: center;
text-align: center;
}
.nav-links {
gap: 10px;
}
.nav-links a {
padding: 5px;
}
}
</style>
</head>
<body>
<div id="layout-content">
<div id="toptitle">
<h1>Ganmin Yin</h1>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="https://scholar.google.com/citations?user=UgdgRs0AAAAJ&hl=zh-CN">Google Scholar</a>
<a href="https://www.researchgate.net/profile/Ganmin-Yin">ResearchGate</a>
<a href="https://www.linkedin.com/in/ganmin-yin-92aba5361/">LinkedIn</a>
<a href="cv/CV_Ganmin YIN_Nov_2025.pdf">CV</a>
</div>
</div>
<div class="imgtable">
<img src="photos/avatar.jpg" alt="Ganmin Yin" />
<div class="profile-info">
<p>Ph.D. at Peking University, <br />
Postdoc at SMART, MIT, <br />
1 CREATE Way, <br />
#09-03 CREATE Tower (M3S), <br />
Singapore, 138602 <br />
E-mail: <a href="mailto:ganmin@mit.edu">ganmin@mit.edu</a><br />
<!-- <i>"Looking for a postdoc position starting in 2025, fall"</i></p> -->
</div>
</div>
<h2>About Me</h2>
<p>I am a Postdoc Associate at <a href="https://m3s.mit.edu/">SMART Centre, MIT</a>, working with Prof. <a href="https://scholar.google.com/citations?user=xdGRNpwAAAAJ">Siqi Zheng</a>. Before that, I obtained my Ph.D. degree in GIScience from Peking University in 2025, supervised by Prof. <a href="https://scholar.google.com/citations?user=BUFSF_8AAAAJ">Zhou Huang</a> and Prof. <a href="https://scholar.google.com/citations?user=Xh_lRY4AAAAJ">Yu Liu</a>. I also received my B.S. degree in GIScience from Peking University in 2020.</p>
<p>My research interests focus on urban analytics with geospatial big data and advanced models, including sustainability issues like <b><a href="slide/Sustainable mobility_Ganmin YIN_MIT SMART_Dec_2025.pdf">transportation</a> and urbanization</b>. My research goal is to introduce state-of-the-art theories and models to better understand the human-environment relationship.</p>
<p>Besides, I am also very interested in Hiking, Traveling, and Reading :).</p>
<!-- <p><b>Note:</b> I am looking for a <u><b>postdoc</b></u> position starting in <i>2025, fall</i>. Feel free to contact me!</p> -->
<!-- <p>My CV can be downloaded from <a href="cv/CV_Ganmin YIN_Mar_2024.pdf"><u>here</u></a>.</p> -->
<h2>News</h2>
<ul id="news-list" class="news-list-collapsed">
<li class="show">
<p>2025.11: Two first-author papers are accepted to <a href="https://www.sciencedirect.com/science/article/abs/pii/S096585642500415X">TRA</a> and <a href="https://www.sciencedirect.com/science/article/pii/S136192092500481X">TRD</a>.</p>
</li>
<li class="show">
<p>2025.09: I am starting as a Postdoc Associate at <a href="https://m3s.mit.edu/">SMART Centre, MIT</a>.</p>
</li>
<li class="show">
<p>2025.07: I graduate from Peking University with honor.</p>
</li>
<li class="show">
<p>2025.05: I defend my Ph.D. thesis successfully.</p>
</li>
<li class="show">
<p>2025.01: A first-author paper is accepted to <a href="https://www.sciencedirect.com/science/article/abs/pii/S221067072500040X">SCS</a>.</p>
</li>
<li>
<p>2024.11: A first-author paper is accepted to <a href="https://www.mdpi.com/2076-3417/14/22/10191">Applied Sciences</a>.</p>
</li>
<li>
<p>2023.12: A first-author paper is accepted to <a href="https://www.sciencedirect.com/science/article/pii/S1361920923004352">TRD</a>.</p>
</li>
<li>
<p>2023.09: I am awarded the <a href="https://mp.weixin.qq.com/s/_LfrkyzSJCsbtnc2XLMbRw">Rising Star Award, College GIS Forum of China</a> and <a href="https://grs.pku.edu.cn/tzgg/373402.htm">Presidential Scholarship, Peking University</a>.</p>
</li>
<!-- <li>
<p>2023.05: Oral presentation at <a href="https://gis2022.scievent.com/home/">The 18th China Annual Conference on GIS Theory and Method, Session 15 - Trajectory Data Mining</a>.</p>
</li> -->
<li>
<p>2023.02: A first-author paper is accepted to <a href="https://www.sciencedirect.com/science/article/pii/S1569843223000675">JAG</a>.</p>
</li>
<li>
<p>2023.01: A second-author (after my supervisor) paper is accepted to <a href="https://journals.sagepub.com/doi/abs/10.1177/23998083231158370">EPB</a>.</p>
</li>
<li>
<p>2022.09: I am awarded the <a href="https://grs.pku.edu.cn/tzgg/365594.htm">Presidential Scholarship, Peking University</a>.</p>
</li>
<li>
<p>2022.06: I pass the qualifying exam and become a Ph.D. candidate.</p>
</li>
<li>
<p>2022.04: A first-author paper is accepted to <a href="https://link.springer.com/article/10.1007/s10707-022-00467-0">GeoInformatica</a>.</p>
</li>
<!-- <li>
<p>2021.11: Oral presentation at <a href="https://www.cpgis.org/conferences/ConferenceDefault.aspx?ID=2077">CPGIS 2021, Session 25 - Geocomputation</a>.</p>
</li> -->
<li>
<p>2020.06: My first collaborative paper is accepted to <a href="https://www.nature.com/articles/s41598-020-65175-x">Scientific Reports</a>.</p>
</li>
<li>
<p>2018.10: I am starting as a research assistant in <a href="https://geos3.netlify.app/">S<sup>3</sup>-Lab</a>, Peking University.</p>
</li>
<li>
<p>2017.09: I am selected for a short-term overseas academic exchange program, supported by Peking University.</p>
</li>
</ul>
<button id="news-toggle-btn" onclick="toggleNews()">More</button>
<script>
// Collapsible News Section Script
const newsList = document.getElementById('news-list');
const toggleBtn = document.getElementById('news-toggle-btn');
let expanded = false;
function toggleNews() {
expanded = !expanded;
if(expanded) {
newsList.classList.remove('news-list-collapsed');
Array.from(newsList.children).forEach(li => li.classList.add('show'));
toggleBtn.innerText = "Less";
} else {
newsList.classList.add('news-list-collapsed');
Array.from(newsList.children).forEach((li, idx) => li.classList.toggle('show', idx<5));
toggleBtn.innerText = "More";
// Scroll to News section on collapse
document.getElementById("news-list").scrollIntoView({behavior:"smooth", block:"start"});
}
}
// Initial rendering: only show first 5
Array.from(newsList.children).forEach((li, idx) => {
if(idx<5) li.classList.add('show');
else li.classList.remove('show');
});
</script>
<h2>Education</h2>
<p><u>Ph.D.</u>, Cartography and GIScience, <b>Peking University</b>, 2020 - 2025</p>
<ul>
<li>
<p>Supervisor: Prof. Zhou Huang & Prof. Yu Liu</p>
</li>
<li>
<p>Thesis: Analysis and Application of Low-Carbon Urban Transportation Based on Geospatial Big Data</p>
</li>
</ul>
<p><u>B.S.</u>, GIScience, <b>Peking University</b>, 2016 - 2020</p>
<ul>
<li>
<p>Supervisor: Prof. Zhou Huang</p>
</li>
<li>
<p>Thesis: Spatial Prediction of Public Transportation Modal Share: A Case Study in Beijing</p>
</li>
</ul>
<h2>Selected Publications</h2>
<p><a href="https://scholar.google.com/citations?user=UgdgRs0AAAAJ&hl=zh-CN">[Full publications]</a> <a href="slide/Sustainable mobility_Ganmin YIN_MIT SMART_Dec_2025.pdf">[Research slides]</a></p>
<p>*Corresponding author, <sup>#</sup>Equal contribution</p>
<!-- Publications grouped by year -->
<div class="pub-year-group">
<div class="pub-year-title">2025 (3)</div>
<ul>
<li>
<p><b><u>Yin, G.</u></b>, Huang, Z.*, Ren, S., Tang, M., Yan, X., Zheng, J., Qi, J., Bao, Y., & Ma, X. (2026). <a href="https://doi.org/10.1016/j.tra.2025.104782"><u>Balancing efficiency and emissions through travel mode shifts: A multi-objective analysis from Beijing, China</u></a>. <i>Transportation Research Part A: Policy and Practice</i>, 204, 104782. (<b>IF = 6.8, 22/620</b>)</p>
</li>
<li>
<p><b><u>Yin, G.</u></b>, Huang, Z.*, Wang, X., Tang, M., Ren, S., & Bao, Y. (2026). <a href="https://doi.org/10.1016/j.trd.2025.105071"><u>Unveiling the overestimated carbon reductions of dockless bike-sharing: A data-driven analysis</u></a>. <i>Transportation Research Part D: Transport and Environment</i>, 150, 105071. (<b>IF = 7.7, 5/61</b>)</p>
</li>
<li>
<p><b><u>Yin, G.</u></b>, Fu, C., Ren, S., Yan, X., Qi, J., Bao, Y., & Huang, Z.* (2025). <a href="https://doi.org/10.1016/j.scs.2025.106162"><u>Traffic prediction and road space optimization for the integration of dockless bike-sharing and subway</u></a>. <i>Sustainable Cities and Society</i>, 121, 106162. (<b>IF = 12.0, 3/95</b>)</p>
</li>
</ul>
</div>
<div class="pub-year-group">
<div class="pub-year-title">2024 (2)</div>
<ul>
<li>
<p><b><u>Yin, G.</u></b>, Feng, Y., Jiang, Y., & Bao, Y.* (2024). <a href="https://doi.org/10.3390/app142210191"><u>A Scene-Object-Economy framework for identifying and validating urban-rural fringe using multisource geospatial big data</u></a>. <i>Applied Sciences</i>, 14(22), 10191. (<b>IF = 2.5, 50/175</b>)</p>
</li>
<li>
<p><b><u>Yin, G.</u></b>, Huang, Z.*, Fu, C., Ren, S., Bao, Y., & Ma, X. (2024). <a href="https://doi.org/10.1016/j.trd.2023.104038"><u>Examining active travel behavior through explainable machine learning: Insights from Beijing, China</u></a>. <i>Transportation Research Part D: Transport and Environment</i>, 127, 104038. (<b>IF = 7.7, 5/61</b>) [<b>ESI Highly Cited Paper</b>]</p>
</li>
</ul>
</div>
<div class="pub-year-group">
<div class="pub-year-title">2023 (2)</div>
<ul>
<li>
<p><b><u>Yin, G.</u></b>, Huang, Z.*, Yang, L., Ben-Elia, E., Xu, L., Scheuer, B., & Liu, Y. (2023). <a href="https://doi.org/10.1016/j.jag.2023.103245"><u>How to quantify the travel ratio of urban public transport at a high spatial resolution? A novel computational framework with geospatial big data</u></a>. <i>International Journal of Applied Earth Observation and Geoinformation</i>, 118, 103245. (<b>IF = 8.6, 5/65</b>)</p>
</li>
<li>
<p>Huang, Z., <b><u>Yin, G.</u></b>, Peng, X.*, Zhou, X., & Dong, Q. (2023). <a href="https://doi.org/10.1177/23998083231158370"><u>Quantifying the environmental characteristics influencing the attractiveness of commercial agglomerations with big geo-data</u></a>. <i>Environment and Planning B: Urban Analytics and City Science</i>, 50(9), 2470-2490. (<b>IF = 3.1, 27/173</b>) [<b>ESI Highly Cited Paper</b>]</p>
</li>
</ul>
</div>
<div class="pub-year-group">
<div class="pub-year-title">2022 (1)</div>
<ul>
<li>
<p><b><u>Yin, G.</u></b>, Huang, Z.*, Bao, Y., Wang, H., Li, L., Ma, X., & Zhang, Y. (2023). <a href="https://doi.org/10.1007/s10707-022-00467-0"><u>ConvGCN-RF: A hybrid learning model for commuting flow prediction considering geographical semantics and neighborhood effects</u></a>. <i>GeoInformatica</i>, 27(2), 137-157. (<b>IF = 2.5, 29/67</b>) [<b>Top 1 Most Cited Paper in 2023</b>]</p>
</li>
</ul>
</div>
<h2>Honors and Awards</h2>
<ul>
<li>
<p><b>Excellent Graduate</b>, Peking University, 2025</p>
</li>
<li>
<p><b>Merit Student</b>, Peking University, 2024</p>
</li>
<li>
<p><b>Rising Star Award</b>, College GIS Forum (CGF) of China, 2023</p>
</li>
<li>
<p><b>Presidential Scholarship</b>, Peking University, 2023</p>
</li>
<li>
<p><b>Industrial Bank Scholarship</b>, Peking University, 2023</p>
</li>
<li>
<p><b>Academic Excellence Award</b>, Peking University, 2023</p>
</li>
<li>
<p><b>Presidential Scholarship</b>, Peking University, 2022</p>
</li>
<li>
<p><b>Merit Student</b>, Peking University, 2022</p>
</li>
<li>
<p><b>LongRuan Scholarship</b>, Beijing LongRuan Technology Co. Ltd., 2020</p>
</li>
<li>
<p><b>Study Excellence Award</b>, Peking University, 2017</p>
</li>
</ul>
</div>
<div class="footer">
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<div class="visit-stats">
<div class="stat-item">
<i class="fas fa-user"></i>
<span id="busuanzi_container_site_uv">
Visitors: <span id="busuanzi_value_site_uv" class="stat-number"></span>
</span>
</div>
<div class="stat-item">
<i class="fas fa-eye"></i>
<span id="busuanzi_container_site_pv">
Views: <span id="busuanzi_value_site_pv" class="stat-number"></span>
</span>
</div>
</div>
</div>
<!-- 添加Font Awesome图标支持 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
.footer {
text-align: center;
padding: 30px 0;
margin-top: 50px;
background-color: #f8f9fa;
border-top: 1px solid #eee;
}
.visit-stats {
display: flex;
justify-content: center;
gap: 30px;
}
.stat-item {
display: flex;
align-items: center;
gap: 8px;
color: #666;
font-size: 0.9em;
}
.stat-number {
color: #3498db;
font-weight: bold;
}
.fas {
color: #3498db;
}
.stats-note {
margin-top: 10px;
}
</style>
</body>
</html>