-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1062 lines (522 loc) · 28.9 KB
/
Copy pathindex.html
File metadata and controls
1062 lines (522 loc) · 28.9 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
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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme" content="hugo-academic">
<meta name="generator" content="Hugo 0.49.2" />
<meta name="author" content="Wei Feng">
<meta name="description" content="Professor of Geodesy">
<link rel="stylesheet" href="/css/highlight.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha512-6MXa8B6uaO18Hid6blRMetEIoPqHf7Ux1tnyIQdpt9qI5OACx7C+O3IVTr98vwGnlcg0LOLa02i9Y1HpVhlfiw==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.1/css/academicons.min.css" integrity="sha512-NThgw3XKQ1absAahW6to7Ey42uycrVvfNfyjqcFNgCmOCQ5AR4AO0SiXrN+8ZtYeappp56lk1WtvjVmEa+VR6A==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha512-SfTiTlX6kk+qitfevl/7LibUOeJWlt9rbyDn92a1DqWOw9vWG2MFoays0sgObmWazO5BQPiFucnnEAjpAB+/Sw==" crossorigin="anonymous">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Montserrat:400,700%7cRoboto:400,400italic,700%7cRoboto+Mono">
<link rel="stylesheet" href="/styles.css">
<link rel="icon" type="image/png" href="/img/icon.png">
<link rel="apple-touch-icon" type="image/png" href="/img/apple-touch-icon.png">
<link rel="canonical" href="https://fengweiigg.github.io/">
<title>Dr. Wei FENG</title>
</head>
<body id="top" data-spy="scroll" data-target="#navbar-main" data-offset="71">
<nav class="navbar navbar-default navbar-fixed-top" id="navbar-main">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target=".navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Dr. Wei FENG</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="nav-item">
<a href="/#about" data-target="#about">
<span>Home</span>
</a>
</li>
<li class="nav-item">
<a href="/#publications_selected" data-target="#publications_selected">
<span>Publications</span>
</a>
</li>
<li class="nav-item">
<a href="/#projects" data-target="#projects">
<span>Projects</span>
</a>
</li>
<li class="nav-item">
<a href="/#honors" data-target="#honors">
<span>Honors</span>
</a>
</li>
<li class="nav-item">
<a href="/#posts" data-target="#posts">
<span>Posts</span>
</a>
</li>
<li class="nav-item">
<a href="/#talks" data-target="#talks">
<span>Talks</span>
</a>
</li>
<li class="nav-item">
<a href="/#contact" data-target="#contact">
<span>Contact</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<span id="homepage" style="display: none"></span>
<section id="about" class="home-section">
<div class="container">
<div class="row" itemprop="author" itemscope itemtype="http://schema.org/Person" itemref="person-email person-telephone person-address">
<div class="col-xs-12 col-md-4">
<div id="profile">
<div class="portrait" style="background-image: url('https://fengweiigg.github.io/img/portrait.jpg');"></div>
<meta itemprop="image" content="https://fengweiigg.github.io/img/portrait.jpg">
<div class="portrait-title">
<h2 itemprop="name">Wei Feng</h2>
<h3 itemprop="jobTitle">Professor of Geodesy</h3>
<h3 itemprop="worksFor" itemscope itemtype="http://schema.org/Organization">
<span itemprop="name">School of Geospatial Engineering and Science</span>
</h3>
<h3 itemprop="worksFor" itemscope itemtype="http://schema.org/Organization">
<a href="https://sges.sysu.edu.cn/geodesy/" target="_blank" itemprop="url" rel="noopener">
<span itemprop="name">测绘科学与技术学院大地测量与导航团队</span>
</a>
</h3>
<h3 itemprop="worksFor" itemscope itemtype="http://schema.org/Organization">
<a href="https://www.sysu.edu.cn/" target="_blank" itemprop="url" rel="noopener">
<span itemprop="name">中山大学</span>
</a>
</h3>
</div>
<link itemprop="url" href="https://fengweiigg.github.io">
<ul class="network-icon" aria-hidden="true">
<li>
<a itemprop="sameAs" href="mailto:fengwei@sysu.edu.cn" target="_blank" rel="noopener">
<i class="fa fa-envelope big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="" target="_blank" rel="noopener">
<i class="fa fa-twitter big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="https://scholar.google.co.uk/citations?hl=en&user=B5oOckcAAAAJ" target="_blank" rel="noopener">
<i class="ai ai-google-scholar big-icon"></i>
</a>
</li>
<li>
<a itemprop="sameAs" href="//github.com/fengweiigg" target="_blank" rel="noopener">
<i class="fa fa-github big-icon"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-md-8" itemprop="description">
<h1 id="biography">Biography</h1>
<p>Wei Feng is a Professor at the School of Geospatial Engineering and Science of Sun Yat-sen University. His research interests include satellite
geodesy, hydrology and climate change. He leads several NSFC projects, which develop geodetic techniques/methods to monitor temporal mass
redistribution and surface deformation.</p>
<p>冯伟,中山大学测绘科学与技术学院教授。2013年获中国科学院大学固体地球物理学博士学位,2015年获法国图卢兹大学理学博士学位,2019年破格晋升为研究员。法国空间局访问学者和德国波恩大学访问学者。现主要从事空间大地测量学与全球变化方面的研究工作,特别是联合多源卫星大地测量观测和水文学、海洋学观测与模式资料,开展了全球与区域陆地水循环和海平面变化等领域的交叉研究。湖北省“百人计划”入选者,湖北省特聘专家,湖北省杰出青年基金获得者, 中国科学院青年创新促进会成员。国际大地测量学会会士(IAG Fellow),IAG “重力反演与质量迁移”委员会主席(2019-2027)。目前主持国家自然科学基金面上项目2项、国际合作项目1项。</p>
<div class="row">
<div class="col-sm-5">
<h3>Interests</h3>
<ul class="ul-interests">
<li>Satellite Gravimetry</li>
<li>Satellite Altimetry</li>
<li>Hydrology</li>
<li>Sea Level Change</li>
</ul>
</div>
<div class="col-sm-7">
<h3>Education</h3>
<ul class="ul-edu fa-ul">
<li>
<i class="fa-li fa fa-graduation-cap"></i>
<div class="description">
<p class="course">PhD in Geophysics, 2014</p>
<p class="institution">University of Toulouse/Chinese Academy of Sciences</p>
</div>
</li>
<li>
<i class="fa-li fa fa-graduation-cap"></i>
<div class="description">
<p class="course">BSc in Surveying Engineering , 2007</p>
<p class="institution">Hohai University</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="publications_selected" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Selected Publications</h1>
</div>
<div class="col-xs-12 col-md-8">
<div class="pub-list-item" itemscope itemtype="http://schema.org/CreativeWork">
<div class="row">
<div class="col-md-12">
<a href="https://fengweiigg.github.io/publication/gws_china_rs/">
<img src="/img/headers/GWS_China.png" class="pub-banner" itemprop="image">
</a>
</div>
<div class="col-md-12">
<h3 class="article-title" itemprop="name">
<a href="https://fengweiigg.github.io/publication/gws_china_rs/" itemprop="url">Groundwater Storage Changes in China from Satellite Gravity: An Overview</a>
</h3>
<div class="pub-abstract" itemprop="text">
Groundwater plays a critical role in the global water cycle and is the drinking source for almost half of the world’s population. However, exact quantification of its storage change remains elusive due primarily to limited ground observations in space and time. The Gravity Recovery and Climate Experiment (GRACE) twin-satellite data have provided global observations of water storage variations at monthly sampling for over a decade and a half, and is enable to estimate changes in groundwater storage (GWS) after removing other water storage components using auxiliary datasets and models. In this paper, we present an overview of GWS changes in three main aquifers within China using GRACE data, and conduct a comprehensive accuracy assessment using in situ ground well observations and hydrological models. GRACE detects a significant GWS depletion rate of 7.2 ± 1.1 km^3/yr in the North China Plain (NCP) during 2002–2014, consistent with ground well observations and model predictions. The Liaohe River Basin (LRB) experienced a pronounced GWS decline during 2005–2009, at a depletion rate of 5.0 ± 1.2 km^3/yr. Since 2010, GRACE-based GWS reveal a slow recovery in the LRB, with excellent agreement with ground well observations. For the whole study period 2002–2014, no significant long-term GWS depletion is found in the LRB nor in the Tarim Basin. A case study in the Inner Tibetan Plateau highlights there still exist large uncertainties in GRACE-based GWS change estimates.
</div>
<div class="pub-authors" itemprop="author">
W. Feng , C.K. Shum, M. Zhong, Y. Pan
</div>
<div class="pub-publication">
<em>Remote Sensing</em>, 2018.
</div>
<div class="pub-links">
<a class="btn btn-primary btn-outline btn-xs" href="http://www.mdpi.com/2072-4292/10/5/674" target="_blank" rel="noopener">
PDF
</a>
</div>
</div>
</div>
</div>
<div class="pub-list-item" itemscope itemtype="http://schema.org/CreativeWork">
<div class="row">
<div class="col-md-12">
<a href="https://fengweiigg.github.io/publication/gws_ncp_wrr/">
<img src="/img/headers/GWS_NCP.png" class="pub-banner" itemprop="image">
</a>
</div>
<div class="col-md-12">
<h3 class="article-title" itemprop="name">
<a href="https://fengweiigg.github.io/publication/gws_ncp_wrr/" itemprop="url">Evaluation of groundwater depletion in North China using the Gravity Recovery and Climate Experiment (GRACE) data and ground-based measurements</a>
</h3>
<div class="pub-abstract" itemprop="text">
The rate of groundwater depletion in North China based on GRACE was 2.2 +/- cm/yr from 2003-2010, which is equivalent to a volume of 8.3 +/- 1.1 km^3/yr.
</div>
<div class="pub-authors" itemprop="author">
W. Feng , M. Zhong, J.-M. Lemoine, R. Biancale, H.-T. Hsu, J. Xia
</div>
<div class="pub-publication">
<em>Water Resources Research</em>, 2013.
</div>
<div class="pub-links">
<a class="btn btn-primary btn-outline btn-xs" href="http://onlinelibrary.wiley.com/doi/10.1002/wrcr.20192/abstract" target="_blank" rel="noopener">
PDF
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="publications" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Recent Publications</h1>
</div>
<div class="col-xs-12 col-md-8">
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="author">
W. Feng , C.K. Shum, M. Zhong, Y. Pan</span>.
<a href="https://fengweiigg.github.io/publication/gws_china_rs/" itemprop="name">Groundwater Storage Changes in China from Satellite Gravity: An Overview</a>.
<em>Remote Sensing</em>, 2018.
<p>
<a class="btn btn-primary btn-outline btn-xs" href="http://www.mdpi.com/2072-4292/10/5/674" target="_blank" rel="noopener">
PDF
</a>
</p>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="author">
W. Feng , J.-M. Lemoine, M. Zhong, H.-T. Hsu</span>.
<a href="https://fengweiigg.github.io/publication/mass_redsea_jog/" itemprop="name">Mass-induced sea level variations in the Red Sea from GRACE, steric-corrected altimetry, in-situ bottom pressure records, and hydrographic observations</a>.
<em>Journal of Geodynamics</em>, 2014.
<p>
<a class="btn btn-primary btn-outline btn-xs" href="http://www.sciencedirect.com/science/article/pii/S0264370714000581" target="_blank" rel="noopener">
PDF
</a>
</p>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
<i class="fa fa-file-text-o pub-icon" aria-hidden="true"></i>
<span itemprop="author">
W. Feng , M. Zhong, J.-M. Lemoine, R. Biancale, H.-T. Hsu, J. Xia</span>.
<a href="https://fengweiigg.github.io/publication/gws_ncp_wrr/" itemprop="name">Evaluation of groundwater depletion in North China using the Gravity Recovery and Climate Experiment (GRACE) data and ground-based measurements</a>.
<em>Water Resources Research</em>, 2013.
<p>
<a class="btn btn-primary btn-outline btn-xs" href="http://onlinelibrary.wiley.com/doi/10.1002/wrcr.20192/abstract" target="_blank" rel="noopener">
PDF
</a>
</p>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Projects</h1>
</div>
<div class="col-xs-12 col-md-8">
<span class="hidden default-project-filter"></span>
<div class="project-toolbar">
<div class="project-filters">
<div class="btn-toolbar">
<div class="btn-group">
<a href="#" data-filter="" class="btn btn-primary btn-large active">All</a>
</div>
</div>
</div>
</div>
<div class="row isotope projects-container js-layout-masonry">
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-6 project-item isotope-item NSFC">
<div class="card">
<a href="https://fengweiigg.github.io/project/nsfc_tibet/" title="" class="card-image hover-overlay"
>
<img src="/img/NSFC_Tibet.jpg" alt="" class="img-responsive">
</a>
<div class="card-text">
<h4><a href="https://fengweiigg.github.io/project/nsfc_tibet/" >NSFC (grant no. 41431070)</a></h4>
<div class="card-desription">
<p>Mass balance of the glaciers in Karakoram and Himalaya Mountain Ranges</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-6 project-item isotope-item NSFC">
<div class="card">
<a href="https://fengweiigg.github.io/project/nsfc_gws_ncp/" title="" class="card-image hover-overlay"
>
<img src="/img/NSFC_GWS_NCP.jpg" alt="" class="img-responsive">
</a>
<div class="card-text">
<h4><a href="https://fengweiigg.github.io/project/nsfc_gws_ncp/" >NSFC (grant no. 41674084)</a></h4>
<div class="card-desription">
<p>Surface deformation and groundwater storage variations in the North China Plain</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="honors" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Honors</h1>
</div>
<div class="col-xs-12 col-md-8">
<ul>
<li>IAG Fellow, 2023-now </li>
<li>Outstanding paper award of 2015 Annual Meeting of Chinese Hydraulic Engineering Society, China, 2015</li>
<li>K. C. Wong education foundation scholarship, Hong Kong, China, 2014</li>
<li>National excellent graduate student award, Ministry of Education of China, 2012</li>
<li>Sino-French joint PhD scholarship (CAS/CNRS), China, 2011</li>
<li>Outstanding paper award of 26th Annual Meeting of Chinese Geophysical Society, China, 2010</li>
<li>Outstanding paper award of 4th Graduate Forum of National Geodesy and Space Science, China, 2009</li>
<li><p>Excellent graduate student award, Hohai University, China, 2007</p></li>
<li><p>国际大地测量与地球物理联合会(IUGG)下一代卫星重力计划(NGGM)工作组成员</p></li>
<li><p>国际大地测量学会(IAG)“重力反演与地球系统质量迁移”委员会 主席</p></li>
<li><p>国际大地测量学会(IAG))“重力场”委员会 执行委员</p></li>
<li><p>国际大地测量学会(IAG)“大地测量与气候变化”委员会 执行委员</p></li>
<li><p>国际大地测量学会(IAG)“质量迁移信号数值模拟”工作组 副主席</p></li>
<li><p>“优秀论文奖”,中国水利学会,2015年</p></li>
<li><p>中国科学院王宽诚教育基金会奖学金,国际会议项目,2014年</p></li>
<li><p>中国地球物理学会“科技进步二等奖”(排名7),2013 年</p></li>
<li><p>“优秀论文奖”,第26届中国地球物理学会、地震学会联合学术大会,2010年</p></li>
<li><p>“优秀论文奖”,第4届全国大地测量与空间信息研究生学术论坛,2009年</p></li>
<li><p>“昌华奖学金”,中国科学院武汉分院,2012年</p></li>
<li><p>湖北省第14届自然科学优秀学术论文,三等奖,2012年</p></li>
<li><p>“研究生国家奖学金”,教育部/财政部,2012年</p></li>
<li><p>“测绘科技进步一等奖”(排名9),中国测绘学会,2012年</p></li>
<li><p>“中法联合博士培养专项奖学金”,中国科学院,2011年</p></li>
<li><p>“三好学生”、“三好学生标兵”,中国科学院研究生院,2008、2009、2010年</p></li>
<li><p>“优秀研究生奖学金”,中国科学院测量与地球物理研究所,2008-2009和2009-2010学年</p></li>
</ul>
</div>
</div>
</div>
</section>
<section id="posts" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Recent Posts</h1>
</div>
<div class="col-xs-12 col-md-8">
</div>
</div>
</div>
</section>
<section id="talks" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Talks</h1>
</div>
<div class="col-xs-12 col-md-8">
<ul>
<li>第四届全国大地测量与空间信息研究生学术论坛(优秀论文奖,口头报告),南京, 2009.4</li>
<li>Asia Pacific Space Geodynamics (APSG) Program 2009:Space Geodesy for Earth Environment Change and Disaster Monitoring (Oral), Urmuqi, China, 2009.8</li>
<li>第25届中国地球物理年会,合肥, 2009.10</li>
<li>第20届中国极地年会(口头报告),福州,2009.11</li>
<li>Western Pacific Geophysics Meeting 2010 (WPGM) (Oral), Taipei, 2010.6</li>
<li>2010 European Space Agency Living Planet Symposium, Bergen, Norway, 2010.6</li>
<li>总参测绘研究所-测地所学术交流会议,西安,2010.7</li>
<li>Asia Pacific Space Geodynamics (APSG) Program 2010 (Oral), Shanghai, China, 2010.8</li>
<li>第26届地球物理学会、地震学会联合学术大会(口头报告),宁波,2010.10</li>
<li>International DORIS Service (IDS) Analysis Working Group Meeting (Oral), Paris, France, 2011.5</li>
<li>AGU Fall Meeting 2011 (Poster), San Francisco, California, USA, 2011.12</li>
<li>Geoinformatics2012 Conference (Oral), HongKong, China, 2012.6</li>
<li>EGU meeting 2013 (Oral+Poster), Vienna, Austria, 2013.4</li>
<li>APSG 2013 (Oral), Columbus, USA, 2013.10</li>
<li>GRACE Science Team Meeting 2013 (Oral), Austin, USA, 2013.10</li>
<li>AGU Fall Meeting (Invited Oral), San Francisco, USA, 2013.12</li>
<li>EGU meeting 2014 (Poster), Vienna, Austria, 2014.4</li>
<li>The 3rd International Gravity Field Service (IGFS) General Assembly (Oral), Shanghai, China, 2014.6</li>
<li>5th International Workshop on Multi-observations an Interpretations of Tibet, Xinjiang and Siberia (TibXS) (Oral), Guiyang, China, 2014.8</li>
<li>Sino-German Symposium on Gravitational Physics in Space (Oral), Hannover, Germany, 2015.9</li>
<li>Global Gravity Field Modeling from Satellite-to-Satellite Tracking Data</li>
<li>中国地球科学联合学术年会(邀请报告),北京,2015.10</li>
<li>中国水利学会2015学术年会(优秀论文奖,口头报告),南京,2015.10</li>
<li>第一届卫星重力与水文学研讨会(口头报告),北京,2016.6</li>
<li>International Symposium on Geodesy and Geophysics (ISGG) (Oral), Tianjin, 2016.7</li>
<li>13th Annual Meeting Asia Oceania Geosciences Society (AOGS2016) (Oral), Beijing, 2016.7</li>
<li>International Symposium on Gravity, Geoid and Height Systems 2016 (Oral), Thessaloniki, Greece,2016.9</li>
<li>43rd International Association of Hydrogeologists International Congress (Oral), Montpellier, France,2016.9</li>
<li>GRACE Science Team Meeting 2016 (Oral), GFZ Potsdam, 2016.10</li>
<li>第二届卫星重力与水文学研讨会(口头报告),北京,2017.6</li>
<li>8th International Workshop on Multi-observations an Interpretations of Tibet, Xinjiang and Siberia (TibXS) (Oral), Mohe, China, 2017.8</li>
<li>IAG Workshop: Satellite Geodesy for Climate Studies (Oral, Session Convener), Bonn, Germany, 2017.9</li>
<li>大地测量与导航专委会2017学术年会(口头报告),广州,2017.9</li>
</ul>
</div>
</div>
</div>
</section>
<section id="contact" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Contact</h1>
</div>
<div class="col-xs-12 col-md-8">
<ul class="fa-ul" itemscope>
<li>
<i class="fa-li fa fa-envelope fa-2x" aria-hidden="true"></i>
<span id="person-email" itemprop="email"><a href="mailto:fengwei@sysu.edu.cn">fengwei@sysu.edu.cn</a></span>
</li>
<li>
<i class="fa-li fa fa-phone fa-2x" aria-hidden="true"></i>
<span id="person-telephone" itemprop="telephone"><a href="tel:+86-18694058011">+86-18694058011</a></span>
</li>
<li>
<i class="fa-li fa fa-skype fa-2x" aria-hidden="true"></i>
<span><a href="skype:fengwei.igg?call">fengwei.igg</a></span>
</li>
<li>
<i class="fa-li fa fa-map-marker fa-2x" aria-hidden="true"></i>
<span id="person-address" itemprop="address">E1018, Hanlin Building, 2 Daxue Road, Zhuhai 519082, Guangdong Province, China</span>
</li>
</ul>
<div class="hidden">
<input id="gmap-lat" value="22.351864" />
<input id="gmap-lng" value="113.576079" />
<input id="gmap-dir" value="E1018, Hanlin Building, 2 Daxue Road, Zhuhai 519082, Guangdong Province, China" />
</div>
<div id="map"></div>
</div>
</div>
</div>
</section>
<footer class="site-footer">
<div class="container">
<p class="powered-by">
© 2017 Wei Feng ·
Powered by the
<a href="https://sourcethemes.com/academic/" target="_blank" rel="noopener">Academic theme</a> for
<a href="https://gohugo.io" target="_blank" rel="noopener">Hugo</a>.
<span class="pull-right" aria-hidden="true">
<a href="#" id="back_to_top">
<span class="button_icon">
<i class="fa fa-chevron-up fa-2x"></i>
</span>
</a>
</span>
</p>
</div>
</footer>
<div id="modal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close btn-large" data-dismiss="modal">×</button>
<h4 class="modal-title">Cite</h4>
</div>
<div>
<pre><code class="modal-body tex"></code></pre>
</div>
<div class="modal-footer">
<a class="btn btn-primary btn-outline js-copy-cite" href="#" target="_blank">
<i class="fa fa-copy"></i> Copy
</a>
<a class="btn btn-primary btn-outline js-download-cite" href="#" target="_blank">
<i class="fa fa-download"></i> Download
</a>
<div id="modal-error"></div>