forked from RWSCollab/science-plan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences.bib
More file actions
3895 lines (3529 loc) · 142 KB
/
Copy pathreferences.bib
File metadata and controls
3895 lines (3529 loc) · 142 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@techreport{sebastian-coleman2018,
title = {Navigating the labyrinth: an executive guide to data management},
author = {Sebastian-Coleman, L.},
year = {2018},
date = {2018},
pages = {p.55}
}
@article{brous2016,
title = {{\textquotedblleft}Coordinating Decision-Making in Data Management Activities: A Systematic Review of Data Governance Principles,{\textquotedblright} in Electronic Government, ed. Hans Jochen Scholl et al., Lecture Notes in Computer Science},
author = {Brous, P. and Janssen, M. and Vilminko-Heikkinen, R.},
year = {2016},
date = {2016},
journal = {Springer International Publishing},
pages = {115--25},
doi = {10.1007/978-3-319-44421-5_9.brous}
}
@article{macfeely2022,
title = {Towards an international data governance framework},
author = {MacFeely, Steve and Me, Angela and Fu, Haishan and Veerappan, Malarvizhi and Hereward, Mark and Passarelli, David and {Schüür}, Friederike},
year = {2022},
month = {09},
date = {2022-09-15},
journal = {Statistical Journal of the IAOS},
pages = {703--710},
volume = {38},
doi = {10.3233/SJI-220038}
}
@article{abraham2019,
title = {Data Governance: A Conceptual Framework, Structured Review, and Research Agenda},
author = {Abraham, R. and Schneider, J. and vom Brocke, J.},
year = {2019},
month = {12},
date = {2019-12-01},
journal = {International Journal of Information Management},
pages = {424--38},
volume = {49},
doi = {10.1016/j.ijinfomgt.2019.07.008.}
}
@article{fritzenkötter2022,
title = {Governing the Environment-Related Data Space},
author = {{Fritzenkötter}, J. and Hohoff, L. and Pierri, P. and Verhulst, S. and Young, A. and Zacharzewski, A.},
year = {2022},
date = {2022},
journal = {SSRN Electronic Journal},
doi = {https://doi.org/10.2139/ssrn.4250166}
}
@techreport{newyorkstateenergyandresearchdevelopmentauthority(nyserda)2021,
title = {Wildlife data standardization and sharing: Environmental data transparency for New York state offshore wind energy},
author = {{New York State Energy and Research Development Authority (NYSERDA)}, },
year = {2021},
date = {2021},
url = {https://nyserda.ny.gov/publications},
address = {Portland, ME}
}
@article{lin2020,
title = {The TRUST Principles for digital repositories},
author = {Lin, Dawei and Crabtree, Jonathan and Dillo, Ingrid and Downs, Robert R. and Edmunds, Rorie and Giaretta, David and De Giusti, Marisa and {L{\textquoteright}Hours}, {Hervé} and Hugo, Wim and Jenkyns, Reyna and Khodiyar, Varsha and Martone, Maryann E. and Mokrane, Mustapha and Navale, Vivek and Petters, Jonathan and Sierman, Barbara and Sokolova, Dina V. and Stockhause, Martina and Westbrook, John},
year = {2020},
month = {05},
date = {2020-05-14},
journal = {Scientific Data},
pages = {144},
volume = {7},
number = {1},
doi = {10.1038/s41597-020-0486-7},
url = {https://doi.org/10.1038/s41597-020-0486-7}
}
@techreport{nyserda2021,
title = {Wildlife data standardization and sharing: Environmental data transparency for New York state offshore wind energy},
author = {NYSERDA, },
year = {2021},
date = {2021},
url = {https://nyserda.ny.gov/publications},
address = {Portland, ME}
}
@article{tanhua2019,
title = {Ocean FAIR Data Services},
author = {Tanhua, Toste and Pouliquen, Sylvie and Hausman, Jessica and {O{\textquoteright}Brien}, Kevin and Bricher, Pip and de Bruin, Taco and Buck, Justin J. H. and Burger, Eugene F. and Carval, Thierry and Casey, Kenneth S. and Diggs, Steve and Giorgetti, Alessandra and Glaves, Helen and Harscoat, Valerie and Kinkade, Danie and Muelbert, Jose H. and Novellino, Antonio and Pfeil, Benjamin and Pulsifer, Peter L. and Van de Putte, Anton and Robinson, Erin and Schaap, Dick and Smirnov, Alexander and Smith, Neville and Snowden, Derrick and Spears, Tobias and Stall, Shelley and Tacoma, Marten and Thijsse, Peter and Tronstad, Stein and Vandenberghe, Thomas and Wengren, Micah and Wyborn, Lesley and Zhao, Zhiming},
year = {2019},
date = {2019},
journal = {Frontiers in Marine Science},
volume = {6},
url = {https://www.frontiersin.org/articles/10.3389/fmars.2019.00440}
}
@techreport{trice2021,
title = {Challenges and opportunities for ocean data to advance conservation and management},
author = {Trice, A and Robbins, C and Philip, N and Rumsey, M},
year = {2021},
date = {2021},
address = {Washington, DC}
}
@article{wilkinson2016,
title = {The FAIR Guiding Principles for scientific data management and stewardship},
author = {Wilkinson, Mark D. and Dumontier, Michel and Aalbersberg, IJsbrand Jan and Appleton, Gabrielle and Axton, Myles and Baak, Arie and Blomberg, Niklas and Boiten, Jan-Willem and da Silva Santos, Luiz Bonino and Bourne, Philip E. and Bouwman, Jildau and Brookes, Anthony J. and Clark, Tim and Crosas, {Mercè} and Dillo, Ingrid and Dumon, Olivier and Edmunds, Scott and Evelo, Chris T. and Finkers, Richard and Gonzalez-Beltran, Alejandra and Gray, Alasdair J.G. and Groth, Paul and Goble, Carole and Grethe, Jeffrey S. and Heringa, Jaap and {{\textquoteright}t Hoen}, Peter A.C and Hooft, Rob and Kuhn, Tobias and Kok, Ruben and Kok, Joost and Lusher, Scott J. and Martone, Maryann E. and Mons, Albert and Packer, Abel L. and Persson, Bengt and Rocca-Serra, Philippe and Roos, Marco and van Schaik, Rene and Sansone, Susanna-Assunta and Schultes, Erik and Sengstag, Thierry and Slater, Ted and Strawn, George and Swertz, Morris A. and Thompson, Mark and van der Lei, Johan and van Mulligen, Erik and Velterop, Jan and Waagmeester, Andra and Wittenburg, Peter and Wolstencroft, Katherine and Zhao, Jun and Mons, Barend},
year = {2016},
month = {03},
date = {2016-03-15},
journal = {Scientific Data},
pages = {160018},
volume = {3},
number = {1},
doi = {10.1038/sdata.2016.18},
url = {https://doi.org/10.1038/sdata.2016.18}
}
@article{hoeberling2022,
title = {Opportunity Brief | Beyond Original Intent: Environmental Data Stewardship for Diverse Uses},
author = {Hoeberling, Katie},
year = {2022},
month = {12},
date = {2022-12-07},
journal = {Open Environmental Data Project (OEDP)},
doi = {https://doi.org/10.15868/socialsector.41283.}
}
@article{carroll2020,
title = {The CARE Principles for Indigenous Data Governance},
author = {Carroll, Stephanie Russo and Garba, Ibrahim and {Figueroa-Rodríguez}, Oscar L. and Holbrook, Jarita and Lovett, Raymond and Materechera, Simeon and Parsons, Mark and Raseroka, Kay and Rodriguez-Lonebear, Desi and Rowe, Robyn and Sara, Rodrigo and Walker, Jennifer D. and Anderson, Jane and Hudson, Maui},
year = {2020},
date = {2020},
journal = {Data Science Journal},
doi = {10.5334/dsj-2020-043}
}
@techreport{kershaw,
title = {Monitoring of marine life during offshore wind energy development{\textemdash}guidelines and recommendations},
author = {Kershaw, F and Jones, A and {Folsom-O'Keefe}, C and Johnson, E and Newman, B and Liner, J and Clarkson, C and Swanson, R and Fuller, E and Krakoff, N and Johnson, A and Kelly, K and Hislop, K and Frignoca, I and Sarthou, C and Donaghue, E and Haggerty, S and Ricci, H and Walsh, J and Humphries, E and Weiler, C and Felton, S and George, G and Haney, C and Lyons, D and Weinstein, A and Bibza, J and Hewett, A and Murphy, J and Muth, D and Renfro, A and Aylesworth, S and Chase, A and Davis, E and Trice, A and Stocker, M and Conley, M and Jedele, T and LoBue, C and Runnebaum, J and Feinberg, P},
url = {https://www.nrdc.org/sites/default/files/ow_marine-life_monitoring_guidelines.pdf}
}
@techreport{kraus2019,
title = {A Framework for Studying the Effects of Offshore Wind Development on Marine Mammals and Turtles},
author = {Kraus, Scott and Kenney, Robert and Thomas, Len},
year = {2019},
month = {05},
date = {2019-05},
url = {https://www.masscec.com/resources/related-wildlife-analyses}
}
@article{newjerseydepartmentofenvironmentalprotectionboardofpublicutilities2021,
title = {New Jersey Research & Monitoring Initiative},
author = {{New Jersey Department of Environmental Protection & Board of Public Utilities}, },
year = {2021},
month = {12},
date = {2021-12-20},
url = {https://dep.nj.gov/offshorewind/rmi}
}
@techreport{southall2021,
title = {Marine Mammals Workgroup Report for the State of the Science Workshop on Wildlife and Offshore Wind Energy 2020: Cumulative Impacts.},
author = {Southall, B and Morse, L and Williams, KA and Jenkins, E},
year = {2021},
date = {2021},
pages = {50},
url = {https://www.nyetwg.com/2020-workgroups.},
address = {Albany, NY}
}
@techreport{noaafisheries2022,
title = {Draft North Atlantic Right Whale and Offshore Wind Strategy},
author = {NOAA Fisheries, and BOEM, },
year = {2022},
month = {10},
date = {2022-10},
pages = {62},
url = {https://www.regulations.gov/document/BOEM-2022-0066-0003}
}
@techreport{hare2022,
title = {NOAA Fisheries and BOEM Federal Survey Mitigation Strategy - Northeast U.S. Region},
author = {Hare, JA and Blythe, BJ and Ford, KH and Godfrey-McKee, S and Hooker, BR and Jensen, BM and Lipsky, A and Nachman, C and Pfeiffer, L and Rasser, M and Renshaw, K},
year = {2022},
month = {12},
date = {2022-12},
pages = {37},
url = {https://repository.library.noaa.gov/view/noaa/47925}
}
@article{noaacetsound2015,
title = {Cetacean biologically important areas},
author = {NOAA CetSound, },
year = {2015},
date = {2015},
url = {https://cetsound.noaa.gov/biologically-important-area-map}
}
@techreport{acp2023,
title = {Oceanographic effects of offshore wind structures and their potential impacts on the North Atlantic right whale and their prey},
author = {ACP, },
year = {2023},
month = {10},
date = {2023-10},
pages = {80},
url = {https://cleanpower.org/wp-content/uploads/2023/10/ACP_OSW-Hydrodynamics-and-NARW_Whitepaper_2023.pdf}
}
@techreport{nasem2023,
title = {Potential hydrodynamic impacts of offshore wind energy on Nantucket Shoals regional ecology: An evaluation from wind to whales},
author = {NASEM, },
year = {2023},
date = {2023},
url = {https://doi.org/10.17226/27154},
address = {Washington, DC}
}
@article{stepanuk2021,
title = {Age-specific behavior and habitat use in humpback whales: implications for vessel strike},
author = {Stepanuk, JEF and Heywood, EI and Lopez, JF and DiGiovanni, RA Jr and Thorne, LH},
year = {2021},
date = {2021},
journal = {Mar Ecol Prog Ser},
pages = {222},
volume = {663},
number = {209},
doi = {https://doi.org/10.3354/meps13638}
}
@techreport{njrmi2021,
title = {New Jersey Research & Monitoring Initiative},
author = {NJ RMI, },
year = {2021},
month = {12},
date = {2021-12-20},
url = {https://dep.nj.gov/offshorewind/rmi}
}
@article{regionalsynthesisworkgroupoftheenvironmentaltechnicalworkinggroup,
title = {U.S. Atlantic offshore wind environmental research recommendations database},
author = {Regional Synthesis Workgroup of the Environmental Technical Working Group, },
year = {2022},
url = {https://tethys.pnnl.gov/atlantic-offshore-wind-environmental-research-recommendations},
}
@techreport{nrel2022,
title = {Bird and Bat Interactions with Offshore Wind Farms},
author = {NREL, and PNNL, },
year = {2022},
date = {2022},
url = {https://tethys.pnnl.gov/sites/default/files/summaries/SEER-Educational-Research-Brief-Bat-Bird-Interactions.pdf}
}
@misc{courbis2023,
title = {Technology Development Priorities for Scientifically Robust and Operationally Compatible Wildlife Monitoring and Adaptive Management},
author = {Courbis, Sarah and Pacini, Aude and Williams, Kate and Dodgin, Sarah and Jenkins, Edward},
year = {2023},
date = {2023},
url = {https://nationaloffshorewind.org/projects/technology-development-priorities-for-scientifically-robust-and-operationally-compatible-wildlife-monitoring-and-adaptive-management/}
}
@techreport{orjip2022,
title = {Review of seabird monitoring technologies for offshore wind farms},
author = {ORJIP, },
year = {2022},
date = {2022},
url = {https://tethys.pnnl.gov/sites/default/files/publications/ORJIP-2022-OffshoreTech.pdf}
}
@article{solick2021,
title = {Oceanic records of North American bats and implications for offshore wind energy development in the United States},
author = {Solick, Donald I. and Newman, Christian M.},
year = {2021},
date = {2021},
journal = {Ecology and Evolution},
pages = {14433--14447},
volume = {11},
number = {21},
doi = {10.1002/ece3.8175},
url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/ece3.8175},
note = {{\_}eprint: https://onlinelibrary.wiley.com/doi/pdf/10.1002/ece3.8175},
langid = {en}
}
@article{peterson2021,
title = {Acoustic Exposure to Turbine Operation Quantifies Risk to Bats at Commercial Wind Energy Facilities},
author = {Peterson, Trevor S. and Mcgill, Brian and Hein, Cris D. and Rusk, Adam},
year = {2021},
date = {2021},
journal = {Wildlife Society Bulletin},
pages = {552--565},
volume = {45},
number = {4},
doi = {10.1002/wsb.1236},
url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/wsb.1236},
note = {{\_}eprint: https://onlinelibrary.wiley.com/doi/pdf/10.1002/wsb.1236},
langid = {en}
}
@techreport{awwi2020,
title = {Summary of Bat Fatality Monitoring Data Contained in AWWIC},
author = {AWWI, },
year = {2020},
date = {2020},
url = {https://rewi.org/resources/awwic-bat-technical-report/},
address = {Washington, DC}
}
@article{frick2017,
title = {Fatalities at wind turbines may threaten population viability of a migratory bat},
author = {Frick, W.F. and Baerwald, E.F. and Pollock, J.F. and Barclay, R.M.R. and Szymanski, J.A. and Weller, T.J. and Russell, A.L. and Loeb, S.C. and Medellin, R.A. and McGuire, L.P.},
year = {2017},
month = {05},
date = {2017-05-01},
journal = {Biological Conservation},
pages = {172--177},
volume = {209},
doi = {10.1016/j.biocon.2017.02.023},
url = {https://www.sciencedirect.com/science/article/pii/S0006320716310485}
}
@article{friedenberg2021,
title = {Assessing fatality minimization for hoary bats amid continued wind energy development},
author = {Friedenberg, N.A. and Frick, W.F.},
year = {2021},
date = {2021},
journal = {Biological Conservation},
volume = {262},
doi = {https://doi.org/10.1016/j.biocon.2021.109309}
}
@article{cryan2014,
title = {Behavior of bats at wind turbines},
author = {Cryan, Paul M. and Gorresen, P. Marcos and Hein, Cris D. and Schirmacher, Michael R. and Diehl, Robert H. and Huso, Manuela M. and Hayman, David T. S. and Fricker, Paul D. and Bonaccorso, Frank J. and Johnson, Douglas H. and Heist, Kevin and Dalton, David C.},
year = {2014},
month = {10},
date = {2014-10-21},
journal = {Proceedings of the National Academy of Sciences},
pages = {15126--15131},
volume = {111},
number = {42},
doi = {10.1073/pnas.1406672111},
url = {https://www.pnas.org/doi/full/10.1073/pnas.1406672111},
note = {Publisher: Proceedings of the National Academy of Sciences}
}
@misc{guest2022,
title = {An Updated Review of Hypotheses Regarding Bat Attraction to Wind Turbines},
author = {Guest, and Stamps, and Durish, and Hale, and Hein, and Morton, and Weaver, and Fritts, },
year = {2022},
date = {2022},
url = {https://www.mdpi.com/2076-2615/12/3/343}
}
@article{jameson2014,
title = {Activity of tree bats at anthropogenic tall structures: implications for mortality of bats at wind turbines},
author = {Jameson, JW and Willis, CKR},
year = {2014},
date = {2014},
journal = {Animal Behavior},
pages = {145--152},
volume = {97},
doi = {https://doi.org/10.1016/j.anbehav.2014.09.003}
}
@article{wilson2023,
title = {Death on the Beach: Mass Mortality of Eastern Red Bats over Lake Michigan},
author = {Wilson, Ashley K. and Kurta, Allen and Kovacs, Thomas and Westrich, Bradford and Benavidez Westrich, Kathryn and Kurta, Robin},
year = {2023},
date = {2023},
journal = {Journal of North American Bat Research Notes},
volume = {1},
number = {1},
url = {https://www.researchgate.net/profile/Allen-Kurta/publication/374779046_Death_on_the_Beach_Mass_Mortality_of_Eastern_Red_Bats_over_Lake_Michigan/links/652ee5cf0ebf091c48fd43fa/Death-on-the-Beach-Mass-Mortality-of-Eastern-Red-Bats-over-Lake-Michigan.pdf}
}
@article{true2023,
title = {Fall migration, oceanic movement, and site residency patterns of eastern red bats (Lasiurus borealis) on the mid-Atlantic Coast},
author = {True, Michael C. and Gorman, Katherine M. and Taylor, Hila and Reynolds, Richard J. and Ford, W. Mark},
year = {2023},
month = {06},
date = {2023-06-14},
journal = {Movement Ecology},
pages = {35},
volume = {11},
number = {1},
doi = {10.1186/s40462-023-00398-x},
url = {https://doi.org/10.1186/s40462-023-00398-x}
}
@article{adams2021,
title = {A review of the effectiveness of operational curtailment for reducing bat fatalities at terrestrial wind farms in North America},
author = {Adams, E.M. and Gulka, J. and Williams, K.A.},
year = {2021},
date = {2021},
journal = {PLOS ONE},
doi = {https://doi.org/10.1371/journal.pone.0256382}
}
@techreport{whitby2021,
title = {The State of the Science on Operational Minimization to Reduce Bat Fatality at Wind Energy Facilities},
author = {Whitby, Michael D. and Schirmacher, Michael R. and Frick, Winifred F.},
year = {2021},
date = {2021},
url = {https://tethys.pnnl.gov/sites/default/files/publications/Whitby-et-al-2021.pdf},
address = {Austin, Texas}
}
@techreport{hein2021,
title = {Proceedings from the State of the Science and Technology for Minimizing Impacts to Bats from Wind Energy},
author = {Hein, Cris and Straw, Bethany},
year = {2021},
date = {2021},
url = {https://www.nrel.gov/docs/fy21osti/78975.pdf},
address = {Golden, CO}
}
@article{romano2019,
title = {Evaluation of an acoustic deterrent to reduce bat mortalities at an Illinois wind farm},
author = {Romano, W. Brad and Skalski, John R. and Townsend, Richard L. and Kinzie, Kevin W. and Coppinger, Karyn D. and Miller, Myron F.},
year = {2019},
date = {2019},
journal = {Wildlife Society Bulletin},
pages = {608--618},
volume = {43},
number = {4},
doi = {10.1002/wsb.1025},
url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/wsb.1025},
note = {{\_}eprint: https://onlinelibrary.wiley.com/doi/pdf/10.1002/wsb.1025},
langid = {en}
}
@article{weaver2020,
title = {Ultrasonic acoustic deterrents significantly reduce bat fatalities at wind turbines},
author = {Weaver, Sara and Hein, Cris and Simpson, Thomas and Evans, Jonah and Castro-Arellano, Ivan},
year = {2020},
date = {2020},
journal = {Global Ecology and Conservation},
volume = {24},
doi = {https://doi.org/10.1016/j.gecco.2020.e01099},
url = {https://tethys.pnnl.gov/sites/default/files/publications/Weaver-et-al-2020.pdf}
}
@techreport{seer2022,
title = {Bird and Bat Interactions with Offshore Wind Farms},
author = {SEER, },
year = {2022},
date = {2022},
url = {https://tethys.pnnl.gov/sites/default/files/summaries/SEER-Educational-Research-Brief-Bat-Bird-Interactions.pdf}
}
@phdthesis{dowling2018,
title = {Not Gone with the Wind: Addressing Effects of Offshore Wind Development on Bat Species in the Northeastern United States},
author = {Dowling, Zara},
year = {2018},
date = {2018},
url = {https://tethys.pnnl.gov/publications/not-gone-wind-addressing-effects-offshore-wind-development-bat-species-northeastern}
}
@article{corcoran2021,
title = {Silence and reduced echolocation during flight are associated with social behaviors in male hoary bats (Lasiurus cinereus)},
author = {Corcoran, Aaron J. and Weller, Theodore J. and Hopkins, Annalise and Yovel, Yossi},
year = {2021},
month = {09},
date = {2021-09-20},
journal = {Scientific Reports},
pages = {18637},
volume = {11},
number = {1},
doi = {10.1038/s41598-021-97628-2},
url = {https://www.nature.com/articles/s41598-021-97628-2},
note = {Number: 1
Publisher: Nature Publishing Group},
langid = {en}
}
@article{corcoran2018,
title = {Inconspicuous echolocation in hoary bats (Lasiurus cinereus)},
author = {Corcoran, Aaron J. and Weller, Theodore J.},
year = {2018},
date = {2018},
journal = {Proceedings of the Royal Society B: Biological Sciences},
volume = {285},
number = {1878},
doi = {https://doi.org/10.1098/rspb.2018.0441},
url = {https://royalsocietypublishing.org/doi/10.1098/rspb.2018.0441}
}
@techreport{seer2022a,
title = {Environmental effects of U.S. offshore wind energy development: Compilation of educational research briefs [booklet]},
author = {SEER, },
year = {2022},
date = {2022}
}
@techreport{noaafisheries2020,
title = {Developing and Evaluating Methods to Determine Abundance and Trends of Northwest Atlantic Loggerhead Turtles},
author = {NOAA Fisheries, },
year = {2020},
date = {2020},
url = {https://www.fisheries.noaa.gov/resource/document/developing-and-evaluating-methods-determine-abundance-and-trends-northwest}
}
@article{innis2023,
title = {A pilot study on surgical implantation and efficacy of acoustic transmitters in fifteen loggerhead sea turtles (Caretta caretta), 2021{\textendash}2022},
author = {Innis, Charles J. and Kennedy, Adam and Kneebone, Jeff and Perez, Sarah and Lory, Linda and DiCarlo, Sarah and Brugnara, Alessia and Luise, Kristen and Edmunds, Deana and Sinnigen, Christine and Tims, Mary Beth and Nahvi, Nina and Jones, Emily and Joblon, Melissa and Tuxbury, Kathryn and Burgess, Elizabeth and Zhou, Vickie and Fischer, Nina and Dodge, Kara L.},
year = {2023},
month = {11},
date = {2023-11-08},
journal = {Animal Biotelemetry},
pages = {37},
volume = {11},
number = {1},
doi = {10.1186/s40317-023-00349-8},
url = {https://animalbiotelemetry.biomedcentral.com/articles/10.1186/s40317-023-00349-8},
langid = {en}
}
@article{love2017,
title = {Restoration without borders: An assessment of cumulative stressors to guide large- scale, integrated restoration of sea turtles in the Gulf of Mexico},
author = {Love, Matt and Robbins, Chris and Baldera, Alexis and Eastman, Scott and Hardy, Robert and Herren, Richard and Metz, Tasha and Zanden, Vander and Wallace, Bryan},
year = {2017},
date = {2017},
langid = {en}
}
@techreport{hogan2023,
title = {Fisheries and Offshore Wind Interactions: Synthesis of Science},
author = {Hogan, F and Hooker, Brian and Jensen, Brandon and Johnston, Lane and Lipsky, Andrew and Methratta, Elizabeth and Silva, Angela and Hawkins, Anne},
year = {2023},
date = {2023}
}
@techreport{frisk2019,
title = {Monitoring Endangered Atlantic Sturgeon and Commercial Finfish Habitat Use in the New York Lease Area},
author = {Frisk, M.G and Ingram, E.C and Dunton, K},
year = {2019},
date = {2019},
pages = {88},
address = {Stoney Brook (NY)}
}
@techreport{haulsee2020,
title = {Occurrence of Commercially Important and Endangered Fishes in Delaware Wind Energy Areas Using Acoustic Telemetry},
author = {Haulsee, D.E. and Fox, D.A. and Oliver, M.J.},
year = {2020},
date = {2020},
pages = {80}
}
@article{ingram2019,
title = {Endangered Atlantic Sturgeon in the New York Wind Energy Area: implications of future development in an offshore wind energy site},
author = {Ingram, Evan Corey and Cerrato, Robert M. and Dunton, Keith J. and Frisk, Michael G.},
year = {2019},
month = {08},
date = {2019-08-27},
journal = {Scientific Reports},
pages = {12432},
volume = {9},
number = {1},
doi = {10.1038/s41598-019-48818-6},
url = {https://doi.org/10.1038/s41598-019-48818-6}
}
@article{rothermel2020,
title = {Comparative migration ecology of striped bass and Atlantic sturgeon in the US Southern mid-Atlantic bight flyway},
author = {Rothermel, Ella R. and Balazik, Matthew T. and Best, Jessica E. and Breece, Matthew W. and Fox, Dewayne A. and Gahagan, Benjamin I. and Haulsee, Danielle E. and Higgs, Amanda L. and {O{\textquoteright}Brien}, Michael H. P. and Oliver, Matthew J. and Park, Ian A. and Secor, David H.},
year = {2020},
month = {06},
date = {2020-06-17},
journal = {PLOS ONE},
pages = {e0234442},
volume = {15},
number = {6},
doi = {10.1371/journal.pone.0234442},
url = {https://doi.org/10.1371/journal.pone.0234442},
note = {Publisher: Public Library of Science}
}
@techreport{brady2015,
title = {Environmental Monitoring Report for VolturnUS Deployment in Castine, ME},
author = {Brady, Damian C},
year = {2015},
date = {2015},
address = {Univeristy of Maine},
langid = {en}
}
@misc{mdat2017,
title = {Marine-Life Data and Analysis Team (MDAT) Technical Report on the Methods and Development of Marine-Life Data to Support Regional Ocean Planning and Management},
author = {MDAT, },
year = {2017},
date = {2017},
url = {http://seamap.env.duke.edu/models/MDAT/MDAT-Technical-Report.pdf}
}
@article{roberts2016,
title = {Habitat-based cetacean density models for the U.S. Atlantic and Gulf of Mexico},
author = {Roberts, Jason J. and Best, Benjamin D. and Mannocci, Laura and Fujioka, Ei and Halpin, Patrick N. and Palka, Debra L. and Garrison, Lance P. and Mullin, Keith D. and Cole, Timothy V. N. and Khan, Christin B. and McLellan, William A. and Pabst, D. Ann and Lockhart, Gwen G.},
year = {2016},
month = {03},
date = {2016-03-03},
journal = {Scientific Reports},
pages = {22615},
volume = {6},
number = {1},
doi = {10.1038/srep22615},
url = {https://doi.org/10.1038/srep22615}
}
@article{pershing2015,
title = {Slow adaptation in the face of rapid warming leads to collapse of the Gulf of Maine cod fishery},
author = {Pershing, Andrew J. and Alexander, Michael A. and Hernandez, Christina M. and Kerr, Lisa A. and Le Bris, Arnault and Mills, Katherine E. and Nye, Janet A. and Record, Nicholas R. and Scannell, Hillary A. and Scott, James D. and Sherwood, Graham D. and Thomas, Andrew C.},
year = {2015},
month = {11},
date = {2015-11-13},
journal = {Science},
pages = {809--812},
volume = {350},
number = {6262},
doi = {10.1126/science.aac9819},
url = {https://doi.org/10.1126/science.aac9819},
note = {Publisher: American Association for the Advancement of Science}
}
@techreport{blair2022,
title = {Draft Phase 1 White Paper: Oceanographic Impacts of Offshore Wind Energy Development via Hydrodynamic and Atmospheric Alterations: Implications for Protected Species in the Northeast US Continental Shelf},
author = {Blair, K and Sermon, K. and Miller, K. and Wildart, N. and Milton, Q. and Edwards, P. and Overcash, C.},
year = {2022},
date = {2022}
}
@article{dannheim2020,
title = {Benthic effects of offshore renewables: identification of knowledge gaps and urgently needed research},
author = {Dannheim, Jennifer and {Bergström}, Lena and Birchenough, Silvana N R and Brzana, {Rados{\l}aw} and Boon, Arjen R and Coolen, Joop W P and Dauvin, Jean-Claude and De Mesel, Ilse and Derweduwen, Jozefien and Gill, Andrew B and Hutchison, {Zoë L} and Jackson, Angus C and Janas, Urszula and Martin, Georg and Raoux, Aurore and Reubens, Jan and Rostin, Liis and Vanaverbeke, Jan and Wilding, Thomas A and Wilhelmsson, Dan and Degraer, Steven},
year = {2020},
month = {05},
date = {2020-05-01},
journal = {ICES Journal of Marine Science},
pages = {1092--1108},
volume = {77},
number = {3},
doi = {10.1093/icesjms/fsz018},
url = {https://doi.org/10.1093/icesjms/fsz018}
}
@techreport{degraer2021,
title = {Benthos Workgroup Report for the State of the Science Workshop on Wildlife and Offshore Wind Energy 2020: Cumulative Impacts.},
author = {Degraer, S and Hutchinson, C and LoBue, C and Williams, K.A. and Gulka, J and Jenkins, E},
year = {2021},
date = {2021},
url = {http://www.nyetwg.com/2020-workgroups},
address = {Albany, NY}
}
@techreport{kershaw2023,
title = {Monitoring of marine life during offshore wind energy development{\textemdash}guidelines and recommendations},
author = {Kershaw, F and Jones, A and {Folsom-O'Keefe}, C and Johnson, E and Newman, B and Liner, J and Clarkson, C and Swanson, R and Fuller, E and Krakoff, N and Johnson, A and Kelly, K and Hislop, K and Frignoca, I and Sarthou, C and Donaghue, E and Haggerty, S and Ricci, H and Walsh, J and Humphries, E and Weiler, C and Felton, S and George, G and Haney, C and Lyons, D and Weinstein, A and Bibza, J and Hewett, A and Murphy, J and Muth, D and Renfro, A and Aylesworth, S and Chase, A and Davis, E and Trice, A and Stocker, M and Conley, M and Jedele, T and LoBue, C and Runnebaum, J and Feinberg, P},
year = {2023},
date = {2023},
url = {https://www.nrdc.org/sites/default/files/ow_marine-life_monitoring_guidelines.pdf}
}
<<<<<<< HEAD
@techreport{seer2022c,
title = {Benthic Disturbance from Offshore Wind Foundations, Anchors, and Cables},
author = {SEER, },
year = {2022},
date = {2022},
url = {https://tethys.pnnl.gov/seer}
}
@techreport{seer2022b,
title = {Environmental effects of U.S. offshore wind energy development: Compilation of educational research briefs [booklet]},
author = {SEER, },
year = {2022},
date = {2022}
}
@article{emery1966,
title = {Atlantic Continental Shelf and Slope of the United States - Geologic background},
author = {Emery, K.O.},
year = {1966},
date = {1966},
journal = {529-A},
pages = {A1--A23}
}
@article{uchupi1968,
title = {Atlantic Continental Shelf and Slope of the United States - Physiography},
author = {Uchupi, E.},
year = {1968},
date = {1968},
journal = {Geological Survey Professional Paper},
pages = {C1--A30},
volume = {529-C}
}
@article{harris2014,
title = {Geomorphology of the oceans},
author = {Harris, P.T. and Macmillan-Lawler, M. and Rupp, J. and Baker, E.K.},
year = {2014},
date = {2014},
journal = {Marine Geology},
pages = {4--24},
number = {352},
doi = {https://doi.org/10.1016/J.MARGEO.2014.01.011}
}
@misc{boem2023,
title = {Outer Continental Shelf},
author = {BOEM, },
year = {2023},
date = {2023},
url = {https://www.boem.gov/environment/outer-continental-shelf}
}
@techreport{greene2010,
title = {The Northwest Atlantic Marine Ecoregional. Assessment: Species, Habitats and Ecosystems. Phase One},
author = {Greene, J.K. and Anderson, M.G. and Odell, J. and Steinberg, N.},
year = {2010},
date = {2010},
address = {Boston, MA}
}
@book{stevenson2014,
title = {Shallow Water Benthic Habitats in the Gulf of Maine: A Summary of Habitat Use by Common Fish and Shellfish Species in the Gulf of Maine Greater Atlantic Region Policy Series 14-01| NOAA Fisheries | Greater Atlantic Regional Fisheries Office 55 Great Republic Drive | Gloucester MA 01930},
author = {Stevenson, David and Tuxbury, Susan and Johnson, Michael and Boelke, Christopher},
year = {2014},
month = {04},
date = {2014-04-28}
}
@article{uchupi1968a,
title = {Atlantic Continental Shelf and Slope of the United States - Physiography},
author = {Uchupi, E.},
year = {1968},
date = {1968},
journal = {Geological Survey Professional Paper},
pages = {C1--A30},
volume = {529-C}
}
@misc{noaafisheries2023,
title = {Critical Habitat},
author = {NOAA Fisheries, },
year = {2023},
date = {2023},
url = {https://www.fisheries.noaa.gov/national/endangered-species-conservation/critical-habitat}
}
@techreport{tyrell2005,
title = {Gulf of Maine Marine Habitat Primer},
author = {Tyrell, M.C.},
year = {2005},
date = {2005},
url = {http://www.gulfofmaine.org}
}
@article{steimle2000,
title = {Reef habitats in the Middle Atlantic Bight: Abundance, distribution, associated biological communities, and fishery resource use},
author = {Steimle, F.W. and Zetlin, C},
year = {2000},
date = {2000},
journal = {Marine Fisheries Review},
volume = {62},
number = {2}
}
@article{chavez-rosales2022,
title = {Detection of habitat shifts of cetacean species: A comparison between 2010 and 2017 habitat suitability conditions in the Northwest Atlantic Ocean},
author = {Chavez-Rosales, S and Josephson, E and Palka, D and Garrison, L},
year = {2022},
date = {2022},
journal = {Frontiers in Marine Science},
volume = {9},
doi = {https://doi.org/10.3389/fmars.2022.877580}
}
@article{ganley2022,
title = {Effects of changing temperature phenology on the abundance of a critically endangered baleen whale},
author = {Ganley, LC and Byrnes, J and Pendelton, DE and Mayo, CA and Friedland, KD and Redfern, JV and Turner, JT and Brault, S},
year = {2022},
date = {2022},
journal = {Global Ecology Conservation},
pages = {e02193},
volume = {38},
doi = {https://doi.org/10.1016/j.gecco.2022.e02193.}
}
@article{meyer-gutbrod2022,
title = {Redefining North Atlantic right whale habitat-use patterns under climate change},
author = {Meyer-Gutbrod, EL and Davies, KTA and Johnson, CL and Plourde, S and Sorochan, KA and Kenney, RD and Ramp, C and Gosselin, J-F and Lawson, JW and Greene, CH},
year = {2022},
date = {2022},
journal = {Limnology and Oceanography},
doi = {https://doi.org/10.1002/lno.12242.}
}
@article{pendelton2022,
title = {Decadal-scale phenology and seasonal climate drivers of migratory baleen whales in a rapidly warming marine ecosystem},
author = {Pendelton, DE and Tingley, MW and Ganley, LC and Friedland, KD and Mayo, C and Brown, MW and McKenna, BE and Jordaan, A and Staudinger, MD},
year = {2022},
date = {2022},
journal = {Global Change Biology},
pages = {4989--5005},
volume = {28},
doi = {https://doi.org/10.1111/gcb.16225.}
}
@article{thorne2022,
title = {Rapid restructuring of the odontocete community in an ocean warming hotspot},
author = {Thorne, LH and Heywood, EI and Hirtle, NO},
year = {2022},
date = {2022},
journal = {Global Change Biology},
pages = {6524--6540},
volume = {28},
number = {22},
doi = {https://doi.org/10.1111/gcb.16382}
}
@article{davies2019,
title = {Mass human-caused mortality spurs federal action to protect endangered North Atlantic right whales in Canada},
author = {Davies, KTA and Brillant, SW},
year = {2019},
date = {2019},
journal = {Marine Policy},
pages = {157--162},
volume = {104},
doi = {https://doi.org/10.1016/j.marpol.2019.02.019.}
}
@techreport{lucey2023,
title = {State of the Ecosystem 2023: New England},
author = {Lucey, S and Gaichas, S and Bastille, K and DePiper, G and Hyde, K and Large, S and Orphanides, C and Smith, L},
year = {2023},
date = {2023},
url = {https://repository.library.noaa.gov/view/noaa/49706}
}
@article{harrison2023,
title = {Biologically Important Areas II for cetaceans within U.S. and adjacent waters - Updates and the application of a new scoring system},
author = {Harrison, Jolie and Ferguson, Megan C. and New, Leslie and Cleary, Jesse and Curtice, Corrie and DeLand, Sarah and Fujioka, Ei and Halpin, Patrick N. and Tyson Moore, Reny B. and Van Parijs, Sofie M.},
year = {2023},
date = {2023},
journal = {Frontiers in Marine Science},
volume = {10},
doi = {10.3389/fmars.2023.1081893},
url = {https://www.frontiersin.org/articles/10.3389/fmars.2023.1081893}
}
@article{friedland2023,
title = {Forage Fish Species Prefer Habitat within Designated Offshore Wind Energy Areas in the U.S. Northeast Shelf Ecosystem},
author = {Friedland, Kevin D. and Adams, Evan M. and Goetsch, Chandra and Gulka, Julia and Brady, Damian C. and Rzeszowski, Everett and Crear, Daniel P. and Gaichas, Sarah and Gill, Andrew B. and McManus, M. Conor and Methratta, Elizabeth T. and Morano, Janelle L. and Staudinger, Michelle D.},
year = {2023},
month = {04},
date = {2023-04-01},
journal = {Marine and Coastal Fisheries},
pages = {e10230},
volume = {15},
number = {2},
doi = {10.1002/mcf2.10230},
url = {https://doi.org/10.1002/mcf2.10230},
note = {Publisher: John Wiley & Sons, Ltd}
}
@techreport{kraus2019a,
title = {A Framework for Studying the Effects of Offshore Wind Development on Marine Mammals and Turtles},
author = {Kraus, Scott and Kenney, Robert and Thomas, Len},
year = {2019},
month = {05},
date = {2019-05},
url = {https://www.masscec.com/resources/related-wildlife-analyses}
}
@techreport{southall2021a,
title = {Marine Mammals Workgroup Report for the State of the Science Workshop on Wildlife and Offshore Wind Energy 2020: Cumulative Impacts.},
author = {Southall, B and Morse, L and Williams, KA and Jenkins, E},
year = {2021},
date = {2021},
pages = {50},
url = {https://www.nyetwg.com/2020-workgroups.},
address = {Albany, NY}
}
@article{benhemmalegall2021,
title = {Broad-scale responses of harbor porpoises to pile-driving and vessel activities during offshore windfarm construction},
author = {Benhemma Le Gall, A. and Graham, I.M. and Merchant, N.D. and Thompson, P.M.},
year = {2021},
date = {2021},
journal = {Frontiers in Marine Science},
volume = {8},
number = {664724}
}
@techreport{brandt2016,
title = {Effects of offshore pile driving on harbour porpoise abundance in the German Bight},
author = {Brandt, M.J. and Dragon, A.-C. and Diederichs, A. and Schubert, A. and Kosarev, V. and Nehls, G. and Wahl, V. and Michalik, A. and Braasch, A. and Hinz, C. and Katzer, C. and Todeskino, D. and Gauger, M. and Laczny, M. and Piper, W.},
year = {2016},
date = {2016}
}
@article{brandt2018,
title = {Disturbance of harbour porpoises during construction of the first seven offshore wind farms in Germany},
author = {Brandt, M.J. and Dragon, A.-C. and Diederichs, A. and Bellmann, M.A. and Wahl, V. and Piper, W. and Nabe-Nielsen, J. and Nehls, G.},
year = {2018},
date = {2018},
journal = {Marine Ecology Progress Series},
pages = {213--232},
volume = {596}
}
@article{dähne2013,
title = {Effects of pile-driving on harbour porpoises (Phocoena phocoena) at the first offshore wind farm in Germany},
author = {{Dähne}, M. and Gilles, A. and Lucke, K. and Peschko, V. and Adler, S. and Krugel, K. and Sundermeyer, J. and Siebert, U.},
year = {2013},
date = {2013},
journal = {Environmental Research Letters},
volume = {8},
number = {025002}
}
@article{dähne2017,
title = {Bubble curtains attenuate noise from offshore wind farm construction and reduce temporary habitat loss for harbour porpoises},
author = {{Dähne}, M. and Tougaard, J. and Carstensen, J. and Rose, A. and Nabe-Nielsen, J.},
year = {2017},
date = {2017},
journal = {Marine Ecology Progress Series},
pages = {221--237},
volume = {580}
}
@article{graham2019,
title = {Harbour porpoise responses to pile-driving diminish over time},
author = {Graham, I.M. and Merchant, N.D. and Farcas, A. and Barton, T.R.C. and Cheney, B. and Bono, S. and Thompson, P.M.},
year = {2019},
date = {2019},
journal = {Royal Society Open Science},
volume = {6},
number = {190335}
}
@article{graham2023,
title = {Directional hydrophone clusters reveal evasive responses of small cetaceans to disturbance during construction at offshore windfarms},
author = {Graham, I.M. and Gillespie, D. and Gkikopoulou, K.C. and Hastie, G.D. and Thompson, P.M.},
year = {2023},
date = {2023},
journal = {Biological Letters},
volume = {19},
number = {20220101}
}
@article{teilmann2012,
title = {Negative long term effects on harbour porpoises from a large scale offshore wind farm in the Baltic {\textemdash} evidence of slow recovery},
author = {Teilmann, J. and Carstensen, J.},
year = {2012},
date = {2012},
journal = {Environmental Research Letters},
volume = {7},
number = {045101}
}
@article{russell2014,
title = {Marine mammals trace anthropogenic structures at sea},
author = {Russell, Deborah J. F. and Brasseur, Sophie M. J. M. and Thompson, Dave and Hastie, Gordon D. and Janik, Vincent M. and Aarts, Geert and McClintock, Brett T. and Matthiopoulos, Jason and Moss, Simon E. W. and McConnell, Bernie},
year = {2014},
month = {07},
date = {2014-07-21},
journal = {Current Biology},
pages = {R638--R639},
volume = {24},
number = {14},
doi = {10.1016/j.cub.2014.06.033},
url = {https://www.cell.com/article/S0960-9822(14)00749-0/fulltext},
note = {Publisher: Elsevier
PMID: 25050956},
langid = {English}
}
@article{russell2016,
title = {Avoidance of wind farms by harbour seals is limited to pile driving activities},
author = {Russell, DJ and Hastie, GD and Thompson, D and Janik, VM and Hammond, LA and Scott-Hayward, LA and Matthiopoulous, J and Jones, EL and McConnel, BJ},
year = {2016},
date = {2016},
journal = {Journal of Applied Ecology},
pages = {1642--1652},
volume = {53},
doi = {https://doi:10.1111/1365-2664.12678.}
}
@article{farmer2023,
title = {Protected species considerations for ocean planning: A case study for offshore wind energy development in the U.S. Gulf of Mexico},
author = {Farmer, Nicholas A. and Garrison, Lance P. and Litz, Jenny A. and Ortega-Ortiz, Joel G. and Rappucci, Gina and Richards, Paul M. and Powell, Jessica R. and Bethea, Dana M. and Jossart, Jonathan A. and Randall, Alyssa L. and Steen, Mariana E. and Matthews, Tershara N. and Morris Jr, James A.},
year = {2023},
month = {06},
date = {2023-06-01},
journal = {Marine and Coastal Fisheries},
pages = {e10246},
volume = {15},
number = {3},