-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
1390 lines (1216 loc) · 78.2 KB
/
README.Rmd
File metadata and controls
1390 lines (1216 loc) · 78.2 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
---
output: github_document
editor_options:
markdown:
wrap: 72
---
# FishMIP 2.0: Ocean System Pathways Protocol
### [Contents]{.underline}
[Goal [2]](#goal)
[Experiments & Scenarios [3]](#experiments-scenarios)
[Input data [6]](#input-data)
[Climate forcing [6]](#climate-forcing)
[Fishing forcing [11]](#fishing-effort-forcing)
[Output data [14]](#output-data)
[Additional notes for Regional FishMIP Models
[16]](#additional-notes-for-regional-fishmip-models)
[Reporting model results [16]](#reporting-model-results)
##
## Goal {#goal}
The goal of FishMIP 2.0's "Ocean System Pathways" (OSP) Protocol is to
project climate change impacts to ecosystems and fisheries under
different societal and fisheries management development scenarios. This
simulation round extends our previous climate impact projections to
include past and future fisheries development to enable us to identify
key risks and explore adaptation to climate change including
consequences for biodiversity, fisheries and food security.
The future scenarios we are using have been developed to complement and
be consistent with the [Shared Socioeconomic
Pathways](https://www.climateforesight.eu/seeds/shared-socioeconomic-pathways/),
but with socioeconomic drivers needed for fisheries and aquaculture.
These are labelled Ocean System Pathways (OSPs) ([Maury et al.
2024](https://essopenarchive.org/users/713515/articles/937359-the-ocean-system-pathways-osps-a-new-scenario-and-simulation-framework-to-investigate-the-future-of-the-world-fisheries)).
This protocol provides details on the experimental set-up and data
forcings required to run each of these scenarios, with and without
climate change.
Note that this protocol builds on the FishMIP's [Phase 1 ISIMIP
3b](https://github.com/Fish-MIP/FishMIP_2023_3b_Protocol/blob/main/FishMIP_Phase1_2020_CMIP6_runs_protocol_v1.0.pdf)
which focused primarily on results without fishing, for fast-track
inclusion in the IPCC 6th Assessment (Tittensor et al. 2021). The
historical component also contributes to FishMIP 2.0's ISIMIP 3a
protocol on ["Model Evaluation, Detection, and
Attribution"](https://github.com/Fish-MIP/FishMIP2.0_TrackA_ISIMIP3a)
(Blanchard et al. 2024, Frieler et al. 2023).
Timelines for simulations: TO BE DISCUSSED
| Scenarios | Models | Date |
|-----------------------------------------------|------------------|-----------|
| OSP-Baseline (Table 1) | global, regional | 2025-2026 |
| OSP-Future (See Table 2) | global, regional | 2025-2026 |
| OSP-Fisheries and Food Security (See Table 3) | global, regional | TBD |
| OSP-Nature Future Framework(See Table 4) | global, regional | TBD |
To aid with progress we will hold specific technical workshops to:
- Ensure correct OSP integration inputs and access
- Ensure fishing drivers work (separate global and regional breakaway
groups)
- Tool sharing & troubleshooting
- Check model outputs/issues
In this document we describe the general experimental and scenario
set-up (Section 3). Further down in Section 4 we include the details of
the specific **input** variables that modellers can use to implement
scenarios. In Section 5 we describe the set of **outputs** to be
created. Finally in Sections 6-7 we provide further **notes** and
**instructions** on how to report and upload model results.
This protocol is a contribution to the wider Inter-Sectoral Model
Intercomparison Project (ISIMIP3a and ISIMIP3b) simulation rounds,
further details can be found here:
[https://protocol.isimip.org/#ISIMIP3b/marine-fishery_regional/marine-fishery_global](https://protocol.isimip.org/)
**For this simulation round, we are asking you to run XXXXXXXX**
## Experiments & Scenarios {#experiments-scenarios}
Each model experiment is a set of model simulations that has a
particular goal (e.g. model evaluation). A scenario is a particular
setting for forcing drivers that describes how each model run should be
set up in the experiment, including both the type of climate forcing
(CF) and the type of direct human forcing (DHF).
The OSP protocol is grouped into three simulation model experiments. The
below text is taken from [Maury et al.
2024.](https://essopenarchive.org/users/713515/articles/937359-the-ocean-system-pathways-osps-a-new-scenario-and-simulation-framework-to-investigate-the-future-of-the-world-fisheries)
**A. OSP-baseline:** This is designed to initialise and evaluate the
two-way feedback between socioeconomic demand scenarios, markets, and
fleets developed in a new simulation framework (Maury et al. 2024) to
model dynamic fishing effort and evaluate it against available data. It
also seeks to identify and disentangle the respective roles of climate
and socio-economic factors in the historical evolution of marine
ecosystems and fisheries. It includes components corresponding to the
**ISIMIP3a** (e.g. the Realistic-baseline) and the **ISIMIP3b** (e.g.
the Spin-up, Reference, Historical) protocols. Prior to the below
simulation runs, a 100-year **Spin-up** of the MEMs without fishing, and
using the pi-control climate forcing, is required.
- A 1850-2100 **Reference** simulation (without fishing and without
climate change), following the spin-up and using the pi-control
climate forcing.
- Three 1850-2014 **Historical** simulations:
- **Historical-a** with 1850-2014 historical climate forcing and
fishing with 1850-2014 OSP drivers based on reconstructed and
observed GDP and population. This simulation provides the 1957
initial conditions for the Realistic-baseline simulation (see
below).
- **Historical-b** with 1850-2014 historical climate forcing and
**without fishing**.
- **Historical-c** without climate change (pi-control climate) and
with fishing according to 1850-2014 OSP drivers based on
reconstructed and observed GDP and population.
- A 1958-2022 **Realistic-baseline** simulation with the
reanalysis-driven 'realistic' climate forcing and fishing with
1958-2022 OSP drivers based on observed GDP and population. This
simulation branches off from the Historical-after 1957.
The realistic-baseline simulation will be used to evaluate the
simulation framework against fishery catches (FAO, 2020, 2024a),
reconstructed fishing effort (Rousseau et al., 2024) and observed prices
(FAO, 2024b).
To attribute climate effects, fishing effects and their potential
interactions (whether antagonistic or synergistic), a counterfactual
approach will be employed. The difference between the Historical-b and
the Reference simulation over the same time period will allow the
identification of historical climate effects on the ecosystem. The
difference between the Historical-c and the Reference simulation over
the same time period will allow the identification of historical fishing
effects on the ecosystem. The difference between the Historical-a
simulation and the sum of the climate and fishing effects (Hist-a minus
Historical-b minus Historical-c plus 2 Reference) will provide the
interactive effects of climate and fishing on the ecosystem.
Further to this, the difference between the Historical-a and the
Historical-b simulations will enable the identification of fishing
impacts on the ecosystem experiencing climate change, and the difference
between the Historical-a and the Historical-c simulations will allow the
identification of climate change impacts on the coupled
social-ecological fishery system.
##### Table 1: OSP-Baseline simulations. Control run and historical simulation experimental set-up. Note that each simulation is specified by the Climate forcing and Fishing forcing. Definitions of the specifiers (e.g. nat, picontrol etc.) that are used for ISIMIP filenaming are provided in Tables 3 and 4 below.
+------------+------------+------------+------------+------------+
| No. | Simulation | Short | T | Priority |
| | | d | ime-period | level |
| | | escription | and | |
| | | | specifiers | |
+============+============+============+============+============+
| 1 | **Pre- | ** | 1850-2100 | 2 |
| | industrial | Climate**: | | |
| | control** | No climate | picontrol | |
| | | change, | | |
| | | fixed | nat | |
| | | 1850s | | |
| | | CO~`2`~ | | |
| | | levels | | |
| | | | | |
| | | ** | | |
| | | Fishing**: | | |
| | | No fishing | | |
+------------+------------+------------+------------+------------+
| 2 | ** | ** | 1850-2014 | 2 |
| | Historical | Climate**: | | |
| | fishing | No climate | picontrol | |
| | dynamics, | change, | | |
| | no | fixed | histsoc | |
| | climate** | 1850s | | |
| | | CO~`2`~ | | |
| | | levels | | |
| | | | | |
| | | ** | | |
| | | Fishing**: | | |
| | | Historical | | |
| | | fishing | | |
| | | dynamics, | | |
| | | forced by | | |
| | | OSP | | |
| | | drivers | | |
+------------+------------+------------+------------+------------+
| 3 | ** | ** | 1850-2014 | 2 |
| | Historical | Climate**: | | |
| | climate | Simul | reanalyis | |
| | only** | ated**/rea | | |
| | | nalysis?** | nat | |
| | | historical | | |
| | | climate | | |
| | | change | | |
| | | | | |
| | | ** | | |
| | | Fishing**: | | |
| | | No fishing | | |
+------------+------------+------------+------------+------------+
| 4 | ** | ** | 1850-2014 | 1 |
| | Historical | Climate**: | | |
| | climate | Simulat | reanalyis | |
| | and | ed**/rea | | |
| | fishing | nalysis?** | histsoc | |
| | dynamics** | historical | | |
| | | climate | | |
| | | change | | |
| | | | | |
| | | ** | | |
| | | Fishing**: | | |
| | | Historical | | |
| | | fishing | | |
| | | dynamics, | | |
| | | forced by | | |
| | | OSP | | |
| | | drivers | | |
+------------+------------+------------+------------+------------+
| 5 | Realistic | | | |
+------------+------------+------------+------------+------------+
#### Note on spin-up period (pre-1850)
| For fishing effort prior to 1850 hold fishing at 1850 levels. [need to DISCUSS above states no fishing, this is from 3a]
|
| For the 'no fishing' runs (nat), the spin-up should not use any fishing effort.
|
**B. OSP-future**: This second thread is dedicated to carrying out
scenario simulations from the perspective of the IPCC. The aim is to
estimate the impact of climate change and the socio-economic context on
marine ecosystems, fisheries and the benefits they provide to societies
worldwide. It contributes to ISIMIP3b, which focuses on assessing the
climate change impacts, and involves running:
[Scenario-a]{.underline}: The five OSP scenarios (2015-2100) with
fishing and SSP climate change, starting from the Historical-a
simulation. This simulation is designed to simulate the impacts of
climate change on fishery and food consumption in the different
socio-economic OSP contexts.
[Scenario-b]{.underline}: The five OSP scenarios (2015-2100) without
fishing but with SSP climate change, starting from the Historical-b
simulation. This simulation is designed to simulate the impacts of
different levels of future climate change on marine ecosystems.
[Scenario-c]{.underline}: The five OSP scenarios (2015-2100) with
fishing but no climate change (pi-control climate), starting from the
Historical-c simulation. This simulation is designed to highlight the
effects of the various socio-economic OSP contexts on fisheries.
Comparing the Scenario-a and Reference simulations during the same time
period will allow for the identification of the combined effects of
different climate change and socio-economic contexts. Comparing the
Scenario-b and Reference simulations will allow for the assessment of
climate impacts on the ecosystem at different levels of climate change.
Additionally, comparing Scenario-c and the Reference simulation will
enable the characterisation of the impact of distinct socio-economic
contexts on the social-ecological fishery system. The interactive
effects of climate and the socio-economic context on the
social-ecological fishery system can be determined by calculating the
difference between the Scenario-a simulation and the sum of the climate
and fishing effects (Scenario-a minus Scenario-b minus Scenario-c plus 2
Reference).
Finally, the difference between the Scenario-a and the scenario-b
simulations will enable the identification of fishing impacts on the
ecosystem experiencing different levels of climate change, and the
difference between the Scenario-a and the Scenario-c simulations will
allow the identification of climate change impacts on the coupled
social-ecological fishery system.
##### Table 2: OSP-Future simulation experimental set-up. Note that each simulation is specified by the Climate forcing and Fishing forcing. Definitions of the specifiers (e.g. nat, picontrol etc.) that are used for ISIMIP filenaming are provided in Tables 3 and 4 below.
+------------+------------+------------+------------+------------+
| No. | Simulation | Short | Time | Phase |
| | | d | period and | |
| | | escription | specifiers | |
+============+============+============+============+============+
| 1-5 | **All SSPs | ** | 2015-2100 | 2 |
| | (1-5), no | Climate**: | | |
| | climate | No climate | picontrol | |
| | change, | change | | |
| | OSP1 | | osp1soc | |
| | fishing** | ** | | |
| | | Fishing**: | | |
| | | OSP1-5 | | |
| | | future | | |
| | | fisheries | | |
| | | dynamics | | |
| | | (following | | |
| | | on from | | |
| | | historical | | |
| | | OSP) | | |
+------------+------------+------------+------------+------------+
| 6-10 | **All SSPs | ** | 2015-2100 | 2 |
| | with | Climate**: | ssp | |
| | climate | SSP-RCP | \<scen\> | |
| | change | climate | nat | |
| | (SSP1-2.6, | scenarios | | |
| | SSP5-8.5), | (e.g. | | |
| | no | SSP1-2.6, | | |
| | fishing** | SSP5-8.5) | | |
| | \| | | | |
| | | ** | | |
| | | Fishing**: | | |
| | | No fishing | | |
+------------+------------+------------+------------+------------+
| 11-15 | **All SSPs | ** | 2015-2100 | 2 |
| | with | Climate**: | | |
| | climate | SSP-RCP | ssp | |
| | change | climate | \<scen\> | |
| | (SSP1-2.6, | scenario, | | |
| | SSP5-8.5) | (e.g. | o | |
| | and OSP1-5 | SSP1-2.6, | sp\<x\>soc | |
| | fishing** | SSP5-8.5) | | |
| | | | | |
| | | ** | | |
| | | Fishing**: | | |
| | | OSP1-5 | | |
| | | future | | |
| | | fisheries | | |
| | | dynamics | | |
| | | (matched | | |
| | | to each | | |
| | | SSP, e.g. | | |
| | | SSP1RCP2.6 | | |
| | | would use | | |
| | | OSP1) | | |
+------------+------------+------------+------------+------------+
### The following additional policy-targeted experimental sensitivity runs will be updated in due course.
**C. OSP-management & food security:** This third thread is devoted to
scenario simulations from the FAO perspective. It aims to focus on the
effects of fishery management on food security, in the "conventional
trends" context of OSP2. It involves running:
The OSP2 scenario (2023-2100) with fishing, [no management,]{.underline}
and climate change (RCP4.5).
The OSP2 scenario (2023-2100) with fishing, [fully compliant MSY
management]{.underline}, and climate change (RCP4.5).
Comparing these two simulations with the OSP2 Scenario-a simulation
(with present-day management) will provide insights into the risks of
fishery management failure and the potential gains of fully compliant
MSY management on global food security.
**D. OSP-Nature Future Framework:** This fourth thread is dedicated to
mapping the OSP scenario simulations to the IPBES perspective and the
NFF. The aim here is to compare three ways of envisioning the
"Sustainability First" OSP1 scenario, corresponding to the three
perspectives on Nature of the "Nature Futures Framework" from the IPBES
("Nature for Nature", "Nature as Culture", and "Nature for Society",
Pereira et al., 2020; Kim et al., 2023). While the definitive setup of
this set of simulations has not yet been fully determined, it would
involve running:
The OSP1 scenario (2023-2100) with fishing, [management transitioning to
50% of the ocean in fully protected MPAs]{.underline}, and moderate
climate change (SSP1-2.6). This simulation corresponds to the IPBES NFF
"Nature for Nature" pathway.
The OSP1 scenario (2023-2100) with fishing, [artisanal fisheries managed
at MSY and no industrial fisheries]{.underline}, and moderate climate
change (SSP1-2.6). This simulation corresponds to the IPBES NFF "Nature
as Culture" pathway.
The OSP1 scenario (2023-2100) with fishing, [the management of both
artisanal and industrial fisheries at Maximum Economic Yield
(MEY)]{.underline}, and moderate climate change (SSP1-2.6). This
simulation corresponds to the IPBES NFF "Nature for Society" pathway.
Comparing these three simulations will bring insights into the
performances of the three NFF strategies, in terms of food supply,
biodiversity conservation, employment and economic benefits generated in
the context of the OSP1 mild climate change.
#####
#### Scenario definitions
| Throughout the protocol we use 'specifiers' that are shortened names used to denote a particular scenario, variables, or other parameter in the filenames of model inputs and outputs. It is crucial that you also use the same specifiers in your output files.
|
| **Correct formatting and naming of output files are essential for model intercomparison and analysis.**
|
| Tables 2-4 describe the different scenarios for the model runs described in Table 1. These specifiers are used in the file names of the corresponding input files and should also be used for the names of the output files (see [7](https://protocol.isimip.org/#reporting-model-results). Reporting model results).
##### Table 3: Climate scenario specifiers (climate-scenario).
+-------------------+----------------------------------------------------------+
| **Scenario | **Description** |
| specifier** | |
| | Pre-industrial climate as simulated by the Earth System |
| picontrol | Models (ESMs) |
+-------------------+----------------------------------------------------------+
| historical | Historical climate as simulated by the ESMs, starting in |
| | 1950. |
+-------------------+----------------------------------------------------------+
| ssp126 | SSP1-2.6 climate as simulated by the ESMs |
+-------------------+----------------------------------------------------------+
| ssp245 | SSP2-4.5 climate as simulated by the ESMs. |
+-------------------+----------------------------------------------------------+
| ssp370 | SSP3-7.0 climate as simulated by the ESMs. |
+-------------------+----------------------------------------------------------+
| ssp460 | SSP4-6.0 climate as simulated by the ESMs. |
+-------------------+----------------------------------------------------------+
| ssp585 | SSP5-8.5 climate as simulated by the ESMs. |
+-------------------+----------------------------------------------------------+
##### Table 4: Socio-economic scenario specifiers (soc-scenario).
+--------------+-------------------------------------------------------+
| **Scenario | **Description** |
| specifier** | |
+:=============+:======================================================+
| **histsoc** | Varying direct human influences in the historical |
| | period (1850-2014) (i.e. historical estimates of |
| | fishing drivers). |
+--------------+-------------------------------------------------------+
| **2015soc** | Fixed year-2015 direct human influences (i.e. fishing |
| | effort). |
+--------------+-------------------------------------------------------+
| **o | Future fishing determined by SSP and OSP driver |
| sp\<x\>soc** | forcings for OSP\<x\>, where \<x\> is 1-5. |
+--------------+-------------------------------------------------------+
| **nat** | No fishing (naturalized run). |
+--------------+-------------------------------------------------------+
**Please remember to use these same specifiers in your output files.
More on reporting data can be found at the end of this document.**
## Input data {#input-data}
**For modellers new to FishMIP:** to access all input data you first
need to set up an account with ISIMIP to access the DKRZ server. Please
follow the instructions here:
<https://www.isimip.org/dashboard/accessing-isimip-data-dkrz-server/>
### Climate forcing - UPDATE WITH DE-BIASED IPSL DATA {#climate-forcing}
##### Table 5: Climate forcing
+--------+--------+----------------------------------------+--------+
| Title | Spec | Institution | Or |
| | ifiers | | iginal |
| | | | reso |
| | | | lution |
+:=======+:=======+:=======================================+:=======+
| GF | gf | National Oceanic and Atmospheric | 2 |
| DLESM4 | dlesm4 | Administration, Geophysical Fluid | 88x180 |
| | | Dynamics Laboratory, Princeton, NJ | |
| | | 08540, USA | |
+--------+--------+----------------------------------------+--------+
| IPSL | ipslc | Institut Pierre Simon Laplace, Paris | 1 |
| CM6ALR | m6a-lr | 75252, France | 44x143 |
+--------+--------+----------------------------------------+--------+
| OT | | | |
| HERS?? | | | |
+--------+--------+----------------------------------------+--------+
##### Table 6. Climate forcing variables and units for FishMIP 3a simulations. All variables are available on a 0.25 and 1 degree horizontal grid, monthly and annual resolutions. Note: Some variables are available as specific layers extracted from vertically resolved data. Their variable names have been suffixed with -bot (ocean bottom, e.g. o2-bot), -surf (surface values, e.g. pH-surf) or -vint (vertically integrated, e.g. phyc-vint), respectively, or prefixed with int (vertically integrated, e.g. intpp). Temperature is suffixed with b or s for bottom (e.g. tob) or surface (e.g. tos) layers, respectively.
+------------+------------+------------+------------+------------+
| Variable | Specifier | Unit | Resolution | ESM |
| | | | | datasets |
+============+============+============+============+============+
| Mass | **chl** | kg m-3 | 0.25° , 1° | GFDL, IPSL |
| Con | | | grid | |
| centration | | | | |
| of Total | | | | |
| Phy | | | | |
| toplankton | | | | |
| Expressed | | | | |
| as | | | | |
| C | | | | |
| hlorophyll | | | | |
+------------+------------+------------+------------+------------+
| Sea Floor | **deptho** | m | 0.25° , 1° | GFDL, IPSL |
| Depth | | | grid | |
+------------+------------+------------+------------+------------+
| Downward | **exp | mol m-2 | 0.25° , 1° | GFDL, IPSL |
| Flux of | c-bot** | s-1 | grid | |
| P | | | | |
| articulate | | | | |
| Organic | | | | |
| Carbon | | | | |
+------------+------------+------------+------------+------------+
| P | \* | kg m-2 | 0.25° , 1° | GFDL, IPSL |
| articulate | intpoc\*\* | | grid | |
| Organic | | | | |
| Carbon | | | | |
| Content | | | | |
+------------+------------+------------+------------+------------+
| Primary | **intpp** | mol m-2 | 0.25° , 1° | GFDL, IPSL |
| Organic | | s-1 | grid | |
| Carbon | | | | |
| Production | | | | |
| by All | | | | |
| Types of | | | | |
| Phy | | | | |
| toplankton | | | | |
+------------+------------+------------+------------+------------+
| Net | **intp | mol m-2 | 0.25° , 1° | GFDL, IPSL |
| Primary | pdiat** | s-1 | grid | |
| Organic | | | | |
| Carbon | | | | |
| Production | | | | |
| by Diatoms | | | | |
+------------+------------+------------+------------+------------+
| Net | **intp | mol m-2 | 0.25° , 1° | GFDL, IPSL |
| Primary | pdiaz** | s-1 | grid | |
| Mole | | | | |
| Pr | | | | |
| oductivity | | | | |
| of Carbon | | | | |
| by | | | | |
| D | | | | |
| iazotrophs | | | | |
+------------+------------+------------+------------+------------+
| Net | **intp | mol m-2 | 0.25° , 1° | GFDL, IPSL |
| Primary | ppico** | s-1 | grid | |
| Mole | | | | |
| Pr | | | | |
| oductivity | | | | |
| of Carbon | | | | |
| by Picoph | | | | |
| y | | | | |
| toplankton | | | | |
+------------+------------+------------+------------+------------+
| Maximum | **mlotst** | m | 0.25° , 1° | GFDL, IPSL |
| Ocean | | | grid | |
| Mixed | | | | |
| Layer | | | | |
| Thickness | | | | |
| Defined by | | | | |
| Sigma T | | | | |
+------------+------------+------------+------------+------------+
| Dissolved | **o2,** | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| Oxygen | | | grid | |
| Con | **o | mol m-2 | | |
| centration | 2-bot** | | | |
| | | mol m-2 | | |
| | **o2 | | | |
| | -surf** | | | |
+------------+------------+------------+------------+------------+
| pH | **ph** | 1 | 0.25° , 1° | GFDL, IPSL |
| | | | grid | |
| | **ph-bot** | 1 | | |
| | | | | |
| | **ph | 1 | | |
| | -surf** | | | |
+------------+------------+------------+------------+------------+
| Phy | **phyc** | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| toplankton | | | grid | |
| Carbon Co | **phyc | mol m-2 | | |
| n | -vint** | | | |
| centration | | | | |
+------------+------------+------------+------------+------------+
| Mole | * | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| Con | *phydiat** | | grid | |
| centration | | mol m-2 | | |
| of Diatoms | **phydiat | | | |
| expressed | -vint** | | | |
| as Carbon | | | | |
| in sea | | | | |
| water | | | | |
+------------+------------+------------+------------+------------+
| Mole | * | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| Con | *phydiaz** | | grid | |
| centration | | mol m-2 | | |
| of | **phydiaz | | | |
| D | -vint** | | | |
| iazotrophs | | | | |
| Expressed | | | | |
| as Carbon | | | | |
| in Sea | | | | |
| Water | | | | |
+------------+------------+------------+------------+------------+
| Mole | * | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| Con | *phypico** | | grid | |
| centration | | mol m-2 | | |
| of | **phypico | | | |
| Picoph | -vint** | | | |
| ytoplankto | | | | |
| nExpressed | | | | |
| as Carbon | | | | |
| in Sea | | | | |
| Water | | | | |
+------------+------------+------------+------------+------------+
| Sea Water | **so** | ‰ | 0.25° , 1° | GFDL, IPSL |
| Salinity | | | grid | |
| | **so-bot** | ‰ | | |
| | | | | |
| | **so | % | | |
| | -surf** | | | |
+------------+------------+------------+------------+------------+
| Sea Water | **thetao** | °C | 0.25° , 1° | GFDL, IPSL |
| Potential | | | grid | |
| T | | | | |
| emperature | | | | |
+------------+------------+------------+------------+------------+
| Ocean | **thk | m | 0.25° , 1° | GFDL, IPSL |
| Model Cell | cello** | | grid | |
| Thickness | | | | |
+------------+------------+------------+------------+------------+
| Sea Water | **tob** | °C | 0.25° , 1° | GFDL, IPSL |
| Potential | | | grid | |
| T | | | | |
| emperature | | | | |
| at Sea | | | | |
| Floor | | | | |
+------------+------------+------------+------------+------------+
| Sea | **tos** | °C | 0.25° , 1° | GFDL, IPSL |
| Surface | | | grid | |
| T | | | | |
| emperature | | | | |
+------------+------------+------------+------------+------------+
| Sea Water | **uo** | m s-1 | 0.25° , 1° | GFDL, IPSL |
| X Velocity | | | grid | |
+------------+------------+------------+------------+------------+
| Sea Water | **vo** | m s-1 | 0.25° , 1° | GFDL, IPSL |
| Y Velocity | | | grid | |
+------------+------------+------------+------------+------------+
| Mole | **zmeso** | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| Con | | | grid | |
| centration | **zm | mol m-2 | | |
| of Meso | eso-vint** | | | |
| z | | | | |
| ooplankton | | | | |
| expressed | | | | |
| as Carbon | | | | |
| in sea | | | | |
| water | | | | |
+------------+------------+------------+------------+------------+
| Mole | **zmicro** | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| Con | | | grid | |
| centration | **zmi | mol m-2 | | |
| of | cro-vint** | | | |
| Microz | | | | |
| ooplankton | | | | |
| expressed | | | | |
| as Carbon | | | | |
| in sea | | | | |
| water | | | | |
+------------+------------+------------+------------+------------+
| Z | **zooc** | mol m-3 | 0.25° , 1° | GFDL, IPSL |
| ooplankton | | | grid | |
| Carbon | **z | mol m-2 | | |
| Con | ooc-vint** | | | |
| centration | | | | |
+------------+------------+------------+------------+------------+
| Net | **rsntds** | W m-2 | 0.25° , 1° | GFDL, IPSL |
| Downward | | | grid | |
| Shortwave | | | | |
| Radiation | | | | |
| at Sea | | | | |
| Water | | | | |
| Surface | | | | |
+------------+------------+------------+------------+------------+
| Sea Ice | **siconc** | \% | 0.25° , 1° | GFDL, IPSL |
| Area | | | grid | |
| Fraction | | | | |
+------------+------------+------------+------------+------------+
### Climate forcing file locations
The climate forcing input files can be found using the following
pattern:
``` linux
levante:/work/bb0820/ISIMIP/ISIMIP3b/InputData/climate/ocean/uncorrected/<glob
al or regional>/monthly/<climate-scenario>/<climate-forcing>/<climateforcing>_<ensemble-member>_<climate-scenario>_<climatevariable>_global_monthly_<start-year>_<end-year>.nc
```
The variables **deptho** and **thkcello** are fixed through time and can
be found in the "fixed/" folder (rather than monthly/).
#### Note on phytoplankton size structure inputs
Production and carbon data for large and small phytoplankton can be
derived from the variables in Table 1 by the following:
large = diatoms + diazotrophs
small = picophytoplankton
The GFDL model treats diazotrophs as large phytoplankton as part of
their food-web processes.
#### Note on regional model spatial extractions
For regional models, only specific grid cells will be needed from the
above global outputs. Please let us know if you require assistance to
extract results (e.g. using bounding boxes, masks or shapefiles). This
functionality is now partially available (bounding box) through the
ISIMIP web-based [data portal](https://data.isimip.org/).
A simple worked example on how to do this for specific regions in R is
provided here: <https://github.com/Fish-MIP/FishMIP_extracting-data>
### Fishing and socioeconomic drivers - NEEDS TO BE UPDATED - OSPs {#fishing-effort-forcing}
##### Table 7: Fishing effort data and variables.
+---------------+---------------+------------------+---------------+
| Specifier | Included | Time period | Filename |
| | variables | /Resolution | |
| | (short names) | | |
| | and | | |
| | definitions | | |
+===============+===============+==================+===============+
| histsoc | NomActive = | - 1850-2015 | |
| | Nominal | | |
| | fishing | - Annual | |
| | effort of the | | |
| | active fleet | | |
| | d | | |
| | is-aggregated | | |
| | by: | | |
| | | | |
| | - eez | | |
| | _country_name | | |
| | = The | | |
| | exclusive | | |
| | economic | | |
| | zone/high | | |
| | seas name | | |
| | in which | | |
| | fishing | | |
| | effort is | | |
| | occurring | | |
| | | | |
| | - LME = A | | |
| | number | | |
| | code of | | |
| | the Large | | |
| | Marine | | |
| | ecosystem | | |
| | in which | | |
| | the | | |
| | Effort is | | |
| | occurring | | |
| | | | |
| | - SAUP = A | | |
| | number | | |
| | code for | | |
| | the | | |
| | fishing | | |
| | country, | | |
| | following | | |
| | Sea | | |
| | Around Us | | |
| | numbering | | |
| | | | |
| | - Gear = | | |
| | the | | |
| | fishing | | |
| | gear | | |
| | | | |
| | - FGroup = | | |
| | the | | |
| | targeted | | |
| | | | |
| | functional | | |
| | group | | |
| | | | |
| | - Sector = | | |
| | the | | |
| | fishing | | |
| | sector | | |
| | defined | | |
| | by the | | |
| | law of | | |
| | the | | |
| | country | | |
+---------------+---------------+------------------+---------------+
| 2015soc | Final year of | - 2015-2100 | |
| | values from | | |
| | histsoc | - Annual | |
| | repeated | | |
| | until 2100 | | |
+---------------+---------------+------------------+---------------+
| Historical | | | |
| Population | | | |
+---------------+---------------+------------------+---------------+
| Historical | | | |
| GDP | | | |
+---------------+---------------+------------------+---------------+
| SSP\<x\> | | | |
| Population | | | |
+---------------+---------------+------------------+---------------+
| SSP\<x\>GDP | | | |
+---------------+---------------+------------------+---------------+
| MPAs | | | |
+---------------+---------------+------------------+---------------+
| OS | | | |
| P\<x\>Drivers | | | |
+---------------+---------------+------------------+---------------+
##### Table 8: Metadata for histsoc fishing effort variables.
+--------+--------+--------+----------------------------------------+
| Va | Long | Unit | Description/notes |
| riable | name | | |
| Name | | | |
+:=======+:=======+:=======+:=======================================+
| Year | (End | Number | |
| | of | code | |
| | the) | | |
| | year | | |
| | when | | |
| | the f | | |
| | ishing | | |
| | effort | | |
| | is occ | | |
| | urring | | |
+--------+--------+--------+----------------------------------------+
| Sector | The f | Name | I = Industrial and A = artisanal, |
| | ishing | code | where artisanal include powered and |
| | sector | | unpowered artisanal fleets |
| | d | | |
| | efined | | |
| | by the | | |
| | law of | | |
| | the c | | |
| | ountry | | |
+--------+--------+--------+----------------------------------------+
| LME | Large | Number | A number code of the Large Marine |
| | Marine | code | ecosystem in which the Effort is |
| | Eco | | occurring |
| | system | | |
| | Number | | |
+--------+--------+--------+----------------------------------------+
| eez\_ | Exc | Name | The country-level exclusive economic |
| countr | lusive | code | zone (or high seas) name in which |
| y_name | Ec | | fishing effort is occurring |
| | onomic | | |
| | Zone | | |
+--------+--------+--------+----------------------------------------+
| SAUP | A | Number | Ex supranational entities (USSR, |
| | number | code | Yugoslavia) are disaggregated to their |
| | code | | constituent countries. Serbian Fishing |
| | for | | Effort included with Montenegro. |
| | the f | | Crimea included with Ukrainian. |
| | ishing | | |
| | co | | |
| | untry, | | |
| | fol | | |
| | lowing | | |
| | Sea | | |
| | Around | | |
| | Us num | | |
| | bering | | |
+--------+--------+--------+----------------------------------------+
| Gear | The f | Name | Gear names |
| | ishing | code | |
| | gear | | |
+--------+--------+--------+----------------------------------------+
| FGroup | The ta | Name | Functional groups are in accordance |
| | rgeted | code | with those used by the Sea Around Us |
| | func | | Project |
| | tional | | |
| | group | | |
+--------+--------+--------+----------------------------------------+
| Nom | N | Days | NomActive (of the active fleet; i.e., |
| Active | ominal | at sea | total) = P (engine power of active the |
| | f | X kW | fleet; i.e., total) x DAS (average |
| | ishing | | days at sea of one vessel). Average |
| | effort | | DAS for one vessel \~ 200 DAS/year. |
| | (i.e., | | NomActive corresponds to the total |
| | not | | (reported, IUU, discards) catch. To |
| | inc | | find NomActive in DAS do (NomActive/P) |
| | luding | | X NV |
| | the t | | |
| | echnol | | |
| | ogical | | |
| | creep) | | |
| | of the | | |
| | active | | |
| | fleet | | |
+--------+--------+--------+----------------------------------------+
##### Table 9: Details for OSP relative change in drivers of fishing effort variables. HOW TO DESCRIBE HOW WE WILL VARY MANAGEMENT IN THE MODELS ACROSS OSPs??
| OSP | Management |
|------|--------------------------------------------|
| OSP1 | All stocks fished at Fmsy or B/B0 \> 0.5?? |
| OSP5 | Fmsy or B/B0?? |
#### Implementation of OSPs
TO DO: We provide code examples showing how to implement the OSPs?
##### Table 8: Metadata for fishing effort variables.
#### Fishing effort data file locations
The monthly fishing effort forcing files for the spin-up and experiments
(Table 1) of this simulation protocol can be found on DKRZ here:
``` linux
levante:/work/bb0820/ISIMIP/ISIMIP3b/InputData/socioeconomic/fishing/histsoc/
```
#### Note on global model fishing effort forcing
For **global models**, the above spatially aggregated fishing effort can
be spatially allocated into 0.25 grid cells. This can be achieved using
different approaches such as a simple gravity model -- e.g. see [Coll et
al.
2020](https://www.frontiersin.org/articles/10.3389/fmars.2020.567877/full)
but details will depend on model structure.
We are developing a simplified worked example for global modellers to
explore and contribute to. This will be made available on github/FishMIP
in due course.
While we recommend using the above spatially aggregated effort, for
**global models** that cannot technically carry out spatial allocation
of effort, gridded total industrial and artisanal nominal active effort
have been provided in the same folder as the file above and are saved as
netcdf files. These can be allocated to functional groups (e.g.
according to relative biomass) depending on model structure.
#### Note on regional model fishing effort forcing
Downscaling of the above fishing effort to match regional model inputs
is likely to be needed. We request that regional modellers work together
in their specific regions to ensure we have clear and common
methodologies.
We are developing a worked example for regional modellers to explore and
contribute to for their region which will be made available on
github/FishMIP in due course.
#### Note on model calibration using fishing catch data and model evaluation requirements
Modellers are permitted to calibrate or tune their models using
historical fisheries catch data (that will also be used for model
evaluation) on the condition that **only years up to and including
2004** are used in model calibration/tuning.
Modelling groups **must** keep **detailed documentation** on how their
model was calibrated (e.g. input forcing, calibration data, time domain,
spatial domain, fish grouping (size, functional types, total),
optimization metric(s), weighting schemes, etc.) to be included in
manuscript methods. Written description of sources of calibration data
and methods used need to be provided with all simulation outputs. A
template will be provided for this documentation in due course.
The fisheries catch data .csv file that can be used for model
calibration is here:
``` linux
levante:/work/bb0820/ISIMIP/ISIMIP3a/InputData/socioeconomic/fishing/histsoc/calibration_catch_histsoc_1850_2004.csv.
```
The fisheries catch data are already aggregated into the functional
groups and spatial zones as the above effort forcing data. The original
reference including links to full database is [Watson & Tidd, 2018,
Marine Policy, 93:
171-177](https://www.sciencedirect.com/science/article/pii/S0308597X18300605).
### **Other static geographic information**:
Large marine ecosystem (LME) masks in four different spatial
resolutions. 0.1°, 0.25°, 0.5° and 1° are available here:
``` linux
/work/bb0820/ISIMIP/ISIMIP3a/InputData/geo_conditions/fishmip_regions/
```
Each region has its own variable within each file.
We have also provided conversion tables that can be used to look up LME
and SAUP names according to the numeric codes used in the catch and
effort files (e.g. LME 22 -- North Sea). These files (SAUPnames.csv and
LMEnames.csv) are also available here: