forked from astrosites/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_backup.html
1467 lines (1308 loc) · 65.6 KB
/
index_backup.html
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>
<!--
Dimension by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
Aiyuan Yang use the HTML5 template, then update and modify it.
-->
<html>
<!-- This is the "Head" of the HTML document.
It contains information that isn't displayed on the actual page, but is useful
for the web browser when loading the page
-->
<head>
<!-- This is the title of the page. It is the text that appears inside this pages tab in your web browser -->
<title>AiyuanYang</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!-- This links to this page's CSS, which is contained in the folder assets/css and the file main.css.
If you want to edit the styling of this page, you should edit the file assets/css/main.css
If you have a new CSS file you'd like to add with custom styling, you should link to it here using:
<link rel="stylesheet" href="assets/css/my-new-css-file.css"/>
-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <!--set for the slide show -->
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/slideshow.css" />
<!-- In the case that the user's browser does not support JavaScript (unlikely, but possible), the page
will load a separate set of CSS stylings from the file assets/css/noscript.css
Any HTML contained inside <noscript></noscript> tags will be loaded in the event that JavaScript is not
available.
-->
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<!-- add html jquery by AYY, you need to create a b.html, and call it use <div data-include="b"> </div> -->
<script src="assets/js/jquery_html.js"></script>
<!--set for the slide show -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body class="is-preload">
<!-- This "div" wraps around all of our content and just changes how things are layed out -->
<div id="wrapper">
<!-- This is where the content that appears on page load exists -->
<header id="header">
<!-- This is the main content of the front page -->
<div class="content">
<div class="inner">
<!-- Here is a heading where you can put your name -->
<h1 style="color:white">
Aiyuan Yang
</h1>
<!-- Here is an image where you can put a picture of you.
You can change the width and height attributes below to change how large
your image is.
Try adding "border-radius: 50%;" to the style attribute.
-->
<img src="images/2017-10-04.jpg" style="width:280px; height:280px; object-fit: cover;">
<!-- Here is a paragraph where you can put your position and institution, or
a short line about yourself.
-->
<p>
<a style="color:white" href="https://www.mpifr-bonn.mpg.de/person/94862/2169" target="_blank">
Postdoctoral researcher <br> (MPIfR)</a>
</p>
<!-- Here is a paragraph where you can put a link to your CV -->
<p>
<!-- Note you will want to change where this points to! -->
<a style="color:white" href="images/CV_AiyuanYang_PersonalWeb.pdf" target="_blank">Curriculum Vitae</a>
</p>
</div>
</div>
<!-- This is the navigation menu -->
<nav>
<!-- This element makes an "Unordered List" -->
<ul>
<!-- This is a "List Item" -->
<li>
<!-- Note that this links to #about, which will move the page to wherever
the element with the id "about" exists.
-->
<a style="color:white" href="#about">About Me</a>
</li>
<li>
<a style="color:white" href="#gallery">Photo Gallery</a>
</li>
<li>
<a style="color:white" href="#links">Links</a>
</li>
<li>
<a style="color:white" href="#research">Research</a>
</li>
<li>
<a style="color:white" href="#publications">Publications</a>
</li>
<!-- You can add another button to your navigation menu by adding
another List Item with a link inside of it.
-->
<!-- <li>
<a href="images/Astronomy.jpg">My CV</a>
</li> -->
</ul>
</nav>
</header>
<!-- These are the "cards" that appear when you click the buttons on the main page -->
<div id="main">
<!-- Here is the "About Me" card. Note it has the id "about", which the previous
button links to.
-->
<article id="about">
<h2 class="major">About Me</h2>
<p style="font-family:Apple Chancery;text-align: center">Welcome to my personal webpage</p>
<p style="text-align: justify">I am an astronomer, and currently a postdoctoral researcher at the Max-Planck-Institute for Radio Astronomy (MPIfR),
mainly focus on the multi-band (from radio to NIR) continuum and lines study toward ISM related to star formation in our Galaxy,
using interferometer and single-dish telescopes.</p>
<!-- Here is an image that you can customize for this page -->
<span class="image main">
<img src="images/sunrise1.jpg" alt=""/>
</span>
<!-- Here are three paragraphs where you can fill out information about yourself -->
<p>
<!-- Items contained in <b> tags are bolded! -->
<b>Education & Background: </b>
<li> Since 2018 PostDoc at the Max-Planck-Institute for Radio Astronomy (MPIfR) </li>
<li> 2016-2017 SKA Joint Ph.D. University of Hertfordshire, UK </li>
<li> 2014-2018 Ph.D. National Astronomical Observatories of China (NAOC) </li>
</p>
<p>
<b>Main focus:</b>
<li>The birth of HII regions: HCHII and UCHII regions </li>
<li>Line study to investigate the outflow properties of the massive star formation </li>
<li>Multi-band continuum (from radio to NIR) study of ISM related to star formation</li>
<li>Observations of radio interferometer and single-dish telescopes</li>
<li>Multi-band (from radio to submm) RRLs study </li>
<li>Young PNe: kinematic distances and masers </li>
</p>
<p>
<b>Language and Skills:</b>
<li>Computer Language: python, C, R, and HTML</li>
<li>Language: English (fluent); Deutsch(beginner); Chinese(first language)</li>
<li>software: CASA, Obit, KVIS, TOPCAT, DS9, and GILDAS</li>
</p>
<p>
<b>Honors and Awards:</b>
<li>CAS Presidential Scholarship, "中科院院长奖" (2018)</li>
<li>China Scholarship Council Scholarship, SKA project, China-UK, "国家留学基金委奖学金" (2016)</li>
<li>National Scholarship of China, "国家奖学金" (2016)</li>
<li>Advanced Micro Devices (AMD) Scholarship at NAOC (2015), "AMD 奖学金"</li>
<li>Merit Student at NAOC, “中科院三好学生” (2015)</li>
<li>Volunteer of the CAS Public Science Day, “中科院公众科学日志愿者” (2013)</li>
<li>Valuable volunteer of IAU XXIII General Assembly, “第28届国际天文学联合大会(IAU)志愿者” (2012)</li>
<li>Enrolled in CAS without entrance examination, "推荐免试中科院研究生" (2011)</li>
<li>Outstanding student leader of College of Physics Science and Technology at XJU (2009)</li>
<li>Government grants for outstanding students (2007-2011)</li>
</p>
<p>
<b>Presentations:</b>
<li>Workshop talk, The SEDIGISM workshop, Bonn, Germany, Sep. 2021, <i>Molecular outflows in the SEDIGISM survey</i></li>
<li> Talk at the MPIfR, Bonn, Germany, March. 2020, <i>Hypercompact HII regions identified from young HII regions</i></li>
<li>Talk at the MPIfR, Bonn, Germany, Nov. 2018, <i>Multi-band study of ISM related to massive star formation</i></li>
<li>Seminar talk, Chinese radio astronomy annual conference, Hefei, Anhui, China, Nov. 2017,
<i>Searching for hyper-compact HII regions using JVLA survey data</i></li>
<li>Seminar talk, the 2th Chinese annual conference of SKA, Shanghai, China, Dec., 2017,
<i>A search for steep positive radio spectrum object: make prediction for SKA and its precursors</i></li>
</p>
<p>
<b>Contact:</b>
<li><b>Email</b>: [email protected] </li>
<li> <b>Address</b>: Auf dem Hügel 69, 53121, Bonn, Germany </li>
</p>
</article>
<!-- Here is the "Photo Gallery" card. -->
<article id="gallery">
<h2 class="major">Photo Gallery</h2>
<p>
<!-- A <br> tag puts in a break so that the text that follows it displays on
the next line.
-->
<! -- Telescope picture slide show start-->
<!-- slide show use carousel; include head: /link-4.1/css/bootstrap.min.css; script: jquery.min.js bootstrap.min.js -->
<div class="container">
<h3>Telescopes</h3>
<div id="myCarousel" class="carousel slide" data-ride="carousel" style="width:700px;!important;">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="images/apex1.jpg" alt="APEX" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>San Pedro de Atacama, Chile</h3>
<p>APEX: the father of ALMA 😂</p>
</div>
</div>
<div class="item">
<img src="images/alma.jpg" alt="ALMA" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>San Pedro de Atacama, Chile</h3>
<p>ALMA: what a beauty!</p>
</div>
</div>
<div class="item">
<img src="images/Effelsberg.jpg" alt="Effelsberg 100m" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>Effelsberg, Germany</h3>
<p>Not easy to climb to the top</p>
</div>
</div>
<div class="item">
<img src="images/iram.jpg" alt="IRAM 30m" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>IRAM 30m, Granada, Spain </h3>
<p>Amazing sunrise, sunset and ham</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Telescope picture slide show end -->
<! -- Travel picture slide show start-->
<!-- slide show use carousel; include head: /link-4.1/css/bootstrap.min.css; script: jquery.min.js bootstrap.min.js -->
<div class="container">
<h3>Travel</h3>
<div id="myCarousel" class="carousel slide" data-ride="carousel" style="width:700px;!important;">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="images/travel01.jpg" alt="Los Angeles" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>Valparaíso, Chile</h3>
<p>Had so much fun!</p>
</div>
</div>
<div class="item">
<img src="images/travel02.jpg" alt="Chicago" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>Granada, Spain</h3>
<p>Pico Veleta observatory, IRAM 30m</p>
</div>
</div>
<div class="item">
<img src="images/park1.jpg" alt="New York" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>Richmond Park, UK</h3>
<p>Fantastic landscape</p>
</div>
</div>
<div class="item">
<img src="images/endenich.jpg" alt="New York" style="width:700px;height:280px">
<div class="carousel-caption">
<h3>Endenich, Bonn, Germany</h3>
<p>Fields of Hope 😂 near MPIfR </p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Travel picture slide show end -->
</article>
<!-- Here is a the "Links" card. -->
<article id="links">
<h2 class="major">Links</h2>
<p>
<b>Telescopes and Proposals </b>
</p>
<ul>
<li>
<a href="https://science.nrao.edu/" target="_blank" style="color:blue">
<strong>JVLA: </strong> </a>;
1-50 GHz; 25m*27; <a href="https://science.nrao.edu/facilities/vla/proposing/configpropdeadlines"
target="_blank" style="color:blue">
Deadline: ~Feb. 1 & Aug. 1 </a>
<dd>----
<a href="https://obs.vla.nrao.edu/ect/" target="_blank">Exposure Calculator</a>;
<a href="http://www.vla.nrao.edu/cgi-bin/oplogs.cgi" target="_blank">Obs. Log</a>;
<a href="https://science.nrao.edu/facilities/vla/docs/manuals/obsguide/set-up" target="_blank">8/3bit setups</a>;
<a href="https://archive.nrao.edu/archive/advquery.jsp" target="_blank">Arcival data</a>;
<a href="https://help.nrao.edu/" target="_blank">HelpDesk</a>;
<a href="https://library.nrao.edu/proposals" target="_blank">Proposal Finding</a>;
<a href="https://my.nrao.edu/nrao-2.0/secure/Home.htm" target="_blank">my.nrao.edu</a>;
</dd>
</li>
<li>
<a href="https://www.iram-institute.org/EN/content-page-55-7-55-0-0-0.html" target="_blank"
style="color:blue">
<strong>IRAM30m+NOEMA: </strong> </a>;
~70-375GHz;
<a href="https://www.iram-institute.org/EN/content-page-57-7-57-0-0-0.html" target="_blank"
style="color:blue">Deadline: ~Mar. 15& Sep. 15</a>
<dd>----
<a href="https://oms.iram.fr/tse/#noema" target="_blank">Exposure Calculator</a>;
<a href="https://www.iram.fr/IRAMFR/GILDAS/doc/html/pdbi-cookbook-html/pdbi-cookbook.html" target="_blank">Calibration</a>;
<a href="https://www.iram.fr/~gildas/demos/astro/demo-astro-noema.pdf" target="_blank">NOEMA Setups</a>;
<a href="https://www.iram.fr/GENERAL/calls/w17/NOEMACapabilities.pdf" target="_blank">Manual</a>;
<a href="https://www.iram-institute.org/EN/content-page-96-7-56-96-0-0.html" target="_blank">Documentation</a>;
<a href="http://www.iram.es/IRAMES/documents/ncs30mPako/Current/PDF/pako.pdf" target="_blank">Obs. Script Prep.</a>;
</dd>
</li>
<li>
<a href="https://www.apex-telescope.org/ns/" target="_blank"
style="color:blue">
<strong>The APEX 12m: </strong></a>;
~157-850 GHz;
<a href="https://www.mpifr-bonn.mpg.de/en/apex/proposals" target="_blank"
style="color:blue">Deadline: ~Mar. 8 & Aug. 27</a>
<dd>----
<a href="https://www.apex-telescope.org/heterodyne/calculator/ns/index.php" target="_blank">Exposure Calculator</a>;
<a href="https://www.apex-telescope.org/ns/instruments/" target="_blank">Instruments</a>;
<a href="https://www.apex-telescope.org/ns/instrument-setup-tool/" target="_blank">Setups</a>;
</dd>
</li>
<li>
<a href="https://eff100mwiki.mpifr-bonn.mpg.de/doku.php?id=start" target="_blank"
style="color:blue">
<strong>The Effelsberg 100m: </strong></a>;
0.3-95 GHz;
<a href="https://www.mpifr-bonn.mpg.de/247288/Call-for-proposals" target="_blank"
style="color:blue">Deadline: ~Feb. 5, Jun. 5 & Oct. 5<a>
<dd>----
<a href="https://eff100mwiki.mpifr-bonn.mpg.de/doku.php?id=schedules" target="_blank">Obs. Schedules</a>;
<a href="https://northstar.mpifr-bonn.mpg.de/useradministration/user/forward.do?forward=https://northstar.mpifr-bonn.mpg.de:443/proposal/setUpProposalList.do"
target="_blank">Proposal submission</a>;
<a href="https://mattermost.mpifr-bonn.mpg.de/eff100mobs/channels/" target="_blank">Mattermost</a>;
<a href="https://www.wetteronline.de/regenradar/bad-muenstereifel/effelsberg?wrg=x0651&wrh=true&wrn=RWZmZWxzYmVyZw&wry=50.52,6.87&wro=true"
target="_blank">Weather</a>;</dd>
<dd>----
<a href="http://134.104.18.86/EffObs/Main.html" target="_blank">Telescope State</a>;
<a href="https://eff100mwiki.mpifr-bonn.mpg.de/doku.php?id=information_for_astronomers:user_guide:obsinp#spectroscopic_observations_-_setupspec"
target="_blank">Spectroscopic Obs. setup</a>;
<a href="mailto:[email protected]"
target="_blank">Disposition Email</a>;
<a href="https://www.mpifr-bonn.mpg.de/effelsberg/visitors/timetravelwalk?page=2"
target="_blank">Time travel trail</a>;
</dd>
</li>
<li>
<a href="https://www.apex-telescope.org/ns/" target="_blank"
style="color:blue">
<strong>ALMA: </strong></a>;
~83-950 GHz; 12m*43, 7m*12;
<a href="https://almascience.eso.org/proposing/call-for-proposals" target="_blank"
style="color:blue">Deadline: ~Apr. 20 </a>
<dd>----
<a href="https://almascience.eso.org/proposing/sensitivity-calculator" target="_blank">Exposure Calculator</a>;
<a href="https://help.almascience.org/" target="_blank">HelpDesk</a>;
<a href="https://science.nrao.edu/facilities/alma/naasc-workshops/nrao-cd-fit/CASAIntro.pdf" target="_blank">CASAIntro</a>;
</dd>
</li>
</ul>
<p>
<b>Galactic plane surveys</b>
<ul>
<li> <a style="color:blue"> <strong>HII regions Survey:</strong></a>
<dd>----<a href="https://ui.adsabs.harvard.edu/abs/2021ApJS..254...36W/abstract" target="_blank">
<u>SHRDS</u> </a>
; RRL+Cont.; 4-10 GHz; 90"@8GHz; 30mJy/beam(Cont.); 0.75mJy/beam@5km/s(RRL); GLON=[259,346]; GLAT=[-4,4]; </dd>
<dd>----<a href="https://ui.adsabs.harvard.edu/abs/2021ApJS..254...28A/abstract" target="_blank">
<u>GDIGS</u> </a>
; RRL; 4-8GHz; 2.6'; 5mJy/[email protected]/s(RRL); GLON=[-5,32.3]; GLAT=[-0.5,0.5]; </dd>
<dd>----<a href="https://ui.adsabs.harvard.edu/abs/2011ApJS..194...32A/abstract" target="_blank">
<u>GBT HIIs survey</u> </a>
; RRL; 4-8GHz; 82"; 1mJy/[email protected]/s(RRL); GLON=[343,67]; GLAT=[-1,1]; </dd>
<dd>----<a href="https://ui.adsabs.harvard.edu/abs/2020ApJS..248....3C/abstract" target="_blank">
<u>TianMa RRL survey</u> </a>
; RRL; 4-6GHz; 3'-4'; 7mK@7RRL(3σ); 1mJy/[email protected]/s(RRL); Targets selected; </dd>
</li>
<li> <a style="color:blue"> <strong>IPHASS:</strong></a>
<a href="https://www.iphas.org/" target="_blank">
<u>The INT Photometric Hα Survey of the Northern Galactic Plane</u> </a>
<dd>---- Ha; 1.7"; 20mag(5σ); GLON=[210,30]; GLAT=[-5,5]; </dd>
</li>
<li> <a style="color:blue"> <strong>UVEX:</strong></a>
<a href="https://www.astro.ru.nl/uvex/" target="_blank">
<u>The UV Excess Survey (UVEX) of the Northern Galactic Plane</u> </a>
<dd>----U,g,r, He I 5875; 1.1"; 21-22mag(5σ); GLON=[215,30]; GLAT=[-5,5]; </dd>
</li>
<li> <a style="color:blue"> <strong>VPHAS+:</strong></a>
<a href="https://www.vphasplus.org/" target="_blank">
<u>The INT Photometric Hα Survey of the Northern Galactic Plane</u> </a>
<dd>---- Ha; 0.8"; 21mag(5σ); GLON=[210,35]&GLAT=[-5,5];GLON=[350,10]&GLAT=[-10,10]
</dd>
</li>
<li>
<a style="color:blue"> <strong>UKIDSS:</strong></a>
<a href="https://www.nottingham.ac.uk/astronomy/UDS/" target="_blank">
<u> the UKIRT Infrared Deep Sky Survey</u> </a>
<dd>----JHK; 0.8"; 18mag(5σ); GLON=[-2,230]; GLAT=[-2,2]; </dd>
</li>
<li>
<a style="color:blue"> <strong>VVV:</strong></a>
<a href="https://vvvsurvey.org" target="_blank">
<u>Vista Variables in the Via Lactea </u> </a>;
<a href="horus.roe.ac.uk/vsa/" target="_blank">
<u>Vista Science Archive </u> </a>
<dd>----ZYJHK; 0.8"; 18mag(1epoch); GLON=[-65,10]; GLAT=[-2,2]; </dd>
</li>
<li>
<a style="color:blue"> <strong>GLIMPSE:</strong></a>
<a href="http://www.astro.wisc.edu/glimpse/glimpsedata.html" target="_blank">
<u>Galactic Legacy Infrared Mid-Plane Survey Extraordinaire </u> </a>;
<dd>----4-8μm; 2"; 0.4mJy(1σ); GLON=[-65,65]; GLAT=[-1,1];
<a href="https://irsa.ipac.caltech.edu/data/SPITZER/GLIMPSE/images/" target="_blank"><u>Data</u> </a></dd>
</li>
<li>
<a style="color:blue"> <strong>MSX:</strong></a>
<a href="https://irsa.ipac.caltech.edu/Missions/msx.html" target="_blank">
<u>Midcourse Space Experiment</u> </a>;
<dd>----8-21μm; 18"; ~100mJy; GLON=[0,360]; GLAT=[-5,5];
<a href="https://irsa.ipac.caltech.edu/ibe/data/msx/" target="_blank"><u>Data</u> </a></dd>
</li>
<li>
<a style="color:blue"> <strong>WISE:</strong></a>
<a href="https://wise2.ipac.caltech.edu/docs/release/allsky/#:~:text=Sky%20Coverage%20Statistics,
-Figure%201%20%2D%20Equatorial&text=WISE%20imaged%20the%20entire%20sky,
during%20its%20full%20cryogenic%20survey.
&text=The%20peak%20near%2012%20coverages,coverage%20part%20of%20the%20sky."target="_blank">
<u>Wide-field Infrared Survey Explorer</u> </a>;
<dd>----3.4-22μm; 6-12"; 8-17mag(5σ)/0.08-6mJy(5σ); All Sky;
<a href="https://irsa.ipac.caltech.edu/ibe/data/wise/" target="_blank"><u>Data</u> </a></dd>
</li>
<li>
<a style="color:blue"> <strong>MIPSGAL:</strong></a>
<a href="http://mipsgal.ipac.caltech.edu/" target="_blank">
<u>Multiband Infrared Photometer for Spitzer (MIPS)</u> </a>;
<dd>----24,70μm; 6", 18"; 0.3mJy,15mJy(1σ); GLON=[-65,65]; GLAT=[-1,1];
<a href="https://irsa.ipac.caltech.edu/data/SPITZER/MIPSGAL/images/" target="_blank"><u>Data</u> </a>
</dd>
</li>
<li>
<a style="color:blue"> <strong>AKARI:</strong></a>
<a href="https://irsa.ipac.caltech.edu/data/AKARI/" target="_blank">
<u>The AKARI far-infrared all-sky survey</u></a>;
<dd>----50-200μm; 30"-50"; 0.55-6.3Jy(5σ); All sky;
<a href="https://irsa.ipac.caltech.edu/ibe/data/akari/akari_images/images/" target="_blank"><u>Data</u> </a>
</dd>
</li>
<li>
<a style="color:blue"> <strong>Hi-GAL:</strong></a>
<a href="https://www.ipac.caltech.edu/project/higal" target="_blank">
<u>Herschel infrared Galactic Plane Survey (Hi-GAL)</u></a>
<dd>----70-500μm; 10"-34"; 20-30mJy(1σ); All sky, GLAT=[-1,1]; </dd>
</li>
<li>
<a style="color:blue"> <strong>JPS:</strong></a>
<a href="https://www.eaobservatory.org/jcmt/science/legacy-survey/jps/" target="_blank">
<u>JCMT Galactic Plane Survey</u></a>
<dd>----450,850μm; 8"-14"; 50-80mJy(1σ); GLON=[10,65]&[102.5,141.5], GLAT=[-1,1]; </dd>
</li>
<li>
<a style="color:blue"> <strong>ATLASGAL:</strong></a>
<a href="https://www3.mpifr-bonn.mpg.de/div/atlasgal/" target="_blank">
<u>APEX Telescope Large Area Survey of the Galaxy</u></a>
<dd>----850μm; 19"; 50mJy(1σ); GLON=[-60,60], GLAT=[-1.5,1.5]; </dd>
</li>
<li>
<a style="color:blue"> <strong>BOLOCAM:</strong></a>
<a href="https://irsa.ipac.caltech.edu/Missions/bolocam.html" target="_blank">
<u>Bolocam Galactic Plane Survey</u></a>
<dd>----110μm; 33"; 30-60mJy(1σ); GLON=[-10,90], GLAT=[-0.5,0.5];
<a href="https://irsa.ipac.caltech.edu/ibe/data/bolocam/</li>" target="_blank">
<u>Data</u></a>
</dd>
</li>
<li>
<a style="color:blue"> <strong>GRS:</strong></a>
<a href="https://www.bu.edu/galacticring/new_index.htm" target="_blank">
<u>Galactic Ring Survey</u></a>
<dd>----13CO; 46"@0.21km/s; 0.13K(1σ); GLON=[18,56], GLAT=[-1,1];
</dd>
</li>
<li>
<a style="color:blue"> <strong>CHIMPS:</strong></a>
<a href="https://www.eaobservatory.org/jcmt/science/large-programs/chimps2/" target="_blank">
<u>The 13CO/C18O Heterodyne Inner Milky Way Plane Survey</u></a>
<dd>----13CO,C18O; 15"@0.5km/s; 0.6K(1σ); GLON=[28,46]&[-5,28], GLAT=[-0.5,0.5];
</dd>
</li>
<li>
<a style="color:blue"> <strong>SEDIGISM:</strong></a>
<a href="https://sedigism.mpifr-bonn.mpg.de/index.html" target="_blank">
<u>Structure, Excitation and Dynamics of the Inner Galactic Interstellar Medium</u></a>
<dd>----13CO,C18O; 30"@0.25km/s; 0.8K(1σ); GLON=[-60,18], GLAT=[-0.5,0.5];
</dd>
</li>
<li>
<a style="color:blue"> <strong>MMB:</strong></a>
<a href="https://ui.adsabs.harvard.edu/abs/2009MNRAS.392..783G/abstract" target="_blank">
<u>The 6-GHz multibeam maser survey</u></a>
<dd>----6.7GHz Methonal maser; 192"; 0.2Jy(1σ); GLON=[-180,60], GLAT=[-2,2];
</dd>
</li>
<li>
<a style="color:blue"> <strong>HOPS:</strong></a>
<a href="https://ui.adsabs.harvard.edu/abs/2011MNRAS.416.1764W/abstract" target="_blank">
<u>The H2O Southern Galactic Plane Survey</u></a>
<dd>----22GHz Water maser; 132"; 1-2Jy; GLON=[-70,30], GLAT=[-0.5,0.5];
</dd>
</li>
<li>
<a style="color:blue"> <strong>OH:</strong></a>
<a href="https://ui.adsabs.harvard.edu/abs/2001A%26A...366..481S/abstract" target="_blank">
<u>The ATCA/VLA OH 1612 MHz survey</u></a>
<dd>----1.6GHz OH maser; ~10"@1km/s; 25mJy(1σ); GLON=[5,45], GLAT=[-3,3];
</dd>
</li>
<li>
<a style="color:blue"> <strong>CORNISH:</strong></a>
<a href="https://cornish.leeds.ac.uk/public/index.php" target="_blank">
<u>the Co-Ordinated Radio 'N' Infrared Survey for High-mass star formation</u></a>
<dd>----5GHz; 1.5"; 0.3mJy(1σ); VLA; GLON=[10,65], GLAT=[-1,1];
</dd>
</li>
<li>
<a style="color:blue"> <strong>THOR:</strong></a>
<a href="https://www2.mpia-hd.mpg.de/thor/Overview.html" target="_blank">
<u>The HI/OH/Recombination line survey of the Milky Way </u></a>
<dd>----1-2GHz; 15-20"; 0.3mJy(1σ); VLA; GLON=[14.5,67.4], GLAT=[-1.25,1.25];
</dd>
</li>
<li>
<a style="color:blue"> <strong>S/V/CGPS:</strong></a>
<a href="http://cade.irap.omp.eu/dokuwiki/doku.php?id=sgps" target="_blank">
<u>VLA/Southern/Canadian Galactic Plane Survey </u></a>
<dd>----21cm HI; 60"@~1.3km/s; 2-3K; GLON=[-107,147], GLAT=[-1.3,1.3];
</dd>
</li>
<li>
<a style="color:blue"> <strong>MAGPIS:</strong></a>
<a href="https://third.ucllnl.org/gps/" target="_blank">
<u>The Multi-Array Galactic Plane Imaging Survey </u></a>
<dd>----6,20cm; 5"; 0.2,0.9mJy(1σ); VLA; GLON=[5,48], GLAT=[-0.8,0.8];
</dd>
</li>
<li>
<a style="color:blue"> <strong>MGPS-2:</strong></a>
<a href="https://ui.adsabs.harvard.edu/abs/2007MNRAS.382..382M/abstract" target="_blank">
<u>The second epoch Molonglo Galactic Plane Survey</u></a>
<dd>----843 MHz; 45"; 1-2mJy(1σ); GLON=[245,365], GLAT=[-10,10];
</dd>
</li>
<li>
<a style="color:blue"> <strong>GASKAP:</strong></a>
<a href="https://gaskap.anu.edu.au/" target="_blank">
<u>The Galactic ASKAP Survey </u></a>
<dd>----HI,OH; 30"@1km/s; 1K; GLON=[167,79], GLAT=[-2.5,2.5];
</dd>
</li>
<li>
<a style="color:blue"> <strong>GLOSTAR:</strong></a>
<a href="https://glostar.mpifr-bonn.mpg.de/glostar/" target="_blank">
<u>A global view on star formation: The GLOSTAR Galactic plane survey </u></a>
<dd>----5GHz; Cont.+Lines; 1.5"; ~0.08mJy(1σ); VLA+Effelsberg; GLON=[-2,60], GLAT=[-1,1];
</dd>
</li>
<li>
<a style="color:blue"> <strong>VLASS:</strong></a>
<a href="https://science.nrao.edu/vlass" target="_blank">
<u>The Very Large Array Sky Survey </u></a>
<dd>----2-4GHz; 2"; ~0.08mJy(1σ); VLA; All sky; δ > -40 deg;
</dd>
</li
</ul>
</p>
<p>
<b> Learning Resources</b>
<ul>
<li>
<a href="https://science.nrao.edu/opportunities/courses/era" target="_blank">
<strong>Essential Radio Astronomy</strong>
</a>
</li>
<li>
<strong>Fundementals of interferometry- </strong>
<a href="https://github.com/astronomical-data-processing/fundamentals_of_interferometry_chinese"
target="_blank">Chinese Version</a>;
</li>
<li>
<strong> VLA Tutorials- </strong>
<a href="https://casaguides.nrao.edu/index.php?title=Karl_G._Jansky_VLA_Tutorials"
target="_blank">JVLA-CASA</a>;
</li>
<li>
<strong> Interferometer Course- </strong>
<a href="https://web.njit.edu/~gary/728/"
target="_blank">Synthesis by Prof. Dale E. Gary</a>;
</li>
<li>
<strong> Lectures for Imaging Workshop- </strong>
<a href="http://www.aoc.nrao.edu/events/synthesis/2010/lectures10.html"
target="_blank">2010 Workshop</a>;
</li>
<li>
<strong> Bonn Uni. training- </strong>
<a href="https://astro.uni-bonn.de/ARC/"
target="_blank"> Main Page</a>;
</li>
<li>
<strong> 2020 ALMA training- </strong>
<a href="https://almascience.eso.org/tools/eu-arc-network/i-train"
target="_blank">Main Page</a>;
<a href="https://www.youtube.com/watch?v=TqqI8IhvyPE&feature=youtu.be"
target="_blank">YouToBe Video</a>;
<a href="https://almascience.nrao.edu/asax/"
target="_blank">Archive data</a>;
</li>
<li>
<strong> Principles of interferometry- </strong>
<a href="http://www.jb.man.ac.uk/~njj/int.pdf"
target="_blank">Neal Jackson</a>;
</li>
<li>
<strong> Python for Astronomy- </strong>
<a href="https://hebl.china-vo.org/course/PIA2016/"
target="_blank">NAOC tutorials</a>;
<a href="http://www.pythondoc.com/pythontutorial27/appetite.html"
target="_blank">Python Chinese</a>;
<a href="http://python4astronomers.github.io/"
target="_blank">python4astronomer</a>;
<a href="http://www.astropython.org/"
target="_blank">astropython.org</a>;
<a href="http://python4mpia.github.io/index.html"
target="_blank">python4mpia</a>;
<a href="https://www.astropython.org/tutorials/practical-python-for-astronomers/"
target="_blank">practical python tutorials</a>;
<a href="http://astrofrog.github.io/py4sci/"
target="_blank">python4scientist</a>;
</li>
<li>
<strong> Software for Astronomy- </strong>
<a href="https://glueviz.org/install.html"
target="_blank">glue for 3d data</a>;
<a href="https://ascl.net/1110.008"
target="_blank">Glnemo2 for 3d data</a>;
<a href="https://vaex.io/docs/index.html"
target="_blank">Vaex-visualize and explore big tabular datasets</a>;
<a href="http://www.star.bris.ac.uk/~mbt/topcat/"
target="_blank">TOPCAT-tables</a>;
<a href="https://datalab.noirlab.edu/about.php"
target="_blank">Astro Data Lab-exploration and analysis of the large datasets</a>;
<a href="https://aladin.u-strasbg.fr/AladinLite/"
target="_blank">Aladin lite-visualization of a sky region</a>;
<a href="https://open.esa.int/esasky/"
target="_blank">ESASky-visualise and download data</a>;
<a href="https://yt-project.org/"
target="_blank">yt-analyzing and visualizing volumetric data</a>;
<a href="https://sites.google.com/cfa.harvard.edu/saoimageds9"
target="_blank">ds9-astronomical image display</a>;
<a href="https://archive.stsci.edu/"
target="_blank">Mikulski Archive for Space Telescopes-
optical, ultraviolet, and near-infrared</a>;
<a href="http://www.worldwidetelescope.org/home/"
target="_blank">AAS WorldWide Telescope-
showcasing astronomical data and knowledge</a>;
<a href="https://cartavis.org/"
target="_blank">CARTA-
image visualization and analysis tool for ALMA, VLA, and SKA</a>;
<a href="https://www.openspaceproject.com/"
target="_blank">OpenSpace-
visualize the known universe and </a>;
</li>
</ul>
</p>
<p>
<b> Useful links</b>
<ul>
<li>
<strong> Herbig–Haro objects- </strong>
<a href="https://commons.wikimedia.org/wiki/Category:Herbig%E2%80%93Haro_objects"
target="_blank">Category</a>;
</li>
<li>
<strong> Outflows and Jets - </strong>
<a href="https://www2.mpia-hd.mpg.de/homes/beuther/lecture_ss11.html"
target="_blank">Lectures 2011</a>;
</li>
<li>
<strong> Astronomy and Machine Learning - </strong>
<a href="http://www.astroml.org"
target="_blank">AstroML</a>;
</li>
<li>
<strong> Ebook Download - </strong>
<a href="http://libgen.rs"
target="_blank">libgen</a>;
<a href="https://link.springer.com"
target="_blank">springer</a>;
</li>
<li>
<strong> HASH PNe - </strong>
<a href="http://202.189.117.101:8999/gpne/index.php"
target="_blank">Log in; ayy_astro; ps1</a>;
</li>
<li>
<strong> Science Cartoon - </strong>
<a href="http://www.sciencecartoonsplus.com/gallery/astronomy/galastro2b.php"
target="_blank">Astronomy</a>;
</li>
<li>
<strong> AAS Job - </strong>
<a href="https://jobregister.aas.org"
target="_blank">Home Page</a>;
</li>
<li>
<strong> ATNF.CSIRO - </strong>
<a href="https://www.atnf.csiro.au/people/Tobias.Westmeier/tools_hihelpers.php"
target="_blank">Useful equations for radio astronomy</a>;
<a href="https://www.atnf.csiro.au/people/Keith.Bannister/senscalc/"
target="_blank">Sensitivity calculation</a>;
</li>
<li>
<strong> SNRcat - </strong>
<a href="http://snrcat.physics.umanitoba.ca"
target="_blank">catalog</a>;
</li>
<li>
<strong> Astronomical Coordinate Calculator - </strong>
<a href="http://www.robertmartinayers.org/tools/coordinates.html"
target="_blank">Coordinate Conversion</a>;
</li>
<li>
<strong> SKA - </strong>
<a href="https://www.skatelescope.org"
target="_blank">Main Page</a>;
</li>
<li>
<strong> AIPS Forum - </strong>
<a href="http://aipsforum.blogspot.com"
target="_blank">aipsforum</a>;
</li>
<li>
<strong> AstroLeaks- </strong>
<a href="http://astroleaks.lamost.org/2011/05/04/radiofaq1/"
target="_blank">astroleaks.org</a>;
</li>
<li>
<strong>AstroSpeakers- </strong>
<a href="https://www.astrospeakers.org/" target="_blank">astrospeakers.org</a>;
</li>
<li>
<strong>Astronomers' Webpage- </strong>
<a href="https://www.sites.google.com/site/mrpaulhancock/home" target="_blank">
Dr. Paul Hancock</a>;
<a href="http://web.science.mq.edu.au/~cpurcell/public/index.php" target="_blank">
Dr. Cormac R. Purcell</a>;
<a href="https://gongyan2444.github.io/links.html" target="_blank">
Dr. Yan Gong</a>;
<a href="https://community.wvu.edu/~ldanderson/" target="_blank">
Dr. Loren Anderson</a>;
<a href="https://scholar.harvard.edu/agoodman" target="_blank">
Dr. Alyssa A. Goodman</a>;
<a href="https://yalishao.github.io/" target="_blank">
Dr. Yali Shao</a>;
<a href="https://www.thomasrobitaille.com/index.html" target="_blank">
Dr. Thomas Robitaille</a>;
</li>
<li>
<strong>NRAO- </strong>
<a href="https://splatalogue.online/" target="_blank">Splatalogue</a>;
<a href="https://public.nrao.edu/shop/" target="_blank">Shop</a>;
</li>
<li>
<strong>Astrophysics Source Code Library- </strong>
<a href="https://ascl.net/" target="_blank">ASCL.net</a>;
</li>
<li><strong>Source extraction tool- </strong>
<a href="https://github.com/PaulHancock/Aegean" target="_blank">AEGEAN</a>;
<a href="http://blobcat.sourceforge.net/" target="_blank">BLOBCAT</a>;
</li>
<li> <strong>3D model for datacube- </strong>
<a href="https://editeodoro.github.io/Bbarolo/downloads/examples/" target="_blank">Bbarolo</a>
</li>
<li> <strong>MySQL- </strong>
<a href="https://wiki.jikexueyuan.com/project/mysql-21-minutes/overview.html" target="_blank">Link1</a>;
<a href="https://wiki.jikexueyuan.com/project/mysql/" target="_blank">Link2</a>;
<a href="https://www.tutorialspoint.com/execute_sql_online.php" target="_blank">Online Edit1</a>;
<a href="https://developer.aliyun.com/article/97626" target="_blank">Online Edit2</a>;
</li>
<li>
<strong>Find peak width- </strong>
<a href="https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.peak_widths.html"
target="_blank">Scipy</a>;
</li>
<li> <strong>Surveys data downlad- </strong>
<a href="https://irsa.ipac.caltech.edu/ibe/data/"
target="_blank">Caltech data web</a>;
</li>
<li>
<strong>Set distinct colors- </strong>
<a href="https://pypi.org/project/distinctipy/"
target="_blank">distinctipy</a>;
</li>
<li>
<strong>GILDAS- </strong>
<a href="https://www.iram.fr/IRAMFR/GILDAS/">Home page</a>
</li>
<li>
<strong>CLASS- </strong>
<a href="https://www.iram.fr/IRAMFR/GILDAS/doc/pdf/class.pdf" target="_blank">doc.org</a>
</li>
<li>
<strong>ArXiv- </strong>
<a href="http://www.arxiv.org" target="_blank">arxiv.org</a>
</li>
<li>
<strong>NASA- </strong>
<a href="http://www.nasa.gov" target="_blank">nasa.gov</a>;
<a href="https://apod.nasa.gov/apod/archivepix.html" target="_blank">
Astronomy Picture of the Day</a>;
</li>
</ul>
</p>
</article>
<!-- Here is the "Research" card. -->
<article id="research">
<h2 class="major">Research</h2>
<p style="text-align:justify">
<!-- A <br> tag puts in a break so that the text that follows it displays on
the next line.
-->
<b style="font-size:24px;text-align:center"> Project I: Molecular outflows</b>
<br>
The formation processes of massive stars are unclear.
Molecular outflows are common in the massive star formation,
which is a usefull tool to understand the formation process of high-mass star.
Outflows can be identified as CO lines showing high-velocity wings,
with two spatially separated lobes that are respectively blue and red velocity shifted.
<li style="text-align:justify">
We identified a sample of ~1500 outflows by using the continuum data from
<a href="https://atlasgal.mpifr-bonn.mpg.de/cgi-bin/ATLASGAL_DATABASE.cgi"
target="_blank">
<u>ATLASGAL</u></a> and the CO data from Galactic plane surveys:
<a href="https://ui.adsabs.harvard.edu/abs/2016MNRAS.456.2885R/abstract"
target="_blank">
<u>CHIMPS</u></a>
and
<a href="https://sedigism.mpifr-bonn.mpg.de/index.html"
target="_blank">
<u>SEDIGISM</u></a>.
Systematically discuss when outflow switches on, how it evolves,
and what the impact on the matal clumps,
details see
<a href="https://ui.adsabs.harvard.edu/abs/2018ApJS..235....3Y/abstract"
target="_blank" style="color:blue">
<u>Yang et al. 2018</u></a>.
</li>
</p>
<! -- ProjectI picture slide show start-->
<!-- slide show use carousel; include head: /link-4.1/css/bootstrap.min.css; script: jquery.min.js bootstrap.min.js -->
<div class="container" style="width:600px">
<div id="myCarousel" class="carousel slide" data-ride="carousel"
style="width:600px;float:right">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">