-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsoc_dataset.yaml
1676 lines (1651 loc) · 64 KB
/
soc_dataset.yaml
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
- specifier: landuse-totals
title: Landuse totals
group: landuse
mandatory: true
group3: true
frequency: annual
resolution: 0.5° grid
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/landuse/histsoc/landuse-totals_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/2015soc/landuse-totals_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/1901soc/landuse-totals_1901soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/landuse/histsoc/landuse-totals_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/2015soc/landuse-totals_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/1850soc/landuse-totals_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-noadapt/landuse-totals_<lu-model>_ssp1_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-noadapt/landuse-totals_<lu-model>_ssp3_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-noadapt/landuse-totals_<lu-model>_ssp5_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-adapt/landuse-totals_<lu-model>_<climate-forcing>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-adapt/landuse-totals_<lu-model>_<climate-forcing>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-totals_<lu-model>_<climate-forcing>_ssp585_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-totals_<lu-model>_<climate-forcing>_ssp585_2015co2_annual_2015_2100.nc
variables:
- specifier: pastures
long_name: share of managed pastures or rangeland
unit: '1'
- specifier: forests_and_natural_vegetation
long_name: share of forests and natural vegetation
unit: '1'
- specifier: cropland_rainfed
long_name: share of the rainfed cropland
unit: '1'
- specifier: cropland_irrigated
long_name: all of the irrigated cropland
unit: '1'
- specifier: cropland_total
long_name: share of the total cropland
unit: '1'
comment: >-
Input dataset documentation → [Historical, gridded land use](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/82/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- fs-n
- labour
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: landuse-5crops
title: Downscaling to 5 crops
group: landuse
mandatory: true
group3: true
frequency: annual
resolution: 0.5° grid
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/landuse/histsoc/landuse-5crops_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/2015soc/landuse-5crops_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/1901soc/landuse-5crops_1901soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/landuse/histsoc/landuse-5crops_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/2015soc/landuse-5crops_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/1850soc/landuse-5crops_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-noadapt/landuse-5crops_<lu-model>_ssp1_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-noadapt/landuse-5crops_<lu-model>_ssp3_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-noadapt/landuse-5crops_<lu-model>_ssp5_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-adapt/landuse-5crops_<lu-model>_<climate-forcing>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-adapt/landuse-5crops_<lu-model>_<climate-forcing>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-5crops_<lu-model>_<climate-forcing>_ssp585_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-5crops_<lu-model>_<climate-forcing>_ssp585_2015co2_annual_2015_2100.nc
variables:
- specifier: c3ann_irrigated
long_name: share of irrigated C3 annual crops
unit: '1'
- specifier: c3ann_rainfed
long_name: share of rainfed C3 annual crops
unit: '1'
- specifier: c3per_irrigated
long_name: share of irrigated C3 perennial crops
unit: '1'
- specifier: c3per_rainfed
long_name: share of rainfed C3 perennial crops
unit: '1'
- specifier: c3nfx_irrigated
long_name: share of irrigated C3 N-fixing crops
unit: '1'
- specifier: c3nfx_rainfed
long_name: share of rainfed C3 N-fixing crops
unit: '1'
- specifier: c4ann_irrigated
long_name: share of irrigated C4 annual crops
unit: '1'
- specifier: c4ann_rainfed
long_name: share of rainfed C4 annual crops
unit: '1'
- specifier: c4per_irrigated
long_name: share of irrigated C4 perennial crops
unit: '1'
- specifier: c4per_rainfed
long_name: share of rainfed C4 perennial crops
unit: '1'
comment: >-
Input dataset documentation → [Historical, gridded land use](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/82/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- fs-n
- labour
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: landuse-15crops
title: Downscaling to 15 crops
group: landuse
mandatory: true
group3: true
frequency: annual
resolution: 0.5° grid
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/landuse/histsoc/landuse-15crops_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/2015soc/landuse-15crops_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/1901soc/landuse-15crops_1901soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/landuse/histsoc/landuse-15crops_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/2015soc/landuse-15crops_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/1850soc/landuse-15crops_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-noadapt/landuse-15crops_<lu-model>_<climate-forcing>_ssp1_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-noadapt/landuse-15crops_<lu-model>_<climate-forcing>_ssp3_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-noadapt/landuse-15crops_<lu-model>_<climate-forcing>_ssp5_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-adapt/landuse-15crops_<lu-model>_<climate-forcing>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-adapt/landuse-15crops_<lu-model>_<climate-forcing>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-15crops_<lu-model>_<climate-forcing>_ssp585_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-15crops_<lu-model>_<climate-forcing>_ssp585_2015co2_annual_2015_2100.nc
variables:
- specifier: c3per_irrigated
long_name: share of irrigated others perennial
unit: '1'
- specifier: c3per_rainfed
long_name: share of rainfed others perennial
unit: '1'
- specifier: c4per_irrigated
long_name: share of irrigated Sugarcane
unit: '1'
- specifier: c4per_rainfed
long_name: share of rainfed Sugarcane
unit: '1'
- specifier: maize_irrigated
long_name: share of irrigated Maize
unit: '1'
- specifier: maize_rainfed
long_name: share of rainfed Maize
unit: '1'
- specifier: oil_crops_groundnut_irrigated
long_name: share of irrigated Oil crops groundnut
unit: '1'
- specifier: oil_crops_groundnut_rainfed
long_name: share of rainfed Oil crops groundnut
unit: '1'
- specifier: oil_crops_rapeseed_irrigated
long_name: share of irrigated Oil crops rapeseed
unit: '1'
- specifier: oil_crops_rapeseed_rainfed
long_name: share of rainfed Oil crops rapeseed
unit: '1'
- specifier: oil_crops_soybean_irrigated
long_name: 'share of irrigated '
unit: '1'
- specifier: oil_crops_soybean_rainfed
long_name: 'share of rainfed '
unit: '1'
- specifier: oil_crops_sunflower_irrigated
long_name: 'share of irrigated '
unit: '1'
- specifier: oil_crops_sunflower_rainfed
long_name: 'share of rainfed '
unit: '1'
- specifier: others_c3ann_irrigated
long_name: 'share of irrigated '
unit: '1'
- specifier: others_c3ann_rainfed
long_name: 'share of rainfed '
unit: '1'
- specifier: others_c3nfx_irrigated
long_name: 'share of irrigated '
unit: '1'
- specifier: others_c3nfx_rainfed
long_name: 'share of rainfed '
unit: '1'
- specifier: pastures
long_name: managed grassland
unit: '1'
- specifier: pulses_irrigated
long_name: share of irrigated Pulses
unit: '1'
- specifier: pulses_rainfed
long_name: share of rainfed Pulses
unit: '1'
- specifier: rice_irrigated
long_name: share of irrigated Rice
unit: '1'
- specifier: rice_rainfed
long_name: share of rainfed Rice
unit: '1'
- specifier: temperate_cereals_irrigated
long_name: share of irrigated Temperate cereals
unit: '1'
- specifier: temperate_cereals_rainfed
long_name: share of rainfed Temperate cereals
unit: '1'
- specifier: temperate_roots_irrigated
long_name: share of irrigated Temperate roots
unit: '1'
- specifier: temperate_roots_rainfed
long_name: share of rainfed Temperate roots
unit: '1'
- specifier: tropical_cereals_irrigated
long_name: share of irrigated Tropical cereals
unit: '1'
- specifier: tropical_cereals_rainfed
long_name: share of rainfed Tropical cereals
unit: '1'
- specifier: tropical_roots_irrigated
long_name: share of irrigated Tropical roots
unit: '1'
- specifier: tropical_roots_rainfed
long_name: share of rainfed Tropical roots
unit: '1'
comment: >-
Input dataset documentation → [Historical, gridded land use](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/82/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- fs-n
- labour
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: landuse-pastures
title: Managed pastures and rangeland
group: landuse
mandatory: true
group3: true
frequency: annual
resolution: 0.5° grid
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/landuse/histsoc/landuse-pastures_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/2015soc/landuse-pastures_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/1901soc/landuse-pastures_1901soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/landuse/histsoc/landuse-pastures_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/2015soc/landuse-pastures_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/1850soc/landuse-pastures_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-noadapt/landuse-pastures_<lu-model>_ssp1_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-noadapt/landuse-pastures_<lu-model>_ssp3_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-noadapt/landuse-pastures_<lu-model>_ssp5_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-adapt/landuse-pastures_<lu-model>_<climate-forcing>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-adapt/landuse-pastures_<lu-model>_<climate-forcing>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-pastures_<lu-model>_<climate-forcing>_ssp585_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-pastures_<lu-model>_<climate-forcing>_ssp585_2015co2_annual_2015_2100.nc
variables:
- specifier: managed_pastures
long_name: share of managed pastures
unit: '1'
- specifier: rangeland
long_name: share of rangeland
unit: '1'
comment: >-
Input dataset documentation → [Historical, gridded land use](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/82/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- fs-n
- labour
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: landuse-urbanareas
title: Urban areas
group: landuse
mandatory: true
group3: true
frequency: annual
resolution: 0.5° grid
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/landuse/histsoc/landuse-urbanareas_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/2015soc/landuse-urbanareas_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/1901soc/landuse-urbanareas_1901soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/landuse/histsoc/landuse-urbanareas_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/2015soc/landuse-urbanareas_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/1850soc/landuse-urbanareas_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-noadapt/landuse-urbanareas_<lu-model>_ssp1_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-noadapt/landuse-urbanareas_<lu-model>_ssp3_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-noadapt/landuse-urbanareas_<lu-model>_ssp5_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-adapt/landuse-urbanareas_<lu-model>_<climate-forcing>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-adapt/landuse-urbanareas_<lu-model>_<climate-forcing>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-urbanareas_<lu-model>_<climate-forcing>_ssp585_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-urbanareas_<lu-model>_<climate-forcing>_ssp585_2015co2_annual_2015_2100.nc
variables:
- specifier: urbanareas
long_name: share of urban areas
unit: '1'
comment: >-
Input dataset documentation → [Historical, gridded land use](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/82/).
sectors:
- agriculture
- biodiversity
- biomes
- coastal
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- fs-n
- labour
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: landuse-forests-and-natural-vegetation
title: Forests and natural vegetation
group: landuse
mandatory: false
group3: true
frequency: annual
resolution: 0.5° grid
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/landuse/histsoc/landuse-forests-and-natural-vegetation_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/2015soc/landuse-forests-and-natural-vegetation_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/landuse/1901soc/landuse-forests-and-natural-vegetation_1901soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/landuse/histsoc/landuse-forests-and-natural-vegetation_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/2015soc/landuse-forests-and-natural-vegetation_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/1850soc/landuse-forests-and-natural-vegetation_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-noadapt/landuse-forests-and-natural-vegetation_<lu-model>_ssp1_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-noadapt/landuse-forests-and-natural-vegetation_<lu-model>_ssp3_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-noadapt/landuse-forests-and-natural-vegetation_<lu-model>_ssp5_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp126soc-adapt/landuse-forests-and-natural-vegetation_<lu-model>_<climate-forcing>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp370soc-adapt/landuse-forests-and-natural-vegetation_<lu-model>_<climate-forcing>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-forests-and-natural-vegetation_<lu-model>_<climate-forcing>_ssp585_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/landuse/ssp585soc-adapt/landuse-forests-and-natural-vegetation_<lu-model>_<climate-forcing>_ssp585_2015co2_annual_2015_2100.nc
variables:
- specifier: primary_forests
long_name: primary vegetation on LUH2 potential forest land
unit: '1'
- specifier: primary_nonforests
long_name: primary vegetation on LUH2 potential non-forest land
unit: '1'
- specifier: secondary_forests
long_name: secondary vegetation on LUH2 potential forest land
unit: '1'
- specifier: secondary_nonforests
long_name: secondary vegetation on LUH2 potential non-forest land
unit: '1'
- specifier: secondary_mean_biomass
long_name: secondary mean biomass carbon density
unit: 'kg m-2'
- specifier: secondary_mean_age
long_name: secondary mean age
unit: 'years'
comment: >-
Input dataset documentation → [Historical, gridded land use](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/82/).
Not relevant for models with dynamic vegetation. Those models should consider the sum of these areas as boundary condition and calculate the natural vegetation dynamics of forest and other natural vegetation internally.
sectors:
- agriculture
- biodiversity
- biomes
- coastal
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- fs-n
- labour
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: n-fertilizer-5crops
title: Nitrogen deposited by fertilizers on croplands
group: n-fertilizer
mandatory: true
group3: true
frequency: annual (growing season)
resolution: 0.5° grid
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/n-fertilizer/histsoc/n-fertilizer-5crops_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-fertilizer/2015soc/n-fertilizer-5crops_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-fertilizer/1901soc/n-fertilizer-5crops_1850soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/histsoc/n-fertilizer-5crops_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/2015soc/n-fertilizer-5crops_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/1850soc/n-fertilizer-5crops_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/ssp126soc-noadapt/n-fertilizer-5crops_<lu-model>_ssp1_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/ssp370soc-noadapt/n-fertilizer-5crops_<lu-model>_ssp3_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/ssp585soc-noadapt/n-fertilizer-5crops_<lu-model>_ssp5_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/ssp126soc-adapt/n-fertilizer-5crops_<lu-model>_<climate-forcing>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/ssp370soc-adapt/n-fertilizer-5crops_<lu-model>_<climate-forcing>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/ssp585soc-adapt/n-fertilizer-5crops_<lu-model>_<climate-forcing>_ssp585_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-fertilizer/ssp585soc-adapt/n-fertilizer-5crops_<lu-model>_<climate-forcing>_ssp585_2015co2_annual_2015_2100.nc
variables:
- specifier: fertl_c3ann
long_name: N input through fertilizer on cropland with C3 annual crops
unit: kg ha-1 yr-1 (crop season)
- specifier: fertl_c3nfx
long_name: C3 N-fixing crops
unit: kg ha-1 yr-1 (crop season)
- specifier: fertl_c3per
long_name: C3 perennial crops
unit: kg ha-1 yr-1 (crop season)
- specifier: fertl_c4ann
long_name: C4 annual crops
unit: kg ha-1 yr-1 (crop season)
- specifier: fertl_c4per
long_name: C4 perennial crops
unit: kg ha-1 yr-1 (crop season)
comment:
ISIMIP3a: Input dataset documentation → [Nitrogen Fertilizer](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/108/).
ISIMIP3b: Input dataset documentation → [Nitrogen Fertilizer](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/112/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: ndep-nhx
title: Reduced nitrogen deposition
group: n-deposition
frequency: monthly
resolution: 0.5° grid
group3: true
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/n-deposition/histsoc/ndep-<variable>_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-deposition/2015soc/ndep-<variable>_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-deposition/1901soc/ndep-<variable>_1901soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-deposition/1850soc/ndep-<variable>_1850soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/n-deposition/histsoc/ndep-<variable>_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/2015soc/ndep-<variable>_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/1850soc/ndep-<variable>_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp126soc-noadapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp370soc-noadapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp585soc-noadapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp126soc-adapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp370soc-adapt/ndep-<variable>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp585soc-adapt/ndep-<variable>_ssp585_annual_2015_2100.nc
variables:
- specifier: nhx
long_name: Dry and Wet NHx deposition
unit: g N m-2 mon-1
- specifier: drynhx
long_name: Dry NHx deposition
unit: g N m-2 mon-1
- specifier: wetnhx
long_name: Wet NHx deposition
unit: g N m-2 mon-1
comment: >-
Input dataset documentation → [Nitrogen deposition](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/116/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- 2015-2100
- specifier: ndep-noy
title: Oxidized nitrogen deposition
group: n-deposition
frequency: monthly
resolution: 0.5° grid
group3: true
path:
ISIMIP3a:
- ISIMIP3a/InputData/socioeconomic/n-deposition/histsoc/ndep-<variable>_histsoc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-deposition/2015soc/ndep-<variable>_2015soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-deposition/1901soc/ndep-<variable>_1901soc_annual_<start>_<end>.nc
- ISIMIP3a/InputData/socioeconomic/n-deposition/1850soc/ndep-<variable>_1850soc_annual_<start>_<end>.nc
ISIMIP3b:
- ISIMIP3b/InputData/socioeconomic/n-deposition/histsoc/ndep-<variable>_histsoc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/2015soc/ndep-<variable>_2015soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/1850soc/ndep-<variable>_1850soc_annual_<start>_<end>.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp126soc-noadapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp370soc-noadapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp585soc-noadapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp126soc-adapt/ndep-<variable>_ssp126_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp370soc-adapt/ndep-<variable>_ssp370_annual_2015_2100.nc
- ISIMIP3b/InputData/socioeconomic/n-deposition/ssp585soc-adapt/ndep-<variable>_ssp585_annual_2015_2100.nc
variables:
- specifier: noy
long_name: Dry and Wet NOy deposition
unit: g N m-2 mon-1
- specifier: drynoy
long_name: Dry NOy deposition
unit: g N m-2 mon-1
- specifier: wetnoy
long_name: Wet NOy deposition
unit: g N m-2 mon-1
comment: >-
Input dataset documentation → [Nitrogen deposition](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/116/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- forestry
- groundwater
- health
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- 2015-2100
- specifier: ggcmi-crop-calendar-2015soc
specifier_file: ggcmi-crop-calendar-phase3
title: GGCMI crop calendar (2015 fixed observation based)
group: crop-calendar
frequency: fixed
resolution: 0.5° grid
mandatory: true
path:
ISIMIP3a: ISIMIP3a/InputData/socioeconomic/crop_calendar/2015soc/ggcmi-crop-calendar-phase3_2015soc_<crop>_<irrigation>.nc
ISIMIP3b: ISIMIP3b/InputData/socioeconomic/crop_calendar/2015soc/ggcmi-crop-calendar-phase3_2015soc_<crop>_<irrigation>.nc
comment: >-
Input dataset documentation → [Crop calendar](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/115/).
variables:
- specifier: planting_day
long_name: Planting day, separated for rainfed and irrigated crops where applicable
unit: day of year
- specifier: maturity_day
long_name: Maturity day, separated for rainfed and irrigated crops where applicable
unit: day of year
- specifier: growing_season_length
long_name: Growing season length
unit: days
- specifier: data_source_used
long_name: Data source used
unit: index
sectors:
- agriculture
- biomes
- fire
- groundwater
- peat
- permafrost
- water_global
time_periods: []
- specifier: ggcmi-crop-calendar
title: GGCMI crop calendar
group: crop-calendar
frequency: annual
resolution: 0.5° grid
mandatory: true
group3: true
path:
- ISIMIP3b/InputData/socioeconomic/crop_calendar/histsoc/ggcmi-crop-calendar_<soc_scenario>_<crop>_<irrigation>.nc
- ISIMIP3b/InputData/socioeconomic/crop_calendar/ssp126soc-adapt/ggcmi-crop-calendar_<climate-forcing>_ssp126_<crop>-<irrigation>.nc
- ISIMIP3b/InputData/socioeconomic/crop_calendar/ssp126soc-noadapt/ggcmi-crop-calendar_<climate-forcing>_ssp126_<crop>-<irrigation>.nc
- ISIMIP3b/InputData/socioeconomic/crop_calendar/ssp370soc-adapt/ggcmi-crop-calendar_<climate-forcing>_ssp370_<crop>-<irrigation>.nc
- ISIMIP3b/InputData/socioeconomic/crop_calendar/ssp370soc-noadapt/ggcmi-crop-calendar_<climate-forcing>_ssp370_<crop>-<irrigation>.nc
- ISIMIP3b/InputData/socioeconomic/crop_calendar/ssp585soc-adapt/ggcmi-crop-calendar_<climate-forcing>_ssp585_<crop>-<irrigation>.nc
- ISIMIP3b/InputData/socioeconomic/crop_calendar/ssp585soc-noadapt/ggcmi-crop-calendar_<climate-forcing>_ssp585_<crop>-<irrigation>.nc
comment: >-
Input dataset documentation → [Crop calendar](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/115/).
simulation_rounds:
- ISIMIP3b
variables:
- specifier: planting_day-mavg
long_name: Rule-based sowing date, 10-year moving-average
unit: day of year
- specifier: planting_day-mavg-window
long_name: Time window of moving-averaged sowing dates
unit: sequential nr.
- specifier: planting_day
long_name: Rule-based sowing date, 10-year steps
unit: day of year
- specifier: maturity_day
long_name: Rule-based harvest date, 10-year steps
unit: day of year
- specifier: growing_period
long_name: Rule-based growing period duration
unit: days
- specifier: seasonality
long_name: Climate seasonality type
unit: "-"
- specifier: harvest_reason
long_name: Rule triggering harvest
unit: "-"
- specifier: planting_season
long_name: Sowing season
unit: "-"
sectors:
- agriculture
- biomes
- fire
- groundwater
- peat
- permafrost
- water_global
time_periods: []
- specifier: reservoirs-dams
title: Reservoirs & dams
group: reservoirs-dams
frequency: annual
resolution: 0.5° grid and original coordinates (degree)
path:
ISIMIP3a: ISIMIP3a/InputData/socioeconomic/reservoir_dams/reservoirs-dams_1850_2020.xls
ISIMIP3b: ISIMIP3b/InputData/socioeconomic/reservoir_dams/reservoirs-dams_1850_2015.xls
variables:
- specifier: ID
long_name: Unique ID representing a dam and its associated reservoir corresponding
to GRanD/KSU IDs
unit: ''
- specifier: DAM_NAME
long_name: Name of dam structure
unit: ''
- specifier: Original latitudinal location of the dam
long_name: Original longitudinal location of the dam
unit: deg
- specifier: LAT_ORIG
long_name: original location
unit: deg
- specifier: LON_DDM30
long_name: Longitude, adjusted to the DDM30 0.5° grid cell centers
unit: deg
- specifier: LAT_DDM30
long_name: Latitude, adjusted to 0.5° grid cell centers
unit: deg
- specifier: CATCH_SKM_DDM30
long_name: Upstream area draining into the reservoir using DDM30
unit: km2
- specifier: CATCH_SKM_GRanD
long_name: Upstream area draining into the reservoir acc. to GRanD
unit: km2
- specifier: CAP_MCM
long_name: Representative maximum storage capacity of reservoir [10⁶ m³]
unit: 10^6 m3
- specifier: YEAR
long_name: Year of construction, completion, commissioning, etc.
unit: ''
- specifier: FLAG_ART
long_name: Flag to indicate that the year of dam construction has been artificially
set to 1850 if not existing
unit: 1 or 0
- specifier: ALT_YEAR
long_name: 'Altern. year: may indicate multi-year construction, secondary dam,
etc.'
unit: ''
- specifier: FLAG_CORR
long_name: Flag of correction if relocation was applied
unit: 2 or 1, or N/A
- specifier: RIVER
long_name: Name of the river which the dam impounds
unit: ''
- specifier: COUNTRY
long_name: Country where the dam is located
unit: ''
- specifier: D_Hght_m
long_name: Height of the dam. If multiple heights are available, the foundation
height was used.
unit: m
- specifier: R_Area_km2
long_name: Maximum inundation area of the reservoir
unit: km2
- specifier: PURPOSE
long_name: Main purpose(s) of the dam
unit: ''
- specifier: SOURCE
long_name: Sources used to collect this dam’s information
unit: ''
- specifier: COMMENTS
long_name: Other notes
unit: ''
comment: >-
Because the data from KSU is yet unpublished, modeling teams using it are asked
to offer co-authorship to the team at KSU on any resulting publications. Please
contact <[email protected]> in case of questions.
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- groundwater
- health
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1850-2020
ISIMIP3b:
- 1850-2015
- specifier: water_abstraction
title: Water abstraction for domestic and industrial purposes
group: water_abstraction
frequency: annual
resolution: 0.5° grid
path:
ISIMIP3a: ISIMIP3a/InputData/socioeconomic/water_abstraction/<soc_scenario>/[domw|indw][w|c]_<soc_scenario>_annual_<start-year>_<end-year>.nc
ISIMIP3b: ISIMIP3b/InputData/socioeconomic/water_abstraction/<soc_scenario>/[domw|indw][w|c]_<soc_scenario>_annual_<start-year>_<end-year>.nc
variables:
- specifier: domww
long_name: domestic water withdrawal
unit: m3/yr
- specifier: domwc
long_name: domestic water consumption
unit: m3/yr
- specifier: indww
long_name: industrial water withdrawal
unit: m3/yr
- specifier: indwc
long_name: industrial water consumption
unit: m3/yr
comment: >-
Input dataset documentation → [Water abstraction for domestic and industrial uses](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/38/).
sectors:
- agriculture
- biodiversity
- biomes
- diarrhea
- energy
- fire
- groundwater
- health
- lakes_global
- lakes_local
- peat
- permafrost
- water_global
- water_regional
- water_quality
time_periods:
ISIMIP3a:
- 1601-1849
- 1850-1900
- 1901-2021
ISIMIP3b:
- 1850-2014
- specifier: fishing_effort
specifier_file: effort
title: Fishing effort
group: fishing
mandatory: true
frequency: annual
resolution: Marine ecosystems or exclusive economic zones
path:
- ISIMIP3a/InputData/socioeconomic/fishing/histsoc/effort_isimip3a_histsoc_1841_2010.csv
- ISIMIP3a/InputData/socioeconomic/fishing/histsoc/effort-artisanal-gridded_isimip3a_histsoc_1961_2010.csv
- ISIMIP3a/InputData/socioeconomic/fishing/histsoc/effort-industrial-gridded_isimip3a_histsoc_1961_2010.csv
variables:
- specifier: Sector
long_name: Fishing sector (artisanal/industrial), defined by the law of the country
(varies by country)
- specifier: LME
long_name: The generic name of the Large Marine ecosystem in which the Effort/Catch
is occurring
- specifier: eez_country_name
long_name: The exclusive economic zone/high seas name in which fishing effort
is occurring
- specifier: SAUP
long_name: A number code for the fishing country, following Sea Around Us numbering
- specifier: Gear
long_name: The fishing gear
- specifier: FGroup
long_name: Functional Group of the target species
- specifier: NomActive
long_name: Total nominal active fishing effort
unit: kW.days
- specifier: Phase
long_name: Either "spin-up" or "transition"
comment: >-
[Rousseau et al., 2024](https://doi.org/10.1038/s41597-023-02824-6) and [Rousseau et al., 2022](https://doi.org/10.25959/MNGY-0Q43).
Input dataset documentation → [Fishing effort](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/128/).
simulation_rounds:
- ISIMIP3a
sectors:
- marine-fishery_global
- marine-fishery_regional
time_periods:
- 1841-2010
- specifier: gridded_artisanal_fishing_effort
specifier_file: effort-artisanal-gridded
title: Gridded artisanal fishing effort
group: fishing
mandatory: true
frequency: annual
resolution: 0.5° grid
path: ISIMIP3a/InputData/socioeconomic/fishing/histsoc/effort-artisanal-gridded_isimip3a_histsoc_1961_2010.csv
variables:
- specifier: NomActive
long_name: Total nominal active fishing effort
unit: kW.days
comment: >-
[Rousseau et al., 2024](https://doi.org/10.1038/s41597-023-02824-6) and [Rousseau et al., 2022](https://doi.org/10.25959/MNGY-0Q43).
Input dataset documentation → [Fishing effort](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/128/).
simulation_rounds:
- ISIMIP3a
sectors:
- marine-fishery_global
- marine-fishery_regional
time_periods:
- 1961-2010
- specifier: gridded_industrial_fishing_effort
specifier_file: effort-industrial-gridded
title: Gridded industrial fishing effort
group: fishing
mandatory: true
frequency: annual
resolution: 0.5° grid
path: ISIMIP3a/InputData/socioeconomic/fishing/histsoc/effort-industrial-gridded_isimip3a_histsoc_1961_2010.csv
variables:
- specifier: NomActive
long_name: Total nominal active fishing effort
unit: kW.days
comment: >-
[Rousseau et al., 2024](https://doi.org/10.1038/s41597-023-02824-6) and [Rousseau et al., 2022](https://doi.org/10.25959/MNGY-0Q43).
Input dataset documentation → [Fishing effort](https://www.isimip.org/gettingstarted/input-data-bias-adjustment/details/128/).
simulation_rounds:
- ISIMIP3a
sectors:
- marine-fishery_global
- marine-fishery_regional
time_periods:
- 1961-2010
- specifier: fishing_effort_3b
specifier_file: effort
title: Fishing effort
group: fishing
mandatory: true
frequency: annual
resolution: Marine ecosystems or exclusive economic zones
path: ISIMIP3b/InputData/socioeconomic/fishing/histsoc/effort_isimip3b-phase1_histsoc_1950_2014.csv
variables:
- specifier: FAO
long_name: The generic name of the FAO area in which the Effort/Catch is occurring
unit: ''