-
Notifications
You must be signed in to change notification settings - Fork 3
/
steering-committee.html
1357 lines (1329 loc) · 56.8 KB
/
steering-committee.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IEMobile 7]><html class="iem7" lang="en" dir="ltr"><![endif]-->
<!--[if lte IE 6]><html class="lt-ie9 lt-ie8 lt-ie7" lang="en" dir="ltr"><![endif]-->
<!--[if (IE 7)&(!IEMobile)]><html class="lt-ie9 lt-ie8" lang="en" dir="ltr"><![endif]-->
<!--[if IE 8]><html class="lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--><html lang="en" dir="ltr"><!--<![endif]-->
<head>
<meta charset="utf-8" />
<!--<base href="/steering-commitee" />-->
<link rel="shortcut icon" href="img/geos-chem-logo-favicon.png" />
<link rel="canonical" href="steering-committee.html" />
<link rel="shortlink" href="steering-committee.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="GEOS-Chem Steering Committee" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="GEOS-Chem Steering Committee" />
<meta name="twitter:description" content="GEOS-Chem Steering Committee" />
<meta name="twitter:image" content="https://geos-chem.org" />
<title>GEOS-Chem Steering Committee</title>
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link type="text/css" rel="stylesheet" href="css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4%EF%B9%96m=1675397288.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_1kR8T1_c-l5pBT6ZwbDT7BFda-4fyqW9Jjum29_2IY8%EF%B9%96m=1675397312.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_YnlUIvHP13qgpYEqubzE8JyDwlSxUnVibfnVkSoSDb0%EF%B9%96m=1675397273.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_Ku-3OcT9qU9h7dnGig5e23q6EVryY8orK4wzVDxsweE%EF%B9%96m=1675397367.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_vprtFTrWyg23GbY50_zJZHWGYMNfS8vsrRS26i4-ISk%EF%B9%96m=1675397406.css" media="screen" />
<link type="text/css" rel="stylesheet" href="css/css_dW-aNNrctRhQNc-KECjtQd0PxuW-h19IEum-TX2MeEk%EF%B9%96m=1675397301.css" media="print" />
<link type="text/css" rel="stylesheet" href="css/css_SH2Lx3Qprh0GZo_9xRp85U9NsWfkSXn_Bi-rJoMY1sw%EF%B9%96m=1675397273.css" media="screen" />
<link type="text/css" rel="stylesheet" href="css/css_uaIDKcYMUK5osSQXuirpr3ZleXtnnpBN-eiECm7N0M0%EF%B9%96m=1675397395.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/blue_sky.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/responsive.blue_sky.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/geos-chem.css" media="all"/>
<script type="text/javascript" src="dropdown-menu.js"></script>
<!--[if lte IE 8]>
<script type="text/javascript">
var os_c = document.createElement;os_c('header');os_c('nav');os_c('section');os_c('article');os_c('aside');os_c('footer');os_c('hgroup');os_c('figure');
</script>
<![endif]-->
</head>
<body class="html not-front not-logged-in no-sidebars page-node page-node- page-node-1585687 node-type-page og-context og-context-node og-context-node-1585652 navbar-on">
<div id="skip-link">
<a href="#main-content" class="element-invisible element-focusable" tabindex="1">Skip to main content</a>
</div>
<div id="page_wrap" class="page_wrap">
<div id="page" class="container page header-main content-top footer-none">
<div id="page-wrapper">
<!--header regions beg-->
<header id="header" class="clearfix" role="banner">
<div id="header-container">
<div id="header-panels" class="at-panel gpanel panel-display three-col clearfix">
<div class="region region-header-second"><div class="region-inner clearfix">
<section id="block-boxes-1630413211" class="block block-boxes block-boxes-os_boxes_html" module="boxes" delta="1630413211">
<div class="block-inner clearfix">
<h2 class="block-title" ng-non-bindable="">Site-Logo</h2>
<div class="block-content content" ng-non-bindable="">
<div id='boxes-box-1630413211' class='boxes-box'>
<div class="boxes-box-content">
<p style="text-align:center"><a href="index.html" title=""><img alt="Welcome to the GEOS-Chem website" src="img/geos-chem-logo.png" style="width:420px" /></a></p>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</header>
<!--header regions end-->
<!--main menu region beg-->
<div id="menu-bar" class="nav region-menu-bar clearfix">
<nav id="block-os-primary-menu" class="block block-os no-title menu-wrapper menu-bar-wrapper clearfix" module="os" delta="primary-menu">
<script>inlineDropDownMenu();</script>
</nav>
</div>
<!--main menu region end-->
<div id="columns" class="clearfix">
<div class="hg-container">
<div id="content-column" role="main">
<div class="content-inner">
<a name="main-content"></a>
<header id="main-content-header">
<a name="main-content"></a>
<h1 align="center" id="page-title" ng-non-bindable="">Steering Committee</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-1585685" 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 align="center">
<a href="#overview">Overview</a> | <a href="#function">Functioning of the GCSC</a> | <a href="#meetings">GCSC Meeting Minutes and Reports</a>
</p>
<a name="overview" id="overview"></a>
<h2>Overview</h2>
<p align="justify">
The charge of the GEOS-Chem Steering Committee (GCSC) is to:
</p>
<ol>
<li>Develop long-term strategies for the model and for the functioning of the <a href="users.html">user community</a></li>
<li><a href="http://wiki.geos-chem.org/GEOS-Chem_model_development_priorities" target="_blank">Prioritize and enable model development</a> in consultation with the <a href="working-groups.html" title="">GEOS-Chem Working Groups</a> (WGs)</li>
<li>Review model benchmarks and monitor the integrity and traceability of the model.</li>
</ol>
<p align="justify">
GEOS-Chem Steering Committee membership is rotating and international. Members are personally invested in GEOS-Chem through their research. Current members are:
</p>
<table align="center" border="1" cellpadding="10" cellspacing="0">
<tr>
<th scope="col" valign="top">Person</th>
<th scope="col" valign="top">Institution</th>
<th scope="col" valign="top">Title</th>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.atmos.washington.edu/blog/beckya/becky-alexander/" target="_blank">Becky Alexander</a>
</td>
<td align="center" valign="top">
University of Washington (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Aerosols_Working_Group" target="_blank">Aerosols Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://www.kelvinbates.com/" target="_blank">Kelvin Bates</a>
</td>
<td align="center" valign="top">
NOAA (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Chemistry_Working_Group" target="_blank">Chemistry Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="mailto:[email protected]">Kevin Bowman</a>
</td>
<td align="center" valign="top">
Jet Propulsion Laboratory (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Carbon_Cycle_Working_Group" target="_blank">Carbon Cycle Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://www.imperial.ac.uk/people/s.eastham" target="_blank">Sebastian Eastham</a>
</td>
<td align="center" valign="top">
Imperial College London (UK)
</td>
<td align="center" valign="top">
GCHP Model Scientist &<br />Co-Chair: <a href="http://wiki.geos-chem.org/Stratospheric_Working_Group" target="_blank">Stratospheric Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://staff.ucar.edu/users/emmons" target="_blank">Louisa Emmons</a>
</td>
<td align="center" valign="top">
National Center for Atmospheric Research (USA)
</td>
<td align="center" valign="top">
CESM Liaison
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://jennyfisher.github.io/" target="_blank">Jenny Fisher</a>
</td>
<td align="center" valign="top">
University of Wollongong (Australia)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Hg_and_POPs_Working_Group" target="_blank">Hg and POPs Working Group</a><br><i>(on leave of absence until July 2024)</i>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://fugroup.org/index.php/Tzung-May_FU" target="_blank">Tzung-May Fu</a>
</td>
<td align="center" valign="top">
Southern University of Science and Technology (China)
</td>
<td align="center" valign="top">
WRF-GC Model Scientist
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.bu.edu/earth/people/faculty/jeffrey-geddes/" target="_blank">Jeff Geddes</a>
</td>
<td align="center" valign="top">
Boston University (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Surface-Atmosphere_Exchange_Working_Group" title="">Surface-Atmosphere Exchange Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://www.jessicahaskinsphd.com/" target="_blank">Jessica Haskins</a>
</td>
<td align="center" valign="top">
University of Utah (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Chemistry_Working_Group" target="_blank">Chemistry Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.barronh.com/" target="_blank">Barron Henderson</a>
</td>
<td align="center" valign="top">
Environmental Protection Agency (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Chemistry_Working_Group" target="_blank">Chemistry Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://spot.colorado.edu/%7Ehenzed/" target="_blank">Daven Henze</a>
</td>
<td align="center" valign="top">
University of Colorado (USA)
</td>
<td align="center" valign="top">
<a href="http://wiki.geos-chem.org/GEOS-Chem_Adjoint_Model" target="_blank">Adjoint Model Scientist</a> &<br />Co-Chair: <a href="http://wiki.geos-chem.org/Inverse_Modeling_and_Data_Assimilation_Working_Group" target="_blank">Inverse Modeling and Data Assimilation Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://acgc.eoas.fsu.edu/people/christopher-d-holmes/" target="_blank">Chris Holmes</a>
</td>
<td align="center" valign="top">
Florida State University (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Surface-Atmosphere_Exchange_Working_Group" title="">Surface-Atmosphere Exchange Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://cee.illinois.edu/directory/profile/hmhorow" title="">Hannah Horowitz</a>
</td>
<td align="center" valign="top">
University of Illinois Urbana-Champaign (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Hg_and_POPs_Working_Group" target="_blank">Hg and POPs Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://hs.umt.edu/luhu/" target="_blank">Lu Hu</a>
</td>
<td align="center" valign="top">
University of Montana (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Chemistry_Working_Group" target="_blank">Chemistry Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://projects.iq.harvard.edu/acmg/people/daniel-j-jacob" target="_blank">Daniel Jacob</a>
</td>
<td align="center" valign="top">
Harvard University (USA)
</td>
<td align="center" valign="top">
Co-Model Scientist
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://sites.uw.edu/jaegle/" title="">Lyatt Jaeglé</a>
</td>
<td align="center" valign="top">
University of Washington (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http:/wiki.geos-chem.org/Emissions_Working_Group" target="_blank" title="">Emissions Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.atmosp.physics.utoronto.ca/%7Ejones/" target="_blank">Dylan Jones</a>
</td>
<td align="center" valign="top">
University of Toronto (Canada)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Carbon_Cycle_Working_Group" target="_blank">Carbon Cycle Working Group</a> &<br />Co-Chair: <a href="http://wiki.geos-chem.org/Stratospheric_Working_Group" target="_blank">Stratospheric Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://science.gsfc.nasa.gov/sci/bio/k.e.knowland" target="_blank">Emma Knowland</a>
</td>
<td align="center" valign="top">
NASA GMAO; Morgan State University (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Transport_Working_Group" target="_blank">Transport Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="mailto:[email protected]">Hong Liao</a>
</td>
<td align="center" valign="top">
Nanjing University for Information Science & Technology (China)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http:/wiki.geos-chem.org/Chemistry-Climate_Working_Group" target="_blank" title="">Chemistry-Climate<br />Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.pku-atmos-acm.org/acmGroup.php/#Leader" target="_blank">Jintai Lin</a>
</td>
<td align="center" valign="top">
Peking University (China)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http:/wiki.geos-chem.org/Emissions_Working_Group" target="_blank" title="">Emissions Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://scholar.harvard.edu/elundgren/home" target="_blank">Lizzie Lundgren</a>
</td>
<td align="center" valign="top">
Harvard University (USA)
</td>
<td align="center" valign="top">
Model Engineer &<br />Co-Chair: <a href="http://wiki.geos-chem.org/Software_Engineering_Working_Group" target="_blank">Software Engineering Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://maraisresearchgroup.co.uk" target="_blank">Eloise Marais</a>
</td>
<td align="center" valign="top">
University College London (UK)
</td>
<td align="center" valign="top">
Co-Model Scientist &<br>Co-Chair: <a href="http:/wiki.geos-chem.org/Emissions_Working_Group" target="_blank" title="">Emissions Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://engineering.wustl.edu/Profiles/Pages/Randall-Martin.aspx" target="_blank">Randall Martin</a>
</td>
<td align="center" valign="top">
Washington University (USA)
</td>
<td align="center" valign="top">
Model Scientist
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://ees.rochester.edu/atmos" target="_blank">Lee Murray</a>
</td>
<td align="center" valign="top">
University of Rochester (USA)
</td>
<td align="center" valign="top">
GISS-GC Model Scientist &<br />Co-Chair: <a href="http:/wiki.geos-chem.org/Chemistry-Climate_Working_Group" target="_blank" title="">Chemistry-Climate<br />Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://pierce.atmos.colostate.edu/" target="_blank">Jeffrey Pierce</a>
</td>
<td align="center" valign="top">
Colorado State University (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Aerosols_Working_Group" target="_blank">Aerosols Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://profiles.ucr.edu/app/home/profile/wporter" title="">Will Porter</a>
</td>
<td align="center" valign="top">
University of California, Riverside (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Aerosols_Working_Group" title="">Aerosols Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://www.cira.colostate.edu/staff/schuh-andrew/" target="_blank">Andrew Schuh</a>
</td>
<td align="center" valign="top">
Colorado State University (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Transport_Working_Group" target="_blank">Transport Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.viralshah.info/" target="_blank">Viral Shah</a>
</td>
<td align="center" valign="top">
NASA Global Modeling and Assimilation Office (USA)
</td>
<td align="center" valign="top">
GMAO Liaison
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://msulprizio.github.io" target="_blank">Melissa Sulprizio</a>
</td>
<td align="center" valign="top">
Harvard University (USA)
</td>
<td align="center" valign="top">
Model Engineer &<br />Co-Chair: <a href="http://wiki.geos-chem.org/Software_Engineering_Working_Group" target="_blank">Software Engineering Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.cuhk.edu.hk/sci/essc/people/tai_pk-Amos.html" target="_blank">Amos Tai</a>
</td>
<td align="center" valign="top">
The Chinese University of Hong Kong (China)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Surface-Atmosphere_Exchange_Working_Group" title="">Surface-Atmosphere Exchange Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://science.larc.nasa.gov/people/katherine-travis/" title="">Katherine Travis</a>
</td>
<td align="center" valign="top">
NASA LaRC (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Transport_Working_Group" target="_blank">Transport Working Group</a>
</td>
</tr>
<tr><td align="center" valign="top">
<a href="https://science.gsfc.nasa.gov/sed/bio/pamela.a.wales" target="_blank">Pamela Wales</a>
</td>
<td align="center" valign="top">
NASA Global Modeling and Assimilation Office (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Stratospheric_Working_Group" target="_blank">Stratospheric Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://www.engineering.uiowa.edu/faculty-staff/jun-wang" target="_blank">Jun Wang</a>
</td>
<td align="center" valign="top">
University of Iowa (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Inverse_Modeling_and_Data_Assimilation_Working_Group" target="_blank">Inverse Modeling and Data Assimilation Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://yantosca.github.io/" target="_blank">Bob Yantosca</a>
</td>
<td align="center" valign="top">
Harvard University (USA)
</td>
<td align="center" valign="top">
Model Engineer &<br />Co-Chair: <a href="http://wiki.geos-chem.org/Software_Engineering_Working_Group" target="_blank">Software Engineering Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.albany.edu/~yfq/" target="_blank">Fangqun Yu</a>
</td>
<td align="center" valign="top">
State University of New York at Albany (USA)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Aerosols_Working_Group" target="_blank">Aerosols Working Group</a>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="http://www.phy.pku.edu.cn/~acaq/group.html" target="_blank">Lin Zhang</a>
</td>
<td align="center" valign="top">
Peking University (China)
</td>
<td align="center" valign="top">
Nested Model Scientist
</td>
</tr>
<tr>
<td align="center" valign="top">
<a href="https://ebmg.nju.edu.cn/" target="_blank">Yanxu Zhang</a>
</td>
<td align="center" valign="top">
Nanjing University (China)
</td>
<td align="center" valign="top">
Co-Chair: <a href="http://wiki.geos-chem.org/Hg_and_POPs_Working_Group" target="_blank">Hg and POPs Working Group</a>
</td>
</tr>
</table>
<p align="justify">
Please also see the <a href="working-groups.html" title="">GEOS-Chem Working Groups</a> page.
</p>
<a name="function" id="function"></a>
<h2>Functioning of the GEOS-Chem Steering Committee</h2>
<p align="justify">
The <em><a href="https://drive.google.com/file/d/1SJSCa64wxvolTDMLDnhc6WlpJy_Ejs9U/view?usp=share_link">Functioning of the GEOS-Chem Steering Committee</a></em> document describes:
</p>
<ul>
<li>The role of the GEOS-Chem Steering Committee</li>
<li>The structure of the GEOS-Chem Steering Committee</li>
<li>The responsibilities of individual GEOS-Chem Steering Committee members</li>
<li>The requirements to serve on the GEOS-Chem Steering Committee</li>
<li>The process by which GEOS-Chem Steering Committee members are appointed</li>
</ul>
<a name="meetings" id="meetings"></a>
<h2>GEOS-Chem Steering Committee Meeting Minutes and Reports</h2>
<table align="center" border="1" cellpadding="5" cellspacing="0">
<tr>
<th scope="col">
Date
</th>
<th scope="col">
Meeting Minutes
</th>
<th scope="col">
Supplementary Documents
</th>
</tr>
<tr>
<tr>
<td align="center">
25 Sep 2024
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1gWwwKFJMb8Np3M178wkD9mdWhn-mPP8G/view?usp=sharing" target="blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href='https://drive.google.com/file/d/1lUsMZkO0prJGc2eAR1hSxAlYlRooDwK5/view?usp=sharing' target='blank'>GEOS-Chem Newsletter 2024, Issue 2</a>
</td>
</tr>
<td align="center">
14 Jun 2024
</td>
<td align="center">
<a href="https://drive.google.com/file/d/15rxfyMbtrQOnydHJutiNAaWXpGQUAQkV/view?usp=sharing" target="blank">Minutes [PDF]</a>
</td>
<td align="center">
-
</td>
</tr>
<tr>
<td align="center">
31 Jan 2024
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1DjfBQQ3roV8vBjlEPGdN1lvnI2etHXvf/view?usp=sharing">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/11WgcI8j2PjvkSeyuTrlVauAzLSJRGV6B/view?usp=sharing">Chemistry-Climate Working Group update</a><br />
<a href="https://drive.google.com/file/d/1Jqwj9wvtUzBrmCxw9UfrQY-n-fCATDok/view?usp=sharing">Hg and POPs Working Group update</a><br/>
<a href="https://drive.google.com/file/d/1OR4GuWuivFwC57iG1lmuEDJAN-8MqQi9/view?usp=sharing">Carbon Gases Working Group Update</a><br/>
<a href="https://drive.google.com/file/d/1v0cHAf6S8EMpUZNb7eVqvcRwbIAIxpRI/view?usp=sharing">Software Engineering Working Group Update</a><br/>
<a href="https://drive.google.com/file/d/1v0cHAf6S8EMpUZNb7eVqvcRwbIAIxpRI/view?usp=sharing">GEOS-Chem Newsletter 2024, Issue 1</a>
</p>
</td>
</tr>
<tr>
<td align="center">
19 Sep 2023
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1ofOCNWkiXYpU9_GRzURGnd93tAB2IlmU/view?usp=drive_link">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/1dioG7pR0p9IEVQZ_1T2rUJOje3a9uXrd/view?usp=sharing"Carbon Working Group update</a><br />
<a href="https://drive.google.com/file/d/1lnSn07OwfXwJneGBG0W4veX-zRA7SSkK/view?usp=sharing">Chemistry Working Group update</a><br/>
<a href="https://drive.google.com/file/d/1t-ePO-_csQpPgtbUjoRuDUX0Ib6f-qL2/view?usp=sharing">GEOS-Chem Newsletter 2023, Issue 2</a>
</p>
</td>
</tr>
<tr>
<td align="center">
26 Apr 2023
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1t5P15oE9lDk2JNBjEHSObNHs5g6EIS1v/view?usp=sharing">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/1mti_Xz9hHdNXQHwCLStvtWqf1T70-FTn/view?usp=drive_link">Software Engineering Working Group update</a><br />
<a href="https://drive.google.com/file/d/1jS0Sq1jpQPbEJtlrHPG92ar9UPBIGwtp/view?usp=drive_link">Emissions Working Group update</a><br/>
</p>
</td>
</tr>
<tr>
<td align="center">
18 Jan 2023
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1jM3D50-PJyvWDWlirv-IgPwpbmuWwX3Z/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/1xQIMHsj66aR2LuYJoRCh5h6jxqirtGSk/view?usp=share_link">Aerosols Working Group update</a><br />
<a href="https://drive.google.com/file/d/12shGl5iNOw2Vlr8Tg6OLjR8db2gqPsMr/view?usp=share_link">Stratospheric Working Group update</a><br />
<a href="https://drive.google.com/file/d/1W-NmloyJY0Qk38fVd2yv5OoncDHVvMPA/view?usp=share_link">Hg and POPs Working Group update</a><br />
<a href="https://drive.google.com/file/d/1AHy0UUo6HLzTRqYdc6nxJjgJzEoY_qGK/view?usp=share_link">GEOS-Chem Newsletter 2023, Issue 1</a>
</p>
</td>
</tr>
<tr>
<td align="center">
21 Sep 2022
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1uFyRd3m3ZfjZqjbBiMCNYeebNcvMEoIb/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/1VJU9M96PqASlMboCPSxJdlKkD3LfhCXS/view?usp=share_link">Surface-Atmosphere Exchange Working Group update</a><br />
<a href="https://drive.google.com/file/d/1KimPfvT7hp0sW06VyHHSANrxVbor8ybf/view?usp=share_link">GEOS-Chem Newsletter 2022, Issue 2</a>
</p>
</td>
</tr>
<tr>
<td align="center">
10 Jun 2022
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1eF2hm9WmlQ0ewrXsUeWLO7ywWYTf58_X/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
-
</td>
</tr>
<tr>
<td align="center">
23 Feb 2022
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1kYkur5FSxzi5puXezkcaFCQl514NmuiI/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/1DxIC4X370rj1cz5FpKStvPN2BGkketDs/view?usp=share_link">Chemistry WG updates</a><br />
<a href="https://drive.google.com/file/d/1X-oH77yxx_MhYnn7iTS5b2JLp_KiiNgl/view?usp=share_link">Transport WG updates</a><br />
<a href="https://drive.google.com/file/d/1Jc2geRFEiZXcQRzsc3m8HyOICnQG4X8U/view?usp=share_link">GCHP WG updates</a><br />
<a href="https://drive.google.com/file/d/1BALC8yx6z61DgY2bZS4NWHzoQRlbDTya/view?usp=share_link">GCHP mass fluxes update</a><br />
<a href="https://drive.google.com/file/d/16TwpHIQ6i7pW9M-yYh8j-xT8OCtzGsDz/view?usp=share_link">Bashdatacatalog and cloud updates</a><br />
<a href="https://drive.google.com/file/d/1Ty3Vwi4nBveCR8uGddXMFAbd7_xHWCBH/view?usp=share_link">GEOS-Chem Newsletter 2022 Issue 1</a>
</p>
</td>
</tr>
<tr>
<td align="center">
17 Nov 2021
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1vObmHPylrlqBBzjhMEUvWSC8NVLXhgh9/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/1QxwqufTQ2jcZLT3FkHwhhygIq5Na-cwS/view?usp=share_link">Data Assimilation and Adjoint WG updates</a><br />
<a href="https://drive.google.com/file/d/1sCW9OKkNYfp0zyzDhTuWFOjpHJFmmLBD/view?usp=share_link">Emission and Deposition Update</a><br />
<a href="https://drive.google.com/file/d/1sYyU0HD5ZG60pkice57PdjPjaKD7t7Nm/view?usp=share_link">Direct Reading of GMAO Meteorological Data</a><br />
<a href="https://drive.google.com/file/d/1d8kpSTj3D7t8VLPC4FPaziorQuIZwWQo/view?usp=share_link">Tools for the cloud updates</a><br />
<a href="https://drive.google.com/file/d/1Xg7n1o6hhyqL4yBNoko7X6viUITq_16H/view?usp=share_link" title="GEOS-Chem Winter 2021 Newsletter">GEOS-Chem Newsletter, Winter 2021 Edition</a>
</p>
</td>
</tr>
<tr>
<td align="center">
24 Aug 2021
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1ZnOanpkQ4-fn2yjJ71L3jjpw9Ni4QW6O/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/19h3U_7M6y6LTWyK_i2xTMhrmH2qZBsWH/view?usp=share_link">Hg and POPs WG updates</a><br />
<a href="https://drive.google.com/file/d/1oUthZIWirzQVfN6-4lsGEcnkS3U_7u2F/view?usp=share_link">Chemistry-Ecosystems-Climate WG updates</a><br />
<a href="https://drive.google.com/file/d/1nxus5RmQxIwBQ3lBbocMDyvWJsMA9mv5/view?usp=share_link" target="_blank" title="GEOS-Chem Newsletter, Fall 2021 Edition">GEOS-Chem Newsletter, Fall 2021 Edition</a>
</p>
</td>
</tr>
<tr>
<td align="center">
19 May 2021
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1FwtFGhLuYdQqx4INd_qvoIjuEJhnXNeZ/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<p>
<a href="https://drive.google.com/file/d/15nvI-j5c_PuBoO9cB9aOL3IKiZKni-bD/view?usp=share_link">Aerosols WG updates</a><br />
<a href="https://drive.google.com/file/d/1Z0cbbP9z_D32GdWm48jRsSfJHxz23WqE/view?usp=share_link">Software Engineering WG Updates</a><br />
<a href="https://drive.google.com/file/d/1jG8VWIZHYKJe-9-NwgPut1e6Gq76iahs/view?usp=share_link">Carbon WG updates</a><br />
<a href="https://drive.google.com/file/d/1b5HmvtX_t_LMtWQ47MQLbJYDrtFBHURv/view?usp=share_link" target="_blank" title="GEOS-Chem Newsletter, Spring 2021 Edition">GEOS-Chem Newsletter, Spring 2021 Edition</a>
</p>
</td>
</tr>
<tr>
<td align="center">
24 Feb 2021
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1dEgwphjucl036q4Qm1_ZT9-5tuFYDAic/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1STho2XqsdNsrKiGEMqWMRsDrpH-XQm1Y/view?usp=share_link">Transport WG updates</a><br />
<a href="https://drive.google.com/file/d/14nZSEbc0_zWwF9HJIzTrslTom9DZq796/view?usp=share_link">Stratospheric WG updates</a><br />
<a href="https://drive.google.com/file/d/1Nwe8gNy4oiXXODNdoTko0HluSOYttjhL/view?usp=share_link">GCHP WG updates</a>
</td>
</tr>
<tr>
<td align="center">
18 Nov 2020
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1iBgdQOeiz3Gz6G5sx1VKE9i7RVXkHDzR/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1HeEImKcKT8WC1OdsvK-Dd52LRHPwjqFh/view?usp=share_link">Emissions and Deposition WG updates</a>
</td>
</tr>
<tr>
<td align="center">
03 Sep 2020
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1_TV9KK1k83aQgGjxmAeYezmVLTApHGdy/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
-
</td>
</tr>
<tr>
<td align="center">
27 May 2020
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1l2iHedd3aMDU1GtLZb7AWeuTcnnKh1w2/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1Dtqa9ZoqcKzlvPkcnVaJdKbDk2Wh5IJ8/view?usp=share_link" target="_blank">GEOS-Chem Newsletter, Spring 2020 Edition</a>
</td>
</tr>
<tr>
<td align="center">
11 Feb 2020
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1GeRVoaybmxPT1QBIvP6KbG0CTwKpaOUD/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1tYdc5g3l96kGXDqCWbzpzHXKzFOfucOr/view?usp=share_link" target="_blank">GEOS-Chem Newsletter, Winter 2020 Edition</a>
</td>
</tr>
<tr>
<td align="center">
04 Nov 2019
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1dvz71LCwo6-0aXGDnsK9uwvjDZDh9aYc/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1NIfF40euclnA0nWD4tF5AI-XrATNmqjY/view?usp=share_link" target="_blank">GEOS-Chem Newsletter, Fall-Winter 2019 Edition</a>
</td>
</tr>
<tr>
<td align="center">
07 Aug 2019
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1NEj9p1p15_UUqAHnKe5ZMRDvcBpLgnd5/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1PY7Ja9zNYeJqikp3_AYfhPHGFBpZ3zqH/view?usp=share_link" target="_blank">GEOS-Chem Newsletter, End-of-Summer 2019 Edition</a>
</td>
</tr>
<tr>
<td align="center">
09 May 2019
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1p6aucBneV5MyyclIzgzwqse4EIJsrQ_d/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
-
</td>
</tr>
<tr valign="top">
<td align="center">
05 Mar 2019
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1ySHzlFMQbR5FgkUhM024ugkKyWKjP6w_/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1Cy1pNzPMBTQvUqNpm38Iabhg1fkkEI37/view?usp=share_link" target="_blank">GEOS-Chem Newsletter, Spring 2019 Edition</a>
</td>
</tr>
<tr valign="top">
<td align="center">
06 Dec 2018
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1UaK0cy_2IIc1OkHRvA4_Uu_Bwf_xVeEV/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/16hsx0sywhBOolUmDOM2ETNfM7kNcOuyX/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: End-of-Year 2018 Edition</a>
</td>
</tr>
<tr valign="top">
<td align="center">
11 Sep 2018
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1km0_VXID9FnVGSizNMncWeAzDfGdLoar/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1akn4uP81i4D_6Y4F7U9dQeDj6M3pYn_m/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Fall 2018 Edition</a>
</td>
</tr>
<tr valign="top">
<td align="center">
04 Jun 2018
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1dGoHOv0_-dlYqoaPjXopkFAoSraeO8Qk/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1d55MmVuEnPDxR6pfYdvpEMHxAfoi4Tbg/view?usp=share_link">GEOS-Chem Support Team's Report to the GCSC</a>
</td>
</tr>
<tr valign="top">
<td align="center">
22 Feb 2018
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1_PPSyNH7eT-YTne4sj0FvsClzLgRx4jW/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1WBjJAjhQLau49ICZSBYrqJOrjMk5p4nJ/view?usp=share_link">GEOS-Chem Support Team's Report to the GCSC</a>
</td>
</tr>
<tr valign="top">
<td align="center">
30 Nov 2017
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1IoV_ohiArEQxLL9ugHKkQf9Lv2xQYOmV/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1r4rB8143PQXbxXarYzLe64QetFtnq0fO/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Winter 2017 Edition</a><br />
<a href="https://drive.google.com/file/d/1uUPg0y85gU-SmxE3J3NxJUPqDIOUOW3j/view?usp=share_link" target="_blank">GEOS-Chem: Looking Ahead</a><br />
<a href="https://drive.google.com/file/d/13Q_7Rm51P8IIZ2itc2udcQ3oAXYYXjSL/view?usp=share_link" target="_blank">An introduction to NetCDF diagnostics in GEOS-Chem</a><br />
<a href="https://drive.google.com/file/d/10qm-_bUTH9RdkcD8WxdNPy0ui5TdUNHi/view?usp=share_link" target="_blank">NetCDF diagnostic validation in GEOS-Chem Classic</a>
</td>
</tr>
<tr>
<td align="center">
07 Sep 2017
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1wGto_rJjwTXRqtaS7hfjl7lx6BD_J7vI/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1lT_lYABHYt0RzbdY-OQSu9co2g4Bfjxm/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Fall 2017 Edition + v11-01 Public Release</a>
</td>
</tr>
<tr>
<td align="center">
04 May 2017
</td>
<td align="center">
Discussion at IGC8
</td>
<td align="center">
-
</td>
</tr>
<tr>
<td align="center">
09 Feb 2017
</td>
<td align="center">
<a href="https://drive.google.com/file/d/17tiPO7Cec0pgpPQ3UNmmHySqozwSx3Xg/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1z6DjO0q4AxDYRX-FDvLxjTa-SI5n_35J/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Winter 2017 Edition + v11-01 Public Release</a><br />
<a href="https://drive.google.com/file/d/1f9iKy07A-TqAxzJaqLuEO7F-C6mdDhSH/view?usp=share_link" target="_blank">Model Engineer's Report to the GCSC</a>
</td>
</tr>
<tr>
<td align="center">
04 Nov 2016
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1GfZY_LJZFJVIXrObNzUyHCvVrjHXzpxc/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1g1As41T0vGbv2BvyA59FHZTANtdBYJeJ/view?usp=share_link target="_blank">GEOS-Chem Newsletter: Fall 2016 Edition</a>
</td>
</tr>
<tr>
<td align="center">
19 Aug 2016
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1NmcBmiukQOlGeO8CyCuxb3vVLkXjkq8D/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1TMWJY-aeepwE2cHYVrCK80osCCHmBWJ8/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Summer 2016 Edition</a>
</td>
</tr>
<tr>
<td align="center">
16 May 2016
</td>
<td align="center">
<a href="https://drive.google.com/file/d/17YV2aX9BPHMG475lADwwsG6kaoHE3Hth/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1fLvBicCF-TzvqbRDXmHi0ghIqkyaE9Y3/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Spring 2016 Edition</a>
</td>
</tr>
<tr>
<td align="center">
03 Feb 2016
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1JGt7gLSMaqs_vh9vS3FuEbCzeo_fX5Rt/view?usp=share_link" target="_blank">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1EUY0n07XOa5H2G1rRH6R9PEQUecwGBoP/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Winter 2016 Edition</a>
</td>
</tr>
<tr>
<td align="center">
13 Nov 2015
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1OM0gJSsZ23kI3d3sciInlGaYv1oc7eyA/view?usp=share_link">Minutes [PDF]</a>
</td>
<td align="center">
<a href="https://drive.google.com/file/d/1mD8h2BTS8KhelRzaH9grmMD2pyrpIeve/view?usp=share_link" target="_blank">GEOS-Chem Newsletter: Fall 2015 Edition</a>
</td>
</tr>
<tr>
<td align="center">
10 Aug 2015
</td>