-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_land.mm
3417 lines (3417 loc) · 219 KB
/
_land.mm
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
<map><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" FOLDED="false" STYLE="fork" TEXT="land"><font BOLD="True" NAME="courier" SIZE="14" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Land Surface</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land</dd><dt><b>Contact</b></dt><dd>David Hassell</dd><dt><b>Authors</b></dt><dd>David Hassell, Eric Guilyardi</dd><dt><b>Contributors</b></dt><dd>CMIP5 version, Rich Ellis (CEH), Phillipe Peylin (IPSL)</dd>
</dl>
</body>
</html></richcontent><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="CHANGE HISTORY"><node STYLE="bubble" TEXT="0.1.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.0</dd><dt><b>Date</b></dt><dd>2016-04-05</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Initialised from CMIP5 mind map + incorporating initital feedback from Rich Ellis and Pillipe Peylin</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.2.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.2.0</dd><dt><b>Date</b></dt><dd>2016-06-01</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Incorporating comments from Christine Delire (CNRM), Bark van de Hurk (KNMI), Sergey Malyshev (GFDL), Chris Milly (GFDL)</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.3.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.3.0</dd><dt><b>Date</b></dt><dd>2018-04-04</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Replaced some occurences of str with cs-str and l-str</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.0</dd><dt><b>Date</b></dt><dd>2018-04-04</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Moved to v1</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.1"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.1</dd><dt><b>Date</b></dt><dd>2018-04-04</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Removed some l-str</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.1.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.1.0</dd><dt><b>Date</b></dt><dd>2018-09-27</dd><dt><b>Person</b></dt><dd>David Hassell (NCAS)</dd><dt><b>Comment</b></dt><dd>Added key_propoerties.tuning_applied</dd>
</dl>
</body>
</html></richcontent></node></node><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="LEGEND"><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="enum-choice"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A choice within an enumeration.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="grid"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The grid used to layout the variables (e.g. the Global ENDGAME-grid).</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keyprops"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Realm key properties which differ from model defaults (grid, timestep etc).</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="process"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Process simulated within the realm.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" STYLE="bubble" TEXT="property"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A property associated with a detail defined as a 4 member tuple: name, type, cardinality, description.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" STYLE="bubble" TEXT="property-set"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provides details of specific properties of a process, sub-process, key properties, etc. There are two possible specialisations expected: (1) A detail_vocabulary is identified, and a cardinality is assigned to that for possible responses; (2) Detail is used to provide a collection or a set of properties which are defined in the sub-class.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="realm"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Scientific area of a numerical model.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="subprocess"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A sub-process simulated within a realm process.</dd>
</dl>
</body>
</html></richcontent></node></node><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="DETAILS INHERITED FROM CIM"><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="grid"><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keyprops"><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="process"><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="realm"><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="canonical_name" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="subprocess"><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="key_properties"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Land surface key properties</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of the processes modelled (e.g. dymanic vegation, prognostic albedo, etc.)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of the processes modelled (e.g. dymanic vegation, prognostic albedo, etc.)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="land_atmosphere_flux_exchanges"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Fluxes exchanged with the atmopshere.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.land_atmosphere_flux_exchanges</dd><dt><b>Type</b></dt><dd>ENUM:land_atmosphere_flux_exchanges_types</dd><dt><b>Cardinality</b></dt><dd>0.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.land_atmosphere_flux_exchanges</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Fluxes exchanged with the atmopshere.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.land_atmosphere_flux_exchanges</dd><dt><b>Type</b></dt><dd>ENUM:land_atmosphere_flux_exchanges_types</dd><dt><b>Cardinality</b></dt><dd>0.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.land_atmosphere_flux_exchanges</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="water"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_atmosphere_flux_exchanges_types.water</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="energy"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_atmosphere_flux_exchanges_types.energy</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="carbon"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_atmosphere_flux_exchanges_types.carbon</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="nitrogen"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_atmosphere_flux_exchanges_types.nitrogen</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="phospherous"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_atmosphere_flux_exchanges_types.phospherous</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="atmospheric_coupling_treatment"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the treatment of land surface coupling with the Atmosphere model component, which may be different for different quantities (e.g. dust: semi-implicit, water vapour: explicit)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.atmospheric_coupling_treatment</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.atmospheric_coupling_treatment</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the treatment of land surface coupling with the Atmosphere model component, which may be different for different quantities (e.g. dust: semi-implicit, water vapour: explicit)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.atmospheric_coupling_treatment</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.atmospheric_coupling_treatment</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="land_cover"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Types of land cover defined in the land surface model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.land_cover</dd><dt><b>Type</b></dt><dd>ENUM:land_cover_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.land_cover</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Types of land cover defined in the land surface model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.land_cover</dd><dt><b>Type</b></dt><dd>ENUM:land_cover_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.land_cover</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="bare soil"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_cover_types.bare soil</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="urban"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_cover_types.urban</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="lake"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_cover_types.lake</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="land ice"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_cover_types.land ice</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="lake ice"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_cover_types.lake ice</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="vegetated"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>land_cover_types.vegetated</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="land_cover_change"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe how land cover change is managed (e.g. the use of net or gross transitions)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.land_cover_change</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.land_cover_change</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe how land cover change is managed (e.g. the use of net or gross transitions)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.land_cover_change</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.land_cover_change</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="tiling"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the general tiling procedure used in the land surface (if any). Include treatment of physiography, land/sea, (dynamic) vegetation coverage and orography/roughness</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.tiling</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.tiling</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the general tiling procedure used in the land surface (if any). Include treatment of physiography, land/sea, (dynamic) vegetation coverage and orography/roughness</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.tiling</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.tiling</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="conservation_properties"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Convservation</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.conservation_properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="energy"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe if/how energy is conserved globally and to what level (e.g. within X [units]/year)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.energy</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.energy</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe if/how energy is conserved globally and to what level (e.g. within X [units]/year)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.energy</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.energy</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="water"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe if/how water is conserved globally and to what level (e.g. within X [units]/year)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.water</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.water</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe if/how water is conserved globally and to what level (e.g. within X [units]/year)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.water</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.water</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="carbon"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe if/how carbon is conserved globally and to what level (e.g. within X [units]/year)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.carbon</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.carbon</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe if/how carbon is conserved globally and to what level (e.g. within X [units]/year)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.carbon</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.conservation_properties.carbon</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="timestepping_framework"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Timestepping</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="timestep_dependent_on_atmosphere"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Is a time step dependent on the frequency of atmosphere coupling?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestep_dependent_on_atmosphere</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestep_dependent_on_atmosphere</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Is a time step dependent on the frequency of atmosphere coupling?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestep_dependent_on_atmosphere</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestep_dependent_on_atmosphere</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="time_step"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Overall timestep of land surface model (i.e. time between calls)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.time_step</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Overall timestep of land surface model (i.e. time between calls)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.time_step</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="timestepping_method"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of time stepping method and associated time step(s)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestepping_method</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestepping_method</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of time stepping method and associated time step(s)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestepping_method</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.timestepping_framework.timestepping_method</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="software_properties"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Software properties of land surface code</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.software_properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="repository"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Location of code for this component.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.software_properties.repository</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.software_properties.repository</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Location of code for this component.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.software_properties.repository</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.software_properties.repository</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="code_version"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code version identifier.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_version</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_version</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code version identifier.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_version</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_version</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="code_languages"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code language(s).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_languages</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_languages</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code language(s).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_languages</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.software_properties.code_languages</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="tuning_applied"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Tuning methodology for land component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.tuning_applied</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General overview description of tuning (if any): explain and motivate the main targets and metrics retained. andDocument the relative weight given to climate performance metrics versus process oriented metrics, andand on the possible conflicts with parameterization level tuning. In particular describe any struggle andwith a parameter value that required pushing it to its limits to solve a particular model deficiency.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.tuning_applied.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.tuning_applied.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General overview description of tuning (if any): explain and motivate the main targets and metrics retained. andDocument the relative weight given to climate performance metrics versus process oriented metrics, andand on the possible conflicts with parameterization level tuning. In particular describe any struggle andwith a parameter value that required pushing it to its limits to solve a particular model deficiency.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.key_properties.tuning_applied.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.key_properties.tuning_applied.description</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="grid"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Land surface grid</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="horizontal"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The horizontal grid in the land surface</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.horizontal</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the general structure of the horizontal grid (not including any tiling)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.horizontal.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.horizontal.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the general structure of the horizontal grid (not including any tiling)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.horizontal.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.horizontal.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="matches_atmosphere_grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Does the horizontal grid match the atmosphere?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.horizontal.matches_atmosphere_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.horizontal.matches_atmosphere_grid</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Does the horizontal grid match the atmosphere?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.horizontal.matches_atmosphere_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.horizontal.matches_atmosphere_grid</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="vertical"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The vertical grid in the soil</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.vertical</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the general structure of the vertical grid in the soil (not including any tiling)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.vertical.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.vertical.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the general structure of the vertical grid in the soil (not including any tiling)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.vertical.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.vertical.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="total_depth"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The total depth of the soil (in metres)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.vertical.total_depth</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.vertical.total_depth</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The total depth of the soil (in metres)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.grid.vertical.total_depth</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.grid.vertical.total_depth</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="soil"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Land surface soil</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Land surface soil</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="heat_water_coupling"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the coupling between heat and water in the soil</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.heat_water_coupling</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.heat_water_coupling</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the coupling between heat and water in the soil</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.heat_water_coupling</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.heat_water_coupling</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_soil layers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The number of soil layers</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.number_of_soil layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.number_of_soil layers</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The number of soil layers</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.number_of_soil layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.number_of_soil layers</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="prognostic_variables"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List the prognostic variables of the soil scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.prognostic_variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.prognostic_variables</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List the prognostic variables of the soil scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.prognostic_variables</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.prognostic_variables</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="soil_map"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Key properties of the land surface soil map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of soil map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of soil map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="structure"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil structure map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.structure</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.structure</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil structure map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.structure</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.structure</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="texture"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil texture map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.texture</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.texture</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil texture map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.texture</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.texture</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="organic_matter"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil organic matter map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.organic_matter</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.organic_matter</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil organic matter map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.organic_matter</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.organic_matter</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="albedo"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil albedo map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.albedo</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.albedo</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil albedo map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.albedo</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.albedo</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="water_table"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil water table map, if any</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.water_table</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.water_table</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil water table map, if any</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.water_table</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.water_table</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="continuously_varying_soil_depth"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Does the soil properties vary continuously with depth?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.continuously_varying_soil_depth</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.continuously_varying_soil_depth</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Does the soil properties vary continuously with depth?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.continuously_varying_soil_depth</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.continuously_varying_soil_depth</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="soil_depth"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil depth map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.soil_depth</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.soil_depth</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil depth map</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.soil_map.soil_depth</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.soil_map.soil_depth</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="snow_free_albedo"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Snow free albedo</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="prognostic"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Is snow free albedo prognostic?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.prognostic</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.prognostic</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Is snow free albedo prognostic?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.prognostic</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.prognostic</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="functions"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If prognostic, describe the dependancies on snow free albedo calculations</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.functions</dd><dt><b>Type</b></dt><dd>ENUM:snow_free_albedo_function_types</dd><dt><b>Cardinality</b></dt><dd>0.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.functions</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If prognostic, describe the dependancies on snow free albedo calculations</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.functions</dd><dt><b>Type</b></dt><dd>ENUM:snow_free_albedo_function_types</dd><dt><b>Cardinality</b></dt><dd>0.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.functions</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="vegetation type"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>snow_free_albedo_function_types.vegetation type</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="soil humidity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>snow_free_albedo_function_types.soil humidity</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="vegetation state"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>snow_free_albedo_function_types.vegetation state</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="direct_diffuse"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If prognostic, describe the distinction between direct and diffuse albedo</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.direct_diffuse</dd><dt><b>Type</b></dt><dd>ENUM:direct_diffuse_types</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.direct_diffuse</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If prognostic, describe the distinction between direct and diffuse albedo</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.direct_diffuse</dd><dt><b>Type</b></dt><dd>ENUM:direct_diffuse_types</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.direct_diffuse</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="distinction between direct and diffuse albedo"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>direct_diffuse_types.distinction between direct and diffuse albedo</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="no distinction between direct and diffuse albedo"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>direct_diffuse_types.no distinction between direct and diffuse albedo</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_wavelength_bands"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If prognostic, enter the number of wavelength bands used</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.number_of_wavelength_bands</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.number_of_wavelength_bands</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>If prognostic, enter the number of wavelength bands used</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.number_of_wavelength_bands</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.snow_free_albedo.number_of_wavelength_bands</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="hydrology"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Key properties of the soil hydrology</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of the soil hydrological model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General description of the soil hydrological model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="time_step"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Time step of river soil hydrology in seconds</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.time_step</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Time step of river soil hydrology in seconds</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.time_step</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.time_step</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="tiling"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil hydrology tiling, if any.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.tiling</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.tiling</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the soil hydrology tiling, if any.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.tiling</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.tiling</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="vertical_discretisation"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the typical vertical discretisation</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.vertical_discretisation</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.vertical_discretisation</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the typical vertical discretisation</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.vertical_discretisation</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.vertical_discretisation</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_ground_water_layers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The number of soil layers that may contain water</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.number_of_ground_water_layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.number_of_ground_water_layers</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The number of soil layers that may contain water</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.number_of_ground_water_layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.number_of_ground_water_layers</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="lateral_connectivity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the lateral connectivity between tiles</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.lateral_connectivity</dd><dt><b>Type</b></dt><dd>ENUM:lateral_connectivity_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.lateral_connectivity</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the lateral connectivity between tiles</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.lateral_connectivity</dd><dt><b>Type</b></dt><dd>ENUM:lateral_connectivity_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.lateral_connectivity</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="perfect connectivity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Common soil for multiple tiles</dd><dt><b>Spec. ID</b></dt><dd>lateral_connectivity_types.perfect connectivity</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Darcian flow"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Darcian flow among hillslope tiles</dd><dt><b>Spec. ID</b></dt><dd>lateral_connectivity_types.Darcian flow</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="method"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The hydrological dynamics scheme in the land surface model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.method</dd><dt><b>Type</b></dt><dd>ENUM:water_storage_method_types</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.method</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The hydrological dynamics scheme in the land surface model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.method</dd><dt><b>Type</b></dt><dd>ENUM:water_storage_method_types</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.method</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Bucket"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>water_storage_method_types.Bucket</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Force-restore"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>water_storage_method_types.Force-restore</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Choisnel"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>water_storage_method_types.Choisnel</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Explicit diffusion"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>water_storage_method_types.Explicit diffusion</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="freezing"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Frozen soil treatment</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.freezing</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_ground_ice_layers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>How many soil layers may contain ground ice</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.number_of_ground_ice_layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.number_of_ground_ice_layers</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>How many soil layers may contain ground ice</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.number_of_ground_ice_layers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.number_of_ground_ice_layers</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="ice_storage_method"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the method of ice storage</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.ice_storage_method</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.ice_storage_method</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the method of ice storage</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.ice_storage_method</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.ice_storage_method</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="permafrost"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the treatment of permafrost, if any, within the land surface scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.permafrost</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.permafrost</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Describe the treatment of permafrost, if any, within the land surface scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.permafrost</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.freezing.permafrost</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="drainage"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Drainage treatment in the soil</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.drainage</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General describe how drainage is included in the land surface scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.land.soil.hydrology.drainage.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.land.soil.hydrology.drainage.description</dd>
</dl>