-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcommunity.html
More file actions
1246 lines (857 loc) · 121 KB
/
Copy pathcommunity.html
File metadata and controls
1246 lines (857 loc) · 121 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<!--<base href="/community" />-->
<link rel="shortcut icon" href="img/geos-chem-logo-favicon.png" />
<link rel="canonical" href="community.html" />
<link rel="shortlink" href="community.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="GEOS-Chem Community" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="GEOS-Chem Community" />
<meta name="twitter:image" content="https://geos-chem.org" />
<title>GEOS-Chem Community</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_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/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>
</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 Community</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 map shows locations of registered GEOS-Chem user groups 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 community</a> maintained by the GEOS-Chem Support Team.
</p>
<p align="center">
Last updated: June 2026
</p>
<!-- Map -->
<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>");
// Aarhus University
L.marker([55.69550077441164, 12.102281950458801], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Aarhus University</strong><br>Aarhus, Denmark<ul><li><a href='https://envs.au.dk/en/' target='_new'>Department of Environmental Science</a></li><li><a href='https://chem.au.dk/forskning/forskningsomraader-og-grupper/teoretiskkemi/computational-atmospheric-chemistry' target='_new'>Computational Atmospheric Chemistry</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>");
// Altai State University
L.marker([53.348202295417536, 83.77583607976237], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Altai State University</strong><br>Barnaul, Russia<ul><li><a href='https://www.asu.ru/en/' target='_new'>Website</a></li></ul>");
// Anhui University
L.marker([31.358562073638076, 118.43872535215294], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Anhui University</strong><br>Anhui, China<br><ul><li><a href='https://en.ahu.edu.cn/' target='_new'>Website</a></li></ul>");
// Anhui University of Science and Technology
L.marker([32.629989432688724, 117.0138582562027], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Anhui University of Science and Technology</strong><br>Anhui, China<br><ul><li><a href='https://www.aust.edu.cn/' target='_new'>Website</a></li></ul>");
// Anhui University of Technology
L.marker([31.692937716220786, 118.51075391149149], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Anhui University of Technology</strong><br>Anhui, China<br><ul><li><a href='https://en.ahut.edu.cn/' target='_new'>Website</a></li></ul>");
// Arianet S.R.L.
L.marker([45.50351077095858, 9.1844716697571741], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Arianet S.R.L.</strong><br>Milan, Italy<ul><li><a href='https://www.aria-net.it/en/' 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>");
// Aswan University
L.marker([24.1285799582441, 32.89943480360249], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Faculty of Engineering - Aswan University</strong><br>Aswan, Egypt<br><ul><li><a href='https://eng.aswu.edu.eg/en/' 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.sompoke.com/' target='_new'>AIRSOMPOKE</a></li></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>");
// Banaras Hindu University
L.marker([25.268535251134985, 82.99052197975918], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Banaras Hindu University</strong><br>Varanasi, India</strong><ul><li><a href='https://www.bhu.ac.in/Site/Home/1_2_16_Main-Site' target='_new'>Website</a></li></ul>");
// Bar-Ilan University
L.marker([32.06918069047199, 34.84314124051376], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Bar-Ilan University</strong><br>Ramat Gan, Israel</strong><ul><li><a href='https://www.biu.ac.il/en' target='_new'>Website</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 Jiaotong University
L.marker([39.95236688775235, 116.34703182208926], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Beijing Jiaotong University</strong><br>Beijing, China</strong><ul><li><a href='https://en.bjtu.edu.cn/' target='_new'>Website</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>");
// Brigham Young University
L.marker([40.25183212150704, -111.6492125312556], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Brigham Young University</strong><br>Provo, Utah, USA<ul><li><a href='https://ignite.byu.edu/' target='_new'>CTRFlow 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>");
// Carbon Mapper
L.marker([34.1454152349616, -118.13640114407322], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Carbon Mapper</strong><br>Pasadena, California, USA<ul><li><a href='https://carbonmapper.org/' target='_new'>Website</li></ul>");
// Cardiff University
L.marker([51.488827229102526, -3.178811723294426], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Cardiff University/strong><br>Cardiff, UK<ul><li><a href='https://omarnawaz.com/' target='_new'>Climate and Atmospheric Science for Action Group (CASA)</li></ul>");
// Carleton University
L.marker([45.38713780095911, -75.69583922979173], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Carleton University</strong><br>Ottowa, Ontario, Canada<ul><li><a href='https://carleton.ca/cee/cu-people/amir-hakami/' target='_new'>Department of Civil and Environmental Engineering</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 for Research on Energy and Clean Air (CREA)
L.marker([60.16899561144148, 24.94119572538988], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Centre for Research on Energy and Clean Air (CREA)</strong><br>Helsinki, Finland<ul><li><a href='https://energyandcleanair.org/' target='_new'>Website</a></li></ul>");
// Central China Normal University
L.marker([30.519252285451504, 114.35953124884647], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Central China Normal University</strong><br>Wuhan, China<ul><li><a href='https://english.ccnu.edu.cn/' target='_new'>Website</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>");
// Chemours
L.marker([39.746096567049115, -75.54760174735631], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chemours</strong><br>Wilmington, Delaware, USA<ul><li><a href='https://www.chemours.com/' 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 West Normal University
L.marker([30.820119965727674, 106.06895119510067], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>China West Normal University</strong><br>Nanchong, Sichuan, China<ul><li><a href='https://www.cwnu.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>");
// Chongqing University
L.marker([29.56488930697949, 106.46817209791666], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chongqing University</strong><br>Chongqing, China<ul><li><a href='https://english.cqu.edu.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>");
// Chuo University
L.marker([35.641023425617526, 139.4042474537627], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Chuo University</strong><br>Hachioji, Japan<ul><li><a href='https://www.chuo-u.ac.jp/english/' 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>");
// City University of Hong Kong
L.marker([22.337044051188816, 114.17265560357363], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>City University of Hong Kong</strong><br>Hong Kong, China<ul><li><a href='https://xwgroupcityu.com/' target='_new'>Atmospheric Chemistry and Physics Modeling Group</a></li></ul>");
// Clark Atlanta University
L.marker([33.75154340302644, -84.41114569122814], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Clark Atlanta University</strong><br>Atlanta, Georgia, USA<ul><li><a href='https://www.cau.edu/' 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><li><a href='https://aerosol.ldeo.columbia.edu/' target='_new'>Westervelt Aerosol Group</a></li></ul>");
// Cranfield University
L.marker([52.07404426635111, -0.6281627872814983], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Cranfield University</strong><br>Cranfield, UK<ul><li><a href='https://www.cranfield.ac.uk/' target='_new'>Website</a></li></ul>");
// CSC - IT Center for Science
L.marker([60.177251303639885, 24.804815170513436], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>CSC - IT Center for Science</strong><br>Espoo, Finland<ul><li><a href='https://csc.fi/en/' target='_new'>Website</a></li></ul>");
// CSIR Fourth Paradigm Institute
L.marker([12.945462010444029, 77.666294055657], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>CSIR Fourth Paradigm Institute</strong><br>Bengaluru, India<ul><li><a href='https://csir4pi.res.in/' target='_new'>Website</a></li></ul>");
// Dalhousie University
L.marker([44.63692050224939, -63.58952175923389], { 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>");
// Debre Berhan University
L.marker([9.6568211367725, 39.52143689788079], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Debre Berhan University</strong><br>Debre Birhan, Ethiopia</strong><ul><li><a href='https://www.dbu.edu.et/' target='_new'>Website</a></li></ul>");
// Delft University of Technology
L.marker([52.00217866179973, 4.373619512335813], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Delft University of Technology</strong><br>Delft, Netherlands</strong><ul><li><a href='https://research.tudelft.nl/en/organisations/aircraft-noise-and-climate-effects/' target='_new'>Aircraft Noise and Climate Effects</a></li></ul>");
// Denison University
L.marker([40.07352291490328, -82.52268405880956], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Denison University</strong><br>Granville, Ohio, USA</strong><ul><li><a href='https://denison.edu/' target='_new'>Website</a></li></ul>");
// Direction de la Météorologie Nationale
L.marker([33.55624103512289, -7.6654027200648525], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Direction de la Météorologie Nationale</strong><br>Casablanca, Morocco<ul><li><a href='https://www.marocmeteo.ma/' target='_new'>Website</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 Kunshan University
L.marker([31.415977974267996, 120.90147034070606], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Duke Kunshan University</strong><br>Kunshan, China<ul><li><a href='https://www.dukekunshan.edu.cn/' target='_new'>Website</a></li></ul>");
// Duke University
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><li><a href='https://sites.duke.edu/shindellgroup/' target='_new'>Shindell Research Group</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>");
// École Polytechnique
L.marker([48.7147380132475, 2.215718140984176], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>École Polytechnique</strong><br>Palaiseau, France<ul><li><a href='https://www.polytechnique.edu/en' target='_new'>Website</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>");
// Environmental Defense Fund
L.marker([40.73851993115424, -73.98715086695302], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Environmental Defense Fund</strong><br>New York, New York, USA<ul><li><a href='https://www.edf.org/' target='_new'>Website</a></li></ul>");
// Eötvös Loránd University
L.marker([47.4905625214605, 19.058662514141485], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Eötvös Loránd University</strong><br>Budapest, Hungary<ul><li><a href='https://www.math.elte.hu/en/' target='_new'>Institute of Mathematics</a></li></ul>");
// EPFL
L.marker([46.52046762329701, 6.570191535225245], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>EPFL</strong><br>Ecublens, Switzerland<ul><li><a href='https://www.epfl.ch/labs/lapi/' target='_new'>Laboratory of atmospheric processes and their impacts (LAPI)</a></li></ul>");
// ETH Zurich
L.marker([47.37638160570821, 8.547660183239364], { 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>");
// First Institute of Oceanography
L.marker([36.10225966011053, 120.45930046626529], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>First Institute of Oceanography</strong><br>Qingdao, China<ul><li><a href='https://en.fio.org.cn/' target='_new'>Website</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>");
// GE Aerospace
L.marker([39.24452332698239, -84.44258156082859], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>GE Aerospace</strong><br>Evandale, Ohio, USA<ul><li><a href='https://www.geaerospace.com/' target='_new'>Website</a></li></ul>");
// George Washington University
L.marker([38.89971447161152, -77.04855628834781], { 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>");
// Georgetown University
L.marker([38.907600522855375, -77.0722155878049], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Georgetown University</strong><br>Washington, DC, USA<ul><li><a href='https://www.georgetown.edu/' target='_new'>Website</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>");
// GMV
L.marker([40.59371271357736, -3.701506098211796], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>GMV</strong><br>Madrid, Spain<ul><li><a href='https://www.gmv.com/en-es' target='_new'>Website</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>");
// Google Research
L.marker([37.4233612089543, -122.0833663284947], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Google Research</strong><br>Mountain View, CA, USA<ul><li><a href='https://research.google/' target='_new'>Website</a></li></ul>");
// GRASP Earth
L.marker([50.62878679424724, 3.0716333797609026], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>GRASP Earth</strong><br>Lille, France<ul><li><a href='https://www.grasp-earth.com/' target='_new'>Website</a></li></ul>");
// Guangxi University
L.marker([22.81447775817724, 108.32426664062777], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Guangxi University</strong><br>Guangxi, China<ul><li><a href='https://bs.gxu.edu.cn/' target='_new'>Website</a></li></ul>");
// Guangzhou University
L.marker([23.04137369885725, 113.36779266731932], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Guangzhou University</strong><br>Guangzhou, China<ul><li><a href='https://arsi.gzhu.edu.cn/' target='_new'>Institute of Aerospace Remote Sensing Innovations (ARSI)</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>");
// Gulfstream Aerospace
L.marker([32.139567681028716, -81.18839027152032], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Gulfstream Aerospace</strong><br>Savannah, Georgia, USA<ul><li><a href='https://www.gulfstream.com/en/' 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>");
// Hebei Institute of Meteorological Sciences
L.marker([37.95903638711102, 114.53777720342623], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Hebei Institute of Meteorological Sciences</strong><br>Hebei, China<ul><li><a href='https://english.hebust.edu.cn/' 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>");
// Ho Chi Minh City University of Technology
L.marker([10.772096068885837, 106.65797689740586], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Ho Chi Minh City University of Technology</strong><br>Ho Chi Minh City, Vietnam<ul><li><a href='https://oisp.hcmut.edu.vn/en/' 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://yguohkust-gz.github.io/index.html' target='_new'>Yixin Guo Research Group</a></li><li><a href='https://zenglab.hkust.edu.hk/' target='_new'>Zeng Lab</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>");
// ICIMOD
L.marker([27.64643747622391, 85.3234911405958], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>ICIMOD</strong><br>Lalipur, Nepal<ul><li><a href='https://www.icimod.org/' target='_new'>Website</a></li></ul>");
// Independent Researcher - Adarsha Adhikari
L.marker([28.209731568229788, 83.99094647689299], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Adarsha Adhikari (independent researcher)</strong><br>Pokhara, Nepal<ul><li><a href='https://www.linkedin.com/in/adarsha-pratap-adhikari/?originalSubdomain=np' 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 Science Education and Research Mohali
L.marker([30.663760712444283, 76.72750223486955], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Science Education and Research Mohali</strong><br>Nagar, India<ul><li><a href='https://www.iisermohali.ac.in/' target='_new'>Website</a></li></ul>");
// Indian Institute of Technology (ISM) Dhanbad
L.marker([23.81440706327089, 86.44130264049929], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology (ISM) Dhanbad</strong><br>Dhanbad, India<ul><li><a href='https://www.iitism.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 Gandhinagar
L.marker([23.21324585841199, 72.68574149817186], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology Gandhinagar</strong><br>Gandhinagar, India<ul><li><a href='https://iitgn.ac.in/' target='_new'>Website</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 Mandi
L.marker([31.775490266145848, 76.98617278491304], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Indian Institute of Technology Mandi</strong><br>Pradesh, India<ul><li><a href='https://www.iitmandi.ac.in/' target='_new'>Website</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>");
// Inha University
L.marker([37.4500050370525, 126.65344508140893], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Inha University</strong><br>Incheon, South Korea<ul><li><a href='https://eng.inha.ac.kr/eng/index.do' target='_new'>Website</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>");
// Institut Méditerranéen d’Océanologie – MIO
L.marker([43.235481387565095, 5.440438498815221], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Institut Méditerranéen d’Océanologie – MIO</strong><br>Marseille, France<ul><li><a href='https://www.mio.osupytheas.fr/fr/' target='_new'>Website</a></li></ul>");
// Institute of Physics of the NAS of Belarus
L.marker([53.921102554149456, 27.60033704177941], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Institute of Physics of the NAS of Belarus</strong><br>Minsk, Belarus<ul><li><a href='http://ifan.basnet.by/en/' target='_new'>Website</a></li></ul>");
// Instituto de Investigaciones Fisicoquimicas Teoricas y Aplicadas
L.marker([-34.91268797064246, -57.925183929922696], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Instituto de Investigaciones<br>Fisicoquimicas Teoricas y Aplicadas</strong><br>Buenos Aires, Argentina<ul><li><a href='https://www.inifta.unlp.edu.ar/cinetica_quimica_y_fotoquimica_en_fase_gaseosa' target='_new'>Website</a></li></ul>");
// Instituto de Instituto de Pesquisas Energéticas e Nucleares
L.marker([-23.56637587663177, -46.737964001490326], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Instituto de Instituto de Pesquisas Energéticas e Nucleares</strong><br>São Paolo, Brazil<ul><li><a href='https://www.ipen.br/portal_ing/portal/default.php' 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>");
// Istanbul Technical University
L.marker([41.1055940712175, 29.025404469608176], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Istanbul Technical University</strong><br>Istanbul, Turkey<ul><li><a href='https://eies.itu.edu.tr/en/home' target='_new'>Eurasia Institute of Earth Sciences</a></li></ul>");
// Italian National Research Council
L.marker([42.10635823084128, 12.637777631446253], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Italian National Research Council</strong><br>Monterotondo RM, Italy<ul><li><a href='http://www.iia.cnr.it' 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>");
// Japan Aerospace Exploration Agency
L.marker([36.067227488978425, 140.12944100330515], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Japan Aerospace Exploration Agency</strong><br>Tsukuba, Japan<ul><li><a href='https://global.jaxa.jp/' target='_new'>Website</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>");
// 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>");
// Jiangsu University
L.marker([32.199310895071704, 119.51420389471704], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Jiangsu University</strong><br>Zhenjiang, Jiangsu, China<ul><li><a href='https://eng.ujs.edu.cn/' 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>");
// Kasetsart University
L.marker([13.84796816950411, 100.57237275561113], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Kasetsart University</strong><br>Bangkok, Thailand<ul><li><a href='https://www.ku.ac.th/en/community-home' target='_new'>Website</a></li></ul>");
// Kenyatta University
L.marker([-1.1845095912132546, 36.93433130095419], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Kenyatta University</strong><br>Nairobi, Kenya<ul><li><a href='https://www.ku.ac.ke/' target='_new'>Website</a></li></ul>");
// King Abdullah University of Science and Technology
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>");
// Kyushu University
L.marker([33.5996053395715, 130.22621914627896], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Kyushu University</strong><br>Fukuoka, Japan<ul><li><a href='https://www.kyushu-u.ac.jp/en/' 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>");
// LATMOS
L.marker([48.77789943935692, 2.048695153428236], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>LATMOS</strong><br>Guyancourt, France<ul><li><a href='https://latmos.ipsl.fr/en/' target='_new'>Website</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>");
// Macquarie University
L.marker([-33.773841509593375, 151.11273562692773], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Macquarie University</strong><br>Macquarie Park, Australia<ul><li><a href='https://www.mq.edu.au/' target='_new'>Website</a></li></ul>");
// Malaviya National Institute of Technology Jaipur
L.marker([26.863953234681926, 75.81071322338217], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Malaviya National Institute of Technology Jaipur</strong><br>Jaipur, Rajasthan, India<ul><li><a href='https://mnit.ac.in/' target='_new'>Website</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>");
// Minnan Normal University
L.marker([24.510343740097372, 117.6342850982022], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Minnan Normal University</strong><br>Zhangzhou, Fujian, China<ul><li><a href='https://www.mnnu.edu.cn/english/AboutUs.htm' target='_new'>Website</a></li></ul>");
// Mizoram University
L.marker([23.73372166400336, 92.66826258004829], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Mizoram University</strong><br>Aizawl, Mizoram, India<ul><li><a href='https://mzu.edu.in/' target='_new'>Website</a></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>");
// Myongji University
L.marker([37.580191920882534, 126.92262177608751], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Myongji University</strong><br>Seoul, South Korea<ul><li><a href='https://www.mju.ac.kr/sites/mjukr/intro/intro.html' 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, Jiangsu, 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>");
// Nanjing University of Aeronautics and Astronautics
L.marker([32.036478616055795, 118.82028737984525], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Nanjing University of Aeronautics and Astronautics</strong><br>Nanjing, Jiangsu, China<ul><li><a href='https://en.nuaa.edu.cn/' target='_new'>Website</a></li></ul>");
// Nankai University of Aeronautics and Astronautics
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>");
// Nanning Normal University
L.marker([22.840991688686348, 108.32017390098716], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Nanning Normal University</strong><br>Nanning, Guangxi, China<ul><li><a href='https://www.nnnu.edu.cn/' target='_new'>Website</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://earthobservatory.sg/research/climate/air-pollution-and-health' target='_new'>Earth Observatory of Singapore</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 Atmospheric Research Laboratory
L.marker([13.459306715082512, 79.17542913504735], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National Atmospheric Reserach Laboratory</strong><br>Gadanki, India<ul><li><a href='https://www.narl.gov.in/' 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>");
// National University of Defense Technology
L.marker([28.213807421292195, 112.99362999658231], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>National University of Defense Technology</strong><br>Changsha, Hunan, China<ul><li><a href='https://english.nudt.edu.cn/' 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 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>");
// Paul Scherrer Institute
L.marker([47.53862697106773, 8.22988772383333], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Paul Scherrer Institute</strong><br>Villigen, Switzerland<ul><li><a href='https://www.psi.ch/en' 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<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</a></li></ul>");
// Physical Research Laboratory, Ahmedabad
L.marker([23.0361017, 72.5434248], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Physical Research Laboratory</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>");
// Pohang University of Science and Technology (POSTECH)
L.marker([36.011023850971654, 129.32270464036142], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Pohang University of Science and Technology (POSTECH)</strong><br>Gyeongsangbuk-do, South Korea<ul><li><a href='https://www.postech.ac.kr/eng/index.do' target='_new'>Website</a></li></ul>");
// Portland State University
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
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>");
// Rangsit University
L.marker([13.964302745201339, 100.58679075522818], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Rangsit University</strong><br>Pathum Thani, Thailand<ul><li><a href='https://rsu.ac.th/en' 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>");
// S&P
L.marker([40.703311423809474, -74.00913798962742], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>S&P</strong><br>New York, New York, USA<ul><li><a href='https://www.spglobal.com/en' target='_new'>Website</a></li></ul>");
// Saint Louis University
L.marker([38.63587919105803, -90.23408018835975], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Saint Louis University</strong><br>St. Louis, Missouri, USA<ul><li><a href='https://www.slu.edu/' target='_new'>Website</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>");
// Savitribai Phule Pune University
L.marker([18.5529684, 73.82765829693632], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Savitribai Phule Pune University</strong><br>Pune, India<ul><li><a href='https://www.unipune.ac.in/' target='_new'>Website</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>");
// Shandong Agricultural University
L.marker([36.1934471452654, 117.12060930149929], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Shandong Agricultural University</strong><br>Shangdong, China<ul><li><a href='https://english.sdau.edu.cn/' target='_new'>Website</a></li></ul>");
// Shantou University Medical College
L.marker([23.35613772916294, 116.69650454063974], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Shantou University Medical College</strong><br>Shantou, China<ul><li><a href='https://www.med.stu.edu.cn/' target='_new'>Website</a></li></ul>");
// Shanxi Province Meteorological Institute (CMA)
L.marker([36.0526459983097, 113.03054839911354], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Shanxi Province Meteorological Institute</strong><br>Changzhi, Shanxi, China<ul><li><a href='https://www.cma.gov.cn/en/service/' 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, Shanxi, China<ul><li><a href='https://www.sxu.edu.cn/' target='_new'>Website</a></li></ul>");
// Shenzhen University
L.marker([22.533040159878492, 113.93287736888655], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Shenzhen University</strong><br>Shenzhen, Guangdong Province, China<ul><li><a href='https://en.szu.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>");
// Space Physics Laboratory (SPL)
L.marker([8.512403348923518, 76.88866269796091], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Space Physics Laboratory (SPL)</strong><br>Thiruvananthapuram, Kerala, India<ul><li><a href='https://spl.gov.in/SPLv2/' target='_new'>Vikram Sarabhai Space Centre (VSSC)</a></li></ul>");
// Spark Climate Solutions
L.marker([34.09016478515626, -117.88104154907484], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Spark Climate Solutions</strong><br>Covina, California, USA<ul><li><a href='https://www.sparkclimate.org/' 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://woods.stanford.edu/research/climate-and-energy-policy-program' target='_new'>Climate and Energy Policy Program</a></li><li><a href='https://climatelab.stanford.edu/' target='_new'>Climate and Earth System Dynamics Group</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>");
// TERI School of Advanced Studies
L.marker([28.544379201473426, 77.14841565357189], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>TERI School of Advanced Studies</strong><br>Delhi, India<ul><li><a href='https://www.terisas.ac.in/' target='_new'>Website</a></li></ul>");
// Texas A&M University
L.marker([30.618643817577848, -96.336361049597], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Texas A&M University</strong><br>College Station, Texas, USA<ul><li><a href='https://people.tamu.edu/~yuezhang/' target='_new'>Aerosol Chemistry & Climate Impact Lab</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 Citadel
L.marker([32.79583059227635, -79.95937243039643], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>The Citadel</strong><br>Charleston, South Carolina, USA<ul><li><a href='https://www.citadel.edu/' target='_new'>Website</a></li></ul>");
// The Hong Kong Polytechnic University (PolyU)
L.marker([22.304548484670075, 114.17962459478647], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>The Hong Kong Polytechnic University (PolyU)</strong><br>Hong Kong, China<ul><li><a href='https://www.polyu.edu.hk/en/' 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 Hong Kong
L.marker([22.283099007246033, 114.13648699401699], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>The University of Hong Kong</strong><br>Hong Kong, China<ul><li><a href='https://geog.hku.hk/' target='_new'>Department of Geography</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>");
// The University of Tokyo
L.marker([35.713702110759, 139.76298007976067], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>The University of Tokyo</strong><br>Tokyo, Japan<ul><li><a href='https://www.u-tokyo.ac.jp/en/' target='_new'>Website</a></li></ul>");
// Third Institute of Oceanography
L.marker([24.43425090642791, 118.09411489402711], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Third Institute of Oceanography</strong><br>Xiamen, Fujian, China<ul><li><a href='http://en.tio.org.cn/' target='_new'>Website</a></li></ul>");
// Tiangong University (formerly Tianjin Polytechnic University)
L.marker([39.06855606489344, 117.11405410859639], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Tiangong University</strong><br>Tianjin, China<ul><li><a href='https://en.tiangong.edu.cn/' target='_new'>Website</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>");
// Toyo University
L.marker([35.722739472465015, 139.75033206970448], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Toyo University</strong><br>Tokyo, Japan<ul><li><a href='https://www.toyo.ac.jp/' target='_new'>Website</a></li></ul>");
// Tsinghua Shenzhen International Graduate School
L.marker([22.590982190633806, 113.9698264074605], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Tsinghua Shenzhen International Graduate School</strong><br>Nanshan, Shenzhen, China<ul><li><a href='https://www.sigs.tsinghua.edu.cn/en/' 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>");
// 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>");
// Universidad Autonoma de Madrid
L.marker([40.54669827130469, -3.694297530110595], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universidad Autonoma de Madrid</strong><br>Madrid, Spain<ul><li><a href='https://www.uam.es/uam/en/inicio' target='_new'>Website</a></li></ul>");
// Universidad Nacional Toribio Rodriguez de Mendoza
L.marker([-6.233476901310456, -77.8532509351885], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universidad Nacional Toribio Rodriguez de Mendoza</strong><br>Chachapoyas, Peru<ul><li><a href='http://www.untrm.edu.pe/' target='_new'>Website</a></li></ul>");
// Universidade de Aveiro
L.marker([40.6305628152586, -8.657413820239098], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universidade de Aveiro</strong><br>Aveiro, Portugal<ul><li><a href='https://www.ua.pt/en/' target='_new'>Website</a></li></ul>");
// Universidade de São Paulo
L.marker([-23.564138774786468, -46.738397307005506], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universidade de 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'>Mechatronics Engineering</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>");
// University at Albany
L.marker([42.68518499286988, -73.82484393899807], { icon: blueIcon }).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 of Agriculture Faisalabad
L.marker([31.42941679814965, 73.07516844752979], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Agriculture</strong><br>Faisalabad, Pakistan<ul><li><a href='https://web.uaf.edu.pk/' target='_new'>Website</a></li></ul>");
// University of Alaska
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
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 Sherbrooke
L.marker([45.37794237095611, -71.92932982990341], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>Universite de Sherbrooke</strong><br>Sherbrooke, Quebec, Canada<ul><li><a href='https://www.usherbrooke.ca/about/' target='_new'>Website</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 Bristol
L.marker([51.45853757168831, -2.6021221588601287], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Bristol</strong><br>Bristol, UK<ul><li><a href='https://www.bristol.ac.uk/chemistry/research/acrg/' target='_new'>Atmospheric Chemistry Research Group</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</a></li><li><a href='https://iccs.cam.ac.uk/' target='_new'>Institute of Computing for Climate Science</a></li><li><a href='https://whittle.eng.cam.ac.uk/' target='_new'>Whittle Labotatory</a></li></ul>");
// University of Chicago
L.marker([41.86890281093872, -87.64690154592182], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Chicago</strong><br>Chicago, Illinois, USA<ul><li><a href='https://mingyi-w.github.io/' target='_new'>Wang Aerosol Lab</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 Copenhagen
L.marker([55.69333898158557, 12.563286042776577], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Copenhagen</strong><br>Copenhagen, Denmark<ul><li><a href='https://chem.ku.dk/research_sections/physchem/kjaergaardgroup/' target='_new'>Kjaergaard Group</li></ul>");
// University of Dhaka
L.marker([23.733948278592763, 90.3930002981593], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Dhaka</strong><br>Dhaka, Bangladesh<ul><li><a href='https://www.du.ac.bd/' target='_new'>Website</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 Groningen
L.marker([53.219307300353115, 6.56287301240767], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Groningen</strong><br>Groningen, Netherlands<ul><li><a href='https://www.rug.nl/research/centre-for-isotope-research/' target='_new'>Centre for Isotope Research</a></li></ul>");
// University of Hawaii at Manoa
L.marker([21.29693054369199, -157.81753946472006], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Hawaii at Manoa</strong><br>Honolulu, Hawaii, USA<ul><li><a href='https://manoa.hawaii.edu/' target='_new'>Website</a></li></ul>");
// University of Houston
L.marker([29.719995451285502, -95.34221194133396], { icon: blueIcon }).addTo(mymap).bindPopup("<strong>University of Houston</strong><br>Houston, Texas, USA<ul><li><a href='hhttps://www.uh.edu/nsm/earth-atmospheric/people/faculty/yuxuan-wang/index.php' 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 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>");