-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCMIP6_Emon.json
5976 lines (5976 loc) · 292 KB
/
CMIP6_Emon.json
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
{
"Header": {
"data_specs_version": "01.00.33",
"cmor_version": "3.5",
"table_id": "Table Emon",
"realm": "land",
"table_date": "18 November 2020",
"missing_value": "1e20",
"int_missing_value": "-999",
"product": "model-output",
"approx_interval": "30.00000",
"generic_levels": "alevel olevel",
"mip_era": "CMIP6",
"Conventions": "CF-1.7 CMIP-6.2"
},
"variable_entry": {
"c13Land": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "mass_content_of_13C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 13C in All Terrestrial Carbon Pools",
"comment": "Carbon-13 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil, and forestry and agricultural products (e.g. paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock).",
"dimensions": "longitude latitude time",
"out_name": "c13Land",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"c13Litter": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "litter_mass_content_of_13C",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 13C in Litter Pool",
"comment": "Carbon-13 mass content per unit area litter (dead plant material in or above the soil).",
"dimensions": "longitude latitude time",
"out_name": "c13Litter",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"c13Soil": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_13C",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 13C in Soil Pool",
"comment": "Carbon-13 mass content per unit area in soil.",
"dimensions": "longitude latitude time",
"out_name": "c13Soil",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"c13Veg": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "vegetation_mass_content_of_13C",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 13C in Vegetation",
"comment": "Carbon-13 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass).",
"dimensions": "longitude latitude time",
"out_name": "c13Veg",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"c14Land": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "mass_content_of_14C_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 14C in All Terrestrial Carbon Pools",
"comment": "Carbon-14 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass), litter (dead plant material in or above the soil), soil, and forestry and agricultural products (e.g. paper, cardboard, furniture, timber for construction, biofuels and food for both humans and livestock).",
"dimensions": "longitude latitude time",
"out_name": "c14Land",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"c14Litter": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "litter_mass_content_of_14C",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 14C in Litter Pool",
"comment": "Carbon-14 mass content per unit area litter (dead plant material in or above the soil).",
"dimensions": "longitude latitude time",
"out_name": "c14Litter",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"c14Soil": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_14C",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 14C in Soil Pool",
"comment": "Carbon-14 mass content per unit area in soil.",
"dimensions": "longitude latitude time",
"out_name": "c14Soil",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"c14Veg": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "vegetation_mass_content_of_14C",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Mass of 14C in Vegetation",
"comment": "Carbon-14 mass content per unit area in vegetation (any living plants e.g. trees, shrubs, grass).",
"dimensions": "longitude latitude time",
"out_name": "c14Veg",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cLand": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "mass_content_of_carbon_in_vegetation_and_litter_and_soil_and_forestry_and_agricultural_products",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Total Carbon in All Terrestrial Carbon Pools",
"comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.",
"dimensions": "longitude latitude time",
"out_name": "cLand",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cLitterCwd": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "wood_debris_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Coarse Woody Debris",
"comment": "'Content' indicates a quantity per unit area. 'Wood debris' means dead organic matter composed of coarse wood. It is distinct from fine litter. The precise distinction between 'fine' and 'coarse' is model dependent.",
"dimensions": "longitude latitude time",
"out_name": "cLitterCwd",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cLitterGrass": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "litter_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Litter on Grass Tiles",
"comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.",
"dimensions": "longitude latitude time",
"out_name": "cLitterGrass",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cLitterShrub": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "litter_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Litter on Shrub Tiles",
"comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.",
"dimensions": "longitude latitude time",
"out_name": "cLitterShrub",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cLitterSubSurf": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "subsurface_litter_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Below-Ground Litter",
"comment": "subsurface litter pool fed by root inputs.",
"dimensions": "longitude latitude time",
"out_name": "cLitterSubSurf",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cLitterSurf": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "surface_litter_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Above-Ground Litter",
"comment": "Surface or near-surface litter pool fed by leaf and above-ground litterfall",
"dimensions": "longitude latitude time",
"out_name": "cLitterSurf",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cLitterTree": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "litter_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: time: mean where trees (comment: mask=treeFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Litter on Tree Tiles",
"comment": "'Litter' is dead plant material in or above the soil. It is distinct from coarse wood debris. The precise distinction between 'fine' and 'coarse' is model dependent. 'Content' indicates a quantity per unit area. The sum of the quantities with standard names surface_litter_mass_content_of_carbon and subsurface_litter_mass_content_of_carbon has the standard name litter_mass_content_of_carbon.",
"dimensions": "longitude latitude time",
"out_name": "cLitterTree",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cMisc": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "miscellaneous_living_matter_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Other Living Compartments on Land",
"comment": "e.g., labile, fruits, reserves, etc.",
"dimensions": "longitude latitude time",
"out_name": "cMisc",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cOther": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "miscellaneous_living_matter_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Vegetation Components Other than Leaves, Stems and Roots",
"comment": "E.g. fruits, seeds, etc.",
"dimensions": "longitude latitude time",
"out_name": "cOther",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cSoil": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Model Soil Pool",
"comment": "Carbon mass in the full depth of the soil model.",
"dimensions": "longitude latitude time",
"out_name": "cSoil",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cSoilAbove1m": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Soil Pool Above 1m Depth",
"comment": "Report missing data over ocean grid cells. For fractional land report value averaged over the land fraction.",
"dimensions": "longitude latitude time sdepth10",
"out_name": "cSoilAbove1m",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cSoilGrass": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Soil on Grass Tiles",
"comment": "'Content' indicates a quantity per unit area. The 'soil content' of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used.",
"dimensions": "longitude latitude time",
"out_name": "cSoilGrass",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cSoilLevels": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Each Model Soil Level (Summed over All Soil Carbon Pools in That Level)",
"comment": "for models with vertically discretised soil carbon, report total soil carbon for each level",
"dimensions": "longitude latitude sdepth time",
"out_name": "cSoilLevels",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cSoilPools": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Each Model Soil Pool (Summed over Vertical Levels)",
"comment": "For models with multiple soil carbon pools, report each pool here. If models also have vertical discretisation these should be aggregated",
"dimensions": "longitude latitude soilpools time",
"out_name": "cSoilPools",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cSoilShrub": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Soil on Shrub Tiles",
"comment": "'Content' indicates a quantity per unit area. The 'soil content' of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used.",
"dimensions": "longitude latitude time",
"out_name": "cSoilShrub",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cSoilTree": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "soil_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: time: mean where trees (comment: mask=treeFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Soil on Tree Tiles",
"comment": "'Content' indicates a quantity per unit area. The 'soil content' of a quantity refers to the vertical integral from the surface down to the bottom of the soil model. For the content between specified levels in the soil, standard names including content_of_soil_layer are used.",
"dimensions": "longitude latitude time",
"out_name": "cSoilTree",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cStem": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "stem_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Stem",
"comment": "including sapwood and hardwood.",
"dimensions": "longitude latitude time",
"out_name": "cStem",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cTotFireLut": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "surface_upward_mass_flux_of_carbon_dioxide_expressed_as_carbon_due_to_emission_from_fires",
"units": "kg m-2 s-1",
"cell_methods": "area: time: mean where sector",
"cell_measures": "area: areacella",
"long_name": "Total Carbon Loss from Natural and Managed Fire on Land-Use Tile, Including Deforestation Fires [kgC m-2 s-1]",
"comment": "Different from LMON this flux should include all fires occurring on the land use tile, including natural, man-made and deforestation fires",
"dimensions": "longitude latitude landUse time",
"out_name": "cTotFireLut",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cVegGrass": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "vegetation_carbon_content",
"units": "kg m-2",
"cell_methods": "area: time: mean where natural_grasses (comment: mask=grassFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Vegetation on Grass Tiles",
"comment": "'Content' indicates a quantity per unit area. 'Vegetation' means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. 'producers' of biomass using carbon obtained from carbon dioxide.",
"dimensions": "longitude latitude time",
"out_name": "cVegGrass",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cVegShrub": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "vegetation_carbon_content",
"units": "kg m-2",
"cell_methods": "area: time: mean where shrubs (comment: mask=shrubFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Vegetation on Shrub Tiles",
"comment": "'Content' indicates a quantity per unit area. 'Vegetation' means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. 'producers' of biomass using carbon obtained from carbon dioxide.",
"dimensions": "longitude latitude time",
"out_name": "cVegShrub",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cVegTree": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "vegetation_carbon_content",
"units": "kg m-2",
"cell_methods": "area: time: mean where trees (comment: mask=treeFrac)",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Vegetation on Tree Tiles",
"comment": "'Content' indicates a quantity per unit area. 'Vegetation' means any plants e.g. trees, shrubs, grass. Plants are autotrophs i.e. 'producers' of biomass using carbon obtained from carbon dioxide.",
"dimensions": "longitude latitude time",
"out_name": "cVegTree",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cWood": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "stem_mass_content_of_carbon",
"units": "kg m-2",
"cell_methods": "area: mean where land time: mean",
"cell_measures": "area: areacella",
"long_name": "Carbon Mass in Wood",
"comment": "Carbon mass per unit area in wood, including sapwood and hardwood.",
"dimensions": "longitude latitude time",
"out_name": "cWood",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cfadDbze94": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "histogram_of_equivalent_reflectivity_factor_over_height_above_reference_ellipsoid",
"units": "1",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "CloudSat Radar Reflectivity CFAD",
"comment": "CFAD (Cloud Frequency Altitude Diagrams) are frequency distributions of radar reflectivity (or lidar scattering ratio) as a function of altitude. The variable cfadDbze94 is defined as the simulated relative frequency of occurrence of radar reflectivity in sampling volumes defined by altitude bins. The radar is observing at a frequency of 94GHz.",
"dimensions": "longitude latitude alt40 dbze time",
"out_name": "cfadDbze94",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cfadLidarsr532": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "histogram_of_backscattering_ratio_in_air_over_height_above_reference_ellipsoid",
"units": "1",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "CALIPSO Scattering Ratio CFAD",
"comment": "CFAD (Cloud Frequency Altitude Diagrams) are frequency distributions of radar reflectivity (or lidar scattering ratio) as a function of altitude. The variable cfadLidarsr532 is defined as the simulated relative frequency of lidar scattering ratio in sampling volumes defined by altitude bins. The lidar is observing at a wavelength of 532nm.",
"dimensions": "longitude latitude alt40 scatratio time",
"out_name": "cfadLidarsr532",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"clcalipsoice": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "ice_cloud_area_fraction_in_atmosphere_layer",
"units": "%",
"cell_methods": "time: mean",
"cell_measures": "area: areacella",
"long_name": "CALIPSO Ice Cloud Percentage",
"comment": "Percentage cloud cover in CALIPSO standard atmospheric layers.",
"dimensions": "longitude latitude alt40 time",
"out_name": "clcalipsoice",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"clcalipsoliq": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "liquid_water_cloud_area_fraction_in_atmosphere_layer",
"units": "%",
"cell_methods": "time: mean",
"cell_measures": "area: areacella",
"long_name": "CALIPSO Liquid Cloud Percentage",
"comment": "Percentage liquid water ice cloud cover in CALIPSO standard atmospheric layers.",
"dimensions": "longitude latitude alt40 time",
"out_name": "clcalipsoliq",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cldicemxrat27": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "cloud_ice_mixing_ratio",
"units": "1",
"cell_methods": "time: mean",
"cell_measures": "area: areacella",
"long_name": "Cloud Ice Mixing Ratio",
"comment": "Cloud ice mixing ratio",
"dimensions": "longitude latitude plev27 time",
"out_name": "cldicemxrat",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cldnci": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "number_concentration_of_ice_crystals_in_air_at_ice_cloud_top",
"units": "m-3",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Ice Crystal Number Concentration of Cloud Tops",
"comment": "Concentration 'as seen from space' over ice-cloud portion of grid cell. This is the value from uppermost model layer with ice cloud or, if available, it is the sum over all ice cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total ice cloud top fraction (as seen from TOA) of each time sample when computing monthly mean.",
"dimensions": "longitude latitude time",
"out_name": "cldnci",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cldncl": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "number_concentration_of_cloud_liquid_water_particles_in_air_at_liquid_water_cloud_top",
"units": "m-3",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Cloud Droplet Number Concentration of Cloud Tops",
"comment": "Droplets are liquid only. Report concentration 'as seen from space' over liquid cloudy portion of grid cell. This is the value from uppermost model layer with liquid cloud or, if available, it is better to sum over all liquid cloud tops, no matter where they occur, as long as they are seen from the top of the atmosphere. Weight by total liquid cloud top fraction of (as seen from TOA) each time sample when computing monthly mean.",
"dimensions": "longitude latitude time",
"out_name": "cldncl",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cldnvi": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "atmosphere_number_content_of_cloud_droplets",
"units": "m-2",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Column Integrated Cloud Droplet Number",
"comment": "Droplets are liquid only. Values are weighted by liquid cloud fraction in each layer when vertically integrating, and for monthly means the samples are weighted by total liquid cloud fraction (as seen from TOA).",
"dimensions": "longitude latitude time",
"out_name": "cldnvi",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cldwatmxrat27": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "cloud_liquid_water_mixing_ratio",
"units": "1",
"cell_methods": "time: mean",
"cell_measures": "area: areacella",
"long_name": "Cloud Water Mixing Ratio",
"comment": "Cloud water mixing ratio",
"dimensions": "longitude latitude plev27 time",
"out_name": "cldwatmxrat",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"climodis": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "ice_cloud_area_fraction",
"units": "%",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "MODIS Ice Cloud Area Percentage",
"comment": "Total ice cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). ",
"dimensions": "longitude latitude time",
"out_name": "climodis",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"clmisr": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "cloud_area_fraction_in_atmosphere_layer",
"units": "%",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Percentage Cloud Cover as Calculated by the MISR Simulator (Including Error Flag)",
"comment": "Cloud percentage in spectral bands and layers as observed by the Multi-angle Imaging SpectroRadiometer (MISR) instrument. The first layer in each profile is reserved for a retrieval error flag.",
"dimensions": "longitude latitude alt16 tau time",
"out_name": "clmisr",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cltmodis": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "cloud_area_fraction",
"units": "%",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "MODIS Total Cloud Cover Percentage",
"comment": "Total cloud area fraction (reported as a percentage) for the whole atmospheric column, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). Includes both large-scale and convective cloud.",
"dimensions": "longitude latitude time",
"out_name": "cltmodis",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"clwmodis": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "liquid_water_cloud_area_fraction",
"units": "%",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "MODIS Liquid Cloud Percentage",
"comment": "Mass of cloud liquid water, as seen by the Moderate Resolution Imaging Spectroradiometer (MODIS). Includes both large-scale and convective cloud.",
"dimensions": "longitude latitude time",
"out_name": "clwmodis",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"clwvic": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "atmosphere_mass_content_of_convective_cloud_condensed_water",
"units": "kg m-2",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Convective Condensed Water Path",
"comment": "calculate mass of convective condensed (liquid + ice) water in the column divided by the area of the column (not just the area of the cloudy portion of the column). This includes precipitating hydrometeors ONLY if the precipitating hydrometeors affect the calculation of radiative transfer in model.",
"dimensions": "longitude latitude time",
"out_name": "clwvic",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"co23D": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "mass_fraction_of_carbon_dioxide_tracer_in_air",
"units": "kg kg-1",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "3D-Field of Transported CO2",
"comment": "report 3D field of model simulated atmospheric CO2 mass mixing ration on model levels",
"dimensions": "longitude latitude alevel time",
"out_name": "co23D",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"co2s": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "mole_fraction_of_carbon_dioxide_in_air",
"units": "1e-06",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Atmosphere CO2",
"comment": "As co2, but only at the surface",
"dimensions": "longitude latitude time",
"out_name": "co2s",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"columnmassflux": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "atmosphere_net_upward_convective_mass_flux",
"units": "kg m-2 s-1",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Column Integrated Mass Flux",
"comment": "Column integral of (mcu-mcd)",
"dimensions": "longitude latitude time",
"out_name": "columnmassflux",
"type": "real",
"positive": "up",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"conccmcn": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "number_concentration_of_coarse_mode_ambient_aerosol_particles_in_air",
"units": "m-3",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Number Concentration Coarse Mode Aerosol",
"comment": "includes all particles with diameter larger than 1 micron",
"dimensions": "longitude latitude alevel time",
"out_name": "conccmcn",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"conccn": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "number_concentration_of_ambient_aerosol_particles_in_air",
"units": "m-3",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Aerosol Number Concentration",
"comment": "'Number concentration' means the number of particles or other specified objects per unit volume. 'Aerosol' means the system of suspended liquid or solid particles in air (except cloud droplets) and their carrier gas, the air itself. 'Ambient_aerosol' means that the aerosol is measured or modelled at the ambient state of pressure, temperature and relative humidity that exists in its immediate environment. 'Ambient aerosol particles' are aerosol particles that have taken up ambient water through hygroscopic growth. The extent of hygroscopic growth depends on the relative humidity and the composition of the particles.",
"dimensions": "longitude latitude alevel time",
"out_name": "conccn",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"concdust": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "mass_concentration_of_dust_dry_aerosol_particles_in_air",
"units": "kg m-3",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Concentration of Dust",
"comment": "Mass concentration means mass per unit volume and is used in the construction mass_concentration_of_X_in_Y, where X is a material constituent of Y. A chemical species denoted by X may be described by a single term such as 'nitrogen' or a phrase such as 'nox_expressed_as_nitrogen'. 'Aerosol' means the system of suspended liquid or solid particles in air (except cloud droplets) and their carrier gas, the air itself. Aerosol particles take up ambient water (a process known as hygroscopic growth) depending on the relative humidity and the composition of the particles. 'Dry aerosol particles' means aerosol particles without any water uptake.",
"dimensions": "longitude latitude alevel time",
"out_name": "concdust",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"concnmcn": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "number_concentration_of_nucleation_mode_ambient_aerosol_particles_in_air",
"units": "m-3",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Number Concentration of Nucleation Mode Aerosol",
"comment": "includes all particles with diameter smaller than 3 nm",
"dimensions": "longitude latitude alevel time",
"out_name": "concnmcn",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cropFracC3": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "area_fraction",
"units": "%",
"cell_methods": "area: mean where land over all_area_types time: mean",
"cell_measures": "area: areacella",
"long_name": "Percentage Cover by C3 Crops",
"comment": "Percentage of entire grid cell covered by C3 crops",
"dimensions": "longitude latitude time typec3crop",
"out_name": "cropFracC3",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"cropFracC4": {
"frequency": "mon",
"modeling_realm": "land",
"standard_name": "area_fraction",
"units": "%",
"cell_methods": "area: mean where land over all_area_types time: mean",
"cell_measures": "area: areacella",
"long_name": "Percentage Cover by C4 Crops",
"comment": "Percentage of entire grid cell covered by C4 crops",
"dimensions": "longitude latitude time typec4crop",
"out_name": "cropFracC4",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"depdust": {
"frequency": "mon",
"modeling_realm": "aerosol",
"standard_name": "minus_tendency_of_atmosphere_mass_content_of_dust_dry_aerosol_particles_due_to_deposition",
"units": "kg m-2 s-1",
"cell_methods": "area: time: mean",
"cell_measures": "area: areacella",
"long_name": "Total Deposition Rate of Dust",
"comment": "Fdry mass deposition rate of dust",
"dimensions": "longitude latitude time",
"out_name": "depdust",
"type": "real",
"positive": "",
"valid_min": "",
"valid_max": "",
"ok_min_mean_abs": "",
"ok_max_mean_abs": ""
},
"diabdrag": {
"frequency": "mon",
"modeling_realm": "atmos",
"standard_name": "tendency_of_eastward_wind_due_to_numerical_artefacts",
"units": "m s-2",
"cell_methods": "time: mean",
"cell_measures": "area: areacella",
"long_name": "Tendency of Eastward Wind from Numerical Artefacts",
"comment": "Other sub-grid scale/numerical zonal drag excluding that already provided for the parameterized orographic and non-orographic gravity waves. This would be used to calculate the total 'diabatic drag'. Contributions to this additional drag such Rayleigh friction and diffusion that can be calculated from the monthly mean wind fields should not be included, but details (e.g. coefficients) of the friction and/or diffusion used in the model should be provided separately.",
"dimensions": "longitude latitude plev19 time",
"out_name": "diabdrag",
"type": "real",