-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic.html
4227 lines (2734 loc) · 115 KB
/
static.html
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
<html><head>
<title>The Crop Characterization Ontology [DRAFT]</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link href="http://xmlns.com/xmlns-style.css" rel="stylesheet" type="text/css">
<link href="http://smiy.sourceforge.net/css/style.css" rel="stylesheet" type="text/css">
</head>
<body style="">
<h1><span class="title">The Crop Characterization Ontology <i>[DRAFT]</i></span></h1>
<h2>Revision: 0.1</h2>
<table width="100%" border="0">
<tbody><tr>
<td>
<dl>
<dt>Latest version:</dt>
<dd><a href="http://data.bioversityinternational.org/cco">http://data.bioversityinternational.org/cco</a> (<a href="http://data.bioversityinternational.org/cco.ttl">RDF Turtle</a>)</dd>
<dt>Editors:</dt>
<dd>
<a href="http://www.bioversityinternational.org/">Bioversity International</a><br>
</dd>
<dt>Contributors:</dt>
<dd>
Dr Silvio Belalcazar,
Dr F. Carreel,
Ching-Yan Tang,
Dr Jeff Daniells,
Prof. Bruno Delvaux,
Mr Guy Evers,
Dr Victor Galan Sauco,
Dr Ricardo Goenaga,
Prof. Oscar Haddad,
Dr Yair Isralei,
Mr Christophe Jenny,
Mrs Deborah Karamura,
Dr Emmanuel Lahav,
Mr Christian Lavigne,
Mr Thierry Lescot,
Dr Rodomiro Ortiz,
Mr Orlando C. Pascua,
Mr Xavier Perrier,
Dr Franklin Rosales,
Ing. Irelio Sanchez Ramos,
Prof Rony Swennen,
Mr Hughes Tezenas du Montcel,
Dr Kodjo Tomekpe,
Ir. Ines Van den houwe,
</dd>
</dl>
<p class="copyright">Copyright © 2013</p>
</td>
<td>
<center>
<a href="http://www.bioversityinternational.org/e-library/publications/categories/descriptors/"><img width="300" src="http://www.agrobiodiversity.org/files/cco-logo.png"></a>
</center><table style="border:2px dashed #FFCC00; font-size:small; padding:10px;" width="400" border="0" align="center">
<tbody><tr>
<td rowspan="2">
<img src="https://github.global.ssl.fastly.net/images/modules/logos_page/GitHub-Logo.png" width="120" alt="Github">
</td>
<td align="center"><b>The Crop Characterization Ontology Github project</b></td>
</tr>
<tr><td align="center">
<a href="https://github.com/bioversity/cco">Source code, Tools</a></td>
</tr>
<tr>
<td rowspan="2">
<img src="http://groups.google.com/groups/img/groups_medium.gif" height="58" width="150" alt="Google Groups">
</td>
<td align="center"><b>Discussion Group</b></td>
</tr>
<tr><td align="center"><a href="http://groups.google.com/group/#">Browse Archives</a></td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
<div about="" resource="http://www.w3.org/TR/rdfa-syntax" rel="dct:conformsTo">
<p about=""><a href="http://validator.w3.org/check?uri=referer"><img style="border: 0; float: right; padding: 5px;" src="http://www.w3.org/Icons/valid-xhtml-rdfa-blue" alt="Valid XHTML + RDFa"></a>
<!-- Creative Commons License -->
<a href="http://creativecommons.org/licenses/by/1.0/"></a> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/1.0/">Creative Commons Attribution License</a>. This copyright applies to the <em>The Crop Characterization Ontology</em> and accompanying documentation in RDF. Regarding underlying technology, The Crop Characterization Ontology uses W3C's <a href="http://www.w3.org/RDF/">RDF</a> technology, an open Web standard that can be freely used by anyone.</p>
<hr>
<h2>Abstract</h2>
<p>The Crop Characterization Ontology provides main concepts and properties for describing the characteristics of various crops. These concepts enable an easy and quick discrimination between phenotypes. They are generally highly heritable, can be easily seen by the eye and are equally expressed in all environments. In addition, these may include a limited number of additional traits thought desirable by a consensus of users of the particular crop.</p>
<hr>
<h2>The Crop Characterization Ontology At A Glance</h2>
<p>An alphabetical index of the terms, by class (categories or types), by
property and by individuals. All the terms are hyperlinked to their detailed description for quick reference.</p>
<div class="glance" id="glance">
<p>Classes:
| <a href="http://data.bioversityinternational.org/cco#Characterization">Characterization of crops</a>
| <a href="http://data.bioversityinternational.org/cco#Musa">Musa spp.</a>
</p>
<p>Properties:
| <a href="http://data.bioversityinternational.org/cco#leafHabitMusa">Leaf habit</a>
| <a href="http://data.bioversityinternational.org/cco#dwarfismMusa">Dwarfism</a>
| <a href="http://data.bioversityinternational.org/cco#pseudostemHeightMusa">Pseudostem height [m]</a>
| <a href="http://data.bioversityinternational.org/cco#pseudostemAspectMusa">Pseudostem aspect</a>
| <a href="http://data.bioversityinternational.org/cco#pseudostemColourMusa">Pseudostem colour</a>
| <a href="http://data.bioversityinternational.org/cco#pseudostemAppearanceMusa">Pseudostem appearance</a>
| <a href="http://data.bioversityinternational.org/cco#predominantUnderlyingColourPseudostemMusa">Predominant underlying colour of the pseudostem</a>
| <a href="http://data.bioversityinternational.org/cco#pigmentationUnderlyingPseudostemMusa">Pigmentation of the underlying pseudostem</a>
| <a href="http://data.bioversityinternational.org/cco#sapColourMusa">Sap colour</a>
| <a href="http://data.bioversityinternational.org/cco#waxLeafSheathsMusa">Wax on leaf sheaths</a>
| <a href="http://data.bioversityinternational.org/cco#numberOfSuckersMusa">Number of suckers</a>
| <a href="http://data.bioversityinternational.org/cco#developmentOfSuckersMusa">Development of suckers</a>
| <a href="http://data.bioversityinternational.org/cco#positionOfSuckersMusa">Position of suckers</a>
| <a href="http://data.bioversityinternational.org/cco#blotchesPetioleBaseMusa">Blotches at the petiole base</a>
| <a href="http://data.bioversityinternational.org/cco#blotchesColourMusa">Blotches colour</a>
| <a href="http://data.bioversityinternational.org/cco#petioleCanalLeafIIIMusa">Petiole canal leaf III</a>
| <a href="http://data.bioversityinternational.org/cco#petioleMarginsMusa">Petiole margins</a>
| <a href="http://data.bioversityinternational.org/cco#wingTypeMusa">Wing type</a>
| <a href="http://data.bioversityinternational.org/cco#petioleMarginColourMusa">Petiole margin colour</a>
| <a href="http://data.bioversityinternational.org/cco#edgeOfPetioleMarginMusa">Edge of petiole margin</a>
| <a href="http://data.bioversityinternational.org/cco#petioleWarginWidthMusa">Petiole margin width</a>
| <a href="http://data.bioversityinternational.org/cco#leafBladeLengthMusa">Leaf blade length</a>
| <a href="http://data.bioversityinternational.org/cco#leafBladeWidthMusa">Leaf blade width</a>
| <a href="http://data.bioversityinternational.org/cco#leafRatioMusa">Leaf ratio</a>
| <a href="http://data.bioversityinternational.org/cco#petioleLengthMusa">Petiole length</a>
| <a href="http://data.bioversityinternational.org/cco#colourOfLeafUpperSurfaceMusa">Colour of leaf upper surface</a>
| <a href="http://data.bioversityinternational.org/cco#appearanceOfLeafUpperSurfaceMusa">Appearance of leaf upper surface</a>
| <a href="http://data.bioversityinternational.org/cco#colourOfLeafLowerSurfaceMusa">Colour of leaf lower surface</a>
| <a href="http://data.bioversityinternational.org/cco#appearanceOfLeafLowerSurfaceMusa">Appearance of leaf lower surface</a>
| <a href="http://data.bioversityinternational.org/cco#waxOnLeavesMusa">Wax on leaves</a>
| <a href="http://data.bioversityinternational.org/cco#insertionPointOfLeafBladesOnPetioleMusa">Insertion point of leaf blades on petiole</a>
| <a href="http://data.bioversityinternational.org/cco#shapeOfLeafBladeBaseMusa">Shape of leaf blade base</a>
| <a href="http://data.bioversityinternational.org/cco#leafCorrugationMusa">Leaf corrugation</a>
| <a href="http://data.bioversityinternational.org/cco#colourOfMidribDorsalSurfaceMusa">Colour of midrib dorsal surface</a>
| <a href="http://data.bioversityinternational.org/cco#colourOfMidribVentralSurfaceMusa">Colour of midrib ventral surface</a>
| <a href="http://data.bioversityinternational.org/cco#colourOfCigarLeafDorsalSurfaceMusa">Colour of cigar leaf dorsal surface</a>
| <a href="http://data.bioversityinternational.org/cco#blotchesOnLeavesOfWaterSuckersMusa">Blotches on leaves of water suckers</a>
| <a href="http://data.bioversityinternational.org/cco#peduncleLengthMusa">Peduncle length</a>
| <a href="http://data.bioversityinternational.org/cco#emptyNodesOnPeduncleMusa">Empty nodes on peduncle</a>
| <a href="http://data.bioversityinternational.org/cco#peduncleWidthMusa">Peduncle width</a>
| <a href="http://data.bioversityinternational.org/cco#peduncleColourMusa">Peduncle colour</a>
| <a href="http://data.bioversityinternational.org/cco#peduncleHairinessMusa">Peduncle hairiness</a>
| <a href="http://data.bioversityinternational.org/cco#bunchPositionMusa">Bunch position</a>
| <a href="http://data.bioversityinternational.org/cco#bunchShapeMusa">Bunch shape</a>
| <a href="http://data.bioversityinternational.org/cco#bunchAppearanceMusa">Bunch appearance</a>
| <a href="http://data.bioversityinternational.org/cco#flowersThatFormTheFruitMusa">Flowers that form the fruit</a>
| <a href="http://data.bioversityinternational.org/cco#fruitsMusa">Fruits</a>
| <a href="http://data.bioversityinternational.org/cco#rachisTypeMusa">Rachis type</a>
| <a href="http://data.bioversityinternational.org/cco#rachisPositionMusa">Rachis position</a>
| <a href="http://data.bioversityinternational.org/cco#rachisAppearanceMusa">Rachis appearance</a>
| <a href="http://data.bioversityinternational.org/cco#maleBudTypeMusa">Male bud type</a>
| <a href="http://data.bioversityinternational.org/cco#maleBudShapeMusa">Male bud shape</a>
| <a href="http://data.bioversityinternational.org/cco#maleBudSizeMusa">Male bud size</a>
| <a href="http://data.bioversityinternational.org/cco#bractBaseShapeMusa">Bract base shape</a>
| <a href="http://data.bioversityinternational.org/cco#bractApexShapeMusa">Bract apex shape</a>
| <a href="http://data.bioversityinternational.org/cco#bractImbricationMusa">Bract imbrication</a>
| <a href="http://data.bioversityinternational.org/cco#colourOfTheBractExternalFaceMusa">Colour of the bract external face</a>
| <a href="http://data.bioversityinternational.org/cco#colourOfTheBractInternalFaceMusa">Colour of the bract internal face</a>
| <a href="http://data.bioversityinternational.org/cco#colourOnTheBractApexMusa">Colour on the bract apex</a>
| <a href="http://data.bioversityinternational.org/cco#colourStripesOnBractMusa">Colour stripes on bract</a>
| <a href="http://data.bioversityinternational.org/cco#bractScarsOnRachisMusa">Bract scars on rachis</a>
| <a href="http://data.bioversityinternational.org/cco#fadingOfColourOnBractBaseMusa">Fading of colour on bract base</a>
| <a href="http://data.bioversityinternational.org/cco#maleBractShapeMusa">Male bract shape</a>
| <a href="http://data.bioversityinternational.org/cco#maleBractLiftingMusa">Male bract lifting</a>
| <a href="http://data.bioversityinternational.org/cco#bractBehaviourBeforeFallingMusa">Bract behaviour before falling</a>
| <a href="http://data.bioversityinternational.org/cco#waxOnTheBractMusa">Wax on the bract</a>
| <a href="http://data.bioversityinternational.org/cco#presenceOfGroovesOnTheBractMusa">Presence of grooves on the bract</a>
| <a href="http://data.bioversityinternational.org/cco#maleFlowerBehaviourMusa">Male flower behaviour</a>
| <a href="http://data.bioversityinternational.org/cco#compoundTepalBasicColourMusa">Compound tepal basic colour</a>
| <a href="http://data.bioversityinternational.org/cco#compoundTepalPigmentationMusa">Compound tepal pigmentation</a>
| <a href="http://data.bioversityinternational.org/cco#lobeColourOfCompoundTepalMusa">Lobe colour of compound tepal</a>
| <a href="http://data.bioversityinternational.org/cco#lobeDevelopmentOfCompoundTepalMusa">Lobe development of compound tepal</a>
| <a href="http://data.bioversityinternational.org/cco#freeTepalColourMusa">Free tepal colour</a>
| <a href="http://data.bioversityinternational.org/cco#freeTepalShapeMusa">Free tepal shape</a>
| <a href="http://data.bioversityinternational.org/cco#freeTepalAppearanceMusa">Free tepal appearance</a>
| <a href="http://data.bioversityinternational.org/cco#freeTepalApexDevelopmentMusa">Free tepal apex development</a>
| <a href="http://data.bioversityinternational.org/cco#freeTepalApexShapeMusa">Free tepal apex shape</a>
| <a href="http://data.bioversityinternational.org/cco#antherExsertionMusa">Anther exsertion</a>
| <a href="http://data.bioversityinternational.org/cco#filamentColourMusa">Filament colour</a>
| <a href="http://data.bioversityinternational.org/cco#antherColourMusa">Anther colour</a>
| <a href="http://data.bioversityinternational.org/cco#pollenSacColourMusa">Pollen sac colour</a>
| <a href="http://data.bioversityinternational.org/cco#pollenVitalityMusa">Pollen vitality</a>
| <a href="http://data.bioversityinternational.org/cco#styleBasicColourMusa">Style basic colour</a>
| <a href="http://data.bioversityinternational.org/cco#pigmentationOnStyleMusa">Pigmentation on style</a>
| <a href="http://data.bioversityinternational.org/cco#styleExsertionMusa">Style exsertion</a>
| <a href="http://data.bioversityinternational.org/cco#styleShapeMusa">Style shape</a>
| <a href="http://data.bioversityinternational.org/cco#stigmaColourMusa">Stigma colour</a>
| <a href="http://data.bioversityinternational.org/cco#ovaryShapeMusa">Ovary shape</a>
| <a href="http://data.bioversityinternational.org/cco#ovaryBasicColourMusa">Ovary basic colour</a>
| <a href="http://data.bioversityinternational.org/cco#ovaryPigmentationMusa">Ovary pigmentation</a>
| <a href="http://data.bioversityinternational.org/cco#dominantColourOfMaleFlowerMusa">Dominant colour of male flower</a>
| <a href="http://data.bioversityinternational.org/cco#irregularFlowersMusa">Irregular flowers</a>
| <a href="http://data.bioversityinternational.org/cco#arrangementOfOvulesMusa">Arrangement of ovules</a>
| <a href="http://data.bioversityinternational.org/cco#fruitPositionMusa">Fruit position</a>
| <a href="http://data.bioversityinternational.org/cco#numberOfFruitsMusa">Number of fruits</a>
| <a href="http://data.bioversityinternational.org/cco#fruitLengthMusa">Fruit length</a>
| <a href="http://data.bioversityinternational.org/cco#fruitShapeLongitudinalCurvatureMusa">Fruit shape longitudinal curvature</a>
| <a href="http://data.bioversityinternational.org/cco#transverseSectionOfFruitMusa">Transverse section of fruit</a>
| <a href="http://data.bioversityinternational.org/cco#fruitApexMusa">Fruit apex</a>
| <a href="http://data.bioversityinternational.org/cco#remainsOfFlowerRelictsAtFruitApexMusa">Remains of flower relicts at fruit apex</a>
| <a href="http://data.bioversityinternational.org/cco#fruitPedicelLengthMusa">Fruit pedicel length</a>
| <a href="http://data.bioversityinternational.org/cco#fruitPedicelWidthMusa">Fruit pedicel width</a>
| <a href="http://data.bioversityinternational.org/cco#pedicelSurfaceMusa">Pedicel surface</a>
| <a href="http://data.bioversityinternational.org/cco#fusionOfPedicelsMusa">Fusion of pedicels</a>
| <a href="http://data.bioversityinternational.org/cco#immatureFruitPeelColourMusa">Immature fruit peel colour</a>
| <a href="http://data.bioversityinternational.org/cco#matureFruitPeelColourMusa">Mature fruit peel colour</a>
| <a href="http://data.bioversityinternational.org/cco#fruitPeelThicknessMusa">Fruit peel thickness</a>
| <a href="http://data.bioversityinternational.org/cco#adherenceOfTheFruitPeelMusa">Adherence of the fruit peel</a>
| <a href="http://data.bioversityinternational.org/cco#cracksInFruitPeelMusa">Cracks in fruit peel</a>
| <a href="http://data.bioversityinternational.org/cco#pulpInFruitMusa">Pulp in fruit</a>
| <a href="http://data.bioversityinternational.org/cco#pulpColourBeforeMaturityMusa">Pulp colour before maturity</a>
| <a href="http://data.bioversityinternational.org/cco#pulpColourAtMaturityMusa">Pulp colour at maturity</a>
| <a href="http://data.bioversityinternational.org/cco#fruitsFallFromHandsMusa">Fruits fall from hands</a>
| <a href="http://data.bioversityinternational.org/cco#fleshTextureMusa">Flesh texture</a>
| <a href="http://data.bioversityinternational.org/cco#predominantTasteMusa">Predominant taste</a>
| <a href="http://data.bioversityinternational.org/cco#presenceOfSeedWithSourceOfPollenMusa">Presence of seed with source of pollen</a>
| <a href="http://data.bioversityinternational.org/cco#seedSurfaceMusa">Seed surface</a>
| <a href="http://data.bioversityinternational.org/cco#seedShapeMusa">Seed shape</a>
</p>
</div>
<hr>
<h2>The Crop Characterization Ontology: Classes and Properties</h2>
<br>
<div class="specterm" id="Characterization"><h3>Class: Characterization of crops</h3>
<b>Label:</b> Characterization of crops
<br><br>
<br>
<br>
<b>Page:</b> <a href="undefined">undefined</a>
<br>
<b>ISBN:</b> undefined
</div>
<div class="specterm" id="Musa"><h3>Class: Musa spp.</h3>
<b>Label:</b> Musa spp.
<br><br>
<img src="http://www.agrobiodiversity.org/files/MusaPDF.jpg">
<br>
<br>
<b>Page:</b> <a href="http://www.bioversityinternational.org/e-library/publications/detail/descriptors-for-banana-emmusaem-spp/">http://www.bioversityinternational.org/e-library/publications/detail/descriptors-for-banana-emmusaem-spp/</a>
<br>
<b>ISBN:</b> 978-92-9043-307-1
</div>
<div class="specterm" id="leafHabitMusa"><h3>Property: Leaf habit</h3>
1 Erect<br>2 Intermediate<br>3 Drooping<br>4 Other (e.g. very drooping, specify in descriptor Notes, 6.8)
<br>
<br>
<img src="http://www.agrobiodiversity.org/files/leafHabit.png">
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#leafHabitMusa">http://data.bioversityinternational.org/cco#leafHabitMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="dwarfismMusa"><h3>Property: Dwarfism</h3>
1 Normal: leaves not overlapped and leaf ratio inferior to 2.5<br>2 Dwarf type: leaves strongly overlapped and leaf ratio superior<br>to 2.5
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#dwarfismMusa">http://data.bioversityinternational.org/cco#dwarfismMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="pseudostemHeightMusa"><h3>Property: Pseudostem height [m]</h3>
Recorded from the base of pseudostem to emerging point of the peduncle<br>1 â¤2<br>2 2.1 to 2.9<br>3 â¥3
<br>
<br>
<img src="http://www.agrobiodiversity.org/files/PseudostemSuckers.png">
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#pseudostemHeightMusa">http://data.bioversityinternational.org/cco#pseudostemHeightMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="pseudostemAspectMusa"><h3>Property: Pseudostem aspect</h3>
Determined by the circumference at 100 cm<br>1 Slender<br>2 Normal<br>3 Robust
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#pseudostemAspectMusa">http://data.bioversityinternational.org/cco#pseudostemAspectMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="pseudostemColourMusa"><h3>Property: Pseudostem colour</h3>
Recorded without removing the external sheaths. The colour of oldest dry sheaths should not be considered.<br>1 Green-yellow<br>2 Medium green<br>3 Green<br>4 Dark green<br>5 Green-red<br>6 Red<br>7 Red-purple<br>8 Blue<br>9 Chimerical<br>10 Other
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#pseudostemColourMusa">http://data.bioversityinternational.org/cco#pseudostemColourMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="pseudostemAppearanceMusa"><h3>Property: Pseudostem appearance</h3>
Recorded as in cco:pseudostemColourMusa<br>1 Dull (waxy)<br>2 Shiny (not waxy)
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#pseudostemAppearanceMusa">http://data.bioversityinternational.org/cco#pseudostemAppearanceMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="predominantUnderlyingColourPseudostemMusa"><h3>Property: Predominant underlying colour of the pseudostem</h3>
Remove the outermost sheath from the pseudostem and look at the exposed surface<br>of the underlying pseudostem. The values 5 (pink-purple), 6 (red-purple) and 7<br>(purple) must be chosen only if the pigmentation is uniform, and green tinges are<br>not observed.<br>1 Watery green<br>2 Light green<br>3 Green<br>4 Cream<br>5 Pink-purple<br>6 Red-purple<br>7 Purple<br>8 Other
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#predominantUnderlyingColourPseudostemMusa">http://data.bioversityinternational.org/cco#predominantUnderlyingColourPseudostemMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="pigmentationUnderlyingPseudostemMusa"><h3>Property: Pigmentation of the underlying pseudostem</h3>
Record the tinge of pigmentation, even if it is only noticeable in places.<br>1 Pink-purple<br>2 Red<br>3 Purple<br>4 Other
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#pigmentationUnderlyingPseudostemMusa">http://data.bioversityinternational.org/cco#pigmentationUnderlyingPseudostemMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="sapColourMusa"><h3>Property: Sap colour</h3>
Cut the external sheath of pseudostem and record the characteristics of the sap.<br>1 Watery<br>2 Milky<br>3 Red-purple<br>4 Other
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#sapColourMusa">http://data.bioversityinternational.org/cco#sapColourMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="waxLeafSheathsMusa"><h3>Property: Wax on leaf sheaths</h3>
1 Very little or no visible sign of wax<br>2 Very few wax<br>3 Moderately waxy<br>4 Very waxy
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#waxLeafSheathsMusa">http://data.bioversityinternational.org/cco#waxLeafSheathsMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>
<td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td>
</tr>
</tbody></table>
</div>
<div class="specterm" id="numberOfSuckersMusa"><h3>Property: Number of suckers</h3>
Record the number of suckers from soil level to point of emergence of the last leaf<br>(>30 cm height). Recorded only if no desuckering has taken place
<br>
<br>
<br><br>
<table style="th { float: top; }">
<tbody>
<tr>
<th>ID:</th>
<td><a href="http://data.bioversityinternational.org/cco#numberOfSuckersMusa">http://data.bioversityinternational.org/cco#numberOfSuckersMusa</a></td>
</tr>
<tr>
<th>Domain:</th>
<td><a href="http://data.bioversityinternational.org/cco#Musa">http://data.bioversityinternational.org/cco#Musa</a></td>
</tr>
<tr>
<th>Range:</th>