-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosweet.html
More file actions
948 lines (926 loc) · 80.9 KB
/
osweet.html
File metadata and controls
948 lines (926 loc) · 80.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.9.36">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>osweet – Ed Rubin</title>
<style>
/* Default styles provided by pandoc.
** See https://pandoc.org/MANUAL.html#variables-for-html for config info.
*/
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./images/yellow-duck-512.png" rel="icon" type="image/png">
<script src="site_libs/quarto-html/quarto.js" type="module"></script>
<script src="site_libs/quarto-html/tabsets/tabsets.js" type="module"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting-845c23b38eaddc0f92fda52bfe77a8c8.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap-158031087360bce0ff56dc785ce39e06.min.css" rel="stylesheet" append-hash="true" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "end",
"type": "overlay",
"limit": 50,
"keyboard-shortcut": [
"f",
"/",
"s"
],
"show-item-context": false,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-text-placeholder": "",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
<link rel="stylesheet" href="styles.css">
</head>
<body class="nav-fixed quarto-light">
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div class="navbar-brand-container mx-auto">
<a class="navbar-brand" href="./index.html">
<span class="navbar-title">Ed Rubin</span>
</a>
</div>
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">
<span class="menu-text">home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./research.html">
<span class="menu-text">research</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./cv.html">
<span class="menu-text">cv</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./teaching.html">
<span class="menu-text">teaching</span></a>
</li>
<li class="nav-item">
<a class="nav-link active" href="./osweet.html" aria-current="page">
<span class="menu-text">osweet</span></a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-more" role="link" data-bs-toggle="dropdown" aria-expanded="false">
<span class="menu-text">more</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-more">
<li>
<a class="dropdown-item" href="./bio.html">
<span class="dropdown-text">bio</span></a>
</li>
<li>
<a class="dropdown-item" href="https://tweeds.io">
<span class="dropdown-text">tweeds</span></a>
</li>
<li>
<a class="dropdown-item" href="./stuff.html">
<span class="dropdown-text">stuff</span></a>
</li>
<li>
<a class="dropdown-item" href="./links.html">
<span class="dropdown-text">links</span></a>
</li>
</ul>
</li>
</ul>
<ul class="navbar-nav navbar-nav-scroll ms-auto">
<li class="nav-item compact">
<a class="nav-link" href="https://github.com/edrubin"> <i class="bi bi-github" role="img">
</i>
<span class="menu-text"></span></a>
</li>
<li class="nav-item compact">
<a class="nav-link" href="./photos.html"> <i class="bi bi-camera2" role="img">
</i>
<span class="menu-text"></span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
<div class="quarto-navbar-tools">
</div>
</div> <!-- /container-fluid -->
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-full page-navbar">
<!-- sidebar -->
<!-- margin-sidebar -->
<!-- main -->
<main class="content page-columns page-full column-body" id="quarto-document-content"><header id="title-block-header" class="quarto-title-block"></header>
<div class="cell page-columns page-full">
<div class="cell-output-display page-columns page-full">
<div class="page-columns page-full">
<figure class="figure page-columns page-full">
<p class="page-columns page-full"><img src="photos/esa-banff-cropped.png" class="img-fluid figure-img column-screen" width="1500"></p>
</figure>
</div>
</div>
</div>
<p><span style="font-size: calc(1.325rem + 0.9vw); color: black !important; font-weight: 600;">AERE@OSWEET</span> <br> <em>the Online Summer Workshop in Environment, Energy, and Transportation (Economics)</em></p>
<center>
<p>
</p><table style="width:73%">
<tbody><tr>
<th>
</th>
<th>
</th>
</tr>
<tr valign="top">
<td>
<font color="#663399"><i>What?</i></font>
</td>
<td>
One Friday each month, we will host an online seminar series with three short presentations (15 minutes each)—followed by a happy (half) hour! <br><br> Papers and videos <strong>will not</strong> be circulated. <br><br>
</td>
</tr>
<tr valign="top">
<td>
<font color="#663399"><i>Who?</i></font>
</td>
<td>
For presenters, we’re targeting graduate students, postdocs, and early-career assistant professors.<br>We may adjust selection based upon supply. <br><br> There will be no discussants, but we will provide a time for questions after each paper. We will try and cluster papers by topic. <br><br> The organizers of <strong>AERE@OSWEET</strong> include <a href="https://www.xinming-du.com/" style="text-decoration:none">Xinming Du</a> (NUS); <a href="https://www.emilypakhtigian.com/" style="text-decoration:none">Emily L. Pakhtigian</a> (Penn State); <a href="htts://edrub.in" style="text-decoration:none">Ed Rubin</a> (Oregon); <a href="https://www.krhwagner.com/" style="text-decoration: none">Katherine Wagner</a> (UBC). <br><br>
</td>
</tr>
<tr valign="top">
<td>
<font color="#663399"><i>When?</i></font>
</td>
<td>
Friday; see schedule below. <br><br>
</td>
</tr>
<tr valign="top">
<td>
<font color="#663399"><i>Where?</i></font>
</td>
<td>
Zoom. We will send out a Zoom link to presenters and audience members. <br> <a href="https://docs.google.com/forms/d/e/1FAIpQLSdgzM-ELbZltycbJHmtZi3pG_gl0k6_8Q2ndOUOxh6dX13xsQ/viewform">Register to receive emails here</a>. <br><br>
</td>
</tr>
<tr valign="top">
<td>
<font color="#663399"><i>More?</i></font>
</td>
<td>
This workshop is a supportive and constructive environment to present research (but you still have to bring your own beer/coffee/snacks to happy hour). <br><br>
</td>
</tr>
</tbody></table>
<p></p>
</center>
<p><strong>Interested?</strong> <a href="https://docs.google.com/forms/d/e/1FAIpQLSdgzM-ELbZltycbJHmtZi3pG_gl0k6_8Q2ndOUOxh6dX13xsQ/viewform">Please join the mailing list and/or apply to present!</a> (And tell your friends.)</p>
<p><br></p>
<section id="upcoming-session" class="level2">
<h2 class="anchored" data-anchor-id="upcoming-session">Upcoming session</h2>
<section id="ecology-20260410" class="level3">
<h3 class="anchored" data-anchor-id="ecology-20260410"><strong>Ecology</strong> 2026/04/10</h3>
<p><b>Friday, 10 April 2026</b>, 11AM-12PM <b>Pacific</b> (2PM–3PM <b>Eastern</b>), followed by happy half-hour</p>
<p>
<a href="https://nus-sg.zoom.us/meeting/register/48cDqQm_Rp-vIvEzteeT7w">Register for <strong>Zoom link here</strong></a>. <br> <a href="https://docs.google.com/forms/d/e/1FAIpQLSdgzM-ELbZltycbJHmtZi3pG_gl0k6_8Q2ndOUOxh6dX13xsQ/viewform">Join the mailing list or submit a talk</a>.
</p>
<div class="grid" style="--bs-columns: 10; row-gap: 0;">
<div class="g-col-3 g-col-md-2">
<p>11:00AM PT<br>(2:00PM ET)</p>
</div>
<div class="g-col-7 g-col-md-8">
<p><i>The value of wetlands in reducing flood losses</i> <br><b>Jesse Gourevitch</b> (EDF)</p>
</div>
<div class="g-col-3 g-col-md-2">
<p>11:20AM PT<br>(2:20PM ET)</p>
</div>
<div class="g-col-7 g-col-md-8">
<p><i>Spatiotemporal trade-offs in streamflow augmentation for salmonid recovery</i> <br><b>Jacob Gifford</b> (Washington State)</p>
</div>
<div class="g-col-3 g-col-md-2">
<p>11:40AM PT<br>(2:40PM ET)</p>
</div>
<div class="g-col-7 g-col-md-8">
<p><i>Strategic environment: Conservation policy effectiveness and strategic behavior</i> <br><b>Angelo dos Santos</b> (Penn)</p>
</div>
<div class="g-col-3 g-col-md-2">
<p>12:00PM PT<br>(3:00PM ET)</p>
</div>
<div class="g-col-7 g-col-md-8">
<p><i>Happy half-hour</i></p>
</div>
</div>
</section>
</section>
<section id="past-sessions" class="level2">
<h2 class="anchored" data-anchor-id="past-sessions">Past sessions</h2>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-8-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-1" role="tab" aria-controls="tabset-8-1" aria-selected="true" href="">2026</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-8-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-2" role="tab" aria-controls="tabset-8-2" aria-selected="false" href="">2025</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-8-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-3" role="tab" aria-controls="tabset-8-3" aria-selected="false" href="">2024</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-8-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-4" role="tab" aria-controls="tabset-8-4" aria-selected="false" href="">2023</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-8-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-5" role="tab" aria-controls="tabset-8-5" aria-selected="false" href="">2022</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-8-6-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-6" role="tab" aria-controls="tabset-8-6" aria-selected="false" href="">2021</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-8-7-tab" data-bs-toggle="tab" data-bs-target="#tabset-8-7" role="tab" aria-controls="tabset-8-7" aria-selected="false" href="">2020</a></li></ul>
<div class="tab-content">
<div id="tabset-8-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-8-1-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" role="tab" aria-controls="tabset-1-1" aria-selected="true" href=""><strong>Agriculture</strong> 2026/03/13</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-1-1-tab">
<p><i>Underconfidence and the low-experimentation trap</i> <br><b>Nicholas Tyack</b> (Saskatchewan) <br><br> <i>Social returns to conservation: Incentives for cover crops and water quality in the Midwest</i> <br><b>Shuo Yu</b> (UC Berkeley) <br><br> <i>Soil to savings: Optimal farmer compensation for carbon sequestration services in the Midwest United States</i> <br><b>Khyati Malik</b> (NBER)</p>
</div>
</div>
</div>
</div>
<div id="tabset-8-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-8-2-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-2-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-1" role="tab" aria-controls="tabset-2-1" aria-selected="true" href=""><strong>Climate & infrastructure</strong> 2025/12/12</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-2" role="tab" aria-controls="tabset-2-2" aria-selected="false" href=""><strong>Dev. & P.E.</strong> 2025/11/14</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-3" role="tab" aria-controls="tabset-2-3" aria-selected="false" href=""><strong>Water</strong> 2025/10/10</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-4" role="tab" aria-controls="tabset-2-4" aria-selected="false" href=""><strong>Climate transitions</strong> 2025/09/12</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-5" role="tab" aria-controls="tabset-2-5" aria-selected="false" href=""><strong>Climate vulnerability</strong> 2025/08/08</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-6-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-6" role="tab" aria-controls="tabset-2-6" aria-selected="false" href=""><strong>Water</strong> 2025/07/11</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-7-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-7" role="tab" aria-controls="tabset-2-7" aria-selected="false" href=""><strong>Pollution policy design</strong> 2025/06/13</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-8-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-8" role="tab" aria-controls="tabset-2-8" aria-selected="false" href=""><strong>Air quality measurement and management:</strong> 2025/05/09</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-9-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-9" role="tab" aria-controls="tabset-2-9" aria-selected="false" href=""><strong>Politics, media, & the environment:</strong> 2025/04/11</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-10-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-10" role="tab" aria-controls="tabset-2-10" aria-selected="false" href=""><strong>Natural resources:</strong> 2025/03/14</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-11-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-11" role="tab" aria-controls="tabset-2-11" aria-selected="false" href=""><strong>Enviro-Dev Tradeoffs:</strong> 2025/02/14</a></li></ul>
<div class="tab-content">
<div id="tabset-2-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-2-1-tab">
<p><i>Hospital workload and adaptation under climate change: Evidence from China</i> <br><b>Wanrui Wu</b> (Peking) <br><br> <i>Market access without cleaner technology: Expressway expansion, water pollution, and resource misallocation in China</i> <br><b>Longzhou Wang</b> (Alberta) <br><br> <i>Weather forecast quality in the US: Patterns, disparities, and determinants</i> <br><b>Vaibhav Anand</b> (St. John’s Univ.)</p>
</div>
<div id="tabset-2-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-2-tab">
<p><i>Coca’s return and the American overdose fallout</i> <br><b>Evie (Shan) Zhang</b> (Old Dominion) <br><br> <i>How state elections matter: Insights from environmental patents in the United States</i> <br><b>Dibyajyoti Sinha</b> (Akron) <br><br> <i>Balancing growth and green: Analyzing the economic-environmental trade-offs through Chinese secondary industry</i> <br><b>Linge Yang</b> (Connecticut)</p>
</div>
<div id="tabset-2-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-3-tab">
<p><i>Dam thy neighbor: International relations and the externalities of impounding rivers</i> <br><b>Claire Fan</b> (Chicago) <br><br> <i>Governing environmental markets: Evidence from irrigation in water markets</i> <br><b>Maximiliano Garcia Gonzalez</b> (Brown) <br><br> <i>Requiem for rivers? Global dams, environmental impacts, and agricultural adaptation</i> <br><b>Evie (Shan) Zhang</b> (Old Dominion)</p>
</div>
<div id="tabset-2-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-4-tab">
<p><i>Post-Paris Agreement emissions per capita: Cross-country evidence on fossil fuel and mineral dependency</i> <br><b>Davgadorj Puntsag</b> (Tokyo) <br><br> <i>Climate adaptation, risk shifting, and digital platforms</i> <br><b>Anna Papp</b> (MIT/UCSB) <br><br> <i>Market power, innovation, and the green transition</i> <br><b>Rik Rozendaal</b> (Tilburg)</p>
</div>
<div id="tabset-2-5" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-5-tab">
<p><i>Mandated adaptation to air pollution in the workplace</i> <br><b>Max Snyder</b> (UC Berkeley) <br><br> <i>Environmental externalities of urban growth: Evidence from the California wildfires</i> <br><b>Stephanie Kestelman</b> (Harvard) <br><br> <i>Temperature and intimate partner violence in Bolivia</i> <br><b>Julieth Saenz-Molina</b> (Fordham)</p>
</div>
<div id="tabset-2-6" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-6-tab">
<p><i>Lake desiccation and infant health</i> <br><b>Lena Harris</b> (Rochester) <br><br> <i>Natural capital and human welfare: The social impacts of mangrove loss in Indonesia</i> <br><b>Xinde James Ji</b> (Florida) <br><br> <i>Assessing the impact of China’s river chief system on surface water quality</i> <br><b>Chunjie Zhao</b> (Clark)</p>
</div>
<div id="tabset-2-7" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-7-tab">
<p><i>Multi-pollutant cap-and-trade systems with heterogeneous firms</i> <br><b>Justin Johnson Kakeu</b> (Univ. of PEI) <br><br> <i>Perverse incentives in CCUS policy design</i> <br><b>Joseph Stemmler</b> (Oxford) <br><br> <i>Using support vector and decision trees to predict mortality related to traffic, air pollution, and meteorological exposure in Norway</i> <br><b>Cong Cao</b> (CalTech)</p>
</div>
<div id="tabset-2-8" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-8-tab">
<p><i>Now It’s personal: A field experiment on the demand for wearable air quality sensors with US early adopters</i> <br><b>Alexander Dangel</b> (Heidelberg) <br><br> <i>Place-based environmental regulation and labor market dynamics</i> <br><b>Özgen Kıribrahim Sarıkaya</b> (Arizona State) <br><br> <i>Do subway expansions improve urban air quality by reducing traffic congestion? Evidence from China</i> <br><b>Chunjie (Kathy) Zhao</b> (Clark)</p>
</div>
<div id="tabset-2-9" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-9-tab">
<p><i>Network determinants of cross-border media coverage of natural disasters</i> <br><b>Prashant Garg</b> (Imperial College) <br><br> <i>Strategic complementarity in NGO advocacy: Evidence from the European commission</i> <br><b>Rosanne Logeart</b> (Copenhagen Business School) <br><br> <i>Political bias in disaster aid: Evidence from administrative data and from space</i> <br><b>Hannah Farkas</b> (Columbia)</p>
</div>
<div id="tabset-2-10" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-10-tab">
<p><i>Moral hazard in timber auctions: Evidence from the mountain pine beetle outbreak</i> <br><b>Ken Jung</b> (Yale) <br><br> <i>Economic importance of hunting for rural households amidst shocks: Evidence from 23 countries</i> <br><b>Prachi Jhamb</b> (Georgia) <br><br> <i>Donkey business: Trade, resource exploitation, and crime</i> <br><b>Lucas Corrêa-Dias</b> (EESP-FGV)</p>
</div>
<div id="tabset-2-11" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-11-tab">
<p><i>The Forest-infrastructure tradeoff: Local distributional impacts of clearing forests for infrastructure</i> <br><b>Sunny Mitra</b> (UC Berkeley) <br><br> <i>Labour vs. coal: Input substitution in the Indian manufacturing sector</i> <br><b>Raavi Aggarwal</b> (ISI) <br><br> <i>Shifts in agricultural practices: Evidence from India</i> <br><b>Shreya Mishra</b> (IIML)</p>
</div>
</div>
</div>
</div>
<div id="tabset-8-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-8-3-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-3-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-1" role="tab" aria-controls="tabset-3-1" aria-selected="true" href=""><strong>Air Pollution:</strong> 2024/12/06</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-2" role="tab" aria-controls="tabset-3-2" aria-selected="false" href=""><strong>Air Pollution:</strong> 2024/11/08</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-3" role="tab" aria-controls="tabset-3-3" aria-selected="false" href=""><strong>Agriculture:</strong> 2024/10/11</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-4" role="tab" aria-controls="tabset-3-4" aria-selected="false" href=""><strong>Enviro+Health:</strong> 2024/09/13</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-5" role="tab" aria-controls="tabset-3-5" aria-selected="false" href=""><strong>Energy:</strong> 2024/08/09</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-6-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-6" role="tab" aria-controls="tabset-3-6" aria-selected="false" href=""><strong>Infrastructure:</strong> 2024/06/07</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-7-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-7" role="tab" aria-controls="tabset-3-7" aria-selected="false" href=""><strong>Resources:</strong> 2024/05/03</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-8-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-8" role="tab" aria-controls="tabset-3-8" aria-selected="false" href=""><strong>Ag and the environment:</strong> 2024/04/05</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-9-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-9" role="tab" aria-controls="tabset-3-9" aria-selected="false" href=""><strong>Local and Global Pollution:</strong> 2024/03/08</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-3-10-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-10" role="tab" aria-controls="tabset-3-10" aria-selected="false" href=""><strong>Forests & Air:</strong> 2024/02/02</a></li></ul>
<div class="tab-content">
<div id="tabset-3-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-3-1-tab">
<p><i>Disaster and disparity: The heterogeneous effects of hurricanes on Louisiana’s rental market</i> <br><b>Haishan Yang</b> (Minnesota) <br><br> <i>Urban redevelopment and gentrification: Evidence from Atlanta BeltLine</i> <br><b>Yixuan Wang</b> (Ohio State) <br><br> <i>Levees and levies: Local financing of climate infrastructure maintenance and housing market dynamics</i> <br><b>Yichun Fan</b> (MIT)</p>
</div>
<div id="tabset-3-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-2-tab">
<p><i>Work-residence pollution exposure gap in the United States</i> <br><b>Devika Chirimar</b> (Georgetown) <br><br> <i>Cargo ships and coastal smog</i> <br><b>Philip Economides</b> (Texas Tech) <br><br> <i>Air pollution and avoidance behavior: Evidence from daily activities in the US</i> <br><b>Xinhui Sun</b> (UIUC)</p>
</div>
<div id="tabset-3-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-3-tab">
<p><i>Irrigation infrastructure and agricultural development in the long run: Evidence from the Senegal River Valley</i> <br><b>Joel Ferguson</b> (Stanford) <br><br> <i>Understanding the drivers of cover crop adoption in the US Midwest using satellite data</i> <br><b>Na Zhang</b> (UIUC) <br><br> <i>Compensation mechanism, program scale, and the efficiency of payment for ecosystem services programs</i> <br><b>Micah Cameron-Harp</b> (Kansas State)</p>
</div>
<div id="tabset-3-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-4-tab">
<p><i>Adulterated spice: Lead poisoning, crime, and fertility</i> <br><b>Xinming Du</b> (Columbia) <br><br> <i>Noise pollution and mental health</i> <br><b>Kaiyi Wen</b> (Binghamton) <br><br> <i>Effects of community sanitation behavior on women anemia: Evidence from ten Sub-Saharan African Countries</i> <br><b>Ammazia Hanif</b> (Tsukuba)</p>
</div>
<div id="tabset-3-5" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-5-tab">
<p><i>Gold Plate or Glint? Identifying the Effect of Competition on Capital Investment in US Power Plants</i> <br><b>Madeline Yozwiak</b> (Indiana) <br><br> <i>The Tragedy of the Common Heating Bill</i> <br><b>Harald Mayr</b> (Zurich) <br><br> <i>Effect of contract design in renewable energy auctions</i> <br><b>Anshuman Bhakri</b> (Boston College)</p>
</div>
<div id="tabset-3-6" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-6-tab">
<p><i>Expansion of piped water and sewer networks: The effects of regulation</i> <br><b>Carolina Tojal R. dos Santos</b> (Michigan) <br><br> <i>Bridging economic disparities: The role of bike lanes in enhancing low-income accessibility</i> <br><b>Hugo Cordeau</b> (Toronto) <br><br> <i>Bottle redemption, wealth transfers, and informal wages</i> <br><b>Maya Norman</b> (Columbia)</p>
</div>
<div id="tabset-3-7" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-7-tab">
<p><i>Estimating the indirect costs of floods: Evidence from high-tide flooding</i> <br><b>Seunghoon Lee</b> (Missouri) <br><br> <i>Subsidizing technology adoption under treatment effect heterogeneity: The case of rainwater harvesting in Mexico City</i> <br><b>Javier Alejandro Lopez-Aguilar</b> (Maryland) <br><br> <i>Large-scale mining and local impacts: Evidence from Mongolia</i> <br><b>Odmaa Narantungalag</b> (Denver)</p>
</div>
<div id="tabset-3-8" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-8-tab">
<p><i>Postharvest losses from weather and climate change: Evidence from 1.2 million truckloads</i> <br><b>Sarah Smith</b> (UC Davis) <br><br> <i>Weather stations and agricultural productivity: Evidence from historical data in the US</i> <br><b>Vaibhav Anand</b> (St. John’s) <br><br> <i>Efficiency and redistribution in environmental policy: An equilibrium analysis of agricultural supply chains</i> <br><b>Tomas Dominguez-Iino</b> (Chicago Booth)</p>
</div>
<div id="tabset-3-9" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-9-tab">
<p><i>Estimating the Social Cost of Methane with the GIVE Model</i> <br><b>Lisa Rennels</b> (UC Berkeley) <br><br> <i>How to Better Predict the Effect of Urban Traffic and Weather on Air Pollution?<br> Norwegian Evidence from Machine Learning Approaches</i> <br><b>Cong Cao</b> (Caltech) <br><br> <i>International Climate Finance: Carbon Mitigation, Welfare Effects, and Optimal Allocation</i> <br><b>Naixin Huang</b> (Harvard)</p>
</div>
<div id="tabset-3-10" class="tab-pane" role="tabpanel" aria-labelledby="tabset-3-10-tab">
<p><i>The equilibrium effects of anti-deforestation policies: Evidence from Brazil</i> <br><b>Veronica Salazar Restrepo</b> (LSE) <br><br> <i>When growth stumbles, pollute? Trade war, environmental enforcement, and pollution</i> <br><b>Xinming Du</b> (National University of Singapore) <br><br> <i>Cleaning the air? The causal effects of traffic restrictions</i> <br><b>Maurizio Malpede</b> (Verona)</p>
</div>
</div>
</div>
</div>
<div id="tabset-8-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-8-4-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-4-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-1" role="tab" aria-controls="tabset-4-1" aria-selected="true" href=""><strong>Energy & Poltical Economy:</strong> 2023/12/08</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-2" role="tab" aria-controls="tabset-4-2" aria-selected="false" href=""><strong>Air:</strong> 2023/10/27</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-3" role="tab" aria-controls="tabset-4-3" aria-selected="false" href=""><strong>Enviro-Labor:</strong> 2023/09/22</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-4" role="tab" aria-controls="tabset-4-4" aria-selected="false" href=""><strong>Water:</strong> 2023/08/25</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-5" role="tab" aria-controls="tabset-4-5" aria-selected="false" href=""><strong>Climate and energy:</strong> 2023/07/28</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-6-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-6" role="tab" aria-controls="tabset-4-6" aria-selected="false" href=""><strong>Climate change and risk:</strong> 2023/06/30</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-7-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-7" role="tab" aria-controls="tabset-4-7" aria-selected="false" href=""><strong>Ag and the environment:</strong> 2023/05/26</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-8-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-8" role="tab" aria-controls="tabset-4-8" aria-selected="false" href=""><strong>Equity & justice:</strong> 2023/04/28</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-9-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-9" role="tab" aria-controls="tabset-4-9" aria-selected="false" href=""><strong>Climate & adaptation:</strong> 2023/03/31</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-4-10-tab" data-bs-toggle="tab" data-bs-target="#tabset-4-10" role="tab" aria-controls="tabset-4-10" aria-selected="false" href=""><strong>Air quality:</strong> 2023/02/24</a></li></ul>
<div class="tab-content">
<div id="tabset-4-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-4-1-tab">
<p><i>Corruption and energy reliability evidence from US electricity</i> <br><b>Labanya Roy</b> (Middle Tennessee State) <br><br> <i>Evaluating power sector emissions under China’s regional carbon ETS pilots: A view from space</i> <br><b>Ruoyu Chen</b> (Windsor) <br><br> <i>Policy trade-offs due to complimentary resource consumption: PV adoption and residential water use</i> <br><b>Alecia Cassidy</b> (Alabama)</p>
</div>
<div id="tabset-4-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-2-tab">
<p><i>Toxic Recycling: Used lead-acid battery processing’s negative effect on test scores in Mexico</i> <br><b>Erin Litzow</b> (UBC) <br><br> <i>The persistent health effect of defoliating Vietnam</i> <br><b>Nguyen Vuong</b> (Wisconsin) <br><br> <i>Restricting trade for the environment? Evidence from import restrictions on used vehicles in China</i> <br><b>Hui Zhou</b> (Rhode Island)</p>
</div>
<div id="tabset-4-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-3-tab">
<p><i>The value of weather forecasts: Labor responses to accurate and inaccurate temperature forecasts in China</i> <br><b>Yuqi Song</b> (Harvard) <br><br> <i>The distributional impacts of climate change across U.S. local labor markets</i> <br><b>Emmett Saulnier</b> (Oregon) <br><br> <i>The hidden costs of recycling: Lead exposure and the learning crisis in Sub-Saharan Africa</i> <br><b>Gerald Ipapa</b> (Delaware)</p>
</div>
<div id="tabset-4-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-4-tab">
<p><i>Impact of maternal exposure to PFAS on infant health outcomes</i> <br><b>Robert Baluja</b> (Arizona) <br><br> <i>Dust, drought and farmland values: Evidence from California</i> <br><b>Siddharth Kishore</b> (UC Riverside) <br><br> <i>Water, dust, and environmental justice: The case of agricultural water diversions</i> <br><b>Danae Hernandez-Cortes</b> (Arizona State)</p>
</div>
<div id="tabset-4-5" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-5-tab">
<p><i>Local institutions, resource management, and climate resilience: Evidence from federally supported conservation districts in the USA</i> <br><b>Aparna Howlader</b> (Chatham) <br><br> <i>Do homebuyers value energy efficiency? Evidence from an information shock</i> <br><b>Brendon McConnell</b> (Southampton) <br><br> <i>Stranded oil: Measuring companies’ reserve sensitivity to the oil price</i> <br><b>Diego Cardoso</b> (Purdue)</p>
</div>
<div id="tabset-4-6" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-6-tab">
<p><i>Pricing physical climate risk in the cross-section of returns</i> <br><b>Glen Gostlow</b> (LSE) <br><br> <i>Inattention to the coming storm? Rising seas and sovereign credit risk</i> <br><b>Atreya Dey</b> (Edinburgh) <br><br> <i>The effects of extreme wildfire and smoke events on household financial outcomes</i> <br><b>Nitzan Tzur-Ilan</b> (Dallas Fed)</p>
</div>
<div id="tabset-4-7" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-7-tab">
<p><i>Local crop diversity and pest diffusion</i> <br><b>Tristan du Puy</b> (Columbia SIPA) <br><br> <i>Impacts of local research centers on agricultural productivity, resilience, and innovation</i> <br><b>Shweta Bhogale</b> (JPAL/MIT) <br><br> <i>When clouds go dry: An integrated model of deforestation, rainfall, and agriculture</i> <br><b>Rafael Araujo</b> (Climate Policy Initiative)</p>
</div>
<div id="tabset-4-8" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-8-tab">
<p><i>Burying the lead: Effects of public lead service line replacements on blood lead levels and property values</i> <br><b>Michelle Marcus</b> (Vanderbilt) <br><br> <i>Who benefits from park funding? Analyzing five decades of the Land and Water Conservation Fund</i> <br><b>Andie Creel</b> (Yale School of the Environment) <br><br> <i>Policy-induced environmental inequality: Firm behaviors and consequent health and labor outcomes</i> <br><b>Ran Song</b> (National University of Singapore)</p>
</div>
<div id="tabset-4-9" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-9-tab">
<p><i>Heat stress in rails</i> <br><b>Xinming Du</b> (Columbia) <br><br> <i>Does market power in agricultural markets hinder farmer climate change adaptation?</i> <br><b>Rajat Kochhar</b> (USC) <br><br> <i>Occupational mobility and climate adaptation in France</i> <br><b>Paul Stainier</b> (UCLA)</p>
</div>
<div id="tabset-4-10" class="tab-pane" role="tabpanel" aria-labelledby="tabset-4-10-tab">
<p><i>Air pollution and mental illness</i> <br><b>Soodeh Saberian</b> (U Manitoba) <br><br> <i>Non-market damages of wildfire smoke: evidence from administrative recreation data</i> <br><b>Jacob Gellman</b> (UC Santa Barbara) <br><br> <i>Still your grandfather’s boiler: Estimating the effects of the Clean Air Act’s grandfathering provisions</i> <br><b>Jack Gregory</b> (UC Davis)</p>
</div>
</div>
</div>
</div>
<div id="tabset-8-5" class="tab-pane" role="tabpanel" aria-labelledby="tabset-8-5-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-5-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-1" role="tab" aria-controls="tabset-5-1" aria-selected="true" href=""><strong>Climate, organization, and ag:</strong> 2022/06/10</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-2" role="tab" aria-controls="tabset-5-2" aria-selected="false" href=""><strong>Energy:</strong> 2022/05/13</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-3" role="tab" aria-controls="tabset-5-3" aria-selected="false" href=""><strong>Env. & energy in India:</strong> 2022/04/29</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-4" role="tab" aria-controls="tabset-5-4" aria-selected="false" href=""><strong>Justice and political economy:</strong> 2022/04/01</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-5" role="tab" aria-controls="tabset-5-5" aria-selected="false" href=""><strong>Water and climate:</strong> 2022/03/18</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-6-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-6" role="tab" aria-controls="tabset-5-6" aria-selected="false" href=""><strong>Food and waste:</strong> 2022/03/04</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-7-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-7" role="tab" aria-controls="tabset-5-7" aria-selected="false" href=""><strong>Tech. adoption:</strong> 2022/02/18</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-8-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-8" role="tab" aria-controls="tabset-5-8" aria-selected="false" href=""><strong>Energy:</strong> 2022/02/04</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-5-9-tab" data-bs-toggle="tab" data-bs-target="#tabset-5-9" role="tab" aria-controls="tabset-5-9" aria-selected="false" href=""><strong>Pollution and driving:</strong> 2022/01/21</a></li></ul>
<div class="tab-content">
<div id="tabset-5-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-5-1-tab">
<p><i>The role of local institutions in climate resilience: Historical evidence from soil conservation districts in the post-dust bowl Great Plains region</i> <br><b>Aparna Howlader</b> (Rhode Island) <br><br> <i>Multinationals vs Mother Nature? The impact of multinational firms on the environment</i> <br><b>Frederik Noack</b> (UBC) <br><br> <i>Internal migration and the organization of agriculture</i> <br><b>Raahil Madhok</b> (UBC)</p>
</div>
<div id="tabset-5-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-2-tab">
<p><i>Energy transition metals: Bottleneck for net-zero emissions?</i> <br><b>Lukas Boer</b> (DIW Berlin) <br><br> <i>Policy legacies and energy transitions: Greening policies under sectoral reforms in Argentina and Chile</i> <br><b>Santiago Cunial</b> (UPenn) <br><br> <i>Price discrimination on choice frictions in residential electricity markets</i> <br><b>Jenya Kahn-Lang</b> (UC Berkeley)</p>
</div>
<div id="tabset-5-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-3-tab">
<p><i>Burned agricultural biomass, air pollution, and crime</i> <br><b>Abubakr Ayesh</b> (Michigan State) <br><br> <i>Electricity market design and market-based environmental policy in India</i> <br><b>Shefali Khanna</b> (Imperial College London) <br><br> <i>Economic and demographic effects of increased flood susceptibility: Evidence from rural India</i> <br><b>Osama Sajid</b> (Cornell)</p>
</div>
<div id="tabset-5-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-4-tab">
<p><i>Stubble burning and forest fires: Effect on child height in India</i> <br><b>Prachi Singh</b> (EDF) <br><br> <i>Visibility and vulnerability: Aid allocations after the 2015 Nepal earthquake</i> <br><b>Matthew Gordon</b> (Yale) <br><br> <i>Does the media respond to political messaging? Evidence from local newspaper coverage of climate change</i> <br><b>Graham Beattie</b> (Loyola Marymount)</p>
</div>
<div id="tabset-5-5" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-5-tab">
<p><i>Regulator preferences and underinvestment in water infrastructure</i> <br><b>Chunyu Guo</b> (SUNY Albany) <br><br> <i>Regional water transfer and economic growth: A synthetic control case study</i> <br><b>Arpita Nehra</b> (Utah State) <br><br> <i>Near-term climate damages under flexible adaptation times</i> <br><b>Maximilian Kotz</b> (Potsdam)</p>
</div>
<div id="tabset-5-6" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-6-tab">
<p><i>Household responses to a corrective tax and climate change mitigation: Evidence from food waste tax</i> <br><b>Seunghoon Lee</b> (MIT) <br><br> <i>Market potential for domestic herbs: A new variant of “consequentiality” for valuing contingent private goods</i> <br><b>Twinkle Roy</b> (Georgia) <br><br> <i>Rethinking recycling? The effects of China’s waste-import ban on pollution relocation in the U.S.</i> <br><b>Shan Zhang</b> (Oregon)</p>
</div>
<div id="tabset-5-7" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-7-tab">
<p><i>Split incentives and endogenous inattention in home retrofits uptake: A story of selection on unobservables?</i> <br><b>Stefano Cellini</b> (Surrey) <br><br> <i>Early warning systems, mobile technology, and cholera aversion: Evidence from rural Bangladesh</i> <br><b>Emily Pakhtigian</b> (Penn State) <br><br> <i>Using targeting to optimize program design: Evidence from an energy conservation experiment</i> <br><b>Muxi Yang</b> (Cornell)</p>
</div>
<div id="tabset-5-8" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-8-tab">
<p><i>Optimal energy subsidies with multiple policy instruments: The case for finite-time-horizon policies</i> <br><b>Owen Kay</b> (Michigan) <br><br> <i>Capital versus output subsidies with an inconsistent regulator</i> <br><b>Asa Watten</b> (EPA) <br><br> <i>Decomposing the effect of renewables on the electricity sector</i> <br><b>Paige Weber</b> (UNC)</p>
</div>
<div id="tabset-5-9" class="tab-pane" role="tabpanel" aria-labelledby="tabset-5-9-tab">
<p><i>Does it measure up? A comparison of pollution exposure assessment techniques applied across hospitals in England</i> <br><b>Dheeya Rizmie</b> (Imperial College London) <br><br> <i>Peer Effects in Electric Vehicle Adoption: Evidence from the Swedish Vehicle Market</i> <br><b>Sebastian Tebbe</b> (IIES)</p>
</div>
</div>
</div>
</div>
<div id="tabset-8-6" class="tab-pane" role="tabpanel" aria-labelledby="tabset-8-6-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-6-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-1" role="tab" aria-controls="tabset-6-1" aria-selected="true" href=""><strong>Perception and conservation:</strong> 2021/12/13</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-2" role="tab" aria-controls="tabset-6-2" aria-selected="false" href=""><strong>Behavior:</strong> 2021/11/12</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-3" role="tab" aria-controls="tabset-6-3" aria-selected="false" href=""><strong>Air and externalities:</strong> 2021/10/29</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-4" role="tab" aria-controls="tabset-6-4" aria-selected="false" href=""><strong>Transportation:</strong> 2021/10/08</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-5" role="tab" aria-controls="tabset-6-5" aria-selected="false" href=""><strong>Enviro:</strong> 2021/09/24</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-6-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-6" role="tab" aria-controls="tabset-6-6" aria-selected="false" href=""><strong>Ag + Climate:</strong> 2021/09/10</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-7-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-7" role="tab" aria-controls="tabset-6-7" aria-selected="false" href=""><strong>Disasters:</strong> 2021/08/27</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-8-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-8" role="tab" aria-controls="tabset-6-8" aria-selected="false" href=""><strong>Water, energy, behavior:</strong> 2021/08/13</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-9-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-9" role="tab" aria-controls="tabset-6-9" aria-selected="false" href=""><strong>Agriculture:</strong> 2021/07/02</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-10-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-10" role="tab" aria-controls="tabset-6-10" aria-selected="false" href=""><strong>Energy:</strong> 2021/06/11</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-11-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-11" role="tab" aria-controls="tabset-6-11" aria-selected="false" href=""><strong>Pollution:</strong> 2021/05/28</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-12-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-12" role="tab" aria-controls="tabset-6-12" aria-selected="false" href=""><strong>Energy & extraction:</strong> 2021/05/07</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-13-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-13" role="tab" aria-controls="tabset-6-13" aria-selected="false" href=""><strong>Transportation:</strong> 2021/04/23</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-14-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-14" role="tab" aria-controls="tabset-6-14" aria-selected="false" href=""><strong>Energy:</strong> 2021/04/09</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-15-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-15" role="tab" aria-controls="tabset-6-15" aria-selected="false" href=""><strong>Climate:</strong> 2021/03/26</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-16-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-16" role="tab" aria-controls="tabset-6-16" aria-selected="false" href=""><strong>Inequality:</strong> 2021/03/12</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-17-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-17" role="tab" aria-controls="tabset-6-17" aria-selected="false" href=""><strong>Agriculture:</strong> 2021/02/26</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-18-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-18" role="tab" aria-controls="tabset-6-18" aria-selected="false" href=""><strong>Floods:</strong> 2021/02/12</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-6-19-tab" data-bs-toggle="tab" data-bs-target="#tabset-6-19" role="tab" aria-controls="tabset-6-19" aria-selected="false" href=""><strong>Air quality:</strong> 2021/01/22</a></li></ul>
<div class="tab-content">
<div id="tabset-6-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-6-1-tab">
<p><i>The role of information in the Rosen-Roback framework</i> <br><b>Ran Song</b> (Yale-NUS) <br><br> <i>Do subjective perceptions shape adaptation to climate change? Evidence from Bangladesh</i> <br><b>Guglielmo Zappala</b> (Paris School of Economics) <br><br> <i>The cost of saving the Amazon</i> <br><b>Rabail Chandio</b> (Ohio State)</p>
</div>
<div id="tabset-6-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-2-tab">
<p><i>Choice architecture 2.0: Embedding reflection in nudges to promote low carbon diets</i> <br><b>Sanchayan Banerjee</b> (LSE) <br><br> <i>Mental scarcity and collective action</i> <br><b>Todd Guilfoos</b> (University of Rhode Island) <br><br> <i>Role of gender identity on conservation practice choice in an agricultural land leasing context: A lab experiment</i> <br><b>Diya Ganguly</b> (University of Nebraska–Lincoln)</p>
</div>
<div id="tabset-6-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-3-tab">
<p><i>Strategic local regulators and the efficacy of national pollution standards</i> <br><b>Ruohao Zhang</b> (Northwestern) <br><br> <i>Environmental externalities and social contact: Evidence from refinery pollution in the U.S.</i> <br><b>Xinming Du</b> (Columbia) <br><br> <i>Local inequalities generated by fracking, remote sensing of neighborhood transformation</i> <br><b>Arman Khachiyan</b> (UCSD)</p>
</div>
<div id="tabset-6-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-4-tab">
<p><i>Uncertainty in preferences for recharging electric vehicles</i> <br><b>Gracia Bruchmann</b> (Bern) <br><br> <i>Effects of public transit fares increases on gasoline consumption: High-frequency evidence from China</i> <br><b>Yuchen Wang</b> (Pitt) <br><br> <i>For whom the bridge tolls: Congestion, air pollution, and second-best road pricing</i> <br><b>Matthew Tarduno</b> (UC Berkeley)</p>
</div>
<div id="tabset-6-5" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-5-tab">
<p><i>Disentangling the many-to-many mapping of natural capital and ecosystem services</i> <br><b>Ethan Addicott</b> (Yale) <br><br> <i>Technology transitions and the timing of environmental policy: Evidence from efficient lighting</i> <br><b>Sarah Armitage</b> (Harvard) <br><br> <i>Cost-effectiveness and robustness of conservation measures in agricultural landscapes facing climate change</i> <br><b>Charlotte Gerling</b> (TU Berlin)</p>
</div>
<div id="tabset-6-6" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-6-tab">
<p><i>Can recycled water cure all? Coastal agriculture’s battle with seawater intrusion and groundwater overdraft</i> <br><b>Molly Sears</b> (UC Berkeley) <br><br> <i>Cicadian rhythm: Insecticides, infant health, and long-term outcomes</i> <br><b>Charles Taylor</b> (Columbia) <br><br> <i>Is working at home a way of adaptation to climate change?</i> <br><b>Wensu Li</b> (Trinity)</p>
</div>
<div id="tabset-6-7" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-7-tab">
<p><i>The dynamic impacts of floods on households: The case of Nigeria in 2012</i> <br><b>Mook Bangalore</b> (LSE) <br><br> <i>The impact of drought on structural transformation in India</i> <br><b>Sayahnika Basu</b> (UCSD) <br><br> <i>People use park with people: evidence from the COVID-19 pandemic</i> <br><b>Andie Creel</b> (Yale)</p>
</div>
<div id="tabset-6-8" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-8-tab">
<p><i>Beware of side effects? Spillover evidence from a hot water intervention</i> <br><b>Harald Mayr</b> (ETH Zurich) <br><br> <i>Incentives for the energy transition: Feed-in tariffs, rebates, or a hybrid design?</i> <br><b>Marta Talevi</b> (Yale) <br><br> <i>Culpable consumption: Residential response to price and non-price drought measures</i> <br><b>James Sears</b> (UC Berkeley)</p>
</div>
<div id="tabset-6-9" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-9-tab">
<p><i>Engaging Farmers Through Tailored Information</i> <br><b>Collin Weigel</b> (California Air Resources Board) <br><br> <i>The Promise of Crop Substitution Programs</i> <br><b>James Sayre</b> (UC Berkeley) <br><br> <i>Climate Change, The Food Problem, and the Challenge of Adaptation through Sectoral Reallocation</i> <br><b>Ishan Nath</b> (Chicago)</p>
</div>
<div id="tabset-6-10" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-10-tab">
<p><i>The First to Bear the Brunt: China’s Energy Program Evaluation</i> <br><b>Xiangyu Meng</b> (Georgia State) <br><br> <i>CAFE Standards or Gasoline Taxes: A Structural Study of Fuel Saving Under Different Policies</i> <br><b>Siqi Liu</b> (Brandeis) <br><br> <i>Policy Design and the Effects of Heavy-Duty Vehicle Fuel Economy Standards</i> <br><b>Stephanie Weber</b> (Yale)</p>
</div>
<div id="tabset-6-11" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-11-tab">
<p><i>Environmental regulation and firm size</i> <br><b>Muhammad Haseeb</b> (Geneva) <br><br> <i>COVID-19 pandemic reveals persistent disparities in NO<sub>2</sub> pollution</i> <br><b>Gaige Kerr</b> (George Washington) <br><br> <i>The distributional consequences of environmental regulation</i> <br><b>Danae Hernandez-Cortez</b> (UC Santa Barbara)</p>
</div>
<div id="tabset-6-12" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-12-tab">
<p><i>Downwind and out: The strategic dispersion of power plants and their pollution</i> <br><b>John Morehouse</b> (Oregon) <br><br> <i>Do credit constraints explain the energy efficiency gap? Evidence from the U.S. new vehicle market</i> <br><b>Kevin Ankney</b> (Georgetown) <br><br> <i>Mining, deforestation and the global commodity boom</i> <br><b>Victoria Wenxin Xie</b> (Santa Clara)</p>
</div>
<div id="tabset-6-13" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-13-tab">
<p><i>The effect of shale drilling on Native lands: An IV approach</i> <br><b>Anna Malinovskaya</b> (Cornell) <br><br> <i>Adaptation and mitigation of air pollution: evidence from air quality warnings</i> <br><b>Sandra Aguilar-Gómez</b> (Columbia) <br><br> <i>The time-of-day travel demand elasticity paradox</i> <br><b>Cody Nehiba</b> (LSU)</p>
</div>
<div id="tabset-6-14" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-14-tab">
<p><i>Wind power penetration impacts on wholesale electricity market prices: Evidence from quantile regression approach</i> <br><b>Bolarinwa Ajanaku</b> (West Virginia) <br><br> <i>Short- and long-run effects of electricity grid expansion</i> <br><b>Gaurav Doshi</b> (Wisconsin) <br><br> <i>Theoretical and empirical evaluation of a competitive energy rebate program</i> <br><b>Chi Ta</b> (Illinois)</p>
</div>
<div id="tabset-6-15" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-15-tab">
<p><i>The Social Costs of NIMBYism: Evidence from Renewable Energy Projects in the United Kingdom</i> <br><b>Stephen Jarvis</b> (Mannheim) <br><br> <i>Optimal Timing of Electric Vehicle Subsidies</i> <br><b>Qingran Li</b> (Duke) <br><br> <i>Linking Carbon Markets with Different Initial Conditions</i> <br><b>Matt Woerman</b> (UMass Amherst)</p>
</div>
<div id="tabset-6-16" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-16-tab">
<p><i>Credit and attention in the adoption of profitable energy efficient technologies in Kenya</i> <br><b>Susanna Berkouwer</b> (Penn Wharton) <br><br> <i>Air pollution, health, and racial disparities: Evidence from ports</i> <br><b>Pei Huang</b> (ZEW - Leibniz Centre for European Economic Research) <br><br> <i>Can mining change regressive cultural norms? Evidence on acceptance of domestic violence and shared decision-making in india</i> <br><b>James Ji</b> (Brandeis)</p>
</div>
<div id="tabset-6-17" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-17-tab">
<p><i>Nutritional Impact of Payments for Ecosystem Services (PES) in Rural China</i> <br><b>Wumeng He</b> (Duke) <br><br> <i>Sustainable Agriculture, Residue Burning, and Urban Infant Mortality: Evidence from Mexico</i> <br><b>Joel Ferguson</b> (UC Berkeley) <br><br> <i>Spillovers to Manufacturing Plants from Multimillion Dollar Plantations: Evidence from the Indonesian Palm Oil Boom</i> <br><b>Sebastian Kraus</b> (Mercator Research Institute on Global Commons and Climate Change)</p>
</div>
<div id="tabset-6-18" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-18-tab">
<p><i>Draining the swamp: Wetlands, flood mitigation, and the Clean Water Act</i> <br><b>Hannah Druckenmiller</b> (UC Berkeley) <br><br> <i>Inundated by change: The effects of land use on flood damages</i> <br><b>Wesley Howden</b> (UCSD)</p>
</div>
<div id="tabset-6-19" class="tab-pane" role="tabpanel" aria-labelledby="tabset-6-19-tab">
<p><i>Exploring the impacts of air pollution on sleep</i> <br><b>Dheeya Rizmie</b> (Imperial College London) <br><br> <i>Pollution Monitoring, Strategic Behavior, and Dynamic Representativeness</i> <br><b>Lin Yang</b> (Cornell) <br><br> <i>The Grandkids Aren’t Alright: The Intergenerational Effects of Prenatal Pollution Exposure</i> <br><b>Jonathan Colmer</b> (Virginia)</p>
</div>
</div>
</div>
</div>
<div id="tabset-8-7" class="tab-pane" role="tabpanel" aria-labelledby="tabset-8-7-tab">
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-7-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-1" role="tab" aria-controls="tabset-7-1" aria-selected="true" href=""><strong>Pollution and environmental policy:</strong> 2020/12/11</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-2" role="tab" aria-controls="tabset-7-2" aria-selected="false" href=""><strong>Water and disasters:</strong> 2020/11/13</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-3" role="tab" aria-controls="tabset-7-3" aria-selected="false" href=""><strong>Electricity markets:</strong> 2020/20/30</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-4" role="tab" aria-controls="tabset-7-4" aria-selected="false" href=""><strong>Climate/adaptation:</strong> 2020/10/16</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-5" role="tab" aria-controls="tabset-7-5" aria-selected="false" href=""><strong>Policy/spillovers:</strong> 2020/10/02</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-6-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-6" role="tab" aria-controls="tabset-7-6" aria-selected="false" href=""><strong>Climate:</strong> 2020/09/18</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-7-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-7" role="tab" aria-controls="tabset-7-7" aria-selected="false" href=""><strong>Transportation:</strong> 2020/09/04</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-8-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-8" role="tab" aria-controls="tabset-7-8" aria-selected="false" href=""><strong>Resources:</strong> 2020/08/21</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-9-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-9" role="tab" aria-controls="tabset-7-9" aria-selected="false" href=""><strong>Agriculture:</strong> 2020/08/07</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-10-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-10" role="tab" aria-controls="tabset-7-10" aria-selected="false" href=""><strong>Air quality:</strong> 2020/07/24</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-7-11-tab" data-bs-toggle="tab" data-bs-target="#tabset-7-11" role="tab" aria-controls="tabset-7-11" aria-selected="false" href=""><strong>Energy:</strong> 2020/07/10</a></li></ul>
<div class="tab-content">
<div id="tabset-7-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-7-1-tab">
<p><i>Earth, Wind, and Fire: The impact of anti-poverty efforts on Indian agriculture and pollution</i> <br><b>Patrick Behrer</b> (Stanford) <br><br> <i>Free Power, Irrigation, and Groundwater Depletion: Impact of the Farm Electricity Policy of Punjab, India</i> <br><b>Disha Gupta</b> (Delhi School of Economics) <br><br> <i>Strategic Shutdowns of Air Quality Monitors: Evidence from Jersey City and Across the U.S.</i> <br><b>Eric Zou</b> (Oregon)</p>
</div>
<div id="tabset-7-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-2-tab">
<p><i>Local public finance dynamics and hurricane shocks</i> <br><b>Rhiannon Jerch</b> (Temple) <br><br> <i>The health effects of floods on the urban poor</i> <br><b>Michelle Escobar</b> (Monash) <br><br> <i>Infrastructure Upgrades and Lead Exposure: Do Cities Face Trade-Offs When Replacing Water Mains</i> <br><b>Ludovica Gazze</b> (Warwick) <i>with Jennifer Heissel</i></p>
</div>
<div id="tabset-7-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-3-tab">
<p><i>Levelized Full System Costs of Electricity: A Novel Approach to Evaluate Intermittent Generation</i> <br><b>Robert Idel</b> (Rice) <br><br> <i>Large-Scale Wind Power Investment’s Impact on Wholesale Electricity Markets</i> <br><b>Omer Karaduman</b> (Stanford) <br><br> <i>Bunching in Residential Electricity Consumption</i> <br><b>Laura Grant</b> (Claremont McKenna College) <i>with Becka Brolinson</i></p>
</div>
<div id="tabset-7-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-4-tab">
<p><i>The Ins and Outs of Employment: Labor Market Adjustments to Carbon Taxes</i> <br><b>Chi Man Yip</b> (Calgary) <br><br> <i>The problem with pricing “carbon”: exploring forest-driven albedo effects in DICELAND </i> <br><b>Emily McGlynn</b> (UC Davis) <br><br> <i>Water Availability and Heat-Related Mortality: Evidence from South Africa </i> <br><b>Kelly Hyde</b> (Pittsburgh)</p>
</div>
<div id="tabset-7-5" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-5-tab">
<p><i>Effect of Nuclear Power Plants on Local Crop Yields</i> <br><b>Daniyar Zhumadilov</b> (NC State) <br><br> <i>Women Leaders Improve Local Environmental Outcomes</i> <br><b>Meera Mahadevan</b> (UC Irvine) <br><br> <i>Cap-and-trade vs. Carbon Taxes: Efficiency Implications of Emissions Price Volatility in the Power Sector</i> <br><b>Felipe Gómez Trejos</b> (ASU)</p>
</div>
<div id="tabset-7-6" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-6-tab">
<p><i>Adaptation to Natural Disaster through Better Information: Evidence from Home Seller Disclosure Requirement</i> <br><b>Seunghoon Lee</b> (Chicago) <br><br> <i>Climate and Irrigated Agriculture: Evidence from Cash Rents</i> <br><b>Nicholas Potter</b> (Washington State) <br><br> <i>Climate Change and Adaptation in Global Supply-Chain Networks</i> <br><b>Nora Pankratz</b> (UCLA)</p>
</div>
<div id="tabset-7-7" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-7-tab">
<p><i>Optimal Carbon Tax in Oligopolies: An Application to Commercial Aviation</i> <br><b>Diego Cardoso</b> (Cornell) <br><br> <i>What Drives Battery Electric Vehicle Adoption?</i> <br><b>Christina Gore</b> (Ohio State) <br><br> <i>Do Safety Inspections Improve Saftey? Evidence from the Saftey Inspection Program for Commercial Motor Vehicles</i> <br><b>Yuanning Liang</b> (Cornell)</p>
</div>
<div id="tabset-7-8" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-8-tab">
<p><i>Scenes from a Monopoly: Renewable Resources and Quickest Detection of Regime Shifts</i> <br><b>Neha Deopa</b> (The Graduate Institute, Geneva) <br><br> <i>Information and Spillovers from Targeting Policy in Peru’s Anchoveta Fishery</i> <br><b>Gabriel Englander</b> (UC Berkeley) <br><br> <i>Forest Landowner Harvest Decisions in a New Era of Conservation Stewardship and Changing Markets in Maine USA</i> <br><b>Jianheng Zhao</b> (Maine)</p>
</div>
<div id="tabset-7-9" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-9-tab">
<p><i>Size-Based Regulations and Environmental Quality: Evidence from the U.S. Livestock Industry</i> <br><b>Chen-Ti Chen</b> (Iowa State University) <br><br> <i>Beyond Lights: The Changing Impact of Rural Electrification on Indian Agriculture</i> <br><b>Sudatta Ray</b> (Stanford) <br><br> <i>The Economic Impact of Schistosomiasis</i> <br><b>Daniele Rinaldo</b> (The Graduate Institute, Geneva)</p>
</div>
<div id="tabset-7-10" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-10-tab">
<p><i>Pollution and Mortality: Estimating Damages Using Pollutant-Specific Abatement Technologies</i> <br><b>Casey Rozowski</b> (NC State) <br><br> <i>Pollution and Acquisition: The Environmental Justice Effects of Mergers</i> <br><b>Irene Jacqz</b> (Harvard) <br><br> <i>What Driving Bans Tell Us About the Lasting Health Legacy of Diesel Pollution</i> <br><b>Hannah Klauber</b> (Mercator Research Institute on Global Commons and Climate Change)</p>
</div>
<div id="tabset-7-11" class="tab-pane" role="tabpanel" aria-labelledby="tabset-7-11-tab">
<p><i>Strategies, Renewables and Pass Through Costs in the German Day-Ahead Electricity Market</i> <br><b>Gloria Colmenares</b> (The University of Münster) <br><br> <i>The Effect on Total Electricity Consumption of Behavioral Changes in Response to Time-Varying Pricing in the Residential Sector</i> <br><b>Tabaré Capitán</b> (University of Wyoming) <br><br> <i>Contracting for Electricity in Low Income Countries: the Role of Liquidity Constraints and Transaction Costs</i> <br><b>Megan Lang</b> (UC Berkeley)</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main> <!-- /main -->
<script id="quarto-html-after-body" type="application/javascript">
window.document.addEventListener("DOMContentLoaded", function (event) {
const icon = "";
const anchorJS = new window.AnchorJS();
anchorJS.options = {
placement: 'right',
icon: icon
};
anchorJS.add('.anchored');
const isCodeAnnotation = (el) => {
for (const clz of el.classList) {
if (clz.startsWith('code-annotation-')) {
return true;
}
}
return false;
}
const onCopySuccess = function(e) {
// button target
const button = e.trigger;
// don't keep focus
button.blur();
// flash "checked"
button.classList.add('code-copy-button-checked');
var currentTitle = button.getAttribute("title");
button.setAttribute("title", "Copied!");
let tooltip;
if (window.bootstrap) {
button.setAttribute("data-bs-toggle", "tooltip");
button.setAttribute("data-bs-placement", "left");
button.setAttribute("data-bs-title", "Copied!");
tooltip = new bootstrap.Tooltip(button,
{ trigger: "manual",
customClass: "code-copy-button-tooltip",
offset: [0, -8]});
tooltip.show();
}
setTimeout(function() {
if (tooltip) {
tooltip.hide();
button.removeAttribute("data-bs-title");
button.removeAttribute("data-bs-toggle");
button.removeAttribute("data-bs-placement");
}
button.setAttribute("title", currentTitle);
button.classList.remove('code-copy-button-checked');
}, 1000);
// clear code selection
e.clearSelection();
}
const getTextToCopy = function(trigger) {
const outerScaffold = trigger.parentElement.cloneNode(true);
const codeEl = outerScaffold.querySelector('code');
for (const childEl of codeEl.children) {
if (isCodeAnnotation(childEl)) {
childEl.remove();
}
}
return codeEl.innerText;
}
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
text: getTextToCopy
});
clipboard.on('success', onCopySuccess);
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
text: getTextToCopy,
container: window.document.getElementById('quarto-embedded-source-code-modal')
});
clipboardModal.on('success', onCopySuccess);
}
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
var mailtoRegex = new RegExp(/^mailto:/);
var filterRegex = new RegExp('/' + window.location.host + '/');
var isInternal = (href) => {
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
}
// Inspect non-navigation links and adorn them if external
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
for (var i=0; i<links.length; i++) {
const link = links[i];
if (!isInternal(link.href)) {
// undo the damage that might have been done by quarto-nav.js in the case of
// links that we want to consider external
if (link.dataset.originalHref !== undefined) {
link.href = link.dataset.originalHref;
}
}
}
function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) {
const config = {
allowHTML: true,
maxWidth: 500,
delay: 100,
arrow: false,
appendTo: function(el) {
return el.parentElement;
},
interactive: true,
interactiveBorder: 10,
theme: 'quarto',
placement: 'bottom-start',
};
if (contentFn) {
config.content = contentFn;
}
if (onTriggerFn) {
config.onTrigger = onTriggerFn;
}
if (onUntriggerFn) {
config.onUntrigger = onUntriggerFn;
}
window.tippy(el, config);
}
const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]');
for (var i=0; i<noterefs.length; i++) {
const ref = noterefs[i];
tippyHover(ref, function() {
// use id or data attribute instead here
let href = ref.getAttribute('data-footnote-href') || ref.getAttribute('href');
try { href = new URL(href).hash; } catch {}
const id = href.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note) {
return note.innerHTML;
} else {
return "";
}
});
}
const xrefs = window.document.querySelectorAll('a.quarto-xref');
const processXRef = (id, note) => {
// Strip column container classes
const stripColumnClz = (el) => {
el.classList.remove("page-full", "page-columns");
if (el.children) {
for (const child of el.children) {
stripColumnClz(child);
}
}
}
stripColumnClz(note)
if (id === null || id.startsWith('sec-')) {
// Special case sections, only their first couple elements
const container = document.createElement("div");
if (note.children && note.children.length > 2) {
container.appendChild(note.children[0].cloneNode(true));
for (let i = 1; i < note.children.length; i++) {
const child = note.children[i];
if (child.tagName === "P" && child.innerText === "") {
continue;
} else {
container.appendChild(child.cloneNode(true));
break;
}
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(container);
}
return container.innerHTML
} else {
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
return note.innerHTML;
}
} else {
// Remove any anchor links if they are present
const anchorLink = note.querySelector('a.anchorjs-link');
if (anchorLink) {
anchorLink.remove();
}
if (window.Quarto?.typesetMath) {
window.Quarto.typesetMath(note);
}
if (note.classList.contains("callout")) {
return note.outerHTML;
} else {
return note.innerHTML;
}
}
}
for (var i=0; i<xrefs.length; i++) {
const xref = xrefs[i];
tippyHover(xref, undefined, function(instance) {
instance.disable();
let url = xref.getAttribute('href');
let hash = undefined;
if (url.startsWith('#')) {
hash = url;
} else {
try { hash = new URL(url).hash; } catch {}
}
if (hash) {
const id = hash.replace(/^#\/?/, "");
const note = window.document.getElementById(id);
if (note !== null) {
try {
const html = processXRef(id, note.cloneNode(true));
instance.setContent(html);
} finally {
instance.enable();
instance.show();
}
} else {
// See if we can fetch this
fetch(url.split('#')[0])
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.getElementById(id);
if (note !== null) {
const html = processXRef(id, note);
instance.setContent(html);
}
}).finally(() => {
instance.enable();
instance.show();
});
}
} else {
// See if we can fetch a full url (with no hash to target)
// This is a special case and we should probably do some content thinning / targeting
fetch(url)
.then(res => res.text())
.then(html => {
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(html, "text/html");
const note = htmlDoc.querySelector('main.content');
if (note !== null) {
// This should only happen for chapter cross references
// (since there is no id in the URL)
// remove the first header
if (note.children.length > 0 && note.children[0].tagName === "HEADER") {
note.children[0].remove();
}
const html = processXRef(null, note);
instance.setContent(html);
}
}).finally(() => {
instance.enable();
instance.show();
});
}
}, function(instance) {
});
}
let selectedAnnoteEl;
const selectorForAnnotation = ( cell, annotation) => {
let cellAttr = 'data-code-cell="' + cell + '"';
let lineAttr = 'data-code-annotation="' + annotation + '"';
const selector = 'span[' + cellAttr + '][' + lineAttr + ']';
return selector;
}
const selectCodeLines = (annoteEl) => {
const doc = window.document;
const targetCell = annoteEl.getAttribute("data-target-cell");
const targetAnnotation = annoteEl.getAttribute("data-target-annotation");
const annoteSpan = window.document.querySelector(selectorForAnnotation(targetCell, targetAnnotation));
const lines = annoteSpan.getAttribute("data-code-lines").split(",");
const lineIds = lines.map((line) => {
return targetCell + "-" + line;
})
let top = null;
let height = null;
let parent = null;
if (lineIds.length > 0) {
//compute the position of the single el (top and bottom and make a div)
const el = window.document.getElementById(lineIds[0]);
top = el.offsetTop;
height = el.offsetHeight;
parent = el.parentElement.parentElement;
if (lineIds.length > 1) {
const lastEl = window.document.getElementById(lineIds[lineIds.length - 1]);
const bottom = lastEl.offsetTop + lastEl.offsetHeight;
height = bottom - top;
}
if (top !== null && height !== null && parent !== null) {
// cook up a div (if necessary) and position it
let div = window.document.getElementById("code-annotation-line-highlight");
if (div === null) {
div = window.document.createElement("div");
div.setAttribute("id", "code-annotation-line-highlight");
div.style.position = 'absolute';
parent.appendChild(div);
}
div.style.top = top - 2 + "px";
div.style.height = height + 4 + "px";
div.style.left = 0;
let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter");
if (gutterDiv === null) {
gutterDiv = window.document.createElement("div");
gutterDiv.setAttribute("id", "code-annotation-line-highlight-gutter");
gutterDiv.style.position = 'absolute';
const codeCell = window.document.getElementById(targetCell);
const gutter = codeCell.querySelector('.code-annotation-gutter');
gutter.appendChild(gutterDiv);
}
gutterDiv.style.top = top - 2 + "px";
gutterDiv.style.height = height + 4 + "px";
}
selectedAnnoteEl = annoteEl;
}
};
const unselectCodeLines = () => {
const elementsIds = ["code-annotation-line-highlight", "code-annotation-line-highlight-gutter"];
elementsIds.forEach((elId) => {
const div = window.document.getElementById(elId);
if (div) {
div.remove();
}
});
selectedAnnoteEl = undefined;
};
// Handle positioning of the toggle
window.addEventListener(
"resize",
throttle(() => {
elRect = undefined;
if (selectedAnnoteEl) {
selectCodeLines(selectedAnnoteEl);
}
}, 10)
);
function throttle(fn, ms) {
let throttle = false;
let timer;
return (...args) => {
if(!throttle) { // first call gets through
fn.apply(this, args);
throttle = true;
} else { // all the others get throttled
if(timer) clearTimeout(timer); // cancel #2
timer = setTimeout(() => {
fn.apply(this, args);
timer = throttle = false;
}, ms);
}
};
}
// Attach click handler to the DT
const annoteDls = window.document.querySelectorAll('dt[data-target-cell]');
for (const annoteDlNode of annoteDls) {
annoteDlNode.addEventListener('click', (event) => {
const clickedEl = event.target;
if (clickedEl !== selectedAnnoteEl) {
unselectCodeLines();
const activeEl = window.document.querySelector('dt[data-target-cell].code-annotation-active');
if (activeEl) {
activeEl.classList.remove('code-annotation-active');
}
selectCodeLines(clickedEl);
clickedEl.classList.add('code-annotation-active');
} else {
// Unselect the line
unselectCodeLines();
clickedEl.classList.remove('code-annotation-active');
}
});
}
const findCites = (el) => {
const parentEl = el.parentElement;
if (parentEl) {
const cites = parentEl.dataset.cites;
if (cites) {
return {
el,
cites: cites.split(' ')
};
} else {
return findCites(el.parentElement)
}
} else {
return undefined;
}
};
var bibliorefs = window.document.querySelectorAll('a[role="doc-biblioref"]');
for (var i=0; i<bibliorefs.length; i++) {
const ref = bibliorefs[i];
const citeInfo = findCites(ref);
if (citeInfo) {
tippyHover(citeInfo.el, function() {
var popup = window.document.createElement('div');
citeInfo.cites.forEach(function(cite) {
var citeDiv = window.document.createElement('div');
citeDiv.classList.add('hanging-indent');
citeDiv.classList.add('csl-entry');
var biblioDiv = window.document.getElementById('ref-' + cite);
if (biblioDiv) {
citeDiv.innerHTML = biblioDiv.innerHTML;
}
popup.appendChild(citeDiv);
});
return popup.innerHTML;
});
}
}
});
</script>
</div> <!-- /content -->
</body></html>