generated from codingstrand/basesite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inventorybase.obo
1670 lines (1453 loc) · 51.3 KB
/
inventorybase.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: 10:03:2024 17:10
saved-by: Lukas_Mueller
default-namespace: INV
ontology: CO_365
[Term]
id: INV:0000000
name: INVENTORY ROOT
namespace: INV
[Term]
id: INV:0000001
name: Abiotic Stress
def: "Abiotic Stress" []
namespace: INV
is_a: INV:0000000 ! ROOT
[Term]
id: INV:0000002
name: Agronomic
def: "Agronomic" []
namespace: INV
is_a: INV:0000000 ! ROOT
[Term]
id: INV:0000003
name: Biotic Stress
def: "Biotic Stress" []
namespace: INV
is_a: INV:0000000 ! ROOT
[Term]
id: INV:0000004
name: Morphological
def: "Morphological" []
namespace: INV
is_a: INV:0000000 ! ROOT
[Term]
id: INV:0000005
name: Physiological
def: "Physiological" []
namespace: INV
is_a: INV:0000000 ! ROOT
[Term]
id: INV:0000006
name: Quality
def: "Quality" []
namespace: INV
is_a: INV:0000000 ! ROOT
[Term]
id: INV:0000007
name: Acid
def: "" []
namespace: INV
is_a: INV:0000006 ! Quality
[Term]
id: INV:0000008
name: Biological Index Inoculation Date
def: "" []
namespace: INV
is_a: INV:0000003 ! Biotic Stress
[Term]
id: INV:0000009
name: Biological Index Inoculation Source Tree
def: "" []
namespace: INV
is_a: INV:0000003 ! Biotic Stress
[Term]
id: INV:0000010
name: Biological Index Result
def: "" []
namespace: INV
is_a: INV:0000003 ! Biotic Stress
[Term]
id: INV:0000011
name: Brix Acid Ratio
def: "" []
namespace: INV
is_a: INV:0000006 ! Quality
[Term]
id: INV:0000012
name: Canopy Color
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000013
name: Canopy Density
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000014
name: Canopy Diameter
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000015
name: Canopy Volume
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000016
name: Chopped Fruit Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000017
name: Days to Recover
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000018
name: Days to Wilt
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000019
name: Dry Fruit Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000020
name: Dry Leaf Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000021
name: Dry Seed Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000022
name: Dry Soil Weight
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000023
name: Endocarp Color
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000024
name: Exocarp Color
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000025
name: Exocarp Texture
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000026
name: Exocarp Thickness
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000027
name: Final Fruit Temperature
def: "" []
namespace: INV
is_a: INV:0000005 ! Physiological
[Term]
id: INV:0000028
name: Fresh Fruit Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000029
name: Fresh Leaf Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000030
name: Fresh Seed Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000031
name: Fruit Area
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000032
name: Fruit Collection Date
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000033
name: Fruit Diameter
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000034
name: Fruit Longest Path
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000035
name: Fruit Perimeter
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000036
name: Fruit Volume
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000037
name: Fruit Water Activity
def: "" []
namespace: INV
is_a: INV:0000005 ! Physiological
[Term]
id: INV:0000038
name: Fruit Water Loss
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000039
name: Fruit Water Potential
def: "" []
namespace: INV
is_a: INV:0000005 ! Physiological
[Term]
id: INV:0000040
name: Graft Survival
def: "" []
namespace: INV
is_a: INV:0000002 ! Agronomic
[Term]
id: INV:0000041
name: Graft Survival Date
def: "" []
namespace: INV
is_a: INV:0000002 ! Agronomic
[Term]
id: INV:0000042
name: Juice Percent
def: "" []
namespace: INV
is_a: INV:0000006 ! Quality
[Term]
id: INV:0000043
name: Juice Weight
def: "" []
namespace: INV
is_a: INV:0000002 ! Agronomic
[Term]
id: INV:0000044
name: Leaf Collection Date
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000045
name: Leaf Conductance
def: "" []
namespace: INV
is_a: INV:0000005 ! Physiological
[Term]
id: INV:0000046
name: Leaf Relative Humidity
def: "" []
namespace: INV
is_a: INV:0000005 ! Physiological
[Term]
id: INV:0000047
name: Leaf Relative Water Content
def: "" []
namespace: INV
is_a: INV:0000005 ! Physiological
[Term]
id: INV:0000048
name: Leaf Water Loss
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000049
name: Rootstock Trunk Diameter
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000050
name: Sampled Fruit Number
def: "" []
namespace: INV
is_a: INV:0000002 ! Agronomic
[Term]
id: INV:0000051
name: Scion Trunk Diameter
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000052
name: Seed Count
def: "" []
namespace: INV
is_a: INV:0000006 ! Quality
[Term]
id: INV:0000053
name: Seed Water Loss
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000054
name: Soil Moisture
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000055
name: Total Soluble Solids
def: "" []
namespace: INV
is_a: INV:0000006 ! Quality
[Term]
id: INV:0000056
name: Tree Yield
def: "" []
namespace: INV
is_a: INV:0000002 ! Agronomic
[Term]
id: INV:0000057
name: Turgid Leaf Weight
def: "" []
namespace: INV
is_a: INV:0000004 ! Morphological
[Term]
id: INV:0000058
name: Wet Soil Weight
def: "" []
namespace: INV
is_a: INV:0000001 ! Abiotic Stress
[Term]
id: INV:0000059
name: Acid - Measurement - pH
def: "Juice acidity from fruit sample using titration." []
synonym: "Acid; Titration" EXACT []
namespace: INV
relationship: variable_of INV:0000007 ! Acid
[Term]
id: INV:0000060
name: Biological Index Inoculation - Date - YYYY-MM-DD
def: "Date tree was inoculated with pathogen for bioindexing - YYYY-MM-DD" []
synonym: "BioIdxDate_ymd" EXACT []
namespace: INV
relationship: variable_of INV:0000008 ! Biological Index Inoculation Date
[Term]
id: INV:0000061
name: Biological Index Inoculation Source Tree - Text
def: "Unique identifier of positive source tree used for inoculation." []
synonym: "BioIdxSrcTree_txt" EXACT []
namespace: INV
relationship: variable_of INV:0000009 ! Biological Index Inoculation Source Tree
[Term]
id: INV:0000062
name: Biological Index Result - Rating
def: "Visual rating of bioindexing result" []
synonym: "BioIdxRes_Rate_brs" EXACT []
namespace: INV
relationship: variable_of INV:0000010 ! Biological Index Result
[Term]
id: INV:0000063
name: Brix Acid Ratio - Calculation
def: "Brix/TSS measurement divided by Titratable Acidity Measurement" []
synonym: "TSSAcidRat_Comp" EXACT []
namespace: INV
relationship: variable_of INV:0000011 ! Brix Acid Ratio
[Term]
id: INV:0000064
name: Canopy Color - Rating - 1-5 Color Scale
def: "Rating of overall color of canopy from 1 to 5, where 1=very yellow, worst and 5=very green, best." []
synonym: "CnpyCol_Rate_1to5" EXACT []
namespace: INV
relationship: variable_of INV:0000012 ! Canopy Color
[Term]
id: INV:0000065
name: Canopy Density - Digital Canopy Analyzer Measurement - LAI
def: "Tree Canopy Density Measurement using Digital Canopy Analyzer (LAI)" []
synonym: "CnpyDns_LAI" EXACT []
namespace: INV
relationship: variable_of INV:0000013 ! Canopy Density
[Term]
id: INV:0000066
name: Canopy Diameter - East to West - centimeters
def: "Canopy width measurement from East to West in cm." []
synonym: "CnpyDia_EW_cm" EXACT []
namespace: INV
relationship: variable_of INV:0000014 ! Canopy Diameter
[Term]
id: INV:0000067
name: Canopy Diameter - North to South - centimeters
def: "Canopy width measurement from North to South in cm." []
synonym: "CnpyDia_NS_cm" EXACT []
namespace: INV
relationship: variable_of INV:0000014 ! Canopy Diameter
[Term]
id: INV:0000068
name: Canopy Volume - Calculation - m^3
def: "Calculation of canopy volume based on Canopy Diameter from N-S, Canopy Diameter from E-W, and Height of Tree in m3. (NS_Dia*EW_Dia*TreeHt)/4" []
synonym: "CnpyVol_Comp_m3" EXACT []
namespace: INV
relationship: variable_of INV:0000015 ! Canopy Volume
[Term]
id: INV:0000069
name: Chopped Fruit Weight - Measurement - grams
def: "Fruit sample weight after chopping for evaluation in grams." []
synonym: "ChpFrtWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000016 ! Chopped Fruit Weight
[Term]
id: INV:0000070
name: Days to Recover - count
def: "A count of the number of days after water reintroduction until tree recovers." []
synonym: "Days2Rcvr_Cnt" EXACT []
namespace: INV
relationship: variable_of INV:0000017 ! Days to Recover
[Term]
id: INV:0000071
name: Days to Wilt - count
def: "A count of the number of days after drought conditions are applied until tree wilts." []
synonym: "Days2Wilt_Cnt" EXACT []
namespace: INV
relationship: variable_of INV:0000018 ! Days to Wilt
[Term]
id: INV:0000072
name: Dry Fruit Weight - Measurement - grams
def: "Fruit sample weight after drying in grams." []
synonym: "DryFrtWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000019 ! Dry Fruit Weight
[Term]
id: INV:0000073
name: Dry Leaf Weight - Measurement - grams
def: "Leaf sample weight in grams after drying in oven at 85C overnight" []
synonym: "DryLfWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000020 ! Dry Leaf Weight
[Term]
id: INV:0000074
name: Dry Seed Weight - Measurement - grams
def: "Seed sample weight in grams after drying." []
synonym: "DrySdWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000021 ! Dry Seed Weight
[Term]
id: INV:0000075
name: Dry Soil Weight - Measurement - grams
def: "Direct measurement of the weight in grams of a soil sample after drying." []
synonym: "DrySoilWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000022 ! Dry Soil Weight
[Term]
id: INV:0000076
name: Endocarp Color - Class 1 Color Percentage
def: "Percentage of pixels assigned to class 1 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "EndoCol_Cls1_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000077
name: Endocarp Color - Class 1 Color Pixel Count
def: "Number of pixels assigned to class 1 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "EndoCol_Cls1Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000078
name: Endocarp Color - Class 10 Color Percentage
def: "Percentage of pixels assigned to class 10 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "EndoCol_Cls10_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000079
name: Endocarp Color - Class 10 Color Pixel Count
def: "Number of pixels assigned to class 10 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "EndoCol_Cls10Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000080
name: Endocarp Color - Class 2 Color Percentage
def: "Percentage of pixels assigned to class 2 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "EndoCol_Cls2_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000081
name: Endocarp Color - Class 2 Color Pixel Count
def: "Number of pixels assigned to class 2 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "EndoCol_Cls2Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000082
name: Endocarp Color - Class 3 Color Percentage
def: "Percentage of pixels assigned to class 3 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "EndoCol_Cls3_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000083
name: Endocarp Color - Class 3 Color Pixel Count
def: "Number of pixels assigned to class 3 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "EndoCol_Cls3Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000084
name: Endocarp Color - Class 6 Color Percentage
def: "Percentage of pixels assigned to class 6 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "EndoCol_Cls6_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000085
name: Endocarp Color - Class 6 Color Pixel Count
def: "Number of pixels assigned to class 6 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "EndoCol_Cls6Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000086
name: Endocarp Color - Class 8 Color Percentage
def: "Percentage of pixels assigned to class 8 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "EndoCol_Cls8_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000087
name: Endocarp Color - Class 8 Color Pixel Count
def: "Number of pixels assigned to class 8 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "EndoCol_Cls8Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000088
name: Endocarp Color - Rating - 0-7 Endocarp Fruit Color Scale
def: "Estimation of endocarp color using a rating scale" []
synonym: "EndCol_Rate_endo" EXACT []
namespace: INV
relationship: variable_of INV:0000023 ! Endocarp Color
[Term]
id: INV:0000089
name: Exocarp Color - Class 1 Color Percentage
def: "Percentage of pixels assigned to class 1 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "ExoCol_Cls1_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000090
name: Exocarp Color - Class 1 Color Pixel Count
def: "Number of pixels assigned to class 1 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "ExoCol_Cls1Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000091
name: Exocarp Color - Class 10 Color Percentage
def: "Percentage of pixels assigned to class 10 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "ExoCol_Cls10_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000092
name: Exocarp Color - Class 10 Color Pixel Count
def: "Number of pixels assigned to class 10 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "ExoCol_Cls10Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000093
name: Exocarp Color - Class 2 Color Percentage
def: "Percentage of pixels assigned to class 2 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "ExoCol_Cls2_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000094
name: Exocarp Color - Class 2 Color Pixel Count
def: "Number of pixels assigned to class 2 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "ExoCol_Cls2Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000095
name: Exocarp Color - Class 3 Color Percentage
def: "Percentage of pixels assigned to class 3 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "ExoCol_Cls3_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000096
name: Exocarp Color - Class 3 Color Pixel Count
def: "Number of pixels assigned to class 3 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "ExoCol_Cls3Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000097
name: Exocarp Color - Class 6 Color Percentage
def: "Percentage of pixels assigned to class 6 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "ExoCol_Cls6_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000098
name: Exocarp Color - Class 6 Color Pixel Count
def: "Number of pixels assigned to class 6 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "ExoCol_Cls6Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000099
name: Exocarp Color - Class 8 Color Percentage
def: "Percentage of pixels assigned to class 8 color bin (RGB 173 90 32) using Naïve Bayes. (# Assigned Pixels)/(Total # Pixels)" []
synonym: "ExoCol_Cls8_pct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000100
name: Exocarp Color - Class 8 Color Pixel Count
def: "Number of pixels assigned to class 8 color bin (RGB 173 90 32) using Naïve Bayes." []
synonym: "ExoCol_Cls8Px_ct" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000101
name: Exocarp Color - Rating - 3-13 Exocarp Fruit Color Scale
def: "Rating of exocarp color based on color reference chart from 3 to 13, where 3 = Dark Green, 5 = Color Break, and 13 = Orange Red." []
synonym: "ExoCol_Rate_3to13" EXACT []
namespace: INV
relationship: variable_of INV:0000024 ! Exocarp Color
[Term]
id: INV:0000102
name: Exocarp Texture - Rating - 1-8 Exocarp Texture Scale
def: "Exocarp texture estimation of fruit sample using a rating scale from 1 to 8, where 1 = Smooth and 8 = Rough." []
synonym: "ExoTxt_Rate_1to8" EXACT []
namespace: INV
relationship: variable_of INV:0000025 ! Exocarp Texture
[Term]
id: INV:0000103
name: Exocarp Thickness - Single Fruit - millimeters
def: "Exocarp (rind) thickness in mm of a single fruit." []
synonym: "ExoSingleThck_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000026 ! Exocarp Thickness
[Term]
id: INV:0000104
name: Exocarp Thickness - Total Sample - millimeters
def: "Total exocarp (rind) thickness in mm of a group of fruit in fruit sample." []
synonym: "ExoTotThck_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000026 ! Exocarp Thickness
[Term]
id: INV:0000105
name: Final Fruit Temperature - Aqualab 4TE - Degrees Celsius
def: "Final fruit temperature in degrees Celsius using the Aqualab 4TE meter." []
synonym: "FrtTempFin_Aqua_degC" EXACT []
namespace: INV
relationship: variable_of INV:0000027 ! Final Fruit Temperature
[Term]
id: INV:0000106
name: Final Fruit Temperature - WP4C - Degrees Celsius
def: "Final fruit temperature in degrees Celsius using the WP4C Dewpoint PotentiaMeter." []
synonym: "FrtTempFin_WP4C_degC" EXACT []
namespace: INV
relationship: variable_of INV:0000027 ! Final Fruit Temperature
[Term]
id: INV:0000107
name: Fresh Fruit Weight - Measurement - grams
def: "Weight of all fruit in sample in grams." []
synonym: "FrshFrtWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000028 ! Fresh Fruit Weight
[Term]
id: INV:0000108
name: Fresh Fruit Weight - Measurement - kilograms
def: "Weight of all fruit in sample in kilograms." []
synonym: "FrshFrtWt_kg" EXACT []
namespace: INV
relationship: variable_of INV:0000028 ! Fresh Fruit Weight
[Term]
id: INV:0000109
name: Fresh Leaf Weight - Measurement - grams
def: "Fresh leaf sample weight in grams." []
synonym: "FrshLfWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000029 ! Fresh Leaf Weight
[Term]
id: INV:0000110
name: Fresh Seed Weight - Measurement - grams
def: "Fresh seed sample weight in grams." []
synonym: "FrshSdWt_g" EXACT []
namespace: INV
relationship: variable_of INV:0000030 ! Fresh Seed Weight
[Term]
id: INV:0000111
name: Fruit Area - Area of Convex Hull of Fruit from Cut Side Down Image - mm^2
def: "Fruit is cut in half and imaged cut side down. A convex hull is fitted on fruit and area is measured in mm2" []
synonym: "FrtArea_CutDnCvxHul_mm2" EXACT []
namespace: INV
relationship: variable_of INV:0000031 ! Fruit Area
[Term]
id: INV:0000112
name: Fruit Area - Area of Convex Hull of Fruit from Cut Side Up Image - mm^2
def: "Fruit is cut in half and imaged cut side up. A convex hull is fitted on fruit and area is measured in mm2" []
synonym: "FrtArea_CutUpCvxHul_mm2" EXACT []
namespace: INV
relationship: variable_of INV:0000031 ! Fruit Area
[Term]
id: INV:0000113
name: Fruit Area - From Cut Side Down Image - mm^2
def: "Fruit is cut in half and imaged cut side down and area of entire surface is measured in mm2" []
synonym: "FrtArea_CutDn_mm2" EXACT []
namespace: INV
relationship: variable_of INV:0000031 ! Fruit Area
[Term]
id: INV:0000114
name: Fruit Area - From Cut Side Up Image - mm^2
def: "Fruit is cut in half and imaged cut side up and area of entire surface is measured in mm2" []
synonym: "FrtArea_CutUp_mm2" EXACT []
namespace: INV
relationship: variable_of INV:0000031 ! Fruit Area
[Term]
id: INV:0000115
name: Fruit Collection Date - YYYY-MM-DD
def: "Date fruit sample was collected." []
synonym: "FrtClctDate_Mst_ymd" EXACT []
namespace: INV
relationship: variable_of INV:0000032 ! Fruit Collection Date
[Term]
id: INV:0000116
name: Fruit Diameter - Ellipse Major Axis from Cut Side Down Fruit Image - millimeters
def: "Fruit is cut in half and imaged cut side down. An ellipse is fitted to fruit and the length of the major axis of ellipse is measured in mm." []
synonym: "FrtDia_CutDnElpsMaj_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000117
name: Fruit Diameter - Ellipse Major Axis from Cut Side Up Fruit Image- millimeters
def: "Fruit is cut in half and imaged cut side up. An ellipse is fitted to fruit and the length of the major axis of ellipse is measured in mm" []
synonym: "FrtDia_CutUpElpsMaj_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000118
name: Fruit Diameter - Ellipse Major Axis from Side 1 of Whole Fruit Imaged with Poles Parallel - millimeters
def: "Whole fruit is imaged on a single side (side 1) with poles oriented parallel to background surface. An ellipse is fitted to fruit and the length of the major axis of ellipse is measured in mm" []
synonym: "FrtDia_WVElpsMajS1_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000119
name: Fruit Diameter - Ellipse Major Axis from Side 1 of Whole Fruit Imaged with Poles Perpendicular - millimeters
def: "Whole fruit is imaged on a single side (side 1) with poles oriented perpendicular to background surface. An ellipse is fitted to fruit and the length of the major axis of ellipse is measured in mm" []
synonym: "FrtDia_WHElpsMajS1_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000120
name: Fruit Diameter - Ellipse Major Axis from Side 2 of Whole Fruit Imaged with Poles Parallel - millimeters
def: "Whole fruit is imaged on side 2 (180 degree rotation from side 1) with poles oriented parallel to background surface. An ellipse is fitted to fruit and the length of the major axis of ellipse is measured in mm" []
synonym: "FrtDia_WVElpsMajS2_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000121
name: Fruit Diameter - Ellipse Major Axis from Side 2 of Whole Fruit Imaged with Poles Perpendicular - millimeters
def: "Whole fruit is imaged on side 2 (180 degree rotation from side 1) with poles oriented perpendicular to background surface. An ellipse is fitted to fruit and the length of the major axis of ellipse is measured in mm" []
synonym: "FrtDia_WHElpsMajS2_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000122
name: Fruit Diameter - Ellipse Minor Axis from Cut Side Down Fruit Image - millimeters
def: "Fruit is cut in half and imaged cut side down. An ellipse is fitted to fruit and the length of the minor axis of ellipse is measured in mm" []
synonym: "FrtDia_CutDnElpsMin_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000123
name: Fruit Diameter - Ellipse Minor Axis from Cut Side Up Fruit Image - millimeters
def: "Fruit is cut in half and imaged cut side up. An ellipse is fitted to fruit and the length of the minor axis of ellipse is measured in mm" []
synonym: "FrtDia_CutUpElpsMin_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000124
name: Fruit Diameter - Ellipse Minor Axis from Side 1 of Whole Fruit Imaged with Poles Parallel - millimeters
def: "Whole fruit is imaged on a single side (side 1) with oriented parallel to background surface. An ellipse is fitted to fruit and the length of the minor axis of ellipse is measured in mm" []
synonym: "FrtDia_WVElpsMinS1_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000125
name: Fruit Diameter - Ellipse Minor Axis from Side 1 of Whole Fruit Imaged with Poles Perpendicular - millimeters
def: "Whole fruit is imaged on a single side (side 1) with poles oriented perpendicular to background surface. An ellipse is fitted to fruit and the length of the minor axis of ellipse is measured in mm" []
synonym: "FrtDia_WHElpsMinS1_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000126
name: Fruit Diameter - Ellipse Minor Axis from Side 2 of Whole Fruit Imaged with Poles Parallel - millimeters
def: "Whole fruit is imaged on side 2 (180 degree rotation from side 1) with poles oriented parallel to background surface. An ellipse is fitted to fruit and the length of the minor axis of ellipse is measured in mm" []
synonym: "FrtDia_WVElpsMinS2_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000127
name: Fruit Diameter - Ellipse Minor Axis from Side 2 of Whole Fruit Imaged with Poles Perpendicular - millimeters
def: "Whole fruit is imaged on side 2 (180 degree rotation from side 1) with poles oriented perpendicular to background surface. An ellipse is fitted to fruit and the length of the minor axis of ellipse is measured in mm" []
synonym: "FrtDia_WHElpsMinS2_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000128
name: Fruit Diameter - Height from Cut Side Down Fruit Image - millimeters
def: "Fruit is cut in half and imaged cut side down. The verticle axis (height) is measured from furthest point on top and furthest point on bottom of fruit in mm" []
synonym: "FrtDia_CutDnHeight_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000129
name: Fruit Diameter - Height from Cut Side Up Fruit Image - millimeters
def: "Fruit is cut in half and imaged cut side up. The verticle axis (height) is measured from furthest point on top and furthest point on bottom of fruit in mm" []
synonym: "FrtDia_CutUpHeight_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000130
name: Fruit Diameter - Height from Side 1 of Whole Fruit Imaged with Poles Parallel - millimeters
def: "Whole fruit is imaged on a single side (side 1) with poles oriented parallel to background surface. The verticle axis (height) is measured from furthest point on top and furthest point on bottom of fruit in mm" []
synonym: "FrtDia_WVHeightS1_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter
[Term]
id: INV:0000131
name: Fruit Diameter - Height from Side 1 of Whole Fruit Imaged with Poles Perpendicular - millimeters
def: "Whole fruit is imaged on a single side (side 1) with poles oriented perpendicular to background surface. The verticle axis (height) is measured from furthest point on top and furthest point on bottom of fruit in mm" []
synonym: "FrtDia_WHHeightS1_mm" EXACT []
namespace: INV
relationship: variable_of INV:0000033 ! Fruit Diameter