forked from ISI-MIP/isimip-protocol-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariable.json
More file actions
2603 lines (2603 loc) · 71.4 KB
/
variable.json
File metadata and controls
2603 lines (2603 loc) · 71.4 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
[
{
"specifier": "qtot",
"title": "Runoff",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location",
"biomes": "0.5° grid",
"permafrost": "0.5° grid"
},
"frequency": {
"biomes": "monthly",
"permafrost": "monthly",
"water_global": "daily & monthly",
"water_regional": "daily & monthly"
},
"comment": "Total (surface + subsurface) runoff (qtot = qs + qsb). Please provide both daily and monthly resolution.",
"sectors": [
"water_global",
"water_regional",
"biomes",
"permafrost"
]
},
{
"specifier": "qs",
"title": "Surface runoff",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location",
"biomes": "0.5° grid",
"permafrost": "0.5° grid"
},
"frequency": "monthly",
"comment": "Water that leaves the surface layer (top soil layer) e.g. as overland flow / fast runoff.",
"sectors": [
"biomes",
"water_global",
"water_regional",
"permafrost"
]
},
{
"specifier": "qsb",
"title": "Subsurface runoff",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Sum of water that flows out from subsurface layer(s) including the groundwater layer (if present). Equals qg in case of a groundwater layer below only one soil layer.",
"sectors": [
"water_global"
]
},
{
"specifier": "qr",
"title": "Groundwater recharge",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "Water that percolates through the soil layer(s) into the groundwater layer. In case seepage is simulated but no groundwater layer is present, report seepage as qr and qg.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "qg",
"title": "Groundwater runoff",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Water that leaves the groundwater layer. In case seepage is simulated but no groundwater layer is present, report seepage as qr and qg.",
"sectors": [
"water_global"
]
},
{
"specifier": "dis",
"title": "Discharge",
"unit": "m3 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "daily & monthly",
"comment": "River discharge or streamflow. Please provide both daily and monthly resolution.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "evap",
"extension": {
"biomes": "<pft/total>",
"forestry": "<species/total>",
"water_global": "",
"water_regional": ""
},
"title": "Evapotranspiration",
"unit": "kg m-2 s-1",
"resolution": {
"biomes": "0.5° grid",
"forestry": "stand",
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": {
"biomes": "daily, monthly",
"forestry": "daily, monthly",
"water_global": "monthly",
"water_regional": "monthly"
},
"comment": "Sum of transpiration, evaporation, interception and sublimation.",
"sectors": [
"biomes",
"forestry",
"water_global",
"water_regional"
]
},
{
"specifier": "potevap",
"title": "Potential Evapotranspiration",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "As evap, but with all resistances set to zero, except the aerodynamic resistance.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "soilmoist",
"title": "Soil moisture for each layer",
"unit": "kg m-2",
"resolution": {
"biomes": "0.5° grid",
"forestry": "stand",
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location",
"permafrost": "0.5° grid"
},
"frequency": {
"biomes": "daily",
"forestry": "daily",
"permafrost": "daily",
"water_global": "monthly",
"water_regional": "monthly"
},
"comment": "Please provide soil moisture for all depth layers (i.e. 3D-field), and indicate depth in m. If depth varies over time or space, see instructions for depth layers on <https://www.isimip.org/protocol/preparing-simulation-files>.",
"sectors": [
"biomes",
"forestry",
"water_global",
"water_regional",
"permafrost"
]
},
{
"specifier": "rootmoist",
"title": "Soil moisture, root zone",
"unit": "kg m-2",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location",
"biomes": "0.5° grid",
"permafrost": "0.5° grid"
},
"frequency": "monthly",
"comment": "Total simulated soil moisture available for evapotranspiration. Please indicate the depth of the root zone for each vegetation type in your model. If depth varies over time or space, see instructions for depth layers on <https://www.isimip.org/protocol/preparing-simulation-files>.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "soilmoistfroz",
"title": "Frozen soil moisture for each layer",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Please provide soil moisture for all depth levels and indicate depth in m.",
"sectors": [
"biomes",
"water_global",
"permafrost"
]
},
{
"specifier": "tsl",
"title": "Temperature of Soil",
"unit": "K",
"resolution": {
"biomes": "0.5° grid",
"forestry": "stand",
"water_global": "0.5° grid",
"permafrost": "0.5° grid"
},
"frequency": {
"biomes": "daily, monthly",
"forestry": "daily, monthly",
"water_global": "daily, monthly",
"water_regional": "daily, monthly",
"permafrost": "daily, monthly"
},
"comment": "Temperature of each soil layer. Reported as \"missing\" for grid cells occupied entirely by \"sea\". This is the most important variable for the permafrost sector. If daily resolution not possible, please provide monthly. If depth varies over time or space, see instructions for depth layers on <https://www.isimip.org/protocol/preparing-simulation-files>.",
"sectors": [
"biomes",
"forestry",
"water_global",
"permafrost"
]
},
{
"specifier": "snd",
"title": "Snow depth",
"unit": "m",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Grid cell mean depth of snowpack. This variable only for the purposes of the permafrost sector.",
"sectors": [
"biomes",
"water_global",
"permafrost"
]
},
{
"specifier": "swe",
"title": "Snow water equivalent",
"unit": "kg m-2",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location",
"biomes": "0.5° grid",
"permafrost": "0.5° grid"
},
"frequency": "monthly",
"comment": "Total water mass of the snowpack (liquid or frozen) averaged over grid cell. Please also deliver for the permafrost sector.",
"sectors": [
"biomes",
"water_global",
"water_regional",
"permafrost"
]
},
{
"specifier": "tws",
"title": "Total water storage",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water storage in all compartments. Please indicate in the netcdf metadata which storage compartments are considered.",
"sectors": [
"water_global"
]
},
{
"specifier": "canopystor",
"title": "Canopy water storage",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water storage in the canopy.",
"sectors": [
"water_global"
]
},
{
"specifier": "glacierstor",
"title": "Glacier storage",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water storage in glaciers.",
"sectors": [
"water_global"
]
},
{
"specifier": "groundwstor",
"title": "Groundwater storage",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water storage in groundwater layer.",
"sectors": [
"water_global"
]
},
{
"specifier": "lakestor",
"title": "Lake storage",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water storage in lakes (except reservoirs).",
"sectors": [
"water_global"
]
},
{
"specifier": "wetlandstor",
"title": "Wetland storage",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water storage in wetlands.",
"sectors": [
"water_global"
]
},
{
"specifier": "riverstor",
"title": "Reservoir storage",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water storage in reservoirs.",
"sectors": [
"water_global"
]
},
{
"specifier": "thawdepth",
"title": "Annual maximum thaw depth",
"unit": "m",
"resolution": "0.5° grid",
"frequency": {
"biomes": "annual",
"permafrost": "annual",
"water_global": "monthly"
},
"comment": "Calculated from daily thaw depths.",
"sectors": [
"biomes",
"water_global",
"permafrost"
]
},
{
"specifier": "triver",
"title": "River temperature",
"unit": "kg m-2",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Mean monthly water temperature in river (representative of the average temperature across the channel volume).",
"sectors": [
"water_global"
]
},
{
"specifier": "pirrww",
"extension": {
"agriculture": "<crop>-<irrigation>",
"water_global": "",
"water_regional": ""
},
"title": "Potential irrigation water withdrawal (assuming unlimited water supply)",
"unit": {
"agriculture": "mm per growing season",
"water_global": "kg m-2 s-1",
"water_regional": "kg m-2 s-1"
},
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": {
"agriculture": "seasonal",
"water_global": "monthly",
"water_regional": "monthly"
},
"comment": "Irrigation water withdrawn in case of optimal irrigation (in addition to rainfall), assuming no losses in conveyance and application.",
"sectors": [
"agriculture",
"water_global",
"water_regional"
]
},
{
"specifier": "airrww",
"title": "Actual irrigation water withdrawal",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "Irrigation water withdrawal, taking water availability into account; please provide if computed.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "pirruse",
"title": "Potential irrigation water consumption",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "Portion of withdrawal that is evapo-transpired, assuming unlimited water supply.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "airruse",
"title": "Actual irrigation water consumption",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "Portion of withdrawal that is evapo-transpired, taking water availability into account; if computed.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "airrusegreen",
"title": "Actual green water consumption on irrigated cropland",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "Actual evapotranspiration from rainwater over irrigated cropland; if computed.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "pirrusegreen",
"title": "Potential green water consumption on irrigated cropland",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "Potential evapotranspiration from rainwater over irrigated cropland; if computed and different from AIrrUseGreen.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "arainfusegreen",
"title": "Actual green water consumption on rainfed cropland",
"unit": "kg m-2 s-1",
"resolution": {
"water_global": "0.5° grid",
"water_regional": "0.5° grid if possible, otherwise at gauge location"
},
"frequency": "monthly",
"comment": "Actual evapotranspiration from rainwater over rainfed cropland; if computed.",
"sectors": [
"water_global",
"water_regional"
]
},
{
"specifier": "adomww",
"title": "Actual domestic water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "adomuse",
"title": "Actual domestic water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "amanww",
"title": "Actual manufacturing water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "amanuse",
"title": "Actual manufacturing water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "aelecww",
"title": "Actual electricity water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "aelecuse",
"title": "Actual electricity water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "aliveww",
"title": "Actual livestock water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "aliveuse",
"title": "Actual livestock water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pdomww",
"title": "Potential domestic water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pdomuse",
"title": "Potential domestic water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pmanww",
"title": "Potential manufacturing water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pmanuse",
"title": "Potential manufacturing water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pelecww",
"title": "Potential electricity water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pelecuse",
"title": "Potential electricity water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pliveww",
"title": "Potential livestock water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "pliveuse",
"title": "Potential livestock water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "atotww",
"title": "Total (all sectors) actual water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "If computed.",
"sectors": [
"water_global"
]
},
{
"specifier": "atotuse",
"title": "Total (all sectors) actual water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Sum of actual water consumption from all sectors. Please indicate in metadata which sectors are included.",
"sectors": [
"water_global"
]
},
{
"specifier": "ptotww",
"title": "Total (all sectors) potential water withdrawal",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Sum of potential (i.e. assuming unlimited water supply) water withdrawal from all sectors. Please indicate in metadata which sectors are included.",
"sectors": [
"water_global"
]
},
{
"specifier": "ptotuse",
"title": "Total (all sectors) potential water consumption",
"unit": "kg m-2 s-1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Sum of potential (i.e. assuming unlimited water supply) water consumption from all sectors. Please indicate in metadata which sectors are included.",
"sectors": [
"water_global"
]
},
{
"specifier": "soil",
"title": "Soil types",
"unit": "",
"resolution": "0.5° grid",
"frequency": "constant",
"comment": "Soil types or texture classes as used by your model. Please include a description of each type or class, especially if these are different from the standard HSWD and GSWP3 soil types. Please also include a description of the parameters and values associated with these soil types (parameter values could be submitted as spatial fields where appropriate).",
"sectors": [
"water_global",
"biomes"
]
},
{
"specifier": "yield",
"extension": "<crop>-<irrigation>",
"title": "Crop yields",
"unit": "dry matter (t ha-1 per growing season)",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Crop-specific: Yield may be identical to above-ground biomass (biom) if the entire plant is harvested, e.g. for bioenergy production.",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "aet",
"extension": "<crop>-<irrigation>",
"title": "Actual evapotranspiration",
"unit": "mm per growing season",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Portion of all water (including rain) that is evapo-transpired, the water amount should be accumulated over the entire growing period (not the calendar year)",
"sectors": [
"agriculture"
]
},
{
"specifier": "initr",
"extension": "<crop>-<irrigation>",
"title": "Nitrogen application rate",
"unit": "kg ha-1 per growing season",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Total nitrogen application rate. If organic and inorganic amendments are applied, rate should be reported as effective inorganic nitrogen input (ignoring residues).",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "plantday",
"extension": "<crop>-<irrigation>",
"title": "Actual planting dates",
"unit": "day of year",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Julian dates.",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "plantyear",
"extension": "<crop>-<irrigation>",
"title": "Actual planting year",
"unit": "year of planting",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "This allows for clear identification of planting that is also easy to follow for potential users from outside the project",
"sectors": [
"water_global"
]
},
{
"specifier": "anthday",
"extension": "<crop>-<irrigation>",
"title": "Anthesis dates",
"unit": "day of year of anthesis",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Together with the year of anthesis added to the list of outputs (see below) it allows for clear identification of anthesis that is also easy to follow for potential users from outside the project.",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "anthyear",
"extension": "<crop>-<irrigation>",
"title": "Year of anthesis",
"unit": "year of anthesis",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "It allows for clear identification of anthesis that is also easy to follow for potential users from outside the project.",
"sectors": [
"water_global"
]
},
{
"specifier": "matyday",
"extension": "<crop>-<irrigation>",
"title": "Maturity dates",
"unit": "day of year of maturity",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Together with the year of maturity added to the list of outputs (see below) it allows for clear identification of maturity that is also easy to follow for potential users from outside the project.",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "matyyear",
"extension": "<crop>-<irrigation>",
"title": "Year of maturity",
"unit": "year of maturity",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "It allows for clear identification of maturity that is also easy to follow for potential users from outside the project.",
"sectors": [
"water_global"
]
},
{
"specifier": "biom",
"extension": "<crop>-<irrigation>",
"title": "Above ground biomass (dry matter)",
"unit": "t ha-1 per growing season",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "The whole plant biomass above ground.",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "sco2",
"extension": "<crop>-<irrigation>",
"title": "Soil carbon emissions ",
"unit": "kg C ha-1",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Ideally should be modeled with realistic land-use history and initial carbon pools. Subject to extra study.",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "sn2o",
"extension": "<crop>-<irrigation>",
"title": "Nitrous oxide emissions",
"unit": "kg N2O-N ha-1",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Ideally should be modeled with realistic land-use history and initial carbon pools. Subject to extra study.",
"sectors": [
"agriculture",
"water_global",
"biomes"
]
},
{
"specifier": "tnup",
"extension": "<crop>-<irrigation>",
"title": "Total N uptake (total growing season sum)",
"unit": "kg ha -1 yr -1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Nitrogen balance: uptake",
"sectors": [
"agriculture"
]
},
{
"specifier": "tnin",
"extension": "<crop>-<irrigation>",
"title": "Total N inputs (total growing season sum)",
"unit": "kg ha -1 yr -1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Nitrogen balance: inputs",
"sectors": [
"agriculture"
]
},
{
"specifier": "tnloss",
"extension": "<crop>-<irrigation>",
"title": "Total N losses (total growing season sum)",
"unit": "kg ha -1 yr -1",
"resolution": "0.5° grid",
"frequency": "monthly",
"comment": "Nitrogen balance: losses",
"sectors": [
"agriculture"
]
},
{
"specifier": "leach",
"title": "",
"unit": "",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "",
"sectors": [
"agriculture"
]
},
{
"specifier": "gsprcp",
"title": "Growing season precipitation",
"extension": "<crop>-<irrigation>",
"unit": "mm ha-1 yr-1",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Total growing season precipitation per crop",
"sectors": [
"agriculture"
]
},
{
"specifier": "gsrsds",
"title": "Growing season radiation",
"extension": "<crop>-<irrigation>",
"unit": "w m-2 yr-1",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Average growing season shortwave solar radiation",
"sectors": [
"agriculture"
]
},
{
"specifier": "sumt",
"title": "Growing season temperature sum",
"extension": "<crop>-<irrigation>",
"unit": "deg c-days yr-1",
"resolution": "0.5° grid",
"frequency": "seasonal",
"comment": "Sum of daily mean temperature over growing season",
"sectors": [
"agriculture"
]
},
{
"specifier": "amphibianprob",
"title": "Amphibian species probability of occurrence",
"unit": "Probability of occurrence per cell",
"dimensions": "(time,lat,lon,?)",
"resolution": "0.5° grid",
"frequency": "30year-mean",
"comment": "Results from individual SDMs assuming no dispersal.",
"sectors": [
"biodiversity"
]
},
{
"specifier": "birdprob",
"title": "Terrestrial bird species probability of occurrence",
"unit": "Probability of occurrence per cell",
"dimensions": "(time,lat,lon,?)",
"resolution": "0.5° grid",
"frequency": "30year-mean",
"comment": "Results from individual SDMs assuming no dispersal.",
"sectors": [
"biodiversity"
]
},
{
"specifier": "mammalprob",
"title": "Terrestrial mammal species probability of occurrence",
"unit": "Probability of occurrence per cell",
"dimensions": "(time,lat,lon,?)",
"resolution": "0.5° grid",
"frequency": "30year-mean",
"comment": "Results from individual SDMs assuming no dispersal.",
"sectors": [
"biodiversity"
]
},
{
"specifier": "amphibiansumprob",
"title": "Amphibian summed probability of occurrence",
"unit": "Summed probability of occurrence per cell",
"dimensions": "(time,lat,lon,?)",
"resolution": "0.5° grid",
"frequency": "30year-mean",
"comment": "Aggregated results from individual SDMs assuming no dispersal.",
"sectors": [
"biodiversity"