-
Notifications
You must be signed in to change notification settings - Fork 3
/
users.html
916 lines (645 loc) · 88.3 KB
/
users.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
<!DOCTYPE html>
<!--[if IEMobile 7]><html class="iem7" lang="en" dir="ltr"><![endif]-->
<!--[if lte IE 6]><html class="lt-ie9 lt-ie8 lt-ie7" lang="en" dir="ltr"><![endif]-->
<!--[if (IE 7)&(!IEMobile)]><html class="lt-ie9 lt-ie8" lang="en" dir="ltr"><![endif]-->
<!--[if IE 8]><html class="lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--><html lang="en" dir="ltr"><!--<![endif]-->
<head>
<meta charset="utf-8" />
<!--<base href="/users" />-->
<link rel="shortcut icon" href="img/geos-chem-logo-favicon.png" />
<link rel="canonical" href="users.html" />
<link rel="shortlink" href="users.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="GEOS-Chem Users" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="GEOS-Chem Users" />
<meta name="twitter:image" content="https://geos-chem.org" />
<title>GEOS-Chem Users</title>
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link type="text/css" rel="stylesheet" href="css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4%EF%B9%96m=1675397288.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_1kR8T1_c-l5pBT6ZwbDT7BFda-4fyqW9Jjum29_2IY8%EF%B9%96m=1675397312.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_YnlUIvHP13qgpYEqubzE8JyDwlSxUnVibfnVkSoSDb0%EF%B9%96m=1675397273.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_Ku-3OcT9qU9h7dnGig5e23q6EVryY8orK4wzVDxsweE%EF%B9%96m=1675397367.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_vprtFTrWyg23GbY50_zJZHWGYMNfS8vsrRS26i4-ISk%EF%B9%96m=1675397406.css" media="screen" />
<link type="text/css" rel="stylesheet" href="css/css_dW-aNNrctRhQNc-KECjtQd0PxuW-h19IEum-TX2MeEk%EF%B9%96m=1675397301.css" media="print" />
<link type="text/css" rel="stylesheet" href="css/css_SH2Lx3Qprh0GZo_9xRp85U9NsWfkSXn_Bi-rJoMY1sw%EF%B9%96m=1675397273.css" media="screen" />
<link type="text/css" rel="stylesheet" href="css/css_uaIDKcYMUK5osSQXuirpr3ZleXtnnpBN-eiECm7N0M0%EF%B9%96m=1675397395.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/blue_sky.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/responsive.blue_sky.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/geos-chem.css" media="all"/>
<link type="text/css" rel="stylesheet" href="leaflet/leaflet.css" media="all">
<script type="text/javascript" src="dropdown-menu.js"></script>
<script type="text/javascript" src="leaflet/leaflet.js"></script>
<script type="text/javascript" src="leaflet/leaflet-color-markers.js"></script>
<!--[if lte IE 8]>
<script type="text/javascript">
var os_c = document.createElement;os_c('header');os_c('nav');os_c('section');os_c('article');os_c('aside');os_c('footer');os_c('hgroup');os_c('figure');
</script>
<![endif]-->
</head>
<body class="html not-front not-logged-in no-sidebars page-node page-node- page-node-1585687 node-type-page og-context og-context-node og-context-node-1585652 navbar-on">
<div id="skip-link">
<a href="#main-content" class="element-invisible element-focusable" tabindex="1">Skip to main content</a>
</div>
<div id="page_wrap" class="page_wrap">
<div id="page" class="container page header-main content-top footer-none">
<div id="page-wrapper">
<!--header regions beg-->
<header id="header" class="clearfix" role="banner">
<div id="header-container">
<div id="header-panels" class="at-panel gpanel panel-display three-col clearfix">
<div class="region region-header-second"><div class="region-inner clearfix">
<section id="block-boxes-1630413211" class="block block-boxes block-boxes-os_boxes_html" module="boxes" delta="1630413211">
<div class="block-inner clearfix">
<h2 class="block-title" ng-non-bindable="">Site-Logo</h2>
<div class="block-content content" ng-non-bindable="">
<div id='boxes-box-1630413211' class='boxes-box'>
<div class="boxes-box-content">
<p style="text-align:center"><a href="index.html" title=""><img alt="Welcome to the GEOS-Chem website" src="img/geos-chem-logo.png" style="width:420px" /></a></p>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</header>
<!--header regions end-->
<!--main menu region beg-->
<div id="menu-bar" class="nav region-menu-bar clearfix">
<nav id="block-os-primary-menu" class="block block-os no-title menu-wrapper menu-bar-wrapper clearfix" module="os" delta="primary-menu">
<script>inlineDropDownMenu();</script>
</nav>
</div>
<!--main menu region end-->
<div id="columns" class="clearfix">
<div class="hg-container">
<div id="content-column" role="main">
<div class="content-inner"><a name="main-content"></a>
<header id="main-content-header"><a name="main-content"></a>
<a name="main-content"></a>
<h1 id="page-title" ng-non-bindable="">GEOS-Chem Users</h1>
</header>
<!--front panel regions beg-->
<div id="content-panels" class="at-panel gpanel panel-display content clearfix">
<div class="region region-content-top">
<div class="region-inner clearfix">
<div id="block-os-pages-main-content" class="block block-os-pages no-title" module="os_pages" delta="main_content">
<div class="block-inner clearfix">
<div class="block-content content" ng-non-bindable="">
<article id="node-1585659" class="node node-page article clearfix" role="article">
<div class="node-content" ng-non-bindable="">
<div class="field field-name-body field-type-text-with-summary field-label-hidden view-mode-full">
<div class="field-items">
<div class="field-item even">
<p>
This page lists the GEOS-Chem user groups with GEOS-Chem and provides links to groups research web sites for more information. This information is based on the list of <a href="https://geos-chem.readthedocs.io/en/stable/gcclassic-user-guide/rundir-registration.html#rundir-registration" target="_new">registered GEOS-Chem users</a> maintained by the GEOS-Chem Support Team.
</p>
<p align="center">
Last updated: June 2024
</p>
<!-- Map from original ACMG website -->
<p align="center">
<strong>Legend:
<span class="red">Support Team</span> |
<span class="green">Steering Committee</span> |
<span class="blue">Users</span></strong>
</p>
<div id="mapid" style="width:950px; height:633px; margin:auto; z-index: 1; margin-bottom: 2em; border: solid 4px #027ac6; border-radius: 1em;">
</div>
<script>
var mymap = L.map('mapid', {
center: [20, 15],
zoom: 2,
closePopupOnClick: true,
});
L.tileLayer('https://api.mapbox.com/styles/v1/mapbox/streets-v10/tiles/256/{z}/{x}/{y}?access_token=pk.eyJ1IjoibXN1bHByaXppbyIsImEiOiJjaXppc2ZoMm8wMWM2MndvZDh4ZW9kajdmIn0.OaaEoGU3JhNuY_ysmvmn4g', {
maxZoom: 18,
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
'Imagery © <a href="http://mapbox.com">Mapbox</a>',
id: 'mapbox.streets'
}).addTo(mymap);
// INSTITUTIONS AND GROUPS
// Template
//L.marker([], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University</strong><br><ul><li><a href='' target='_new'>Website</a></li></ul>");
// Academia Sinica
L.marker([25.04223125274816, 121.6161467245319], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Academia Sinica</strong><br>Taipei City, Taiwan</strong><ul><li><a href='https://rcec.sinica.edu.tw/index_en.php' target='_new'>Research Center for Environmental Changes</a></li></ul>");
// AIRCAS
L.marker([40.069025729587736, 116.27675096818587], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Aerospace Information Research Institute with the Chinese Academy of Sciences (AIRCAS)</strong><br>Beijing, China<ul><li><a href='http://english.aircas.ac.cn/' target='_new'>Website</a></li></ul>");
// Anhui Normal University
L.marker([31.358562073638076, 118.43872535215294], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Anhui Normal University</strong><br>Anhui, China<br><ul><li><a href='https://en.ahu.edu.cn/' target='_new'>Website</a></li></ul>");
// AstraZeneca
L.marker([39.78560328240991, -75.55036631833276], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>AstraZeneca</strong><br>Wilmington, DE, USA</strong><br><ul><li><a href='https://www.astrazeneca.com/' target='_new'>Website</a></li></ul>");
// Atmospheric and Environmental Research (AER)
L.marker([42.4470740448545, -71.228582651097], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Atmospheric and Environmental Research (AER)</strong><br>Lexington, Massachusetts, USA<ul><li><a href='https://www.aer.com' target='_new'>Website</a></li></ul>");
// Arizona State University
L.marker([33.423228888668525, -111.92846932676962], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Arizona State University</strong><br>Tempe, Arizona, USA<ul><li><a href='https://www.asu.edu/' target='_new'>Website</a></li></ul>");
// Asian Institute of Technology
L.marker([14.078499986291364, 100.61398255227519], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Asian Institute of Technology</strong><br>Pathum Thani, Thailand<ul><li><a href='https://ait.ac.th/' target='_new'>AIT</a></li><li><a href='http://www.airsompoke.com/' target='_new'</a></li>AIRSOMPOKE</ul>");
// Australia's Nuclear Science and Technology Organisation
L.marker([-34.05114097304017, 150.97882099522843], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Australia's Nuclear Science and Technology Organisation</strong><br>New South Wales, Australia<ul><li><a href='https://www.ansto.gov.au/' target='_new'>Website</a></li></ul>");
// Australian National University
L.marker([-35.28124451436539, 149.11824869527752], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Australian National University</strong><br>Canberra, Australia<ul><li><a href='https://nci.org.au/' target='_new'>National Computational Infrastructure (NCI)</a></li></ul>");
// Baylor University
L.marker([31.550075631159743, -97.11348635896569], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Baylor University</strong><br>Waco, Texas, USA</strong><ul><li><a href='https://environmentalscience.artsandsciences.baylor.edu/' target='_new'>Department of Environmental Science</a></li></ul>");
// Beihang University
L.marker([39.98437321269168, 116.34472502770663], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Beihang University</strong><br>Beijing, China</strong><ul><li><a href='https://ev.buaa.edu.cn/' target='_new'>Website</a></li></ul>");
// Beijing Institute of Technology
L.marker([39.960378594935094, 116.3123456816738], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Beijing Institute of Technology</strong><br>Beijing, China</strong><ul><li><a href='https://me-english.bit.edu.cn/research/researchc/statel/b125419.htm' target='_new'>National Engineering Research Center of Electric Vehicles</a></li></ul>");
// Beijing Normal University
L.marker([39.90369324494485, 116.40598138705279], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Beijing Normal University</strong><br>Beijing, China<ul><li><a href='https://env.bnu.edu.cn/' target='_new'>School of Environment</a></li></ul>");
// Beijing Technology and Business University
L.marker([39.9259712112483, 116.3135442732408], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Beijing Technology and Business University</strong><br>Beijing, China<ul><li><a href='https://www.btbu.edu.cn' target='_new'>Website</a></li></ul>");
// Beijing University of Chemical Technology
L.marker([39.970953999999985, 116.4212890343749], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Beijing University of Chemical Technology</strong><br>Beijing, China<ul><li><a href='https://enjwc.buct.edu.cn/main.htm' target='_new'>Website</a></li></ul>");
// Beijing University of Technology
L.marker([39.8713493012468, 116.47920532727059], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Beijing University of Technology</strong><br>Beijing, China<ul><li><a href='www.bjut.edu.c' target='_new'>Website</a></li></ul>");
// Boston College
L.marker([42.33554084017974, -71.16853741823365], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Boston College</strong><br>Boston, Massachusetts, USA<ul><li><a href='https://www.lucasbaogroup.com/' target='_new'>Lucas Bao Research Group</a></li></ul>");
// Brown University
L.marker([41.82678776062465, -71.40258038941788], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Brown University</strong><br>Providence, Rhode Island, USA<ul><li><a href='https://fox-kemper.com/' target='_new'>Fox-Kemper Research Group</a></li></ul>");
// California Air Resources Board
L.marker([38.57887108904111, -121.49544528407829], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>California Air Resources Board</strong><br>Sacramento, California, USA<ul><li><a href='https://ww2.arb.ca.gov/air-quality-planning-and-science-division' target='_new'>Website</a></li></ul>");
// Caltech
L.marker([34.13765314049858, -118.12527436670602], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>California Institute of Technology</strong><br>Pasadena, California, USA<ul><li><a href='https://wennberglab.caltech.edu/' target='_new'>Wennberg Lab</li></ul>");
// Carnegie-Mellon University
L.marker([40.44331696336732, -79.94247438546822], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Carnegie-Mellon University</strong><br>Pittsburgh, Pensylvania, USA<ul><li><a href='https://www.cmu.edu/particulate-matter/' target='_new'>Center for Atmospheric Particle Studies</a></li></ul>");
// Centre national de la recherche scientifique (CNRS)
L.marker([48.84788683608645, 2.265672584944778], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Centre Bational de la Recherche Scientifique (CNRS)</strong><br><ul><li><a href='https://www.ige-grenoble.fr/?lang=en' target='_new'>Institut des Geosciences de l'Environnement</a></li></ul>");
// Chalmers University
L.marker([57.68994963152913, 11.973864271150122], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chalmers University of Technology</strong><br>Gothenburg, Sweden<ul><li><a href='https://www.chalmers.se/en/' target='_new'>Website</a></li></ul>");
// Chengdu University of Information Technology
L.marker([30.649502744481232, 104.18813608142517], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chengdu University of Information Technology</strong><br>Chengdu, China<ul><li><a href='https://english.cuit.edu.cn/' target='_new'>Website</a></li></ul>");
// China Agricultural University
L.marker([30.56617200000001, 103.79899482859308], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>China Agricultural University</strong><br>Tongren, China<ul><li><a href='https://www.cau.edu.cn/' target='_new'>Website</a></li></ul>");
// China Meteorological Administration
L.marker([30.66200078204188, 104.01761327004851], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>China Meteorological Administration</strong><br>Chengdu, China<ul><li><a href='https://www.cma.gov.cn/' target='_new'>Website</a></li></ul>");
// China Three Gorges Corporation
L.marker([30.591277398684074, 104.07436835395757], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>China Three Gorges Corporation</strong><br>Chengdu, China<ul><li><a href='https://www.ctg.com.cn/ctgenglish/' target='_new'>Website</a></li></ul>");
// China University of Geosciences
L.marker([30.516052531832578, 114.40242461025662], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>China University of Geoscience</strong><br>Wuhan, China<ul><li><a href='https://en.cug.edu.cn/' target='_new'>Website</a></li></ul>");
// China University of Mining and Technology
L.marker([39.997986823978344, 116.34848428095418], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>China University of Mining and Technology</strong><br>Xuzhou, China<ul><li><a href='https://english.cumtb.edu.cn/' target='_new'>Website</a></li></ul>");
// Chinese Academy of Sciences - Beijing
L.marker([39.91069025568957, 116.33609344334978], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chinese Academy of Sciences</strong><br>Beijing, China<ul><li><a href='http://english.egi.cas.cn/' target='_new'>Institute of Ecology and Geography</a></li><li><a href='http://english.iap.cas.cn/' target='_new'>Institute of Atmospheric Physics</a></li><li><a href='http://english.ieecas.cn/' target='_new'>Institute of Earth Environment</a></li><li><a href='http://english.radi.cas.cn/' target-'_new'>Institute of Remote Sensing and Digital Earth</a></li><li><a href='http://english.gyig.cas.cn/' target='_new'>Institute of Geochemistry</a></li><li><a href='http://english.igsnrr.cas.cn/' target='_new'>Institute of Geographic Sciences and Natural Resources Research</a></li><li><a href='http://english.iap.cas.cn/rh/rd/200906/t20090626_9066.html' target='_new'>Laboratory of Middle Atmosphere and Global Environment Observation (LAGEO)</a></li><li><a href='http://english.iap.cas.cn/rh/rd/200906/t20090626_9066.html' target='_new'>Shanghai Advanced Research Institute</a></li><li><a href='http://english.aiofm.cas.cn/' target='_new'>Anhui Institute of Optics and Fine Mechanics</a></li></ul");
// Chinese Academy of Sciences - Shanghai
L.marker([31.182234080353936, 121.5887078091041], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chinese Academy of Sciences</strong><br>Shanghai, China<ul><li><a href='http://english.sari.cas.cn/' target='_new'>Shanghai Advanced Research Institute</a></li><li><a href='http://english.siom.cas.cn/' target='_new'>Shanghai Institute of Optics and Fine Mechanics</a></li></ul>");
// Chinese Research Academy of Environmental Sciences
L.marker([40.03649114252317, 116.41589671164121], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chinese Research Academy of Environmental Sciences</strong><br>Beijing, China<ul><li><a href='https://www.craes.cn/en/' target='_new'>Website</a></li></ul>");
// Chongqing Institute of Meteorological Sciences
L.marker([29.555700242810225, 106.53819106830466], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chongqing Institute of Meteorological Sciences</strong><br>Chongqing, China<ul><li><a href='https://www.cma.gov.cn/' target='_new'>Website</a></li></ul>");
// Chulalongkorn University
L.marker([13.738564564250868, 100.53323155379418], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chulalongkorn University</strong><br>Bangkok, Thailand<ul><li><a href='http://env.eng.chula.ac.th/' target='_new'>Department of Environmental Engineering</a></li></ul>");
// Chungnam National University
L.marker([36.368815211295875, 127.34684477003172], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chungnam National University</strong><br>Daejeon, South Korea<ul><li><a href='https://plus.cnu.ac.kr/html/en/' target='_new'>Website</a></li></ul>");
// CIEMAT
L.marker([40.45411784374525, -3.728946830556703], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>CIEMAT</strong><br>Madrid, Spain<ul><li><a href='https://www.ciemat.es/' target='_new'>Website</a></li></ul>");
// Columbia University
L.marker([40.807649140188744, -73.96214354099672], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Columbia University</strong><br>New York, New York, USA<ul><li><a href='http://mcneill-lab.org/' target='_new'>McNeill Group</a></li></ul>");
// Copenhagen University
L.marker([55.674497302, 12.570164386], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Copenhagen University</strong><br>Copenhagen, Denmark<ul><li><a href='https://ign.ku.dk/english/' target='_new'>Department of Geosciences and Natural Resource Management</a></li></ul>");
// Dalhousie University
L.marker([44.635497458, -63.58833098], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Dalhousie University</strong><br>Halifax, Nova Scotia, Canada<ul><li><a href='http://fizz.phys.dal.ca/~rachel.chang/' target='_new'>Atmospheric Processes and Composition Group</a></li></ul>");
// Delft University of Technology
L.marker([52.0021922, 4.3734709], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Delft University of Technology</strong><br>Delft, Netherlands</strong><ul><li><a href='https://www.tudelft.nl/lr/organisatie/afdelingen/control-and-operations/aircraft-noise-and-climate-effects-ance' target='_new'>Aircraft Noise and Climate Effects</a></li></ul>");
// Drexel University Philadelphia, Pennsylvania, USA
L.marker([39.95676068068872, -75.18947202421921], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Drexel University</strong><br>Philadelphia, Pennsylvania, USA<ul><li><a href='http://modelingair.com/' target='_new'>Atmospheric Modeling Group</a></li></ul>");
// Duke University Durham, North Carolina, USA (Prasad Kasibhatla)
L.marker([36.001555950439744, -78.93799256105186], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Duke University</strong><br>Durham, North Carolina, USA<ul><li><a href='http://nicholas.duke.edu/people/faculty/kasibhatla' target='_new'>Nicholas School of the Environment</a></li></ul>");
// East China Normal University
L.marker([31.22762110234175, 121.40679681028031], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>East China Normal University</strong><br>Shanghai, China<ul><li><a href='https://english.ecnu.edu.cn/' target='_new'>Website</a></li></ul>");
// EFPL
L.marker([46.51905567099026, 6.566703953248848], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>EFPL</strong><br>Lausanne, Switzerland<ul><li><a href='https://www.epfl.ch/labs/lapi/' target='_new'>Laboratory of atmospheric processes and their impacts (LAPI)</a></li></ul>");
// Electric Power Research Institute (EPRI)
L.marker([37.39705950928723, -122.14521947857237], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Electric Power Research Institute (EPRI)</strong><br>Palo Alto, California, USA<ul><li><a href='https://www.epri.com/' target='_new'>Website</a></li></ul>");
// Environment and Climate Change Canada
L.marker([43.781175069183135, -79.46941936822819], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Environment and Climate Change Canada</strong><br>Toronto, Ontario, Canada<ul><li><a href='https://www.canada.ca/en/environment-climate-change.html' target='_new'>Website</a></li></ul>");
// ETH Zurich
L.marker([47.413218, 8.5374914], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>ETH Zurich</strong><br>Zurich, Switzerland<ul><li><a href='https://iac.ethz.ch/group/atmospheric-chemistry.html' target='_new'>Atmospheric Chemistry</a></li><li><a href='https://iac.ethz.ch/group/atmospheric-physics.html' target='_new'>Atmospheric Physics</a></li></ul>");
// EWHA Womans University
L.marker([37.56185058534419, 126.94680123456921], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>EWHA Womans University</strong><br>Seoul, South Korea<ul><li><a href='https://www.ewha.ac.kr/ewhaen/index.do' target='_new'>Department of Environmental Engineering</a></li></ul>");
// ExxonMobil Research and Engineering, Corporate Strategic Research
L.marker([40.63635953798503, -74.86503770596059], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>ExxonMobil Research and Engineering</strong><br>Annandale, New Jersey, USA<ul><li><a href='https://corporate.exxonmobil.com/en/energy/research-and-development' target='_new'>Corporate Strategic Research</a></li></ul>");
// Fudan University
L.marker([31.297437997558845, 121.50363925807366], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Fudan University</strong><br>Shanghai Shi, China<ul><li><a href='https://aos.fudan.edu.cn/zzbsh/list.htm' target='_new'>Institute of Atmospheric Sciences</a></li><li><a href='https://environment.fudan.edu.cn/' target='_blank'>Department of Environmental Science and Engineering</a></li></ul>");
// Fujian Normal University
L.marker([26.035947082276685, 119.30624493910481], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Fujian Normal University</strong><br>Fujian, China<ul><li><a href='https://geo.fjnu.edu.cn/en/main.htm' target='_new'>School of Geographical Sciences</a></li></ul>");
// George Washington University
L.marker([38.900928, -77.047722], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>George Washington University</strong><br>Washington, DC, USA<ul><li><a href='https://blogs.gwu.edu/sanenberg/' target='_new'>Air, Climate, and Health Lab</a></li></ul>");
// Georgia Tech
L.marker([33.7756177609747, -84.39627427122511], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Georgia Tech</strong><br>Atlanta, GA, USA<ul><li><a href='https://kaisergroup.ce.gatech.edu/' target='_new'>Kaiser Group</li><li><a href='https://www.asdl.gatech.edu/' target='_blank'>Aerospace Systems Design Laboratory</a></li></ul>");
// Goa University
L.marker([15.457333725099007, 73.83538523771075], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Goa University</strong><br>Goa, India<ul><li><a href='https://www.unigoa.ac.in/' target='_new'>Website</a></li></ul>");
// Guizhou Minzu University
L.marker([26.46383337227194, 106.66973371164009], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Guizhou Minzu University</strong><br>Guizhou, China<ul><li><a href='https://www.gzmu.edu.cn/' target='_new'>Website</a></li></ul>");
// Guizhou University
L.marker([26.44248192693396, 106.67240128370068], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Guizhou University</strong><br>Guizhou, China<ul><li><a href='www.gzu.edu.cn' target='_new'>Website</a></li></ul>");
// Hampton University
L.marker([37.02283060621309, -76.33431738761512], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hampton University</strong><br>Hampton, Virginia, USA<ul><li><a href='https://home.hamptonu.edu/science/atmospheric-planetary-sciences/' target='_new'>Atmospheric and Planetary Sciences</a></li></ul>");
// Hanulsolution
L.marker([37.48242015775173, 126.89431322513212], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hanulsolution</strong><br>Seoul, South Korea<ul><li><a href='https://www.hanulsol.com' target='_new'>Website</a></li></ul>");
// Henan University
L.marker([34.80891216375169, 114.36973053916273], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Henan University</strong><br>Henan, China<ul><li><a href='https://www.henu.edu.cn/' target='_new'>Website</a></li></ul>");
// Hokkaido University
L.marker([43.07797729732813, 141.33996964349924], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hokkaido University</strong><br>Sapporo, Hokkaido, Japan<ul><li><a href='https://www.arc.hokudai.ac.jp/en/' target='_new'>Arctic Research Center</a></li></ul>");
// Hong Kong Baptist University
L.marker([22.340798856057997, 114.17982205231931], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hong Kong Baptist University</strong><br><ul><li><a href='https://geog.hkbu.edu.hk' target='_new'>Department of Geography</a></li></ul>");
// Hong Kong Polytechnic University
L.marker([22.304519477496463, 114.17947859476375], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hong Kong Polytechnic University</strong><br>Hong Kong, China<ul><li><a href='https://www.taowang.org/' target='_new'>Department of Civil and Environmental Engineering</a></li></ul>");
// Hong Kong University of Science and Technology
L.marker([22.33746912913331, 114.26238746754358], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hong Kong University of Science and Technology</strong><br>Hong Kong, China<ul><li><a href='https://hkust.edu.hk' target='_new'>Fu Group</a></li></ul>");
// Hong Kong University of Science and Technology Guangzhou
L.marker([23.178411430359247, 113.49730243710925], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hong Kong University of Science and Technology Guangzhou</strong><br>Guangzhou, China<ul><li><a href='https://yguohkust-gz.github.io/index.html' target='_new'>Yixin Guo Research Group</a></li></ul>");
// Howard University
L.marker([38.922663331596354, -77.01952891455143], { icon: blueIcon }).addTo(mymap).bindPopup("<strong> Howard University</strong><br>Washington, DC, USA<ul><li><a href='https://howard.edu/' target='_new'>Website</a></li></ul>");
// Huazhong University of Science and Technology
L.marker([30.512943594176587, 114.42023280536131], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Huazhong University of Science and Technology</strong><br>Wuhan, China<ul><li><a href='https://www.hust.edu.cn/' target='_new'>Website</a></li></ul>");
// Indian Institute of Meteorology Pune
L.marker([18.53740375467833, 73.80540130992132], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Meteorology Pune</strong><br>Pune, India<ul><li><a href='https://www.tropmet.res.in/' target='_new'>Website</a></li></ul>");
// Indian Institute of Science and Research Pune
L.marker([18.54692002577907, 73.80754262172489], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Science and Research Pune</strong><br>Pune, India<ul><li><a href='https://www.iiserpune.ac.in/' target='_new'>Website</a></li></ul>");
// Indian Institute of Technology Bombay
L.marker([19.13350112332897, 72.91356830937697], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology Bombay</strong><br>Bombay, India<ul><li><a href='https://www.esed.iitb.ac.in/' target='_new'>Environmental Science and Engineering</a></li></ul>");
// Indian Institute of Technology Delhi
L.marker([28.545708723480907, 77.19274103527056], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology Delhi</strong><br>Delhi, India<ul><li><a href='https://cas.iitd.ac.in/' target='_new'>Center for Atmospheric Sciences</a></li></ul>");
// Indian Institute of Technology Hyderabad
L.marker([17.594896990005925, 78.12280406701275], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology Hyderabad</strong><br>Telangana, India<ul><li><a href='https://asifqureshi.wordpress.com/' target='_new'>The C2 Lab</a></li></ul>");
// Indian Institute of Technology Madras
L.marker([12.991597410739372, 80.23492452362129], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology Madras</strong><br>Madras, India<ul><li><a href='https://civil.iitm.ac.in/faculty/sgunthe/' target='_new'>Environmental Engineering Group</a></li></ul>");
// Indian Institute of Technology Patna
L.marker([25.6301238, 85.1033176], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology Patna</strong><br>Patna, India<ul><li><a href='https://www.iitp.ac.in/index.php/departments/engineering-technology/civil-and-environmental-engineering' target='_new'>Department of Civil and Environmental Engineering</a></li></ul>");
// Indiana University
L.marker([39.16822400382802, -86.5230341414705], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indiana University</strong><br>Bloomington, IN, USA<ul><li><a href='https://psslab.sitehost.iu.edu/' target='_new'>Stevens Lab</a></li></ul>");
// Institut des Géosciences de l’Environnement
L.marker([45.19339784939228, 5.757755539556316], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Institut des Géosciences de l’Environnement</strong><br>Saint Martin d'Hères, France<ul><li><a href='https://www.ige-grenoble.fr/' target='_new'>Website</a></li></ul>");
// Instituto de Ciencias de la Atmosfera y Cambio Climatico
L.marker([19.32616183039393, -99.17585718450968], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Instituto de Ciencias de la Atmosfera y Cambio Climatico</strong><br>Mexico City, Mexico<ul><li><a href='https://www.atmosfera.unam.mx/' target='_new'>Website</a></li></ul>");
// Instituto de Investigaciones Fisicoquimicas Teoricas y Aplicadas
L.marker([18.982206336738347, -99.23415461890733], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Instituto de Investigaciones Fisicoquimicas Teoricas y Aplicadas</strong><br>Cuernavaca, Mexico<ul><li><a href='https://www.inifta.unlp.edu.ar/cinetica_quimica_y_fotoquimica_en_fase_gaseosa' target='_new'>Website</a></li></ul>");
// IQF-CSIC
L.marker([40.44168031000788, -3.6874441025096543], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>IQF-CSIC</strong><br>Madrid, Spain<ul><li><a href='https://www.iqf.csic.es/en/' target='_new'>Rocasolano Institute of Physical Chemistry</a></li></ul>");
// Japan Agency for Marine-Earth Science and Technology
L.marker([35.32017330000001, 139.65019844971582], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Japan Agency for Marine-Earth Science and Technology</strong><br>Kanagawa, Japan<ul><li><a href='https://www.jamstec.go.jp/e/' target='_new'>Website</a></li></ul>");
// JANUS
L.marker([35.6973953971869, 139.69860086707814], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>JANUS</strong><br>Tokyo, Japan<ul><li><a href='https://www.janus.co.jp/en/' target='_new'>Website</a></li></ul>");
// Jawaharlal Nehru University
L.marker([28.53981761340335, 77.16637787404534], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Jawaharlal Nehru University</strong><br>New Delhi, India<ul><li><a href='https://jnu.ac.in/main/' target='_new'>Website</a></li></ul>");
// Jilin University
L.marker([43.8257199709781, 125.28499463949899], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Jilan University</strong><br>Jilan, China<ul><li><a href='https://icfs.jlu.edu.cn/' target='_new'>International Center of Future Science</a></li></ul>");
// Jinan University
L.marker([23.12824442874182, 113.34809651402244], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Jinan University</strong><br>Guangdong Shen, China<ul><li><a href='https://ecins.jnu.edu.cn/index.php' target='_new'>Institute for Environmental and Climate Research</a></li></ul>");
// Johns Hopkins University
L.marker([39.32995104929338, -76.62037822319836], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Johns Hopkins University</strong><br>Baltimore, Maryland, USA<ul><li><a href='https://greenhousegaslab.org/' target='_new'>Greenhouse Gas Research Group</a></li></ul>");
// Jožef Stefan Institute
L.marker([46.04284167676896, 14.48762077028065], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Jožef Stefan Institute</strong><br>Ljubljana, Slovenia<ul><li><a href='https://www.ijs.si/ijsw/Environmental%20Sciences%20O2' target='_new'>Department of Environmental Sciences</a></li></ul>");
// Kanazawa University
L.marker([36.54590651116652, 136.707658923234], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Kanazawa University</strong><br>Kanazawa, Japan<ul><li><a href='https://nanolsi.kanazawa-u.ac.jp/en/about/' target='_new'>NanoSLI</a></li></ul>");
// KAUST
L.marker([22.309441297392425, 39.10481444893232], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>King Abdullah University of Science and Technology (KAUST)</strong><br>Kaust, Saudi Arabia<ul><li><a href='https://atcm.kaust.edu.sa/' target='_new'>Atmospheric and Climate Modeling Research Group</a></li></ul>");
// King's College London
L.marker([51.511613225081696, -0.11597553619642598], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>King's College London</strong><br>London, UK<ul><li><a href='http://www.kcl.ac.uk/lsm/research/divisions/aes/research/ERG/index.aspx' target='_new'>Environmental Research Group</a></li><li><a href='https://wildfire.geog.kcl.ac.uk/'>King’s Earth Observation and Wildfire Research Group</a></li></ul>");
// KNMI (Royal Netherlands Meteorological Institute)
L.marker([52.101675860160974, 5.1782996153731435], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>KNMI (Royal Netherlands Meteorological Institute)</strong><br>De Bilt, Netherlands<ul><li><a href='http://www.knmi.nl/research/' target='_new'>Website</a></li></ul>");
// Konkuk University
L.marker([37.54091558649223, 127.07939644886187], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Konkuk University</strong><br>Seoul, South Korea<ul><li><a href='https://english.kku.ac.kr/' target='_new'>Department of Technology Fusion Engineering</a></li></ul>");
// Korea Economic Institute
L.marker([36.4942956436324, 127.30408513175877], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Korea Economic Institute</strong><br>Sejong, South Korea<ul><li><a href='https://www.kei.re.kr/eng/' target='_new'>Website</a></li></ul>");
// Kumaun University
L.marker([29.391155927239463, 79.44587731016163], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Kumaun University</strong><br>Uttarakhand, India<ul><li><a href='https://www.kuntl.net/' target='_new'>Website</a></li></ul>");
// Kyoto University
L.marker([35.02621801550888, 135.7807896103338], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Kyoto University</strong><br>Kyoto, Japan<ul><li><a href='http://www.kyoto-u.ac.jp/ja' target='_new'>Website</a></li></ul>");
// Lanzhou University
L.marker([36.04776987236155, 103.85853021036847], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>LanZhou University</strong><br>Gansu, China<ul><li><a href='http://geoscience.lzu.edu.cn/zhyywz.htm' target='_new'>College of Earth and Environmental Sciences</a></li></ul>");
// Lawrence Livermore National Laboratory
L.marker([37.686938193928825, -121.70592936601197], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Lawrence Livermore National Laboratory</strong><br>Livermore, California, USA<ul><li><a href='https://www.llnl.gov/' target='_new'>Website</a></li></ul>");
// Lund University, Sweden
L.marker([55.703497186, 13.189332576], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Lund University</strong><br>Lund, Sweden<ul><li><<a href='https://www.geology.lu.se/' target='_new'>Department of Geology</a></li></ul>");
// Maricopa Association of Governments
L.marker([33.451714959841574, -112.07546389381363], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Maricopa Association of Governments</strong><br>Phoenix, Arizona, USA<ul><li><a href='https://azmag.gov/' target='_new'>Website</a></li></ul>");
// Max Planck Institute for Biogeochemistry
L.marker([50.91013133651403, 11.566727524468579], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Max Planck Institute for Biogeochemistry</strong><br>Jena, Germany<ul><li><a href='https://www.bgc-jena.mpg.de/' target='_new'>Website</a></li></ul>");
// Max Planck Institute for Chemistry
L.marker([49.99100669061875, 8.229193019034007], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Max Planck Institute for Biogeochemistry</strong><br>Mainz, Germany<ul><li><a href='https://www.mpic.de/3538347/Cheng_Group' target='_new'>Cheng Group</a></li></ul>");
// McGill University Montreal, Quebec, Canada
L.marker([45.50489743482807, -73.57656100686997], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>McGill University</strong><br>Montreal, Quebec, Canada<ul><li><a href='http://www.meteo.mcgill.ca/~andreas/index.html' target='_new'>Aerosols, Clouds, and Climate Research Group</li></ul>");
// Michigan Technical University
L.marker([47.11927205970655, -88.5462757368698], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Michigan Technical University</strong><br>Houghton, Michigan, USA<ul><li><a href='http://www.geo.mtu.edu/geoschem/' target='_new'>Wu Group</a></li></ul>");
// MIT
L.marker([42.360178157748685, -71.0938488595402], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>MIT</strong><br>Cambridge, Massachusetts, USA</strong><ul><li><a href='http://lae.mit.edu/' target='_new'>MIT Laboratory for Avation and the Environment</a></li><li><a href='https://www.healdgroupmit.com/' target='_new'>Atmospheric Chemistry and Composition Modeling Group</a></li><li><a href='https://www.selingroup.org/' target='_new'>Selin Group</a></li><li><a href='https://www.teampaccc.mit.edu/' target='_new'>TEAMPACCC</a></li><li><a href='http://babbin.scripts.mit.edu/arb/about-us/' target='_new'>BabLab</a></li><li><a href='https://cgcs.mit.edu/' target='_new'>MIT Center for Global Climate Change Science</li></ul>");
// MSC-East
L.marker([55.70637390384365, 37.60202434156508], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>MSC-East</strong><br>Moscow, Russia<ul><li><a href='https://ecovostok.com/msce-engl' target='_new'>Website</a></li></ul>");
// Nagoya University
L.marker([35.153951764497336, 136.96840112911576], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Nagoya University</strong><br>Nagoya, Aichi, Japan<ul><li><a href='https://en.nagoya-u.ac.jp/' target='_new'>Website</a></li></ul>");
// Nagoya City University
L.marker([35.139379699101966, 136.9352929984277], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Nagoya City University</strong><br>Nagoya, Aichi, Japan<ul><li><a href='https://www.nagoya-cu.ac.jp/english/' target='_new'>Website</a></li></ul>");
// Nanjing University
L.marker([32.05886919913328, 118.78296862876596], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Nanjing University</strong><br>Nanjing, China<ul><li><a href='http://as.nju.edu.cn/' target='_new'>School of Atmospheric Sciences</a></li><li><a href='https://www.ebmg.online/' target='_new'>Environmental Biogeochemistry Modeling Group</a></li><li><a href='https://www.icier-nju.org/' target='_new'>International Center for Isotope Effects Research</a></li></ul>");
// Nankai University
L.marker([39.10393627831205, 117.17426175906466], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Nankai University</strong><br>Tianjin, China<ul><li><a href='https://enven.nankai.edu.cn/main.htm' target='_new'>College of Environmental Science and Engineering</a></li></ul>");
// Nanyang Technological University
L.marker([1.3483313503715026, 103.68304886562292], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Nanyang Technological University</strong><br>Singapore<ul><li><a href='https://www.ntu.edu.sg/' target='_new'>Website</a></li></ul>");
// NASA AMES Research Center
L.marker([37.41869456378215, -122.06210738337032], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>NASA AMES Research Center</strong><br>Mountain View, California, USA<ul><li><a href='https://earthscience.arc.nasa.gov/' target='_new'>Website</a></li></ul>");
// National Centre for Atmospheric Science
L.marker([53.804498872310724, -1.5612756987781042], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Centre for Atmospheric Science</strong><br>Leeds, UK<ul><li><a href='https://ncas.ac.uk/' target='_new'>Website</a></li></ul>");
// National Institute for Environmental Studies
L.marker([36.05010294664886, 140.11917715613782], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Institute for Environmental Studies</strong><br>Tsukuba, Ibaraki, Japan<ul><li><a href='https://www.nies.go.jp/index-e.html' target='_new'>Website</a></li></ul>");
// National Institute of Advanced Industrial Science and Technology
L.marker([36.06020789917907, 140.13328758153287], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Institute of Advanced Industrial Science and Technology</strong><br>Ibaraki, Japan<ul><li><a href='https://riss.aist.go.jp/en/' target='_new'>Research Institute of Science for Safety and Sustainability</a></li></ul>");
// National Institute of Aerospace
L.marker([37.082544950907206, -76.39788894510785], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Institute of Aerospace</strong><br>Hampton, Virginia, USA<ul><li><a href='https://www.nianet.org/' target='_new'>Website</a></li></ul>");
// National Institute of Technology, Rourkela
L.marker([22.253050979642687, 84.90089988115359], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Institute of Technology, Rourkela</strong><br>Odisha, India<ul><li><a href='https://www.nitrkl.ac.in/' target='_new'>Website</a></li></ul>");
// National Technical University of Athens
L.marker([37.987704649395106, 23.731825206904027], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Technical University of Athens</strong><br>Athens, Greece<ul><li><a href='https://www.ntua.gr/en/' target='_new'>Website</a></li></ul>");
// National Technical University of Ukraine (KPI)
L.marker([50.448890539716245, 30.45694481095485], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Technical University of Ukraine (KPI)</strong><br>Kyiv, Ukraine<ul><li><a href='https://kpi.ua/' target='_new'>Website</a></li></ul>");
// New Mexico Tech
L.marker([34.06603741148792, -106.90554663045239], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>New Mexico Tech</strong><br>Socorro, New Mexico, USA<ul><li><a href='https://nmt.edu/' target='_new'>Website</a></li></ul>");
// Newcastle University
L.marker([54.979180915697015, -1.6146178869739065], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Newcastle University</strong><br>Newcastle upon Tyne, UK<ul><li><a href='https://www.ncl.ac.uk/' target='_new'>Website</a></li></ul>");
// NOAA Earth System Research Laboratory
L.marker([39.99187134543627, -105.26085388179753], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>NOAA Earth System Research Laboratory</strong><br>Boulder, Colorado, USA<ul><li><a href='https://gml.noaa.gov/' target='_new'>Global Monitoring Division</a></li><li><a href='https://csl.noaa.gov/groups/csl7/' target='_new'>Chemical Sciences Laboratory</a></li></ul>");
// North Carolina State University
L.marker([35.784811205651124, -78.68145086202546], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>North Carolina State University</strong><br>Raleigh, North Carolina<ul><li><a href='https://meas.sciences.ncsu.edu/' target='_new'>Marine, Earth and Atmospheric Sciences</a></li></ul>");
// North China Institute of Aerospace Engineering
L.marker([39.52629324698435, 116.73143237001736], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>North China Institute of Aerospace Engineering</strong><br>Hebei, China<ul><li><a href='https://www.nciae.edu.cn/' target='_new'>Website</a></li></ul>");
// Ocean University of China
L.marker([36.061515141142166, 120.33584818178187], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Ocean University of China</strong><br>Shandong Shen, China<ul><li><a href='http://eweb.ouc.edu.cn/' target='_new'>Website</a></li></ul>");
// Open Hydro Ltd
L.marker([51.514898895027486, -0.12357858899488987], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Open Hydro Ltd</strong><br>London, UK<ul><li><a href='https://openhydro.net/' target='_new'>Website</a></li></ul>");
// Pennsylvania State University
L.marker([40.79834320001314, -77.85947924002869], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Pennsylvania State University</strong><br>State College, Pennsylvania, USA</strong></a><ul><li><a href='https://pure.psu.edu/en/persons/jeffrey-yanosky' target='_new'>Institute of Energy and the Environment (IEE)</a></li><li><a href='http://www.met.psu.edu/' target='_new'>Department of Meteorology and Atmospheric Sciences</li></ul>");
// Physical Research Laboratory, Ahmedabad
L.marker([23.0361017, 72.5434248], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Physical Research Laboratory, Ahmedabad</strong><br>Gujarat, India<ul><li><a href='https://www.prl.res.in/prl-eng/' target='_new'>Website</a></li></ul>");
// PMOD/WRC
L.marker([47.453735211415015, 8.565044470342425], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>PMOD/WRC</strong><br>Kloten, Switzerland<ul><li><a href='https://www.meteoswiss.admin.ch/about-us/research-and-cooperation/international-cooperation/pmod-wrc.html' target='_new'>Website</a></li></ul>");
// Portland State University Portland, Oregon, USA
L.marker([45.51127487199178, -122.68343422400483], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Portland State University</strong><br>Portland, Oregon, USA<ul><li><a href='https://www.pdx.edu/physics/' target='_new'>Department of Physics</a></li></ul>");
// Potsdam Institute for Climate Impact Research (PIK)
L.marker([52.38189885254422, 13.062147013955359], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Potsdam Institute for Climate Impact Research (PIK)</strong><br>Potsdam, Germany<ul><li><a href='https://www.pik-potsdam.de/en/home' target='_new'>Website</a></li></ul>");
// Princeton University
L.marker([40.34341014297317, -74.65464350057714], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Princeton University</strong><br><ul><li><a href='https://cpree.princeton.edu/' target='_new'>Center for Policy Research on Energy and the Environment</a></li></ul>");
// Purdue University West Lafayette, Indiana, USA
L.marker([40.42383603352145, -86.92090491575355], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Purdue University</strong><br>West Lafayette, Indiana, USA<ul><li><a href='https://www.eaps.purdue.edu/ebdl/' target='_new'>Ecosystems & Biogeochemical Dynamics Laboratory</a></li></ul>");
// Pusan National University
L.marker([35.23398559931564, 129.08073914102877], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Pusan National University</strong><br>Busan, South Korea<ul><li><a href='https://pusan.ac.kr/' target='_new'>Website</a></li></ul>");
// RAL Space
L.marker([51.57648363935819, -1.3102989754999206], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>RAL Space</strong><br>Didcot, UK<ul><li><a href='https://www.ralspace.stfc.ac.uk/' target='_new'>Website</a></li></ul>");
// Ramboll
L.marker([38.104555229758226, -122.56963645587174], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Ramboll</strong><br>Novato, California, USA<ul><li><a href='http://www.ramboll.com/' target='_new'>Website</a></li></ul>");
// Rice University
L.marker([29.717403392782238, -95.40176683030535], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Rice University</strong><br>Houston, Texas, USA<ul><li><a href='https://www.yeunglab.org/members' target='_new'>Yeung Lab</a></li></ul>");
// Rutgers University
L.marker([40.741703041685085, -74.17421592676995], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Rutgers University</strong><br>Newark, New Jersey, USA<ul><li><a href='https://sites.rutgers.edu/sebs-asg/' target='_new'>Atmospheric Sciences Grop</a></li></ul>");
// Saint Mary's University
L.marker([44.63129807754581, -63.581628971704276], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Saint Mary's University</strong><br>Halifax, Nova Scotia, Canada<ul><li><a href='https://www.ap.smu.ca/~awiacek/' target='_new'>Wiacek Atmospheric Research Group</a></li></ul>");
// Science and Technology Corp.
L.marker([37.05424946231247, -76.40820878281515], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Science and Technology Corp.</strong><br>Hampton, Virgina, USA<ul><li><a href='https://www.stcnet.com/' target='_new'>Website</a></li></ul>");
// Scripps Institution of Oceanography
L.marker([32.86813106213244, -117.25038767653129], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Scripps Institution of Oceanography</strong><br>La Jolla, California, USA<ul><li><a href='https://scripps.ucsd.edu/' target='_new'>Website</a></li></ul>");
// Seoul National Univerity
L.marker([37.45671386056757, 126.95004923479533], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Seoul National Univerity</strong><br>Seoul, South Korea<ul><li><a href='http://airchem.snu.ac.kr/' target='_new'>Atmospheric Chemistry Modeling Group</a></li></ul>");
// Shanghai Jiao Tong University
L.marker([31.025141368595474, 121.43374536126336], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Shanghai Jiao Tong University</strong><br>Shanghai, China<ul><li><a href='https://sese.sjtu.edu.cn/' target='_new'>Website</a></li></ul>");
// Shanghai University
L.marker([31.314765620211674, 121.38253105308999], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Shanghai University</strong><br>Shanghai, China<ul><li><a href='https://www.shu.edu.cn/' target='_new'>Website</a></li></ul>");
// Shanxi University
L.marker([37.80971894819436, 112.57016049773799], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Shanxi University</strong><br>Taiyuan, China<ul><li><a href='https://www.sxu.edu.cn/' target='_new'>Website</a></li></ul>");
// Sichuan University
L.marker([30.663945517308644, 104.07112928424978], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Sichuan University</strong><br>Sichuan, China<ul><li><a href='https://www.scu.edu.cn/' target='_new'>Website</a></li></ul>");
// SLR Consulting
L.marker([42.344082542414206, -71.03030093673793], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>SLR Consulting</strong><br>Boston, Massachusetts, USA<ul><li><a href='https://www.slrconsulting.com' target='_new'>Website</a></li></ul>");
// Sophia University
L.marker([35.68306107694374, 139.73319247807564], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Sophia University</strong><br>Tokyo, Japan<ul><li><a href='https://www.seba-ken.com' target='_new'>Laboratory of Planetary Atmospheric Chemistry</a></li></ul>");
// Sorbonne University
L.marker([48.8483238, 2.34308173439024], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Sorbonne Université</strong><br>Paris, France<ul><li><a href='https://www.sorbonne-universite.fr/' target='_new'>Website</a></li></ul>");
// South China Normal University
L.marker([23.36246660185115, 116.76097415384167], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>South China Normal University</strong><br>Shantou, China<ul><li><a href='https://www.scnu.edu.cn/' target='_new'>Website</a></li></ul>");
// South China University of Technology
L.marker([23.151625220331066, 113.3467417866279], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>South China University of Technology</strong><br>Guangzhou, China<ul><li><a href='https://www.scut.edu.cn/new/' target='_new'>Website</a></li></ul>");
// SRM Institute of Science and Technology
L.marker([12.82472946624605, 80.05007651772532], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>SRM Institute of Science and Technology</strong><br>Kattankulathur, India<ul><li><a href='https://srmaoml.wixsite.com/home' target='_new'>Website</a></li></ul>");
// SRON
L.marker([52.16940171866364, 4.458327468237333], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>SRON Netherlands Institute for Space Research</strong><br>Leiden, Netherlands<ul><li><a href='https://www.sron.nl/' target='_new'>Website</a></li></ul>");
// St. Francis Xavier University
L.marker([45.61775067947963, -61.995329730273696], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>St. Francis Xavier University</strong><br>Antigonish, Nova Scotia, Canada<ul><li><a href='https://fluxlab.ca/' target='_new'>Flux Lab</a></li></ul>");
// Stanford University
L.marker([37.4255387, -122.1644899], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Stanford University</strong><br>Stanford, California, USA<ul><li><a href='https://sustainability.stanford.edu/' target='_new'>School of Sustainability</a></li></ul>");
// Stony Brook University
L.marker([40.90411414448012, -73.12365451480763], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Stony Brook University</strong><br>Stony Brook, NY, USA<ul><li><a href='https://you.stonybrook.edu/johnmak/current-lab-members/' target='_new'>John Mak Lab</a></li></ul>");
// Sun Yat-sen University
L.marker([23.0996033, 113.2923509], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Sun Yat-sen University</strong><br>Zhuhai, China<ul><li><a href='https://atmos.sysu.edu.cn/' target='_new'>School of Atmospheric Sciences</a></li></ul>");
// Tata Consultancy Services
L.marker([19.11995255606072, 72.92638592267362], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Tata Consultancy Services</strong><br>Mumbai, India<ul><li><a href='https://www.tcs.com/' target='_new'>Website</a></li></ul>");
// Texas Commission on Environmental Quality
L.marker([30.394188115580125, -97.67504459188966], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Texas Commission on Environmental Quality</strong><br>Austin, Texas, USA<ul><li><a href='https://www.tceq.texas.gov/' target='_new'>Website</a></li></ul>");
// The Institute of Environmental Protection – National Research Institute
L.marker([52.18858463876997, 20.960626784383823], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>The Institute of Environmental Protection – National Research Institute</strong><br>Warsaw, Poland<ul><li><a href='https://ios.edu.pl/en/' target='_new'>Website</a></li></ul>");
// The University of Sydney
L.marker([-33.888404073212634, 151.18680771176884], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>The University of Sydney</strong><br>Camperdown, Australia<ul><li><a href='https://www.sydney.edu.au/science/schools/school-of-physics.html' target='_new'>School of Physics</a></li></ul>");
// Tianjin Normal University
L.marker([39.06072024098461, 117.12557772336291], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Tianjin Normal University</strong><br>Tianjin, China<ul><li><a href='https://www.tjnu.edu.cn/' target='_new'>Website</a></li></ul>");
// Tianjin University
L.marker([39.10807523422954, 117.17612087776793], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Tianjin University</strong><br>Tianjin, China<ul><li><a href='https://tju.edu.cn/english/index.htm' target='_new'>Website</a></li></ul>");
// Tsinghua University
L.marker([39.9999056956775, 116.32686233513306], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Tsinghua University</strong><br>Beijing, China<ul><li><a href='http://www.cess.tsinghua.edu.cn/publish/essen/index.html' target='_new'>Department of Earth System Science</a></li></ul>");
// Tulane University
L.marker([29.940728174871655, -90.120225508092], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Tulane University</strong><br>New Orleans, Louisiana, USA<ul><li><a href='https://ebmg.tulane.edu/' target='_new'>Tulane Environmental Biogeochemistry Modeling Group</a></li></ul>");
// UCAR
L.marker([40.017624, -105.27966], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>UCAR</strong><br>Boulder, Colorado, USA<ul><li><a href='https://www.jcsda.org/' target='_new'>Joint Center for Satellite Data Assimilation</a></li></ul>");
// Universidade do Estado do Rio de Janeiro
L.marker([-22.911568115933413, -43.24096680028494], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universidade do Estado do Rio de Janeiro</strong><br>Rio de Janeiro, Brazil<ul><li><a href='http://www.eng.uerj.br/prof/361' target='_new'>Department of Sanitary and Environmental Engineering</a></li></ul>");
// Ulsan National Institute of Science & Technology
L.marker([35.573426299149524, 129.18952170786264], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Ulsan National Institute of Science & Technology</strong><br>Ulsan, South Korea<ul><li><a href='https://www.unist.ac.kr/' target='_new'>Website</a></li></ul>");
// University of Alaska (Jingqiu MAo)
L.marker([64.8312750079003, -147.82533293295293], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Alaska</strong><br>Fairbanks, Alaska, USA<ul><li><a href='https://atmoschem.community.uaf.edu/' target='_new'>Atmospheric Chemistry and Climate Lab</a></li></ul>");
// Universite de Lille
L.marker([50.60867516112225, 3.142259861528891], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universite de Lille</strong><br>Villeneuve D'ASCQ, France<ul><li><a href='http://www-loa.univ-lille1.fr/' target='_new'>Laboratoire d'Optique Atmosphérique</a></li></ul>");
// Universite de Montreal Montreal
L.marker([45.52311030716304, -73.61974634903947], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universite de Montreal</strong><br>Montreal, Quebec, Canada<ul><li><a href='https://sites.google.com/site/hayesgroupatmontreal/home' target='_new'>Atmospheric and Analytical Chemistry Group</a></li></ul>");
// Universite de Toulouse
L.marker([43.59502378184348, 1.4513432888733038], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Université de Toulouse III-Paul Sabatier</strong><br>Toulouse, France<ul><li><a href='https://www.univ-tlse3.fr/structures-de-recherche/laboratoire-d-aerologie' target='_new'>Laboratoire d'Aérologie - LAERO</a></li></ul>");
// Universiti Teknologi Malaysia
L.marker([1.558435923818671, 103.63785981168964], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universiti Teknologi Malaysia</strong><br>Skudai, Johor, Malaysia<ul><li><a href='https://builtsurvey.utm.my/departments-units/geoinformation/' target='_new'>Department of Geoinformation</a></li></ul>");
// University at Buffalo
L.marker([42.953036463219185, -78.8169535960807], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University at Buffalo</strong><br>Buffalo, New York, USA<ul><li><a href='https://engineering.buffalo.edu/civil-structural-environmental/research/environmental-and-water-resources-engineering.html' target='_new'>Environmental and Water Resources Engineering</a></li></ul>");
// University College Dublin
L.marker([53.30972036192, -6.2216433470581], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University College Dublin</strong><br>Dublin, Ireland<ul><li><a href='https://www.ucd.ie/earthsciences/' target='_new'>School of Earth Sciences</a></li></ul>");
// University Federal de Santa Catarina
L.marker([-27.599986060509604, -48.51929943057011], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University Federal de Santa Catarina</strong><br>Florianópolis, Brazil<ul><li><a href='https://hoinaski.prof.ufsc.br/' target='_new'>Hoinaski Lab</a></li></ul>");
// University Hassan II Casablanca
L.marker([33.53968965840272, -7.657134630858375], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University Hassan II Casablanca</strong><br>Casablanca, Morocco<ul><li><a href='https://www.univh2c.ma/' target='_new'>Website</a></li></ul>");
// University Mohammed V de Rabat
L.marker([33.98792659587251, -6.858394711682594], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University Mohammed V de Rabat</strong><br>Rabat, Morocco<ul><li><a href='http://www.fsr.ac.ma/CPM/' target='_new'>Department of Physics</a></li></ul>");
// University Mohammed VI Polytechnic
L.marker([33.980183227714086, -6.7291097782298035], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University Mohammed VI Polytechnic</strong><br>Salé, Morocco<ul><li><a href='https://helios-cnrs.org/resume/wahid-mellouki/' target='_new'>African Research Center on Air Quality and Climate</a></li></ul>");
// University of Alabama
L.marker([34.72514287712925, -86.64050340791955], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Alabama</strong><br>Huntsville, Alabama, USA<ul><li><a href='https://www.uah.edu/science/departments/atmospheric-earth-science' target='_new'>Department of Atmospheric and Earth Science</a></li></ul>");
// University of Birmingham
L.marker([52.4508109202611, -1.9304974034782916], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Birmingham</strong><br>Birmingham, UK<ul><li><a href='https://www.birmingham.ac.uk/research/arc' target='_new'>Birmingham Environment for Academic Research</a></li></ul>");
// University of Bremen
L.marker([53.081833202054746, 8.805286094491509], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Bremen</strong><br>Bremen, Germany<ul><li><a href='https://www.iup.uni-bremen.de/eng/' target='_new'>Institute for Environmental Physics</a></li></ul>");
// University of British Columbia
L.marker([49.26059815640258, -123.24597234267418], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of British Columbia</strong><br>Vancouver, British Columbia, Canada</strong><ul><li><a href='https://ireach.mech.ubc.ca/' target='_new'>iREACH Lab</a></li></ul>");
// University of California Berkeley
L.marker([37.87190764883068, -122.25852917319068], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of California Berkeley</strong><br>Berkeley, California, USA<ul><li><a href='http://cohen.cchem.berkeley.edu/' target='_new'>Cohen Research Group</a></li></ul>");
// University of California Irvine
L.marker([33.64049518062957, -117.84427474444315], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of California Irvine</strong><br>Irvine, California, USA<ul><li><a href='https://sites.uci.edu/randersonlab//' target='_new'>Randerson Lab</a></li><li><a href='https://airuci.uci.edu/' target='_new'>AirUCI</a></li></ul>");
// University of California Los Angeles
L.marker([34.06993809096079, -118.44390570987734], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of California Los Angeles</strong><br>Los Angeles, California, USA<ul><li><a href='https://deohs.washington.edu/' target='_new'>Department of Environmental and Occupational Health Sciences</a></li></ul>");
// University of California San Diego
L.marker([32.881158963567884, -117.23429613088422], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of California San Diego</strong><br>San Diego, California, USA<ul><li><a href='https://caice.ucsd.edu/our-team/' target='_new'>CAICE</a></li></ul>");
// University of Cambridge
L.marker([52.205342822005086, 0.1131358108711495], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Cambridge</strong><br>Cambridge, UK<ul><li><a href='https://www.ch.cam.ac.uk/' target='_new'>Yusuf Hamied Department of Chemistry</li><li><a href='https://iccs.cam.ac.uk/' target='_new'>Institute of Computing for Climate Science</a></li></ul>");
// University of Copenhagen
L.marker([55.69333898158557, 12.563286042776577], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Copenhagen</strong><br>Copenhagen, Denkark<ul><li><a href='https://chem.ku.dk/research_sections/physchem/kjaergaardgroup/' target='_new'>Kjaergaard Group</li></ul>");
// University of Cincinnati
L.marker([39.13299051072044, -84.51475575279008], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Cincinnati</strong><br>Cincinnati, Ohio, USA<ul><li><a href='https://arc.uc.edu' target='_new'>Advanced Research Computing Center</li><li><a href='https://iccs.cam.ac.uk/' target='_new'>Institute of Computing for Climate Science</a></li></ul>");
// University of East Anglia
L.marker([52.622019142519235, 1.2398627534933893], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of East Anglia</strong><br>Norwich, UK<ul><li><a href='https://research-portal.uea.ac.uk/en/organisations/centre-for-ocean-and-atmospheric-sciences' target='_new'>Centre for Ocean and Atmospheric Sciences</a></li></ul>");
// University of Edinburgh
L.marker([55.94450373997049, -3.1889838082864825], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Edinburgh</strong><br>Edinburgh, UK<ul><li><a href='https://sites.google.com/view/palmer-group/home' target='_new'>Atmospheric Composition Modelling Group</a></li></ul>");
// University of Exeter
L.marker([50.7372183244397, -3.5344501189726834], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Exeter</strong><br>Exeter, UK<ul><li><a href='http://sites.exeter.ac.uk/atmos-chem/' target='_new'>Atmospheric Chemistry and Climate Research Group</a></li></ul>");
// University of Graz
L.marker([47.07764007743541, 15.449577741625571], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Graz</strong><br>Graz, Austria<ul><li><a href='https://physik.uni-graz.at/en/about-the-institute/astrophysics-and-geophysics/' target='_new'>Department of Astrophysics and Geophysics</a></li></ul>");
// University of Helsinki
L.marker([60.17265077347619, 24.951009714441888], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Helsinki</strong><br>Helsinki, Finland<ul><li><a href='https://www.helsinki.fi/en/inar' target='_new'>Institute for Atmospheric and Earth System Research</a></li></ul>");
// University of L'Aquila
L.marker([42.351635701213766, 13.397706705365206], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of L'Aquila</strong><br>L'Aquila, Italy<ul><li><a href='http://cetemps.aquila.infn.it/' target='_new'>Atmospheric Composition Modelling Group at CETEMPS</a></li></ul>");
// University of Leicester
L.marker([52.62113275880043, -1.1246754182373677], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Leicester</strong><br>Leicester, UK<ul><li><a href='https://le.ac.uk/health-sciences' target='_new'>Department of Health Sciences</a></li></ul>");
// University of Maryland
L.marker([38.9868932534681, -76.94259721896798], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Maryland</strong><br>College Park, Maryland, USA<ul><li><a href='https://aosc.umd.edu/' target='_new'>Department of Atmospheric and Oceanic Science</a></li><li><a href='https://geog.umd.edu/' target='_new'>Department of Geographical Sciences</a></li></ul>");
// University of Melbourne
L.marker([-37.79834783806477, 144.960914119859], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Melbourne</strong><br>Parkville, Victoria, Australia<ul><li><a href='https://findanexpert.unimelb.edu.au/profile/326600-shu-kee-lam' target='_new'>Lam Research Group</a></li></ul>");
// University of Minnesota
L.marker([44.974065859207165, -93.22785724374458], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Minnesota</strong><br>Minneapolis, Minnesota, USA<ul><li><a href='http://www.atmoschem.umn.edu/' target='_new'>Atmospheric Composition and Chemistry Group</a></li><li><a href='https://bbe.umn.edu/people/jason-hill' target='_new'>Department of Bioproducts and Biosystems Engineering</a></li></ul>");
// University of Missouri Kansas City
L.marker([39.03435627435929, -94.58346697964149], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Missouri Kansas City</strong><br>Kansas City, Missouri, USA<ul><li><a href='https://research.umkc.edu/atmoschem/' target='_new'>Christiansen Lab</a></li></ul>");
// University of New South Wales Sydney, Australia
L.marker([-33.91722230992942, 151.23155717594642], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of New South Wales</strong><br>Sydney, Australia<ul><li><a href='https://molecularphotonics.sydney' target='_new'>Molecular Photonics</a></li></ul>");
// University of Northern British Columbia
L.marker([53.89219072719476, -122.81330705805765], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Northern British Columbia</strong><br>Prince George, British Columbia, Canada</strong><ul><li><a href='https://www.unbc.ca/department-geography-earth-and-environmental-sciences' target='_new'>Department of Geography, Earth, and Environmental Sciences</a></li></ul>");
// University of Reading
L.marker([51.440308471801956, -0.9421816336528414], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Reading</strong><br>Reading, UK<ul><li><a href='https://www.reading.ac.uk' target='_new'>Website</a></li></ul>");
// University of São Paulo
L.marker([-23.564138774786468, -46.738397307005506], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of São Paulo</strong><br>Butantã, São Paulo, Brazil<ul><li><a href='https://www5.usp.br/english/education/undergraduate/courses-offered/mechatronics-engineering/' target='_new'>Megatronics Engineering</a></li></ul>");
// University of Science and Technology of China
L.marker([31.822085121883404, 117.28072947751971], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Science and Technology of China</strong><br>Hefei, Anhui, China<ul><li><a href='https://www.ustc.edu.cn/' target='_new'>Website</a></li></ul>");
// University of Southern California
L.marker([34.022360765322794, -118.28507408772022], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Southern California</strong><br>Los Angeles, California, USA<ul><li><a href='https://www.earthdatausc.com/people' target='_new'>Atmospheric Composition & Earth Data Science</a></li></ul>");
// University of Stuttgart
L.marker([48.781564849606376, 9.172429569900562], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Stuttgart</strong><br>Stuttgart, Germany<ul><li><a href='https://www.irs.uni-stuttgart.de' target='_new'>Institute of Space Systems</a></li></ul>");
// University of Suwon
L.marker([37.209193127342196, 126.976882852115], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Suwon</strong><br>Gyeonggi-do, South Korea<ul><li><a href='https://www.suwon.ac.kr/eng/index.html?menuno=593' target='_new'>Website</a></li></ul>");
// University of Technology Sydney
L.marker([-33.88363585966782, 151.20068699827738], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Technology Sydney</strong><br>Ultimo, Australia<ul><li><a href='https://www.uts.edu.au/' target='_new'>Website</a></li></ul>");
// University of Texas at Austin
L.marker([30.285019110166754, -97.7335762481772], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Texas at Austin</strong><br>Austin, Texas, USA<ul><li><a href='https://www.beg.utexas.edu/people/hassan-dashtian' target='_new'>Bureau of Economic Geology</a></li></ul>");
// University of Utah
L.marker([40.76484761326373, -111.842590591191], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Utah</strong><br>Salt Lake City, Utah, USA<ul><li><a href='https://www.jessicahaskinsphd.com/' target='_new'>Haskins Lab</a></li></ul>");
// University of Vienna
L.marker([48.21318547113221, 16.360104041676298], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Vienna</strong><br>Vienna, Austria<ul><li><a href='https://flexteam.univie.ac.at/' target='_new'>FlexTeam</a></li></ul>");
// University of West Attica
L.marker([38.002489655215655, 23.674920483585677], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of West Attica</strong><br>Egaleo, Greece<ul><li><a href='https://www.uniwa.gr/en/' target='_new'>Website</a></li></ul>");
// University of Western Australia
L.marker([-35.027464716212336, 117.88713297649387], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Western Australia</strong><br>Albany, Western Australia, Australia<ul><li><a href='https://research-repository.uwa.edu.au/en/persons/michael-bertolacci-2' target='_new'>Website</a></li></ul>");
// University of Wisconsin Madison
L.marker([43.07661541771023, -89.41243387503457], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Wisconsin Madison</strong><br>Madison, Wisconsin, USA<ul><li><a href='https://microbiology.wisc.edu/staff/pal-aditya-kumar/' target='_new'>Microbiology Training Program</a></li></ul>");
// University of York
L.marker([53.946184627863126, -1.0515035740362535], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of York</strong><br>York, UK<ul><li><a href='http://www.york.ac.uk/chemistry/staff/academic/d-g/evansm/' target='_new'>Department of Chemistry</a></li></ul>");
// Utah State University
L.marker([40.46035402582413, -109.56532700584907], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Utah State University</strong><br>Vernal, Utah, USA<ul><li><a href='https://binghamresearch.usu.edu/index' target='_new'>Bingham Research Center</a></li></ul>");
// Utkal University
L.marker([20.29698158118392, 85.84044738036371], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Utkal University</strong><br>Bhubaneswar, Odisha, India<ul><li><a href='https://utkaluniversity.ac.in/faculty/dr-saroj-kumar-sahu/' target='_new'>Website</a></li></ul>");
// Waseda University
L.marker([35.708742084340734, 139.71970214041198], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Waseda University</strong><br>Tokyo, Japan<ul><li><a href='https://www.waseda.jp/top/en/' target='_new'>Website</a></li></ul>");
// Washington State University
L.marker([46.72951380763846, -117.18043681616585], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Washington State University</strong><br>Pullman, Washington, USA<ul><li><a href='https://www.jun-meng.com/' target='_new'>Air Quality Research Lab</a></li></ul>");
// Wayne State University
L.marker([42.35916255496423, -83.0666213053138], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Wayne State University</strong><br>Detroit, Michigan, USA<ul><li><a href='https://www.huanglabwayne.com' target='_new'>Huang Group</a></li></ul>");
// Westlake University
L.marker([30.133938096007494, 120.07944528066615], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Westlake University</strong><br>Hangzhou, China<ul><li><a href='https://en-soe.westlake.edu.cn/index.shtml' target='_new'>School of Engineering</a></li></ul>");
// Wuhan University
L.marker([30.536048474686925, 114.36427898068077], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Wuhan University</strong><br>Wuhan, China<ul><li><a href='https://rsgis.whu.edu.cn/' target='_new'>School of Remote Sensing and Information Engineering</a></li></ul>");
// Xi'an Jiaotong-Liverpool University
L.marker([31.274803634624522, 120.73816909869613], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Xi'an Jiaotong-Liverpool University</strong><br>Suzhou, Jiangsu, China<ul><li><a href='https://scholar.xjtlu.edu.cn/en/persons/QingMu' target='_new'>Website</a></li></ul>");
// Xiamen University
L.marker([24.437612086683842, 118.0984450943764], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Xiamen University</strong><br>Xiamen, Fujian, China<ul><li><a href='https://economic.xmu.edu.cn/english/' target='_new'>School of Economics</a></li></ul>");
// Yale-NUIST
L.marker([32.05698454282686, 118.77930352795886], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Yale-NUIST Center on Atmospheric Environmenty<br>Nanjing, China<ul><li><a href='http://yncenter.sites.yale.edu/' target='_new'>Website</a></li></ul>");
// Yonsei University
L.marker([37.5664021761052, 126.93877097007527], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Yonsei University</strong><br>Seoul, South Korea<ul><li><a href='http://atrad.yonsei.ac.kr/main.php' target='_new'>Atmospheric Radiation Laboratory</a></li></ul>");
// Yunnan Minzu University
L.marker([24.84009924170726, 102.84958062282043], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Yunnan Minzu University</strong><br>Kunming, China<ul><li><a href='http://www.chem.ynu.edu.cn/ywsy/About/Overview.htm' target='_new'>School of Chemical Science and Technology</a></li></ul>");
// Zhejiang University
L.marker([30.30868437479866, 120.08643512299996], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Zhejiang University</strong><br>Zhejiang, China<ul><li><a href='http://www.cers.zju.edu.cn/cercn/' target='_new'>College of Environmental and Resource Sciences</a></li></ul>");
//----------------------------------------------------
// PUT GCSC's AFTER REGULAR USERS TO MAKE PINS SHOW UP
//----------------------------------------------------
// Boston University (Jeff Geddes)
L.marker([42.35050758719763, -71.10538837093803], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Boston University</strong><br>Boston, Massachusetts, USA<ul><li><a href='http://sites.bu.edu/jged' target='_new'>Geddes Atmospheric Chemistry Group</li></ul>");
// The Chinese University of Hong Kong (Amos Tai)
L.marker([22.419714225427672, 114.20717902754774], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>The Chinese University of Hong Kong</strong><br>Hong Kong, China<ul><li><a href='http://www.cuhk.edu.hk/sci/essc/tgabi/' target='_new'>Tai Group for Atmosphere-Biosphere Interactions</a></li><li><a href='https://xwgroupcityu.com/' target='_new'>Atmospheric Chemistry and Physics Modeling Group</a></li><li><a href='https://www.cuhk.edu.hk/sci/essc/people/zhai_shixian.html' target='_new'>Earth and Environmental Sciences Programme</a></li></ul>");
// Colorado State University (Andrew Schuh, Jeff Pierce)
L.marker([40.573488092947876, -105.08608735598418], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Colorado State University</strong><br>Fort Collins, Colorado, USA<ul><li><a href='https://www.cira.colostate.edu/' target='_new'>Cooperative Institute for Research in the Atmosphere</a></li><li><a href='http://fischer.atmos.colostate.edu/' target='_new'>Fischer Group</li><li><a href='https://sites.google.com/view/pierce-group-csu'>Pierce Group</a></li></ul>");
// Environmental Protection Agency (EPA) (Barron Henderson)
L.marker([35.88289066467997, -78.87144972854894], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Environmental Protection Agency (EPA)</strong><br>Research Triangle Park, North Carolina, USA<ul><li><a href='http://www.barronh.com/' target='_new'>Henderson Group</a></li></ul>");
// Florida State University (Chris Holmes)
L.marker([30.441970256403366, -84.29820994721503], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Florida State University</strong><br>Tallahassee, FL, USA<ul><li><a href='https://acgc.eoas.fsu.edu/' target='_new'>Atmospheric Chemistry and Global Change Research Group</a></li></ul>");
// Imperial College London (Sebastian Eastham)
L.marker([51.49882885072645, -0.17491641783162853], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Imperial College London</strong><br>London, UK<ul><li><a href='https://imperial.ac.uk/people/s.eastham' target='_new'>Brahmal Vasudevan Institute for Sustainable Aviation</a></li></ul>");
// NASA GMAO (Viral Shah, Emma Knowland)
L.marker([38.99506668807026, -76.85188265410403], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>NASA Goddard Space Flight Center</strong><br>Greenbelt, Maryland, USA</strong><ul><li><a href='https://gmao.gsfc.nasa.gov/' target='_new'>Global Modeling and Assimilation Office</a></li></ul>");
// NASA Jet Propulsion Laboratory (Kevin Bowman)
L.marker([34.201467774645586, -118.17093305334618], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>NASA Jet Propulsion Laboratory</strong><br>Pasadena, California, USA<ul><li><a href='http://jpl.nasa.gov/' target='_new'>Website</a></li></ul>");
// NASA Langley Research Center (Katie Travis)
L.marker([37.096175668285525, -76.38332286758234], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>NASA Langley Research Center</strong><br>Hampton, Virginia, USA<ul><li><a href='https://science.larc.nasa.gov/people/katherine-travis/' target='_new'>Research Group of Katherine Travis</li></ul>");
// NUIST (Hong Liao)
L.marker([32.2056550650191, 118.72732078814639], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Nanjing University for Information Science & Technology (NUIST)</strong><br>Nanjing, China<ul><li><a href='http://sese.nuist.edu.cn/' target='_new'>School of Environmental Science and Engineering</a></li></ul>");
// Peking University (Lin Zhang, Jintai Lin)
L.marker([39.98702803490999, 116.30629233036714], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Peking University</strong><br>Beijing, China<ul><li><a href='https://www.atmos.pku.edu.cn/en/index.htm' target='_new'>Department of Atmospheric and Oceanic Sciences</a></li><li><a href='http://www.pku-atmos-acm.org/' target='_new'>Atmospheric Chemistry & Modeling Group</a></li><li><a href='https://www.songxichen.com/' target='_new'>Song Xi Chen Group</a></li><li><a href='https://sph.pku.edu.cn/info/1671/4758.htm' target='_new'>Tao Group</a></li><li><a href='http://scholar.pku.edu.cn/qichen' target='_new'>Air Quality and Health Effects Group</a></li></ul>");
// Southern University of Science and Technology (Tzung-May Fu)
L.marker([22.59396897939767, 113.9988970811606], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>Southern University of Science and Technology (SUSTech)</strong><br>Shenzhen, China<ul><li><a href='https://fugroup.org/index.php/Main_Page' target='_new'>Atmospheric Chemistry and Climate Group</a></li><li><a href='http://www.acmrsg.org/' target='_new'>Atmospheric Chemistry Modeling & Remote Sensing Group</a></li></ul>");
// University at Albany (Fangqun Yu)
L.marker([42.68518499286988, -73.82484393899807], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University at Albany</strong><br>Albany, New York, USA<ul><li><a href='http://www.albany.edu/~yfq' target='_new'>Atmospheric Sciences Research Center</a></li></ul>");
// University College London (Eloise Marais)
L.marker([51.524916735568716, -0.13414761035778536], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University College London</strong><br>London, UK<ul><li><a href='http://maraisresearchgroup.co.uk/' target='_new'>Atmospheric Composition and Satellite Observations Group</a></li></ul>");
// University of California Riverside (Will Porter)
L.marker([33.97383705726666, -117.3276858241781], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of California Riverside</strong><br>Riverside, California, USA<ul><li><a href='http://portergroup.ucr.edu' target='_new'>Porter Group</a></li></ul>");
// University of Colorado Boulder (Daven Henze)
L.marker([40.00760560186728, -105.2654481712982], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Colorado Boulder</strong><br>Boulder, Colorado, USA<ul><li><a href='http://spot.colorado.edu/~henzed' target='_new'>Henze Group</a></li><li><a href='https://www.colorado.edu/instaar/' target='_new'>Institute of Arctic and Alpine Research</a></li></ul>");
// University of Houston (Yuxuan Wang)
L.marker([29.719995451285502, -95.34221194133396], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Houston</strong><br>Houston, Texas, USA<ul><li><a href='https://www.yxwanggroup.net/' target='_new'>Yuxuan Wang Research Group</a></li><li><a href='http://spock.geosc.uh.edu/' target='_new'>Air-Quality Forecasting & Machine Learning Research Group</a></li></ul>");
// University of Illinois, Urbana-Champaign (Hannah Horowitz)
L.marker([40.113960, -88.226480], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Illinois</strong><br>Urbana-Champaign, USA<ul><li><a href='https://horowitz.cee.illinois.edu/' target='_new'>Horowitz Lab</a></li><li><a href='https://ctessum.cee.illinois.edu/' target='_new'>Tessum Research Group</a></li><li><a href='https://www.atmos.illinois.edu/~nriemer' target='_new'>Riemer Group</a></li></ul>");
// University of Iowa (Jun Wang)
L.marker([41.66295157995773, -91.55392869677041], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Iowa</strong><br>Iowa City, Iowa<ul><li><a href='https://arroma.uiowa.edu/' target='_new'>Atmospheric and Environmental Research Lab</a></li></ul>");
// University of Montana (Lu Hu)
L.marker([46.86016985312968, -113.98466092239556], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Montana</strong><br>Missoula, Montana, USA<ul><li><a href='http://hs.umt.edu/luhu/' target='_new'>Atmospheric Chemistry Group</a></li></ul>");
// University of Rochester (Lee Murray)
L.marker([43.130639177406486, -77.62555268374035], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Rochester</strong><br>Rochester, NY, USA<ul><li><a href='http://atmos.earth.rochester.edu/' target='_new'>Atmospheric Chemistry and Climate Group</a></li><li><a href='https://www.sas.rochester.edu/ees/petrenko/' target='_new'>Ice Core and Atmospheric Chemistry Lab</a></li></ul>");
// University of Toronto (Dylan Jones)
L.marker([43.661071540410596, -79.3953724333514], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Toronto</strong><br>Toronto, Ontario, Canada<ul><li><a href='https://jones-group.physics.utoronto.ca/' target='_new'>Atmospheric Physics and Composition Modelling Group</a></li> <li><a href='https://faculty.geog.utoronto.ca/Chen/Lius_website/home.htm' target='_new'>Liu Group</a></li><li><a href='https://www.geography.utoronto.ca/people/directories/all-faculty/jing-chen' target='_new'>Chen Research Group</li></ul>");
// University of Washington (Becky Alexander, Lyatt Jaegle)
L.marker([47.655414544601854, -122.30310147022449], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Washington</strong><br>Seattle, Washington, USA<ul><li><a href=' https://sites.uw.edu/beckya/' target='_new'>Alexander Group</li><li><a href='https://sites.uw.edu/jaegle/' target='_new'>Atmospheric Chemistry Modeling Group</a></li><li><a href='https://alexjturner.github.io/' target='_new'>Turner Group</a></li></ul>");
// University of Wollongong (Jenny Fisher)
L.marker([-34.40532418779173, 150.8787196771126], { icon: greenIcon }).addTo(mymap).bindPopup("<strong>University of Wollongong</strong><br>Wollongong, New South Wales, Australia<ul><li><a href='https://www.uow.edu.au/science-medicine-health/research/centre-for-atmospheric-chemistry/' target='_new'>Centre for Atmospheric Chemistry</a></li></ul>");
//----------------------------------------------------------
// PUT WASHU AND HARVARD AT THE BOTTOM TO MAKE PINS SHOW UP
//----------------------------------------------------------
// Washington University at St. Louis
L.marker([38.64896541161406, -90.31036703866653], { icon: redIcon }).addTo(mymap).bindPopup("<strong>Washington University</strong><br>St. Louis, Missouri, USA<ul><li><a href='https://sites.wustl.edu/acag/' target='_new'>Atmospheric Composition Analysis Group</a></li></ul>");
// Harvard University
L.marker([42.377986, -71.117046], { icon: redIcon }).addTo(mymap).bindPopup("<strong>Harvard University</strong><br>Cambridge, Massachusetts, USA<ul><li><a href='http://acmg.seas.harvard.edu/' target='_new'>Harvard Atmospheric Chemistry Modeling Group</a></li><li><a href='https://chinaproject.harvard.edu/' target='_new'>Harvard China Project</a></li><li><a href='https://sunderlandlab.org/' target='_new'>Biogeochemistry of Global Contaminents Research Group</a></li><li><a href='https://www.cfa.harvard.edu/' target='_new'>Harvard-Smithsonian Center for Astrophysics</a></li></ul>");
var popup = L.popup();
mymap.on('click', onMapClick);
</script>