This repository was archived by the owner on Aug 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCropResearch.obo
2015 lines (1757 loc) · 57.3 KB
/
CropResearch.obo
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
format-version: 1.2
date: 03:04:2012 17:31
saved-by: RSHRESTHA
auto-generated-by: OBO-Edit 2.1.1-beta7
default-namespace: crop_research
remark: Crop research ontology is prepared by Rosemary Shrestha, CIMMYT for the Generation Challenge Program.
ontology: crop_research
[Term]
id: CO_715:0000000
name: Crop research ontology
def: "Describes experimental design, environmental conditions and methods associated with the crop study/experiment/trail and their evaluation." [CO:rs]
comment: release date: December 10, 2010 version: 1.0 Adapted from: The database management system (DMS) and gemrplasm management system (GMS) of the International Crop Information System (ICIS) model. ncreator: Rosemary Shrestha publisher: Bioversity International and CIMMYT for the Generation Challenge Program.
[Term]
id: CO_715:0000001
name: Experiment information entity
def: "Description of the purpose of the experiment and period it took place." [CO:rs]
relationship: part_of CO_715:0000000 ! Crop research ontology
created_by: RSHRESTHA
creation_date: 2010-02-19T11:37:37Z
[Term]
id: CO_715:0000002
name: Experimental site information
def: "Description of experimental sites." [CO:rs]
relationship: part_of CO_715:0000000 ! Crop research ontology
created_by: RSHRESTHA
creation_date: 2010-02-10T10:59:04Z
[Term]
id: CO_715:0000003
name: Experimental design
def: "The process of planning a study to meet specified objectives or the allocation of treatments (inputs) to the experimental units (plots). Planning an experiment properly is very important in order to ensure that the right type of data and a sufficient sample size and power are available to answer the research questions of interest as clearly and efficiently as possible." [CO:rs]
synonym: "study design" RELATED []
synonym: "survey design" RELATED []
relationship: part_of CO_715:0000000 ! Crop research ontology
created_by: RSHRESTHA
creation_date: 2010-02-17T02:36:59Z
[Term]
id: CO_715:0000004
name: Environmental factor
def: "Description of factors such as treatment, identifier." [CO:rs]
relationship: part_of CO_715:0000000 ! Crop research ontology
created_by: RSHRESTHA
creation_date: 2010-02-17T03:20:43Z
[Term]
id: CO_715:0000005
name: Experimental condition
def: "Environment in which trail/experiment/characterization/evaluation is carried out." [CO:rs]
relationship: part_of CO_715:0000000 ! Crop research ontology
created_by: RSHRESTHA
creation_date: 2010-02-10T12:32:31Z
[Term]
id: CO_715:0000006
name: Time factor
def: "Date for trail or experiment initiation or sample/data collection or evaluation in the format MM-DD-YYYY." [CO:rs]
relationship: part_of CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-02-10T12:10:37Z
[Term]
id: CO_715:0000007
name: Sowing date
def: "Date of sowing in the format MM-DD-YYYY." [CO:rs]
comment: In the form of DDMMYY.
is_a: CO_715:0000006 ! Time factor
is_a: CO_715:0000236 ! Cultural practices
created_by: RSHRESTHA
creation_date: 2010-02-10T12:13:19Z
[Term]
id: CO_715:0000008
name: Harvest date
def: "Date of harvest in the format MM-DD-YYYY." [CO:rs]
comment: In the form of DDMMYY.
is_a: CO_715:0000006 ! Time factor
is_a: CO_715:0000236 ! Cultural practices
created_by: RSHRESTHA
creation_date: 2010-02-10T12:14:15Z
[Term]
id: CO_715:0000009
name: Harvest starting date
def: "Date of harvest starting." [CO:rs]
is_a: CO_715:0000008 ! Harvest date
created_by: RSHRESTHA
creation_date: 2010-02-10T02:38:59Z
[Term]
id: CO_715:0000010
name: Harvest finishing date
def: "Date of harvest finishing." [CO:rs]
is_a: CO_715:0000008 ! Harvest date
created_by: RSHRESTHA
creation_date: 2010-02-10T02:40:17Z
[Term]
id: CO_715:0000011
name: Fertilizer application date
def: "Date on which fertilizer is applied in the format MM-DD-YYYY." [CO:rs]
is_a: CO_715:0000006 ! Time factor
created_by: RSHRESTHA
creation_date: 2010-02-10T02:47:47Z
[Term]
id: CO_715:0000012
name: Emergence date
is_a: CO_715:0000006 ! Time factor
created_by: RSHRESTHA
creation_date: 2010-02-10T02:48:38Z
[Term]
id: CO_715:0000013
name: Transplanting date
def: "Date of transplanting in the format MM-DD-YYYY." [CO:rs]
xref: IWIS_TRAITID:223
is_a: CO_715:0000006 ! Time factor
created_by: RSHRESTHA
creation_date: 2010-03-03T12:52:48Z
[Term]
id: CO_715:0000014
name: Seeding date
def: "Date of seeding in the format MM-DD-YYYY." [CO:rs]
xref: IWIS_TRAITID:222
is_a: CO_715:0000006 ! Time factor
created_by: RSHRESTHA
creation_date: 2010-03-03T12:54:23Z
[Term]
id: CO_715:0000015
name: Measurement date
def: "Date when measurements or observations are made in the format MM-DD-YYYY." [CO:rs]
synonym: "observation date" RELATED []
xref: IWIS_TRAITID:219
is_a: CO_715:0000006 ! Time factor
created_by: RSHRESTHA
creation_date: 2010-03-03T12:56:39Z
[Term]
id: CO_715:0000016
name: Purpose of experiment
def: "Purpose of the experiment." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-02-17T02:38:26Z
[Term]
id: CO_715:0000017
name: Project number
def: "The project number under which the experiment was performed." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-02-17T02:38:50Z
[Term]
id: CO_715:0000018
name: Remark
synonym: "comment" RELATED []
xref: IWIS_TRAITID:214
is_a: CO_715:0000046 ! Observation entity
created_by: RSHRESTHA
creation_date: 2010-02-17T02:40:46Z
[Term]
id: CO_715:0000019
name: Cooperator
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-02-17T03:27:02Z
[Term]
id: CO_715:0000020
name: Sown row number
def: "Total numbers of rows sown." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
is_a: CO_715:0000158 ! Row number
created_by: RSHRESTHA
creation_date: 2010-03-02T11:34:59Z
[Term]
id: CO_715:0000021
name: Space between sown rows
def: "Measurement of the space between rows where seeds are sown." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
is_a: CO_715:0000159 ! Row-to-row spacing
created_by: RSHRESTHA
creation_date: 2010-03-02T11:37:33Z
[Term]
id: CO_715:0000022
name: Space between harvested rows
def: "Measurement of space between rows harvested." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
is_a: CO_715:0000159 ! Row-to-row spacing
created_by: RSHRESTHA
creation_date: 2010-03-02T11:39:14Z
[Term]
id: CO_715:0000023
name: Harvested row number
def: "Total number of rows harvested." [CO:rs]
is_a: CO_715:0000046 ! Observation entity
is_a: CO_715:0000158 ! Row number
created_by: RSHRESTHA
creation_date: 2010-03-02T11:40:51Z
[Term]
id: CO_715:0000024
name: Sown row length
def: "Length of rows where seeds are sown." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-02T11:41:57Z
[Term]
id: CO_715:0000025
name: Harvested row length
def: "Length of rows harvested." [CO:rs]
is_a: CO_715:0000046 ! Observation entity
created_by: RSHRESTHA
creation_date: 2010-03-02T11:43:10Z
[Term]
id: CO_715:0000026
name: Seedlings per hill
def: "The numbers of seedlings planted per hill." [CO:rs]
is_a: CO_715:0000046 ! Observation entity
created_by: RSHRESTHA
creation_date: 2010-03-03T03:52:08Z
[Term]
id: CO_715:0000027
name: Nursery type
def: "An experiment where pollination are done, new seed generated and where data may be collected." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-29T04:48:48Z
[Term]
id: CO_715:0000028
name: Trial type
def: "An experiment where germplasm is evaluated and data is collected. No new seed is generated." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-29T04:49:47Z
[Term]
id: CO_715:0000029
name: Entry code
def: "The code for the entry that are planted." [CO:rs]
xref: IMIS_TRAITID:2153
is_a: CO_715:0000030 ! Entry list
creation_date: 2010-03-30T09:07:23Z
[Term]
id: CO_715:0000030
name: Entry list
def: "List of entries that are planted. This is the data collection sheet that is printed as a hard copy." [CO:rs]
is_a: CO_715:0000027 ! Nursery type
created_by: RSHRESTHA
creation_date: 2010-03-30T09:36:23Z
[Term]
id: CO_715:0000031
name: Entry number
def: "The number of the entry that are planted." [CO:rs]
xref: IMIS_TRAITID:2154
is_a: CO_715:0000030 ! Entry list
created_by: RSHRESTHA
creation_date: 2010-03-30T09:39:04Z
[Term]
id: CO_715:0000032
name: Experiment name
def: "Name or number of experiment or study." [CO:rs]
synonym: "study" RELATED []
xref: IRIS_TRAITID:201
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T12:15:31Z
[Term]
id: CO_715:0000033
name: Planting date
def: "The date of planting in the format MM-DD-YYYY." [CO:rs]
xref: IRIS_TRAITID:224
is_a: CO_715:0000006 ! Time factor
creation_date: 2010-08-11T04:15:10Z
[Term]
id: CO_715:0000034
name: Breeding program
def: "The name of breeding program." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T12:17:03Z
[Term]
id: CO_715:0000035
name: Experiment code
def: "The name of series plus year plus experiment number." [CO:rs]
xref: IMIS_TRAITID:2160
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T12:24:55Z
[Term]
id: CO_715:0000036
name: Stock ID
def: "An alpha numeric ID that identifies each seed packet in the store room uniquely. e.g. V1-1." [CO:rs]
xref: IMIS_TRAITID:2158
relationship: part_of CO_715:0000001 ! Experiment information entity
relationship: part_of CO_715:0000223 ! Seed management
created_by: RSHRESTHA
creation_date: 2010-03-30T12:28:15Z
[Term]
id: CO_715:0000037
name: Plant population density
def: "Visual assessment of plants per hectare as abundant or frequent or occasional or rare." [CO:rs]
is_a: CO_715:0000046 ! Observation entity
created_by: RSHRESTHA
creation_date: 2010-08-16T03:32:19Z
[Term]
id: CO_715:0000038
name: Collaborator
def: "Information on collaborator." [CO:rs]
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T12:41:29Z
[Term]
id: CO_715:0000039
name: Stock comment
def: "Any comments for the stock." [CO:rs]
relationship: part_of CO_715:0000001 ! Experiment information entity
relationship: part_of CO_715:0000223 ! Seed management
created_by: RSHRESTHA
creation_date: 2010-03-30T12:42:58Z
[Term]
id: CO_715:0000040
name: Standard deviation rank
is_a: CO_715:0000050 ! Statistics
created_by: RSHRESTHA
creation_date: 2010-03-30T02:39:36Z
[Term]
id: CO_715:0000041
name: GID
def: "The identifier for germplasm." [CO:rs]
relationship: part_of CO_715:0000223 ! Seed management
relationship: part_of CO_715:0000225 ! Passport information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T02:41:02Z
[Term]
id: CO_715:0000042
name: Series
def: "S if series, E if Experiment." [CO:rs]
xref: IMIS_TRAITID:2155
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T03:56:05Z
[Term]
id: CO_715:0000043
name: Series ID
def: "ID of series." [CO:rs]
xref: IMIS_TRAITID:2161
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T04:10:28Z
[Term]
id: CO_715:0000044
name: Series name
def: "Name of trial or nursery series." [CO:rs]
xref: IMIS_TRAITID:2134
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T04:11:17Z
[Term]
id: CO_715:0000045
name: Management entity
def: "Management of experiment." [CO:rs]
synonym: "management" RELATED []
relationship: part_of CO_715:0000000 ! Crop research ontology
created_by: RSHRESTHA
creation_date: 2010-03-30T04:16:12Z
[Term]
id: CO_715:0000046
name: Observation entity
def: "Observations on atypical conditions for experiment." [CO:rs]
synonym: "Evaluation entity" RELATED []
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-30T04:18:38Z
[Term]
id: CO_715:0000047
name: Pedigree name
def: "The origin and history of breeding plant individual." [CO:rs]
xref: IMIS_TRAITID:2157
is_a: CO_715:0000228 ! Scientific name
creation_date: 2010-04-05T09:52:56Z
[Term]
id: CO_715:0000048
name: Heterotic group
def: "It is created by plant breeders to classify inbred lines for creation of predictable hybrids and are created or improved by reciprocal recurrent selection. Crosses between inbreds from different heterotic groups result in vigorous F1 hybrids with significantly more heterosis than F1 hybrids from inbreds within the same heterotic group or pattern." [CO:rs]
comment: Heterosis is used to increase yields, uniformity, and vigor. Hybrid breeding methods are used in maize, sorghum, rice, sugar beet, onion, spinach, sunflowers, and broccoli.
xref: IMIS_TRAITID:2092
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-04-05T10:11:36Z
[Term]
id: CO_715:0000049
name: Collecting location data
def: "Data related to the collecting site which are referred to in the general passport worksheet." [CO:rs]
relationship: part_of CO_715:0000046 ! Observation entity
created_by: RSHRESTHA
creation_date: 2010-04-05T10:23:04Z
[Term]
id: CO_715:0000050
name: Statistics
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-04-19T12:23:15Z
[Term]
id: CO_715:0000051
name: Local check
xref: IMIS_TRAITID:2159
relationship: part_of CO_715:0000050 ! Statistics
created_by: RSHRESTHA
creation_date: 2010-04-05T10:27:12Z
[Term]
id: CO_715:0000052
name: Seed derived GID
is_a: CO_715:0000041 ! GID
creation_date: 2010-04-19T11:47:06Z
[Term]
id: CO_715:0000053
name: Leaf derived GID
is_a: CO_715:0000041 ! GID
created_by: RSHRESTHA
creation_date: 2010-04-19T11:47:20Z
[Term]
id: CO_715:0000054
name: Root derived GID
is_a: CO_715:0000041 ! GID
created_by: RSHRESTHA
creation_date: 2010-04-19T11:47:35Z
[Term]
id: CO_715:0000055
name: Container type
xref: IMIS_TRAITID:2147
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-04-05T10:29:54Z
[Term]
id: CO_715:0000056
name: Best check
xref: IMIS_TRAITID:2009
is_a: CO_715:0000050 ! Statistics
created_by: RSHRESTHA
creation_date: 2010-04-05T10:23:50Z
[Term]
id: CO_715:0000057
name: Sampling unit
def: "Unit from which an observation is taken." [CO:rs]
synonym: "field object" RELATED []
xref: IWIS_TRAITID:212
is_a: CO_715:0000001 ! Experiment information entity
created_by: RSHRESTHA
creation_date: 2010-03-03T03:57:09Z
[Term]
id: CO_715:0000058
name: Topological information
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
[Term]
id: CO_715:0000059
name: Topography
comment: This refers to the profile in elevation of the land surface on a broad scale. The reference is FAO (1990).
is_a: CO_715:0000058 ! Topological information
[Term]
id: CO_715:0000060
name: Higher-level landform
comment: The landform refers to the shape of the land surface in the area in which the collecting site is located (adapted from FAO, 1990).
is_a: CO_715:0000058 ! Topological information
[Term]
id: CO_715:0000061
name: Land element and position
comment: Description of the geomorphology of the immediate surroundings of the collecting site (adapted from FAO, 1990).
is_a: CO_715:0000058 ! Topological information
[Term]
id: CO_715:0000062
name: Slope
def: "Estimated slope of the site in degree." [CO:rs]
comment: Estimated slope in degrees of the collecting site.
synonym: "land inclination" RELATED []
is_a: CO_715:0000058 ! Topological information
[Term]
id: CO_715:0000063
name: Slope form
comment: It refers to the general shape of the slope in both vertical and horizontal directions (FAO 1990).
is_a: CO_715:0000058 ! Topological information
[Term]
id: CO_715:0000064
name: Slope aspect
comment: The direction that the slope on which the accession was collected faces. Describe the direction with symbols N, S, E, W (e.g. a slope that faces a south-western direction has an aspect of SW).
is_a: CO_715:0000058 ! Topological information
[Term]
id: CO_715:0000065
name: Latitude
def: "Degrees and minutes followed by north (N) and south (S)." [CO:rs]
comment: For example: 7625W.
synonym: "Latitude of collection site." RELATED []
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-02-10T11:08:47Z
[Term]
id: CO_715:0000066
name: Longitude
def: "Degrees and minutes followed by east (E) and west (W)." [CO:rs]
comment: For example: 1030S.
synonym: "Longitude of collection site" RELATED []
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-02-10T11:31:32Z
[Term]
id: CO_715:0000067
name: Altitude
def: "Elevation of experimental site expressed in meters (m) above sea level." [CO:rs]
synonym: "elevation" RELATED []
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-02-10T11:32:44Z
[Term]
id: CO_715:0000068
name: Site location
def: "Distance in kilometres and direction from nearest town or village, or map grid reference." [CO:rs]
comment: For example: TIMBUKTU 7S means 7 km south of Timbuktu.
synonym: "Location of collecting site" RELATED []
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-02-10T11:42:28Z
[Term]
id: CO_715:0000069
name: Latitude - degrees
def: "Degrees followed by north (N) and south (S)." [CO:rs]
is_a: CO_715:0000065 ! Latitude
created_by: RSHRESTHA
creation_date: 2010-02-10T11:45:46Z
[Term]
id: CO_715:0000070
name: Latitude - minutes
def: "Minutes followed by north (N) and south(S)." [CO:rs]
is_a: CO_715:0000065 ! Latitude
created_by: RSHRESTHA
creation_date: 2010-02-10T11:47:05Z
[Term]
id: CO_715:0000071
name: Longitude - degree
def: "Degrees followed by east (E) and west (W)." [CO:rs]
is_a: CO_715:0000066 ! Longitude
created_by: RSHRESTHA
creation_date: 2010-02-10T11:47:38Z
[Term]
id: CO_715:0000072
name: Longitude - minute
def: "Minutes followed by east (E) and west (W)." [CO:rs]
is_a: CO_715:0000066 ! Longitude
created_by: RSHRESTHA
creation_date: 2010-02-10T11:48:24Z
[Term]
id: CO_715:0000073
name: Country
def: "Name of the country where experimental site is located." [CO:rs]
comment: Use the three-letter codes for the representation of names of countries developed by the International Standards Organization and supported by the United Nations. Example: PHL.
xref: IWIS_TRAITID:215
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-02-10T11:50:00Z
[Term]
id: CO_715:0000074
name: Province/state
def: "Name of the primary administrative subdivision of the country in which the experimental site is located." [CO:rs]
synonym: "primary administrative subdivision" RELATED []
is_a: CO_715:0000002 ! Experimental site information
created_by: RSHRESTHA
creation_date: 2010-02-10T11:54:15Z
[Term]
id: CO_715:0000075
name: Institute
def: "The institute where the experiment was done." [CO:rs]
synonym: "research institute" RELATED []
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-02-10T11:55:54Z
[Term]
id: CO_715:0000076
name: Site ID
def: "Unique identifier where the experiment was executed." [CO:rs]
synonym: "location ID" RELATED []
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-03-30T04:13:21Z
[Term]
id: CO_715:0000077
name: Location name
def: "Name of experimental site." [CO:rs]
comment: Example: CHUMPHAE RICE EXPT. STN.
synonym: "site name" RELATED []
is_a: CO_715:0000002 ! Experimental site information
is_a: CO_715:0000049 ! Collecting location data
created_by: RSHRESTHA
creation_date: 2010-02-17T03:10:13Z
[Term]
id: CO_715:0000078
name: Abiotic factor
is_a: CO_715:0000004 ! Environmental factor
created_by: RSHRESTHA
creation_date: 2010-02-19T02:48:38Z
[Term]
id: CO_715:0000079
name: Biotic factor
is_a: CO_715:0000004 ! Environmental factor
created_by: RSHRESTHA
creation_date: 2010-02-19T02:48:55Z
[Term]
id: CO_715:0000080
name: Soil factor
is_a: CO_715:0000078 ! Abiotic factor
[Term]
id: CO_715:0000081
name: Soil texture
def: "Soil texture classes." [CO:rs]
comment: For convenience in determining the texture classes of the following list, particle size classes are given for each of the fine earth fraction.
is_a: CO_715:0000049 ! Collecting location data
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000082
name: Soil particle size
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000083
name: Soil taxonomic classification
comment: As detailed a classification as possible should be given. This may be taken from a soil survey map. State class (Alfisols, Spodosols, Vertisols, etc.).
is_a: CO_715:0000049 ! Collecting location data
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000084
name: Soil parent material
comment: Two lists of examples of parent material and rock are given. The reliability of the geological information and the knowledge of the local lithology will determine whether a general or a specific definition of the parent material can be given. Saprolite is used if the in situ weathered material is thoroughly decomposed, clay-rich but still showing rock structure. Alluvial deposits and colluvium derived from a single rock type may be further specified by that rock type.
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000085
name: Unconsolidated material
is_a: CO_715:0000084 ! Soil parent material
[Term]
id: CO_715:0000086
name: Rock type
is_a: CO_715:0000084 ! Soil parent material
[Term]
id: CO_715:0000087
name: Stoniness
synonym: "cementation" RELATED []
synonym: "hardpan" RELATED []
synonym: "rockiness" RELATED []
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000088
name: Soil drainage
def: "Gradation of soil drainage where 1=poor, 2=moderate, 3=good and 4=excessive." [CO:rs]
is_a: CO_715:0000049 ! Collecting location data
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000089
name: Soil salinity
def: "Soil salinity value (ppm dissolved salts)." [CO:rs]
comment: USe full term text. (e.g. see Bioversity descriptos). Example: 25.
is_a: CO_715:0000049 ! Collecting location data
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000090
name: Soil moisture
comment: Moisture conditions prevailing in the soil at the time of collecting should be given together with the depth. Attention should be paid to unusual moisture conditions caused by unseasonal weather, prolonged exposure of the profile, flooding, etc. (from FAO 1990).
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000091
name: Soil matrix color
comment: The color of the soil matrix material in the root zone around the accession is recorded in the moist condition (or both dry and moist condition, if possible) using the notations for hue, value and chroma as given in the Munsell Soil Color Charts (Munsell Color 1975). If there is no dominant soil matrix colour, the horizon is described as mottled and two or more colors are given and should be registered under uniform conditions. Early morning and late evening readings are not accurate. Provide depth of measurement [cm]. If a color chart is not available, states may be used.
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000092
name: Soil organic matter content
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000093
name: Soil pH
def: "Value of soil pH, separated by a colon, the depth (cm) from where soil sample was taken. Multiple values are separated by semicolon. Example 7.7:40-60." [CO:rs]
comment: Actual pH value of the soil around the accession.
is_a: CO_715:0000049 ! Collecting location data
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000094
name: Soil erosion
def: "Gradation of soil erosion." [CO:rs]
is_a: CO_715:0000049 ! Collecting location data
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000095
name: Rock fragment
comment: Large rock and mineral fragments (>2 mm) are described according to their abundance by soil volume.
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000096
name: Soil fertility
comment: General assessment of the soil fertility, based on existing vegetation.
is_a: CO_715:0000049 ! Collecting location data
is_a: CO_715:0000080 ! Soil factor
[Term]
id: CO_715:0000097
name: Soil type
is_a: CO_715:0000080 ! Soil factor
created_by: RSHRESTHA
creation_date: 2010-02-10T04:05:48Z
[Term]
id: CO_715:0000098
name: Highly organic
is_a: CO_715:0000081 ! Soil texture
created_by: RSHRESTHA
creation_date: 2010-02-10T04:06:08Z
[Term]
id: CO_715:0000099
name: Clay
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:06:22Z
[Term]
id: CO_715:0000100
name: Clay-silt
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:06:33Z
[Term]
id: CO_715:0000101
name: Silt
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:06:50Z
[Term]
id: CO_715:0000102
name: Silt sand
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:07:02Z
[Term]
id: CO_715:0000103
name: Sand
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:07:20Z
[Term]
id: CO_715:0000104
name: Sandy loam
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:07:33Z
[Term]
id: CO_715:0000105
name: Loam
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:07:51Z
[Term]
id: CO_715:0000106
name: Gravelly
is_a: CO_715:0000081 ! Soil texture
is_a: CO_715:0000097 ! Soil type
created_by: RSHRESTHA
creation_date: 2010-02-10T04:08:08Z
[Term]
id: CO_715:0000107
name: Soil toxicity
is_a: CO_715:0000080 ! Soil factor
created_by: RSHRESTHA
creation_date: 2010-02-17T09:16:04Z
[Term]
id: CO_715:0000108
name: Soil aluminium toxicity
def: "Soil toxicity due to aluminium." [CO:rs]
is_a: CO_715:0000107 ! Soil toxicity
created_by: RSHRESTHA
creation_date: 2010-03-02T09:58:08Z
[Term]
id: CO_715:0000109
name: Micronutrient toxicity
def: "Soil toxicity due to other micronutrients." [CO:rs]
is_a: CO_715:0000107 ! Soil toxicity
created_by: RSHRESTHA
creation_date: 2010-03-02T09:59:49Z
[Term]
id: CO_715:0000110
name: Soil nutrient content
is_a: CO_715:0000080 ! Soil factor
created_by: RSHRESTHA
creation_date: 2010-02-19T02:43:14Z
[Term]
id: CO_715:0000111
name: Chemical factor
is_a: CO_715:0000078 ! Abiotic factor
created_by: RSHRESTHA
creation_date: 2010-02-19T02:58:38Z
[Term]
id: CO_715:0000112
name: Heavy metal
is_a: CO_715:0000111 ! Chemical factor
created_by: RSHRESTHA
creation_date: 2010-02-19T02:59:25Z
[Term]
id: CO_715:0000113
name: Toxin
is_a: CO_715:0000111 ! Chemical factor
created_by: RSHRESTHA
creation_date: 2010-02-19T02:59:55Z
[Term]
id: CO_715:0000114
name: Inhibitor
is_a: CO_715:0000111 ! Chemical factor
created_by: RSHRESTHA
creation_date: 2010-02-19T03:00:21Z
[Term]
id: CO_715:0000115
name: Growth regulator
is_a: CO_715:0000111 ! Chemical factor
created_by: RSHRESTHA
creation_date: 2010-02-19T03:00:40Z
[Term]
id: CO_715:0000116
name: Hormone
is_a: CO_715:0000111 ! Chemical factor
created_by: RSHRESTHA
creation_date: 2010-02-19T02:59:41Z
[Term]
id: CO_715:0000117
name: Other chemical(s)
is_a: CO_715:0000111 ! Chemical factor
[Term]
id: CO_715:0000118
name: Temperature
comment: Provide either the monthly or the annual mean. Unit in [degree Celsius].
is_a: CO_715:0000078 ! Abiotic factor
is_a: CO_715:0000163 ! Climatic condition
is_a: CO_715:0000193 ! Growth control agent
[Term]
id: CO_715:0000119
name: Heating temperature
is_a: CO_715:0000118 ! Temperature
created_by: RSHRESTHA
creation_date: 2010-02-19T02:53:33Z
[Term]
id: CO_715:0000120
name: Cold temperature
is_a: CO_715:0000118 ! Temperature
created_by: RSHRESTHA
creation_date: 2010-02-19T02:53:52Z
[Term]
id: CO_715:0000121
name: Freezing temperature
is_a: CO_715:0000118 ! Temperature
created_by: RSHRESTHA
creation_date: 2010-02-19T02:54:06Z
[Term]
id: CO_715:0000122
name: Light
is_a: CO_715:0000078 ! Abiotic factor
[Term]
id: CO_715:0000123
name: Photoperiod
is_a: CO_715:0000122 ! Light
created_by: RSHRESTHA
creation_date: 2010-02-19T02:51:33Z
[Term]
id: CO_715:0000124
name: Light intensity
is_a: CO_715:0000122 ! Light
created_by: RSHRESTHA
creation_date: 2010-02-19T02:52:09Z
[Term]
id: CO_715:0000125
name: Wavelength of light
is_a: CO_715:0000122 ! Light
created_by: RSHRESTHA
creation_date: 2010-02-19T02:52:27Z
[Term]
id: CO_715:0000126
name: Frost