-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathData_fruitsVegs.csv
We can't make this file beautiful and searchable because it's too large.
4277 lines (4258 loc) · 887 KB
/
Data_fruitsVegs.csv
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
"m49_code","country","region","cpc_code","commodity","year","loss_percentage","loss_percentage_original","loss_quantity","activity","food_supply_stage","treatment","cause_of_loss","sample_size","method_data_collection","reference","url","notes"
"116","Cambodia","Kandal Province, and wholesalers and retailers in wet markets in the capital of Phnom Penh, about 35 km apar","01234","Tomatoes",2013,3.5,"3.5",,,"Trader",,"Physical Damage Rotting/Decay","onsite interviews were conducted involving 30 farmers, 30 collectors, 30 wholesalers from the two biggest wholesale markets (Deum Kor and Neak Meas markets) in Phnom Penh, and 35 wet market retailers for the traditional chain, and 30 farmers and 30 collectors from Kandal and Kampong Speu provinces including representatives from the development organization, PeriUrban Agricultural Center, as distribution or marketing arm serving the Lucky Supermarket chain, and supermarket managers for the modern chain",,"Buntong, B., 2Srilaong, V., 3Wasusri, T., 2Kanlayanarat, S. and 4*Acedo, A.L. Jr.","http://www.ifrj.upm.edu.my/20%20(01)%202013/31%20IFRJ%2020%20(01)%202013%20Acedo%20(162).pdf",
"116","Cambodia","Kandal Province, and wholesalers and retailers in wet markets in the capital of Phnom Penh, about 35 km apar","01234","Tomatoes",2013,12.5,"12.5",,,"Farm",,"Immaturity Insect Damage Rotting/Decay","onsite interviews were conducted involving 30 farmers, 30 collectors, 30 wholesalers from the two biggest wholesale markets (Deum Kor and Neak Meas markets) in Phnom Penh, and 35 wet market retailers for the traditional chain, and 30 farmers and 30 collectors from Kandal and Kampong Speu provinces including representatives from the development organization, PeriUrban Agricultural Center, as distribution or marketing arm serving the Lucky Supermarket chain, and supermarket managers for the modern chain",,"Buntong, B., 2Srilaong, V., 3Wasusri, T., 2Kanlayanarat, S. and 4*Acedo, A.L. Jr.","http://www.ifrj.upm.edu.my/20%20(01)%202013/31%20IFRJ%2020%20(01)%202013%20Acedo%20(162).pdf",
"116","Cambodia","Kandal Province, and wholesalers and retailers in wet markets in the capital of Phnom Penh, about 35 km apar","01234","Tomatoes",2013,3.5,"3.5",,,"Retail",,"Rotting/Decay Over-Ripening","onsite interviews were conducted involving 30 farmers, 30 collectors, 30 wholesalers from the two biggest wholesale markets (Deum Kor and Neak Meas markets) in Phnom Penh, and 35 wet market retailers for the traditional chain, and 30 farmers and 30 collectors from Kandal and Kampong Speu provinces including representatives from the development organization, PeriUrban Agricultural Center, as distribution or marketing arm serving the Lucky Supermarket chain, and supermarket managers for the modern chain",,"Buntong, B., 2Srilaong, V., 3Wasusri, T., 2Kanlayanarat, S. and 4*Acedo, A.L. Jr.","http://www.ifrj.upm.edu.my/20%20(01)%202013/31%20IFRJ%2020%20(01)%202013%20Acedo%20(162).pdf",
"116","Cambodia","Kandal Province, and wholesalers and retailers in wet markets in the capital of Phnom Penh, about 35 km apar","01234","Tomatoes",2013,3.5,"3.5",,,"Wholesale",,"Physical Damage Rotting/Decay","onsite interviews were conducted involving 30 farmers, 30 collectors, 30 wholesalers from the two biggest wholesale markets (Deum Kor and Neak Meas markets) in Phnom Penh, and 35 wet market retailers for the traditional chain, and 30 farmers and 30 collectors from Kandal and Kampong Speu provinces including representatives from the development organization, PeriUrban Agricultural Center, as distribution or marketing arm serving the Lucky Supermarket chain, and supermarket managers for the modern chain",,"Buntong, B., 2Srilaong, V., 3Wasusri, T., 2Kanlayanarat, S. and 4*Acedo, A.L. Jr.","http://www.ifrj.upm.edu.my/20%20(01)%202013/31%20IFRJ%2020%20(01)%202013%20Acedo%20(162).pdf",
"116","Cambodia",,"01213","Cauliflowers and broccoli",2008,16.4,"16.4",,,"Whole supply chain",,"","588","Survey","Weinberger et al 2008","http://ucce.ucdavis.edu/files/datastore/234-1479.pdf","Sourced from Weinberger et al 2008"
"116","Cambodia",,"01232","Cucumbers and gherkins",2008,19.7,"19.7",,,"Whole supply chain",,"","588","Survey","Weinberger et al 2008","http://ucce.ucdavis.edu/files/datastore/234-1479.pdf","Sourced from Weinberger et al 2008"
"116","Cambodia",,"01234","Tomatoes",2008,24.6,"24.6",,,"Whole supply chain",,"","588","Survey","Weinberger et al 2008","http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",""
"116","Cambodia",,"01241.90","Other beans, green",2008,21.8,"21.8",,,"Whole supply chain",,"","588","Survey","Weinberger et al 2008","http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",""
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,4,"4%","37kg/MT","Farm","Farm","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,5,"5%","52kg/MT","Retailing","Retail","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,5,"5%","52kg/MT","Retailing","Retail","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,4,"4%","44kg/MT","Wholesale","Wholesale","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,6,"6%","44kg/MT","Wholesale","Wholesale","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,3,"3%","37kg/MT","Farm","Farm","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,3,"3%","31kg/MT","Collection","Trader","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,5,"5%","52kg/MT","Retailing","Retail","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,3,"3%","31kg/MT","Collection","Trader","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,4,"4%","37kg/MT","Farm","Farm","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,4,"4%","44kg/MT","Wholesale","Wholesale","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2006,3,"3%","31kg/MT","Collection","Trader","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,9,"9%","63kg/MT","Farm","Farm","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,5,"5%","48kg/MT","Wholesale","Wholesale","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,4,"4%","44kg/MT","Retailing","Retail","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,4,"4%","42kg/MT","Collection","Trader","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,4,"4%","44kg/MT","Retailing","Retail","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,5,"5%","63kg/MT","Farm","Farm","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,4,"4%","48kg/MT","Wholesale","Wholesale","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,4,"4%","42kg/MT","Collection","Trader","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,4,"4%","48kg/MT","Wholesale","Wholesale","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,5,"5%","44kg/MT","Retailing","Retail","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,5,"5%","42kg/MT","Collection","Trader","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01232","Cucumbers and gherkins",2006,5,"5%","63kg/MT","Farm","Farm","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,7,"7%","67kg/MT","Wholesale","Wholesale","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,6,"6%","105.0kg","Farm","Farm","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,2,"2%","16kg/MT","Collection","Trader","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,1,"1%","16kg/MT","Collection","Trader","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,6,"6%","105.0kg","Farm","Farm","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,13,"13%","105kg/MT","Farm","Farm","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,2,"2%","16kg/MT","Collection","Trader","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,5,"5%","105.0kg","Retailing","Retail","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,8,"8%","105.0kg","Wholesale","Wholesale","Dry season 1 ( November to January)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,6,"6%","58kg/MT","Retailing","Retail","Wet season ( May to October)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,5,"5%","58kg/MT","Retailing","Retail","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01234","Tomatoes",2006,4,"4%","67kg/MT","Wholesale","Wholesale","Dry season 2 ( January to April)",,,"Survey","Genova 2 et al (2006)",,
"116","Cambodia",,"01213","Cauliflowers and broccoli",2005,16,"16","164",,"Farm",,"Hot Weather During Harvest And Post Packaging","50","Survey",,"http://www.measurepostharvestlosses.com/sites/default/files/phlveg.pdf",""
"116","Cambodia",,"01232","Cucumbers and gherkins",2005,19,"19","197",,"Farm",,"Hot Weather During Harvest And Post Packaging","50","Survey",,"http://www.measurepostharvestlosses.com/sites/default/files/phlveg.pdf",""
"116","Cambodia",,"01234","Tomatoes",2005,24.5,"24.5","246",,"Post-harvest",,"Hot Weather During Harvest And Post Packaging","50","Survey","Genova II et al","http://www.measurepostharvestlosses.com/sites/default/files/phlveg.pdf",""
"116","Cambodia",,"01241.90","Other beans, green",2005,22,"22","218",,"Post-harvest",,"Hot Weather During Harvest And Post Packaging","50","Survey",,"http://www.measurepostharvestlosses.com/sites/default/files/phlveg.pdf",""
"120","Cameroon",,"01313","Plantains and cooking bananas",2013,35,"30-40",,,"Whole supply chain",,"rough handling, unprotected storage conditions, and poor transportation",,"No Data Collection Specified","Cauthen et al. (2013)","http://www.mod.gov.tr/Lists/RecentPublications/Attachments/120/Reducing%20Postharvest%20Losses%20in%20the%20OIC%20Member%20Countries.pdf",
"143","Central Asia",,"01359.90","Other fruits, n.e.c.",2011,17,"17%",,"Farm","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"143","Central Asia",,"01359.90","Other fruits, n.e.c.",2011,20,"20%",,"Packaging, Processing","Processing",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"143","Central Asia",,"01359.90","Other fruits, n.e.c.",2011,10,"10%",,"Handling, Storage","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"143","Central Asia",,"01359.90","Other fruits, n.e.c.",2011,15,"15%",,"Distribution","Wholesale",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"143","Central Asia",,"01359.90","Other fruits, n.e.c.",2011,12,"12%",,"Consumption","Households",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"144","Sri Lanka",,"01212","Cabbages",2002,13.23,"13.23%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01212","Cabbages",2002,13.11,"13.11%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01212","Cabbages",2002,40.87,"40.87%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01212","Cabbages",2002,6.17,"6.17%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01212","Cabbages",2002,8.36,"8.36%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01233","Eggplants (aubergines)",2002,34.76,"34.76%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01233","Eggplants (aubergines)",2002,10.99,"10.99%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01233","Eggplants (aubergines)",2002,2.22,"2.22%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01233","Eggplants (aubergines)",2002,10.75,"10.75%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01233","Eggplants (aubergines)",2002,8.96,"8.96%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01234","Tomatoes",2002,10.25,"10.25%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01234","Tomatoes",2002,7.25,"7.25%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01234","Tomatoes",2002,4.59,"4.59%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01234","Tomatoes",2002,35.42,"35.42%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01234","Tomatoes",2002,13.33,"13.33%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01235","Pumpkins, squash and gourds",2002,5.13,"5.13%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01235","Pumpkins, squash and gourds",2002,10.25,"10.25%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01235","Pumpkins, squash and gourds",2002,5.13,"5.13%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01235","Pumpkins, squash and gourds",2002,1.86,"1.86%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01235","Pumpkins, squash and gourds",2002,22.37,"22.37%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01239.01","Okra",2002,4.55,"4.55%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01239.01","Okra",2002,4.64,"4.64%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01239.01","Okra",2002,16.02,"16.02%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01239.01","Okra",2002,2.38,"2.38%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01239.01","Okra",2002,4.5,"4.5%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01251","Carrots and turnips",2002,28.4,"28.40%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01251","Carrots and turnips",2002,2.83,"2.83%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01251","Carrots and turnips",2002,9.32,"9.32%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01251","Carrots and turnips",2002,9.78,"9.78%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01254","Leeks and other alliaceous vegetables",2002,40.88,"40.88%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01254","Leeks and other alliaceous vegetables",2002,9.77,"9.77%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01254","Leeks and other alliaceous vegetables",2002,14.47,"14.47%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01254","Leeks and other alliaceous vegetables",2002,11.44,"11.44%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01254","Leeks and other alliaceous vegetables",2002,5.2,"5.2%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01312","Bananas",2002,7.58,"7.58%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01312","Bananas",2002,14.13,"14.13%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01312","Bananas",2002,3.25,"3.25%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01312","Bananas",2002,5.27,"5.27%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01312","Bananas",2002,30.23,"30.23%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01317","Papayas",2002,5.78,"5.78%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01317","Papayas",2002,10.12,"10.12%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01317","Papayas",2002,15.28,"15.28%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01317","Papayas",2002,36.12,"36.12%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01317","Papayas",2002,4.95,"4.95%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01318","Pineapples",2002,12.53,"12.53%",,"Retailing","Retail",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01318","Pineapples",2002,8.53,"8.53%",,"Collection","Trader",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01318","Pineapples",2002,7.21,"7.21%",,,"Farm",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01318","Pineapples",2002,2.89,"2.89%",,"Wholesale","Wholesale",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"144","Sri Lanka",,"01318","Pineapples",2002,31.16,"31.16%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"145","Western Asia",,"01359.90","Other fruits, n.e.c.",2011,12,"12%",,"Consumption","Households",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"145","Western Asia",,"01359.90","Other fruits, n.e.c.",2011,17,"17%",,"Farm","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"145","Western Asia",,"01359.90","Other fruits, n.e.c.",2011,20,"20%",,"Packaging, Processing","Processing",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"145","Western Asia",,"01359.90","Other fruits, n.e.c.",2011,10,"10%",,"Handling, Storage","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"145","Western Asia",,"01359.90","Other fruits, n.e.c.",2011,15,"15%",,"Distribution","Wholesale",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"15","Northern Africa",,"01359.90","Other fruits, n.e.c.",2011,10,"10%",,"Handling, Storage","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"15","Northern Africa",,"01359.90","Other fruits, n.e.c.",2011,12,"12%",,"Consumption","Households",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"15","Northern Africa",,"01359.90","Other fruits, n.e.c.",2011,15,"15%",,"Distribution","Wholesale",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"15","Northern Africa",,"01359.90","Other fruits, n.e.c.",2011,20,"20%",,"Packaging, Processing","Processing",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"15","Northern Africa",,"01359.90","Other fruits, n.e.c.",2011,17,"17%",,"Farm","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"152","Chile","North Patagonia Region","01342.01","Pears",2013,13,"13",,,"Farm",,"Insect Damage","5500 (individual pears)","No Data Collection Specified","M.C. Sosa M.C. Lutz N.C. Lefort and A. Sanchez","https://www.researchgate.net/publication/309816211_Postharvest_losses_by_complex_of_Phytophthora_sp_and_Botrytis_cinerea_in_long_storage_pear_fruit_in_the_North_Patagonia_Argentina",
"156","China",,"01359.90","Other fruits, n.e.c.",2014,10,"10%",,"Distribution","Wholesale",,"","","Survey","(2016), Food Losses and Food Waste in China",," Reference has been generated automatically"
"156","China",,"01359.90","Other fruits, n.e.c.",2014,15,"15%",,"Storage","Storage",,"","","Survey","(2016), Food Losses and Food Waste in China",," Reference has been generated automatically"
"156","China",,"01359.90","Other fruits, n.e.c.",2012,12.5,"10- 15%",,"Storage","Storage",,"","","Modelled Estimates","(2016), Food Losses and Food Waste in China",," Reference has been generated automatically"
"156","China",,"01359.90","Other fruits, n.e.c.",2007,12.5,"10.0-15","14 Million ton",,"Storage",,,,"Expert Opinion",,"http://www.oecd.org/site/agrfcn/food%20losses%20and%20waste%20in%20china_gang%20liu.pdf",
"156","China","Xiasha Town","01212","Cabbages",2001,6.15,"0-12.3",,,"Wholesale",,"mechanical and disease damage loss (peeled off)",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Shandong Province","01212","Cabbages",2001,17.2,"17.2",,"Marketing, Wholesale","Wholesale",,"disease loss","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Fujian Province","01212","Cabbages",2001,3.15,"2-4.3",,,"Retail",,"mechanical and disease damage loss (peeled off)",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Fujian Province","01212","Cabbages",2001,22.2,"22.2",,,"Wholesale",,"Mechanical Damage",,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Fujian Province","01212","Cabbages",2001,9.3,"9.3",,"Collection, Marketing","Trader",,"mechanical and disease damage loss (peeled off)","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,5,"5",,"Marketing, Wholesale","Wholesale",,"","","Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Cixi county","01212","Cabbages",2001,5.7,"5.7",,"Harvesting, Sorting","Harvest",,"","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Cixi county","01212","Cabbages",2001,2.75,".8-4.7",,,"Retail",,"mechanical and disease damage loss (peeled off)",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Shandong Province","01212","Cabbages",2001,5.5,"5.5",,,"Retail",,"(Md=4.7%, W=0.8%)",,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Xiasha town","01212","Cabbages",2001,8.3,"8.3",,,"Harvest",,,,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Shandong Province","01212","Cabbages",2001,12.3,"12.3",,,"Wholesale",,,,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Xiasha Town","01212","Cabbages",2001,2.75,".8-4.7",,,"Retail",,"mechanical and disease damage loss (peeled off)",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01212","Cabbages",2001,5,"5",,,"Storage",,,,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01212","Cabbages",2001,2.5,"2.0-3",,,"Storage",,"Pre-Cooling And Packaging",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,3.5,"3.0-4",,,"Transport",,,,"Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Fujian Province","01212","Cabbages",2001,2,"2",,,"Retail",,"Wilting",,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Shandong Province","01212","Cabbages",2001,2.75,".8-4.7",,,"Retail",,"disease loss",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Fujian Province","01212","Cabbages",2001,12.7,"3.2-22.2",,,"Wholesale",,"mechanical and disease damage loss (peeled off)",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,25,"20-30",,,"Storage",,"Energy consumption and abscission",,"Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Jiangan district","01212","Cabbages",2001,4.9,"2.4-7.4",,,"Retail",,"mechanical damage.leaf yellowing. sound leaves trimmed by accident. pest damage",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Fujian Province","01212","Cabbages",2001,4.3,"4.3",,,"Retail",,"Mechanical Damage",,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Fujian Province","01212","Cabbages",2001,3.2,"3.2",,,"Wholesale",,"Wilting",,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,2.5,"2.0-3",,,"Farm",,"Spreading out in sunlight",,"Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,2.5,"2.0-3",,"Drying","Farm","Cabbage for storage","Pre-cooling and
packaging","","Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,5,"5",,"Harvesting","Harvest","Harvesting for export","","","Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,42.5,"40-45",,"Storage","Storage",,"","","Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Xiasha town","01212","Cabbages",2001,4.9,"2.4-7.4",,,"Retail",,"mechanical damage.leaf yellowing. sound leaves trimmed by accident. pest damage",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,5,"5",,"Harvesting","Harvest","Harvesting for fresh market","","","Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01212","Cabbages",2001,2.5,"2.0-3",,,"Processing",,"Spreading Out In Sunlight",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Cixi county","01212","Cabbages",2001,12.5,"12.5",,"Collection, Marketing","Wholesale",,"mechanical and disease damage loss (peeled off)","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Jiangan district","01212","Cabbages",2001,7.7,"7.7",,,"Harvest",,,,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01212","Cabbages",2001,2.5,"2.0-3",,,"Retail",,"Market",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01212","Cabbages",2001,1.5,"1.0-2",,"Farm","Farm","Trimming","Trimming","","Expert Opinion","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Xiasha Town","01212","Cabbages",2001,5.53,"5.53",,,"Retail",,"(Md=4.7%, W=0.8%)",,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Xiasha Town","01212","Cabbages",2001,11.1,"11.1",,"Collection, Marketing","Wholesale",,"mechanical and disease damage loss (peeled off)","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Jiangan district","01212","Cabbages",2001,5.75,"3.2-8.3",,,"Retail",,"mechanical damage.leaf yellowing. sound leaves trimmed by accident. pest damage",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Fujian Province","01212","Cabbages",2001,6,"6",,"Harvesting, Sorting","Harvest",,"","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Shandong Province","01212","Cabbages",2001,32.7,"32.7",,,"Storage",,"Disease And Rot",,"No Data Collection Specified","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Xiasha Town","01212","Cabbages",2001,5,"5",,"Harvesting","Harvest","Harvesting for storage","","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,47.5,"45-50",,"Collection","Trader","Trimming","Trimming &collection","","Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,2.5,"2.0-3",,,"Wholesale",,,,"Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01212","Cabbages",2001,12.5,"10.0-15",,"Grading, Sorting","Farm",,"Triming Of Leaves, Sold Fresh",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing","01212","Cabbages",2001,4,"3.0-5",,"Farm","Farm","Trimming","","","Expert Opinion","Shufang Zheng, Wu Li, Lipu Gao, and Ping Wu*","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01212","Cabbages",2001,37.5,"30-45",,"Grading, Sorting","Processing",,"Trimming Before Pre-Cooling Caused Losses",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Jiangan district","01212","Cabbages",2001,5.7,"5.7",,"Harvesting, Sorting","Harvest",,"","","Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",""
"156","China","Cixi county","01212","Cabbages",2001,15.3,"15.3",,,"Wholesale",,"mechanical and disease damage loss (peeled off)",,"Expert Opinion","Wang Xiangyang* and John S. Bagshaw","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01213","Cauliflowers and broccoli",2001,6,"5.0-7",,,"Processing",,"Broccoli For Export Was Handled With Care So The Water Loss And Mechanical Damage Were Very Low",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01213","Cauliflowers and broccoli",2001,0.5,"0.5",,,"Wholesale",,"Produce For Domestic Market, On The Other Hand, Was Subject To Large Losses Because Of Bad Treatment And Handling",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01213","Cauliflowers and broccoli",2001,1,"1",,,"Export",,"Broccoli For Export Was Handled With Care So The Water Loss And Mechanical Damage Were Very Low",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01213","Cauliflowers and broccoli",2001,12.5,"10.0-15",,,"Processing",,"Produce For Domestic Market, On The Other Hand, Was Subject To Large Losses Because Of Bad Treatment And Handling",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01213","Cauliflowers and broccoli",2001,3.5,"2.0-5",,,"Retail",,"Produce For Domestic Market, On The Other Hand, Was Subject To Large Losses Because Of Bad Treatment And Handling",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01213","Cauliflowers and broccoli",2001,2,"2",,,"Transport",,"Produce For Domestic Market, On The Other Hand, Was Subject To Large Losses Because Of Bad Treatment And Handling",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China",,"01252","Green garlic",2001,5,"5",,,"Storage",,,,"No Data Collection Specified",,"http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01253.01","Onions and shallots, green",2001,0.5,"0.5",,,"Wholesale",,"Dropped, Tossed, And Trodden On On Top Of Loads), The Crop Is Relatively Resistant To Mechanical Damage. Most Losses Occur During Transportation, Storage Over Winter, And At The Wholesale And Retail Markets",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01253.01","Onions and shallots, green",2001,0.75,".5-1",,,"Transport",,"Dropped, Tossed, And Trodden On On Top Of Loads), The Crop Is Relatively Resistant To Mechanical Damage. Most Losses Occur During Transportation, Storage Over Winter, And At The Wholesale And Retail Markets",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01253.01","Onions and shallots, green",2001,5,"5",,,"Transport",,,,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01253.01","Onions and shallots, green",2001,0.5,"0.5",,,"Retail",,"Dropped, Tossed, And Trodden On On Top Of Loads), The Crop Is Relatively Resistant To Mechanical Damage. Most Losses Occur During Transportation, Storage Over Winter, And At The Wholesale And Retail Markets",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01253.01","Onions and shallots, green",2001,5,"5",,,"Wholesale",,,,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01253.01","Onions and shallots, green",2001,2.5,"2.0-3",,,"Retail",,,,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China","Daxing, Tongxian, and Yanqing counties, which are satellite towns of Beijing, and in Jixian County of Hebei Province, which is a suburb very close to Beijing","01253.01","Onions and shallots, green",2001,50,"45-55",,,"Storage",,"Dropped, Tossed, And Trodden On On Top Of Loads), The Crop Is Relatively Resistant To Mechanical Damage. Most Losses Occur During Transportation, Storage Over Winter, And At The Wholesale And Retail Markets",,"No Data Collection Specified","Shufang Zheng Wu Li Lipu Gao and Ping Wu","http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"156","China",,"01341","Apples",2001,4,"4",,,"Storage",,,,"No Data Collection Specified",,"http://aciar.gov.au/files/node/2249/p105chapter1.pdf",
"170","Colombia",,"01317","Papayas",2016,17.67,"17.67",,,"Harvest",,,,"No Data Collection Specified",,,
"170","Colombia",,"01317","Papayas",2016,3,"3",,,"Retail",,,,"No Data Collection Specified",,,
"170","Colombia",,"01317","Papayas",2016,3.1,"3.1",,,"Storage",,"Conditioning",,"No Data Collection Specified",,,
"188","Costa Rica",,"01234","Tomatoes",2015,2,"1 - 3%",,"Wholesale","Wholesale",,,,"Survey","FAO (2015)",,
"188","Costa Rica",,"01234","Tomatoes",2015,10,"10%",,"Farm","Farm",,,,"Survey","FAO (2015)",,
"188","Costa Rica",,"01234","Tomatoes",2015,7.5,"6 - 9%",,"Retailing","Retail",,,,"Survey","FAO (2015)",,
"188","Costa Rica",,"01316","Mangoes, guavas and mangosteens",1994,49.25,"14.1-84.4",,,"Wholesale",,"(dry season)- (rainy season) - due to
Anthracnose","Sampling at wholesale market","Literature Review","Arauz et al, 1994","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"192","Cuba",,"01212","Cabbages",2011,1.64,"1.64%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01212","Cabbages",2011,0.47,"0.47%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01215","Spinach",2011,0.98,"0.98%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01229","Cantaloupes and other melons",2011,0.15,"0.15%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01232","Cucumbers and gherkins",2011,0.95,"0.95%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01234","Tomatoes",2011,0.87,"0.87%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01234","Tomatoes",2011,7.7,"7.7%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01251","Carrots and turnips",2011,5.55,"5.55%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01290.90","Other vegetables, fresh n.e.c.",2011,1.39,"1.39%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01311","Avocados",2011,1.93,"1.93%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01312","Bananas",2011,8.69,"8.69%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01316","Mangoes, guavas and mangosteens",2011,2.89,"2.89%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01317","Papayas",2011,2.59,"2.59%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"192","Cuba",,"01318","Pineapples",2011,3.15,"3.15%",,"Processing","Processing",,,,"Survey","FAO (2015)",,
"202","Sub-Saharan Africa",,"01359.90","Other fruits, n.e.c.",2011,25,"25%",,"Packaging, Processing","Processing",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"202","Sub-Saharan Africa",,"01359.90","Other fruits, n.e.c.",2011,17,"17%",,"Distribution","Wholesale",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"202","Sub-Saharan Africa",,"01359.90","Other fruits, n.e.c.",2011,5,"5%",,"Consumption","Households",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"202","Sub-Saharan Africa",,"01359.90","Other fruits, n.e.c.",2011,9,"9%",,"Handling, Storage","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"202","Sub-Saharan Africa",,"01359.90","Other fruits, n.e.c.",2011,10,"10%",,"Farm","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"204","Benin",,"01318","Pineapples",2014,50,"50",,,"Export",,"Rejected because it does not meet European import criteria",,"No Data Collection Specified",,"http://www.mod.gov.tr/Lists/RecentPublications/Attachments/120/Reducing%20Postharvest%20Losses%20in%20the%20OIC%20Member%20Countries.pdf",
"204","Benin",,"01234","Tomatoes",2010,27.2,"26.4-28",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2010,26,"23-29",,,"Farm",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01253.01","Onions and shallots, green",2010,43.75,"15-72.5",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01253.01","Onions and shallots, green",2010,28,"6.0-50",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01316","Mangoes, guavas and mangosteens",2010,45.4,"20.8-70",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01316","Mangoes, guavas and mangosteens",2010,49.5,"22.5-76.5",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01318","Pineapples",2010,13.9,"5-22.8",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01318","Pineapples",2010,22,"22",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2010,30.95,"10.9-51",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2010,53,"53",,,"Farm",,,,,"Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"204","Benin",,"01234","Tomatoes",2010,26.2,"21.2-31.2",,,"Wholesale",,,,,"Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"204","Benin",,"01323","Oranges",2010,26.3,"11.6-41",,,"Wholesale",,,,"No Data Collection Specified","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"204","Benin",,"01323","Oranges",2010,10,"5.0-15",,,"Farm",,,,"Case Study","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"204","Benin",,"01234","Tomatoes",2009,16.35,"9.7 - 23%",,"Sorting","Farm",,"lack of pre-sorting to remove decayed produce before packing promoted spread of fungal and bacterial diseases and insect pests during handling",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"204","Benin",,"01323","Oranges",2009,35.95,"30.8 - 41.1%",,"Retailing","Retail","Mean pulp temperatures for oranges were 29.8±2.7°C","Decay due to high temperature",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"204","Benin",,"01323","Oranges",2009,19.3,"13.1 - 25.5%",,"Wholesale","Wholesale","Mean pulp temperatures for oranges were 29.8±2.7°C","Decay due to high temperature",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"204","Benin",,"01234","Tomatoes",2009,24,"24",,"Grading, Sorting","Farm",,"Decay","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,29,"29",,"Grading, Sorting","Farm",,"Mechanical Damage","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,31.2,"31.2",,,"Wholesale",,"Physical Losses","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,27.5,"27.5",,"Grading, Sorting","Wholesale",,"Mechanical Damage","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,26.4,"26.4",,,"Retail",,"Physical Losses","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,28,"28",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,27.5,"27.5",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,21.2,"21.2",,"Grading, Sorting","Wholesale",,"Decay","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01234","Tomatoes",2009,23,"23",,,"Farm",,"Physical Losses","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01316","Mangoes, guavas and mangosteens",2009,43.5,"17 - 70%",,,"Whole supply chain",,"","","Controlled Experiment","Vayssieres Korie and Ayegnon","http://ucanr.edu/datastoreFiles/234-1847.pdf","Sourced from Vayssieres et al, 2008"
"204","Benin",,"01323","Oranges",2009,5,"5",,"Grading, Sorting","Farm",,"Decay","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,11.6,"11.6",,,"Wholesale",,"Physical Losses","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,51,"51",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,10,"10",,,"Farm",,"Physical Losses","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,41,"41",,"Grading, Sorting","Wholesale",,"Mechanical Damage","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,15,"15",,"Grading, Sorting","Farm",,"Mechanical Damage","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,16.4,"16.4",,"Grading, Sorting","Wholesale",,"Decay","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,10.9,"10.9",,,"Retail",,"Physical Losses","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin",,"01323","Oranges",2009,33,"33",,"Grading, Sorting","Retail",,"Decay","10, planning project","Case Study","IITA","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"204","Benin","Parakou (Borgou)","01316","Mangoes, guavas and mangosteens",2006,50,"50",,,"Farm",,"Measured In May; Due To Fruit Flies","3000 fruits","Controlled Experiment","Vayssieres Korie Coulibaly Temple and Boueyi","https://www.researchgate.net/publication/46103208_The_mango_tree_in_central_and_northern_Benin_damage_caused_by_fruit_flies_Diptera_Tephritidae_and_computation_of_economic_injury_level",
"204","Benin","Parakou (Borgou)","01316","Mangoes, guavas and mangosteens",2005,43.5,"17-70",,,"Farm",,"Higher Losses In July Due To Fruit Flies","7 000 fruits","Controlled Experiment","Vayssieres Korie Coulibaly Temple and Boueyi","https://www.researchgate.net/publication/46103208_The_mango_tree_in_central_and_northern_Benin_damage_caused_by_fruit_flies_Diptera_Tephritidae_and_computation_of_economic_injury_level",
"208","Denmark",,"01242","Peas, green",2017,5,"5%",,,"Harvest",,"Average /Frequency of producers/Frequency of producers who answered “Don’t know”
In field 14% 47% 36%
During harvesting 5% 44% 27%
During cleaning 2% 9% 30%
During husking 5% 5% 27%
During blanching and freezing 0% 3% 28%
During colour sorting 8% 5% 27%
During sale and reclaim 17% 5% 30%
Other* 14% 14% 22%","No. Of distributed questionnaires 252
No. Of answers 64
Response frequency 25%","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01242","Peas, green",2017,14,"14%",,,"Pre-harvest","Main reasons given: Higher sales/better prices, improved agronomy, e.g. new pesticides, better harvest techniques, not possible, better weather.","Average /Frequency of producers/Frequency of producers who answered “Don’t know”
In field 14% 47% 36%
During harvesting 5% 44% 27%
During cleaning 2% 9% 30%
During husking 5% 5% 27%
During blanching and freezing 0% 3% 28%
During colour sorting 8% 5% 27%
During sale and reclaim 17% 5% 30%
Other* 14% 14% 22%
Disease in field 5% 22% 23%
Damage from animals 20% 34% 19%
Weather conditions (rain, flooding, etc.) 38% 30% 19%
Technical problems related to cultivation method
(spray damage or similar)
5% 16% 22%
Damage during harvest and handling 51% 27% 25%
Other quality parameters 23% 8% 23%
Reclaims 0% 6% 22%
No sale or overproduction 35% 19% 23%
Other* 13% 11% 20%","No. Of distributed questionnaires 252
No. Of answers 64
Response frequency 25%","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01242","Peas, green",2017,5,"2-8%",,,"Processing",,"Average /Frequency of producers/Frequency of producers who answered “Don’t know”
In field 14% 47% 36%
During harvesting 5% 44% 27%
During cleaning 2% 9% 30%
During husking 5% 5% 27%
During blanching and freezing 0% 3% 28%
During colour sorting 8% 5% 27%
During sale and reclaim 17% 5% 30%
Other* 14% 14% 22%
Disease in field 5% 22% 23%
Damage from animals 20% 34% 19%
Weather conditions (rain, flooding, etc.) 38% 30% 19%
Technical problems related to cultivation method
(spray damage or similar)
5% 16% 22%
Damage during harvest and handling 51% 27% 25%
Other quality parameters 23% 8% 23%
Reclaims 0% 6% 22%
No sale or overproduction 35% 19% 23%
Other* 13% 11% 20%","No. Of distributed questionnaires 252
No. Of answers 64
Response frequency 25%","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01242","Peas, green",2017,17,"17%",,,"Wholesale",,"Average /Frequency of producers/Frequency of producers who answered “Don’t know”
In field 14% 47% 36%
During harvesting 5% 44% 27%
During cleaning 2% 9% 30%
During husking 5% 5% 27%
During blanching and freezing 0% 3% 28%
During colour sorting 8% 5% 27%
During sale and reclaim 17% 5% 30%
Other* 14% 14% 22%","No. Of distributed questionnaires 252
No. Of answers 64
Response frequency 25%","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01242","Peas, green",2017,18,"18%",,,"Farm","Main reasons given: Higher sales/better prices, improved agronomy, e.g. new pesticides, better harvest techniques, not possible, better weather.","Damage during
harvest and handling,
no
sale/overproduction,
weather conditions,
other quality
parameters and
damage from
animals are the main
reasons given.","No. Of distributed questionnaires 252
No. Of answers 64
Response frequency 25%","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01251","Carrots and turnips",2017,25,"25%",,,"Farm",,"Quality issues, pests, plant diseases, harvesting methods.Plant diseases, mould, germinated, injured 2 0 1 18%
Pests (insects, birds, etc.) 2 3 1 35%
Weather conditions 1 1 1 24%
Cultivation method and crop protection 1 0 1 12%
Harvest method 2 2 1 29%
Processing processes 1 0 0 6%
Wrong size/carrot shape 6 1 1 47%
Appearance (small spots, etc.) 2 3 1 35%
Other quality errors 1 0 1 12%
Surplus production 0 0 2 12%
Human error 1 0 0 6%
No buyers 1 0 0 6%
Not economically profitable 0 0 1 6%
Other reasons 0 0 0 0%","No. of distributed questionnaires 53
No. of answers 17
Response frequency 32%","Survey","FoodLossPrimaryProd.pdf",,"Pg 9;The questionnaire was generally relatively unclear and suffered due to a poor
translation into Danish. There were multiple examples of words and phrases that were
difficult for the respondents to understand. For example the word “sidestrømning”
(side flows) was used to mean carrots which ended up being used as non-foods. The
word is not a Danish word and is not self-explanatory."
"208","Denmark",,"01251","Carrots and turnips",2017,10,"10%",,,"Harvest",,"left in field",,"Survey","FoodLossPrimaryProd.pdf",,"Pg 9"
"208","Denmark",,"01253.01","Onions and shallots, green",2017,5.5,"2-9%",,,"Harvest",,"During harvesting of spring onions
During field drying and harvesting of regular onions","No. of distributed questionnaires 41
No. of answers 18
Response frequency 43%
No. Of answer by producer 17","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01253.01","Onions and shallots, green",2017,43,"43%",,,"Pre-harvest",,"Not harvested","No. of distributed questionnaires 41
No. of answers 18
Response frequency 43%
No. Of answer by producer 17","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01253.01","Onions and shallots, green",2017,8.5,"5-12%",,,"Storage",,"During packing and storage of spring onions
During packing and storage of regular onions","No. of distributed questionnaires 41
No. of answers 18
Response frequency 43%
No. Of answer by producer 17","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01253.01","Onions and shallots, green",2017,9,"9%",,,"Transport",,"During delivery to food shops or similar","No. of distributed questionnaires 41
No. of answers 18
Response frequency 43%
No. Of answer by producer 17","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01253.01","Onions and shallots, green",2017,21,"21%",,,"Farm",,"Average/ Frequency of producers/Frequency of producers who answered “Don’t know”
Disease in field 29% 59% 12%
Damage from pest insects or animals in field 17% 18% 6%
Weather conditions (frost, drought, etc.) 28% 35% 6%
During temporary storage before drying 0% 0% 6%
Technical problems related to cultivation method (spray
damage, poor drainage, etc.)
10% 6% 6%
Damage during harvest and handling 10% 41% 12%
Undesirable size 9% 29% 12%
Undesirable shape or appearance (rot, lumpy, etc.) 28% 47% 12%
Leftovers from processing 0% 0% 12%
Reclaimed 0% 0% 6%
No sale 9% 12% 6%","No. of distributed questionnaires 41
No. of answers 18
Response frequency 43%
No. Of answer by producer 17","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01253.01","Onions and shallots, green",2017,5,"5%",,,"Retail",,"During sale or advertisement","No. of distributed questionnaires 41
No. of answers 18
Response frequency 43%
No. Of answer by producer 17","Survey","FoodLossPrimaryProd.pdf",,
"208","Denmark",,"01253.01","Onions and shallots, green",2013,21,"21%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,"17","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21101 based on the period_years."
"208","Denmark",,"01253.01","Onions and shallots, green",2012,21,"21%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,"17","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21101 based on the period_years."
"208","Denmark",,"01253.01","Onions and shallots, green",2011,21,"21%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,"17","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21101 based on the period_years."
"231","Ethiopia",,"01234","Tomatoes",2015,17,"17%",,,"Whole supply chain",,"","","Survey","Margareta Topel (2015), assessment of postharvest loss for perishable produces from wholesalers to consumers",," Reference has been generated automatically"
"231","Ethiopia",,"01312","Bananas",2015,24.6,"24.6%",,,"Whole supply chain",,"","","Survey","Margareta Topel (2015), assessment of postharvest loss for perishable produces from wholesalers to consumers",," Reference has been generated automatically"
"231","Ethiopia",,"01323","Oranges",2015,20,"20%",,,"Whole supply chain",,"","","Survey","Margareta Topel (2015), assessment of postharvest loss for perishable produces from wholesalers to consumers",," Reference has been generated automatically"
"231","Ethiopia","Addis Ababa and Adama cities","01312","Bananas",2012,7.1,"7.1",,,"Wholesale",,"Distance Transported, Poor Packaging, Uncontrolled Ripening","A total of 50 sample farmers were selected randomly from six peasant associations of the two districts based on probability proportional size. Postharvest loss at wholesalers and retailers were also surveyed in Addis Ababa and Adama taking a total of 42 wholesalers and, 50 retailers who were randomly selected based on probability proportional to size","No Data Collection Specified","Mulualem Azene Mebratie1* Jema Haji2 Kebede Woldetsadik2 Amare Ayalew4","http://www.iiste.org/Journals/index.php/FSQM/article/download/20609/21032",
"231","Ethiopia","Addis Ababa and Adama cities","01312","Bananas",2012,14.9,"14.9",,,"Retail",,"Rough Handling, Inability To Finish And Market In Shorter Times, Inefficient Protection From Sun","A total of 50 sample farmers were selected randomly from six peasant associations of the two districts based on probability proportional size. Postharvest loss at wholesalers and retailers were also surveyed in Addis Ababa and Adama taking a total of 42 wholesalers and, 50 retailers who were randomly selected based on probability proportional to size","No Data Collection Specified","Mulualem Azene Mebratie1* Jema Haji2 Kebede Woldetsadik2 Amare Ayalew5","http://www.iiste.org/Journals/index.php/FSQM/article/download/20609/21033",
"231","Ethiopia","Gamo Gofa zone of Southern Nations Nationalities and Peoples Region (SNNPR); Addis Ababa and Adama cities","01312","Bananas",2012,4.5,"4.5",,,"Farm",,"Mechanical Damage, Improper Maturity, Sun Browning","A total of 50 sample farmers were selected randomly from six peasant associations of the two districts based on probability proportional size. Postharvest loss at wholesalers and retailers were also surveyed in Addis Ababa and Adama taking a total of 42 wholesalers and, 50 retailers who were randomly selected based on probability proportional to size","No Data Collection Specified","Mulualem Azene Mebratie1* Jema Haji2 Kebede Woldetsadik2 Amare Ayalew3","http://www.iiste.org/Journals/index.php/FSQM/article/download/20609/21031",
"231","Ethiopia",,"01212","Cabbages",1991,1.1,"1.1",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01229","Cantaloupes and other melons",1991,16.7,"16.7",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01234","Tomatoes",1991,19.4,"19.4",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01243","Broad beans and horse beans, green",1991,2.2,"2.2",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01251","Carrots and turnips",1991,1.1,"1.1",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01253.01","Onions and shallots, green",1991,10.7,"10.7",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01312","Bananas",1991,8.1,"8.1",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01316","Mangoes, guavas and mangosteens",1991,26.3,"26.3",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01316","Mangoes, guavas and mangosteens",1991,49.2,"49.2",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01317","Papayas",1991,11.5,"11.5",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01318","Pineapples",1991,28.2,"28.2",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01321","Pomelos and grapefruits",1991,1.9,"1.9",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01322","Lemons and limes",1991,1.3,"1.3",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01323","Oranges",1991,9,"9",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01324","Tangerines, mandarins, clementines",1991,17.4,"17.4",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"231","Ethiopia",,"01330","Grapes",1991,4.3,"4.3",,,"Whole supply chain",,,,"Literature Review","Tadesse 1991","http://ucanr.edu/datastoreFiles/234-1847.pdf; http://ucce.ucdavis.edu/files/datastore/234-1479.pdf",
"242","Fiji",,"01234","Tomatoes",2012,13.4,"13.4%",,"Consumption","Households","Day 3","","","Survey","Steven Underhill (2013), commercial tomato supply chain in fiji",," Reference has been generated automatically"
"242","Fiji",,"01234","Tomatoes",2012,8.8,"8.8%",,,"Farm",,"","","Survey","Steven Underhill (2013), commercial tomato supply chain in fiji",," Reference has been generated automatically"
"242","Fiji",,"01234","Tomatoes",2012,6.4,"6.4%",,"Wholesale","Wholesale",,"","","Survey","Steven Underhill (2013), commercial tomato supply chain in fiji",," Reference has been generated automatically"
"242","Fiji",,"01234","Tomatoes",2012,8.26,"8.26%",,"Consumption","Households","Day 2","","","Survey","Steven Underhill (2013), commercial tomato supply chain in fiji",," Reference has been generated automatically"
"242","Fiji",,"01234","Tomatoes",2012,0.13,"0.13%",,"Transportation","Transport",,"","","Survey","Steven Underhill (2013), commercial tomato supply chain in fiji",," Reference has been generated automatically"
"242","Fiji",,"01234","Tomatoes",2012,6.19,"6.19%",,"Consumption","Households","Day 1","","","Survey","Steven Underhill (2013), commercial tomato supply chain in fiji",," Reference has been generated automatically"
"242","Fiji",,"01233","Eggplants (aubergines)",2003,10,"10%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01316","Mangoes, guavas and mangosteens",2003,11,"11%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01317","Papayas",2003,4,"4%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01319","Other tropical and subtropical fruits, n.e.c.",2003,8,"8%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01233","Eggplants (aubergines)",2002,11,"11%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01316","Mangoes, guavas and mangosteens",2002,11,"11%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01317","Papayas",2002,5,"5%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01319","Other tropical and subtropical fruits, n.e.c.",2002,9,"9%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01233","Eggplants (aubergines)",2001,10,"10%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01316","Mangoes, guavas and mangosteens",2001,12,"12%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01317","Papayas",2001,4,"4%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01319","Other tropical and subtropical fruits, n.e.c.",2001,8,"8%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01233","Eggplants (aubergines)",2000,9,"9%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01316","Mangoes, guavas and mangosteens",2000,13,"13%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"242","Fiji",,"01317","Papayas",2000,4.5,"4.5%",,"Exporting","Export",,,,"Literature Review","Asian Productivity Organization and Food and Agriculture Organization of the United Nations",,
"246","Finland",,"01242","Peas, green",2017,17.6,"17.6%",,,"Farm","Finding ways to overcome small scale problem, finding new markets.","Diseases and
weather conditions.","The contacts included all Finnish pea producer contacts: 1,198
producer contacts in total (of which 549 had over 100 acres of pea production fields).
964 producers shared their e-mail details, and we therefore sent the questionnaire to
these 964 producers.
The questionnaire was sent to 964 pea producers, of which only 114 producers
responded to the questionnaire and 65 completed the questionnaire successfully. – 49 responses – were rejected because the producers
reported that they did not produce for human consumption (16), reported nothing for
the uses of peas (23), reported 0 kg yield (3 cases) and/or did not report yield at all (15
cases). Therefore, when only complete answers are counted the final response rate was
low – only 7%. 28 produced field peas and 37 produced green peas. Two of the field pea
producers and one of the green pea producers were organic producers and the rest were
conventional producers.","Survey","FoodLossPrimaryProd.pdf",,
"246","Finland",,"01251","Carrots and turnips",2017,6.2,"6.2%",,,"Harvest",,"Plant diseases and moulds during storage because of weather, crop rotation, storage conditions and cultivar. Minor quality deficiencies were also mentioned as major reasons for post-harvest losses.","3/6","Controlled Experiment","FoodLossPrimaryProd.pdf",,"Pg 13; At two farms the study took place on the same day as the harvest, but at one farm the field had been harvested two days before (Table 4). In each field, three plots were selected, each approximately 10 m x 1.20 m (12 m2
). The selection of the plots was restricted to certain areas by heavy field traffic on farms 1 and 3 where the harvesting was ongoing. On farm 2, the grower showed us suitable spots where carrot mass was likely to vary. The plots were marked with sticks and line string. The remaining carrots
were dug up, rough-cleaned from soil, and placed into plastic bags for weighing directly in the field. Leaves were discarded before weighing the carrots. To confirm the results, the weighing was carried out with two calibrated scales, and the final results were
calculated using the averages of the two values"
"246","Finland",,"01251","Carrots and turnips",2017,15,"10-20",,,"Farm",,"Most important: After harvest: Quality (appearance, size), plant diseases and damage. During harvest: Weather conditions, plant diseases and harvesting procedures.","only 31 producers responded to the questionnaire and 27 completed the questionnaire successfully of 293","Survey","FoodLossPrimaryProd.pdf",,": 55% of the side flow occurred during sorting (after harvest), 28% during storing, and 13% was left in the field/sorted out during harvest.average somewhere between 10% and 20% (range 0–90%) of total production"
"246","Finland",,"01253.01","Onions and shallots, green",2017,11,"11%",,,"Farm",,"Diseases and
damage, quality,
appearance.","The questionnaire was sent to 302 onion producers, of which only 31 producers
responded to the questionnaire and 26 completed the questionnaire successfully. Thus,
the response rate was low – only 10%. Of the 26 onion producers, six were organic
producers and the rest were conventional producers.","Survey","FoodLossPrimaryProd.pdf",,
"246","Finland",,"01354","Strawberries",2014,14,"14%",,"Sorting","Farm",,,"68","Survey","Hartikainen et al.,. 2014",,
"246","Finland",,"01214","Lettuce and chicory",2013,17,"17%",,"Sorting","Farm",,,"7","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21103 based on the period_years."
"246","Finland",,"01242","Peas, green",2013,17,"17%",,"Harvesting","Harvest",,,"37","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21104 based on the period_years."
"246","Finland",,"01251","Carrots and turnips",2013,26,"26%",,"Sorting","Farm",,,"27","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21108 based on the period_years."
"246","Finland",,"01253.01","Onions and shallots, green",2013,11,"11%",,"Sorting","Farm",,,"27","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21099 based on the period_years."
"246","Finland",,"01214","Lettuce and chicory",2012,17,"17%",,"Sorting","Farm",,,"7","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21103 based on the period_years."
"246","Finland",,"01242","Peas, green",2012,17,"17%",,"Harvesting","Harvest",,,"37","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21104 based on the period_years."
"246","Finland",,"01251","Carrots and turnips",2012,26,"26%",,"Sorting","Farm",,,"27","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21108 based on the period_years."
"246","Finland",,"01253.01","Onions and shallots, green",2012,11,"11%",,"Sorting","Farm",,,"27","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21099 based on the period_years."
"246","Finland",,"01214","Lettuce and chicory",2011,17,"17%",,"Sorting","Farm",,,"7","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21103 based on the period_years."
"246","Finland",,"01242","Peas, green",2011,17,"17%",,"Harvesting","Harvest",,,"37","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21104 based on the period_years."
"246","Finland",,"01251","Carrots and turnips",2011,26,"26%",,"Sorting","Farm",,,"27","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21108 based on the period_years."
"246","Finland",,"01253.01","Onions and shallots, green",2011,11,"11%",,"Sorting","Farm",,,"27","Survey","Hartikainen et al., 2014",,"Expanded from loss factor 21099 based on the period_years."
"246","Finland",,"01359.90","Other fruits, n.e.c.",2010,13,"13%",,"Consumption","Households",,,,"Survey","Venice 2012, Fourth International Symposium on Energy from Biomass and Waste",,
"266","Gabon",,"01313","Plantains and cooking bananas",2013,35,"30-40",,,"Whole supply chain",,"rough handling, unprotected storage conditions, and poor transportation",,"No Data Collection Specified","Cauthen et al. (2013)","http://www.mod.gov.tr/Lists/RecentPublications/Attachments/120/Reducing%20Postharvest%20Losses%20in%20the%20OIC%20Member%20Countries.pdf",
"288","Ghana",,"01234","Tomatoes",2014,28.6,"28.6%",,"Farm, Handling, Storage","Farm",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01234","Tomatoes",2014,32.1,"32.1%",,"Distribution","Distribution",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01234","Tomatoes",2014,5.7,"5.7%",,"Harvesting","Harvest",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01239.01","Okra",2014,30,"30%",,"Farm, Handling, Storage","Farm",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01239.01","Okra",2014,16.6,"16.6%",,"Harvesting","Harvest",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01239.01","Okra",2014,4.7,"4.7%",,"Distribution","Distribution",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01323","Oranges",2014,2.2,"2.2%",,"Farm, Handling, Storage","Farm",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01323","Oranges",2014,1.1,"1.1%",,"Harvesting","Harvest",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01323","Oranges",2014,2.8,"2.8%",,"Distribution","Distribution",,"","","Modelled Estimates","Rino Bolten (2015), the impacts of reducing food loss in ghana",," Reference has been generated automatically"
"288","Ghana",,"01239.01","Okra",2013,25,"20-30",,,"Post-harvest",,"","","Controlled Experiment","Tekpor, (2011)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",""
"288","Ghana","Ashanti Region of Ghana","01234","Tomatoes",2011,50,"50",,,"Farm",,"Literacy and technology exposure: 60 -90 % of producers did not pre-cool produce after harvest. Used vehicles or head loads to convey produce to market. Producers had no storage facilities ; Marketers preferred the use of polythene materials for packaging.","300","Survey","Adarkwa, (2011)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Brong - Ahafo region (highly productive zone)","01234","Tomatoes",2011,35,"20-50",,,"Farm",,"Lack of diversified uses of tomatoes is one main source of postharvest losses.",,"Survey","Yeboah, (2011)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,5.4,"5.4",,,"Wholesale",,"Quality losses due damage and decay",,"No Data Collection Specified","Kitinoja","http://ucce.ucdavis.edu/files/datastore/234-2429.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,9,"9",,,"Retail",,"Quality losses due damage and decay",,"No Data Collection Specified","Kitinoja","http://ucce.ucdavis.edu/files/datastore/234-2429.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,4.8,"4.8",,,"Farm",,"Quality losses due damage and decay",,"No Data Collection Specified","Kitinoja","http://ucce.ucdavis.edu/files/datastore/234-2429.pdf",
"288","Ghana",,"01212","Cabbages",2010,19.25,"6.5-32",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2010,25,"5.0-45",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2010,38,"23-53",,,"Farm",,"large sacks",,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01233","Eggplants (aubergines)",2010,12.4,"2.8-22",,,"Farm",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01233","Eggplants (aubergines)",2010,10.5,"2.0-19",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01233","Eggplants (aubergines)",2010,8.1,"0-16.2",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2010,16.75,"10.5-23",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2010,17.75,"14-21.5",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01239.01","Okra",2010,2.25,"0-4.5",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01239.01","Okra",2010,10.65,"6.3-15",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01253.01","Onions and shallots, green",2010,11.75,"5.5-18",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01253.01","Onions and shallots, green",2010,3.25,"0-6.5",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01313","Plantains and cooking bananas",2010,26,"26",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01313","Plantains and cooking bananas",2010,21,"21",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,4.15,"2.3-6",,,"Farm",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,5.4,".4-10.4",,"Grading, Sorting","Wholesale",,"","","Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,4.5,"1.0-8",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01318","Pineapples",2010,20,"20",,,"Farm",,"General poor handling Lack of training Only large growers have access to export markets","Training of trainers (60 extension agents)","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01318","Pineapples",2010,20.65,"20-21.3",,,"Retail",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01318","Pineapples",2010,9.6,"6.7-12.5",,,"Farm",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01318","Pineapples",2010,27.15,"26.3-28",,,"Wholesale",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana","Kumasi and its environments (including Ejura) and Tamale","01234","Tomatoes",2010,25,"25",,"Farm","Farm",,"The physical loss was measured by percentage of product sorted and not sold. Economic losses due to poor quality (a function of the % cumulative rate of defects, decay and damage that occurred during handling) could not be determined because price data reported for crops in Ghana were unreliable; The air temperatures during the handling at the farm, wholesale and retail markets were 29-31C, and 76 % RH at the farm and wholesale markets, and 72% RH at the retail market.","","Case Study","Kitinoja and Cantwell (2010)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",""
"288","Ghana","Kumasi and its environments (including Ejura) and Tamale","01234","Tomatoes",2010,21.5,"21.5",,"Wholesale","Wholesale",,"The physical loss was measured by percentage of product sorted and not sold. Economic losses due to poor quality (a function of the % cumulative rate of defects, decay and damage that occurred during handling) could not be determined because price data reported for crops in Ghana were unreliable; The air temperatures during the handling at the farm, wholesale and retail markets were 29-31C, and 76 % RH at the farm and wholesale markets, and 72% RH at the retail market.","","Case Study","Kitinoja and Cantwell (2010)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana","Adopted from Kitinoja and Cantwell (2010)"
"288","Ghana","Kumasi and its environments (including Ejura) and Tamale","01234","Tomatoes",2010,23,"23",,"Retailing","Retail",,"The physical loss was measured by percentage of product sorted and not sold. Economic losses due to poor quality (a function of the % cumulative rate of defects, decay and damage that occurred during handling) could not be determined because price data reported for crops in Ghana were unreliable; The air temperatures during the handling at the farm, wholesale and retail markets were 29-31C, and 76 % RH at the farm and wholesale markets, and 72% RH at the retail market.","","Case Study","Kitinoja and Cantwell (2010)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",""
"288","Ghana","Kumasi and its environments (including Ejura) and Tamale","01239.01","Okra",2010,6.3,"6.3",,"Retailing","Retail",,"The physical loss was measured by percentage of product sorted and not sold. Economic losses due to poor quality (a function of the % cumulative rate of defects, decay and damage that occurred during handling) could not be determined because price data reported for crops in Ghana were unreliable; The air temperatures during the handling at the farm, wholesale and retail markets were 29-31C, and 76 % RH at the farm and wholesale markets, and 72% RH at the retail market.","","Literature Review","Kitinoja and Cantwell (2010)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana","Adopted from Kitinoja and Cantwell (2010)"
"288","Ghana","Kumasi and its environments (including Ejura) and Tamale","01239.01","Okra",2010,16.6,"16.6",,"Farm","Farm",,"The physical loss was measured by percentage of product sorted and not sold. Economic losses due to poor quality (a function of the % cumulative rate of defects, decay and damage that occurred during handling) could not be determined because price data reported for crops in Ghana were unreliable; The air temperatures during the handling at the farm, wholesale and retail markets were 29-31C, and 76 % RH at the farm and wholesale markets, and 72% RH at the retail market.","","Case Study","Kitinoja and Cantwell (2010)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",""
"288","Ghana","Kumasi and its environments (including Ejura) and Tamale","01239.01","Okra",2010,2.3,"2.3",,"Wholesale","Wholesale",,"The physical loss was measured by percentage of product sorted and not sold. Economic losses due to poor quality (a function of the % cumulative rate of defects, decay and damage that occurred during handling) could not be determined because price data reported for crops in Ghana were unreliable; The air temperatures during the handling at the farm, wholesale and retail markets were 29-31C, and 76 % RH at the farm and wholesale markets, and 72% RH at the retail market.","","Case Study","Kitinoja and Cantwell (2010)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",""
"288","Ghana",,"01234","Tomatoes",2010,22.5,"22.5",,,"Retail",,"At Retail Sold At Discounted Price",,"Case Study","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana",,"01234","Tomatoes",2010,50.5,"50.5",,,"Farm",,,,"Case Study","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana",,"01234","Tomatoes",2010,35.5,"35.5",,,"Wholesale",,"At Wholesale",,"Case Study","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana","Site: Kumasi & Tamale.","01239.01","Okra",2010,6.3,"6.3",,,"Retail",,"At Retail Sold At Discounted Price","","Literature Review","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307","Adopted from Kitinoja (2010)"
"288","Ghana","Site: Kumasi & Tamale.","01239.01","Okra",2010,4.5,"4.5",,"Wholesale","Wholesale",,"At Wholesale","","Literature Review","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",""
"288","Ghana","Site: Kumasi & Tamale.","01239.01","Okra",2010,17,"6.0-28",,,"Farm",,,,"Case Study","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana","Site: Kumasi & Tamale.","01239.01","Okra",2010,0.34,"0.34",,,"Farm",,,,"Case Study","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,1.5,"0 - 3",,"Assembling, Farm","Farm",,,,,"Egyir et al. (2008)","http://www.sciencedirect.com/science/article/pii/S0305750X14002307","Not found"
"288","Ghana","? Sites: coastal and transition ecological zones of Ghana","01316","Mangoes, guavas and mangosteens",2010,3,"0 - 6",,"Harvesting","Harvest",,,,,"Egyir et al. (2008)","http://www.sciencedirect.com/science/article/pii/S0305750X14002307","Not found"
"288","Ghana","Kumasi & tamale.","01316","Mangoes, guavas and mangosteens",2010,10,"10",,,"Wholesale",,"At Wholesale","10","Case Study","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,2.5,"0 - 5",,"Storage","Storage",,,,,"Egyir et al. (2008)","http://www.sciencedirect.com/science/article/pii/S0305750X14002307","Not found"
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,3.5,"0 - 7",,"Packaging","Processing",,,,,"Egyir et al. (2008)","http://www.sciencedirect.com/science/article/pii/S0305750X14002307","Not found"
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2010,5,"5",,"Grading, Sorting","Processing",,,,,"Egyir et al. (2008)","http://www.sciencedirect.com/science/article/pii/S0305750X14002307","Not found"
"288","Ghana","Kumasi & tamale.","01316","Mangoes, guavas and mangosteens",2010,6,"6",,"Farm","Farm",,"","10","Literature Review","Kitinoja","http://www.sciencedirect.com/science/article/pii/S0305750X14002307",""
"288","Ghana",,"01212","Cabbages",2009,37.55,"20.1 - 55%",,"Farm","Farm","Packed in very large sacks","pressing against each other therefore causing mechanical damage",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"288","Ghana",,"01212","Cabbages",2009,28.85,"25.7 - 32%",,"Wholesale","Wholesale","Packed in very large sacks","pressing against each other therefore causing mechanical damage",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"288","Ghana",,"01212","Cabbages",2009,36.3,"27.6 - 45%",,"Retailing","Retail","Packed in very large sacks","pressing against each other therefore causing mechanical damage",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"288","Ghana",,"01234","Tomatoes",2009,13.1,"12.9 - 13.3%",,"Sorting","Farm",,"lack of pre-sorting to remove decayed produce before packing promoted spread of fungal and bacterial diseases and insect pests during handling",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"288","Ghana",,"01212","Cabbages",2009,8,"8",,"Grading, Sorting","Wholesale",,"Decay","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2009,45,"45",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2009,13,"13",,"Grading, Sorting","Farm",,"Decay","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2009,32,"32",,"Grading, Sorting","Wholesale",,"Mechanical Damage","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2009,5,"5",,"Grading, Sorting","Retail",,"Decay","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2009,28.1,"28.1",,"Grading, Sorting","Retail",,"Physical Losses","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01212","Cabbages",2009,54,"54",,"Grading, Sorting","Farm",,"Mechanical Damage","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01212","Cabbages",2009,6.5,"6.5",,"Grading, Sorting","Wholesale",,"Physical Losses","10, planning project","Case Study","KNUST","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01233","Eggplants (aubergines)",2009,2.8,"2.8",,"Grading, Sorting","Farm",,"Decay","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01233","Eggplants (aubergines)",2009,16.2,"16.2",,"Grading, Sorting","Retail",,"Physical Losses","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01233","Eggplants (aubergines)",2009,2,"2",,"Grading, Sorting","Wholesale",,"Decay","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01233","Eggplants (aubergines)",2009,13.9,"13.9",,"Grading, Sorting","Farm",,"Physical Losses","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01233","Eggplants (aubergines)",2009,11.3,"11.3",,"Grading, Sorting","Wholesale",,"Physical Losses","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01233","Eggplants (aubergines)",2009,19,"19",,"Grading, Sorting","Wholesale",,"Mechanical Damage","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01233","Eggplants (aubergines)",2009,22,"22",,"Grading, Sorting","Farm",,"Mechanical Damage","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01233","Eggplants (aubergines)",2009,9.5,"9.5",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project","Case Study","CSIR-CRI","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2009,33.5,"33.5",,"Grading, Sorting","Farm",,"Mechanical Damage","15, planning project",,"KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2009,21.5,"21.5",,"Grading, Sorting","Wholesale","Losses due to mechanical damage","Mechanical Damage","10, planning project","Case Study","KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01234","Tomatoes",2009,10.5,"10.5",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project",,"KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2009,14,"14",,"Grading, Sorting","Wholesale",,"Decay","10, planning project",,"KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2009,25.1,"25.1",,"Grading, Sorting","Farm",,"Physical Losses","10, planning project","Case Study","KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01234","Tomatoes",2009,23,"23",,"Grading, Sorting","Retail",,"Physical Losses","10, planning project","Case Study","KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01234","Tomatoes",2009,11.5,"11.5",,"Grading, Sorting","Retail",,"Decay","10, planning project",,"KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2009,17,"17",,"Grading, Sorting","Farm",,"Decay","15, planning project",,"KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01234","Tomatoes",2009,21.5,"21.5",,"Grading, Sorting","Wholesale","Physical losses","Physical Losses","10, planning project","Case Study","KNUST CSIR-CRI & Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01239.01","Okra",2009,8.5,"8.5",,"Grading, Sorting","Retail",,"Decay","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01239.01","Okra",2009,6.3,"6.3",,"Grading, Sorting","Retail",,"Physical Losses","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01239.01","Okra",2009,28,"28",,"Grading, Sorting","Farm",,"Mechanical Damage","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01239.01","Okra",2009,2.3,"2.3",,"Grading, Sorting","Wholesale",,"Physical Losses","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01239.01","Okra",2009,15,"15",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01239.01","Okra",2009,16.6,"16.6",,"Farm","Farm",,"Physical Losses","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01239.01","Okra",2009,4.5,"4.5",,"Grading, Sorting","Wholesale",,"Mechanical Damage","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01239.01","Okra",2009,6,"6",,"Grading, Sorting","Farm",,"Decay","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2009,5,"5",,"Grading, Sorting","Wholesale",,"Mechanical Damage","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2009,0.4,"0.4",,"Grading, Sorting","Wholesale",,"Decay","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2009,8,"8",,"Grading, Sorting","Retail",,"Mechanical Damage","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2009,2.5,"2.5",,"Grading, Sorting","Farm",,"Decay","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2009,2.3,"2.3",,"Grading, Sorting","Farm",,"Mechanical Damage","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2009,1,"1",,"Grading, Sorting","Retail",,"Decay","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2009,6,"6",,"Grading, Sorting","Farm",,"Physical Losses","10, planning project","Case Study","Tamale Poly Tech","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"288","Ghana",,"01234","Tomatoes",2008,25,"20 - 30%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"No Data Collection Specified","Agriculture and Rural Development Unit Sustainable Development Department Country Department AFCW1 Africa Region",,
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,48.5,"36 - 61%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"No Data Collection Specified","Agriculture and Rural Development Unit Sustainable Development Department Country Department AFCW1 Africa Region",,
"288","Ghana",,"01318","Pineapples",2008,28.5,"25 - 32%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Whole supply chain",,,,"No Data Collection Specified","Agriculture and Rural Development Unit Sustainable Development Department Country Department AFCW1 Africa Region",,
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,2.055,".24-3.87",,"Handling","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,3.6,"3.3 -3.9",,"Farm, Storage","Storage",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,2.25,"1.6 -2.9",,"Distribution, Marketing, Storage","Wholesale",,"","","Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",""
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,2.215,"1.58-2.85",,"Farm, Storage","Storage",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,4.23,".07-8.39",,"Marketing, Transportation","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,3.375,"3.11-3.64",,"Marketing, Storage, Transportation","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,20,"20",,,"Transport",,,"fifteen crates (in wooden crates) out of a total of 50 in a medium sized open-end truck were selected at random for the loss assessment","Case Study","Bani et al. (2006)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,1.745,"1.4 - 2.09",,"Assembling, Farm","Farm",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,4.065,"2.67-5.46",,"Grading, Sorting","Processing",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","Savanna and transition ecological zones of Ghana","01234","Tomatoes",2008,3.87,"3.45 - 4.29",,"Harvesting","Harvest",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,11.75,"16.56-6.94",,"Marketing, Storage, Transportation","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,1.465,"0-2.93",,"Assembling, Farm","Farm",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,3.035,"0-6.07",,"Harvesting","Harvest",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,0.32,"0-0.64",,"Loading, Unloading","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,0.495,"0-0.99",,"Marketing, Transportation","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,3.47,"0-6.94",,"Bagging, Packaging","Processing",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,0.78,"0-1.56",,"Loading","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,19.105,"14.45-23.76",,"Marketing, Storage","Market","Minor Season","","","Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",""
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,2.72,"0-5.44",,"Farm, Storage","Storage",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana",,"01316","Mangoes, guavas and mangosteens",2008,5.145,"4.98-5.31",,"Grading, Sorting","Processing",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana",
"288","Ghana","forest and coastal ecological zones of Ghana","01323","Oranges",2008,0.5,"0-1",,"Distribution, Marketing, Storage","Wholesale",,"","","Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana; http://www.sciencedirect.com/science/article/pii/S0305750X14002307",""
"288","Ghana","forest and coastal ecological zones of Ghana","01323","Oranges",2008,0.3,"0.6-0",,"Marketing, Storage, Transportation","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana; http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana","forest and coastal ecological zones of Ghana","01323","Oranges",2008,1.09,"0.38-1.8",,"Harvesting","Harvest",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana; http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana","forest and coastal ecological zones of Ghana","01323","Oranges",2008,1,"0-2",,"Loading","Transport",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana; http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana","forest and coastal ecological zones of Ghana","01323","Oranges",2008,2.125,"2-2.25",,"Grading, Sorting","Processing",,,,"Survey","Egyir et al., (2008)","https://www.researchgate.net/publication/285594317_Postharvest_losses_in_Africa_-_Analytical_review_and_synthesis_the_case_of_Ghana; http://www.sciencedirect.com/science/article/pii/S0305750X14002307",
"288","Ghana",,"01234","Tomatoes",2006,20,"20",,,"Whole supply chain",,"","","Literature Review","Bani et al, 2006","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"324","Guinea",,"01313","Plantains and cooking bananas",2013,35,"30-40",,,"Whole supply chain",,"rough handling, unprotected storage conditions, and poor transportation",,"No Data Collection Specified","Cauthen et al. (2013)","http://www.mod.gov.tr/Lists/RecentPublications/Attachments/120/Reducing%20Postharvest%20Losses%20in%20the%20OIC%20Member%20Countries.pdf",
"328","Guyana",,"01234","Tomatoes",2015,5,"5%",,"Retailing","Retail",,,,"Survey","FAO (2015)",,
"328","Guyana",,"01234","Tomatoes",2015,8,"8%",,"Packaging","Processing",,,,"Survey","FAO (2015)",,
"328","Guyana",,"01234","Tomatoes",2015,7,"7%",,"Harvesting","Harvest",,,,"Survey","FAO (2015)",,
"328","Guyana",,"01316","Mangoes, guavas and mangosteens",2015,15,"15%",,"Harvesting","Harvest",,,,"Survey","FAO (2015)",,
"328","Guyana",,"01316","Mangoes, guavas and mangosteens",2015,17,"17%",,"Packaging","Processing",,,,"Survey","FAO (2015)",,
"332","Haiti",,"01316","Mangoes, guavas and mangosteens",2011,20,"20%","0 tons","Sorting","Processing",,"Second class mangoes are taken to ORE’s drying facility at Camp Perrin, where fruits
are classified again. Less than 20 percent of fruits are considered unsuitable for
drying due to over ripeness, rotting or excessive bruising.","","Case Study","Nora Patricia Castañeda, Fernando Rodríguez, Mark Lundy; assessment-of-haitian-mango-value-chain.pdf",,"good explanation of the value chain and constraints"
"332","Haiti",,"01316","Mangoes, guavas and mangosteens",2011,50,"50%",,"Cleaning, Collection, Distribution, Drying, Field, Harvesting, Shelling, Storage, Threshing, Transportation","Export",,"over-ripeness, rotting or excessive bruising, inappropriate postharvest practices of middlemen","","Case Study","Nora Patricia Castañeda, Fernando Rodríguez, Mark Lundy",,""
"332","Haiti",,"01316","Mangoes, guavas and mangosteens",2010,50,"50",,"Grading, Sorting","Farm",,"Rejected Fruits Could Be Immature, Over Ripe, Bruised Or Fly Infested, With A Low Chance Of Commercializationthey'Re Also Picked And Then Sorted For Marketability, An Un Measured Percent Also Stays In The Fsc As Animal Feed",,,"CRS/ CIAT","https://www.crs.org/sites/default/files/tools-research/assessment-of-haitian-mango-value-chain.pdf",
"332","Haiti",,"01316","Mangoes, guavas and mangosteens",2010,50,"50",,"Grading, Sorting","Farm",,"Rejected Fruits Could Be Immature, Over Ripe, Bruised Or Fly Infested, With A Low Chance Of Commercializationthey'Re Also Picked And Then Sorted For Marketability, An Un Measured Percent Also Stays In The Fsc As Animal Feed",,"Survey","CRS/ CIAT","https://www.crs.org/sites/default/files/tools-research/assessment-of-haitian-mango-value-chain.pdf",
"34","Southern Asia",,"01359.90","Other fruits, n.e.c.",2011,25,"25%",,"Packaging, Processing","Processing",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"34","Southern Asia",,"01359.90","Other fruits, n.e.c.",2011,9,"9%",,"Handling, Storage","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"34","Southern Asia",,"01359.90","Other fruits, n.e.c.",2011,10,"10%",,"Distribution","Wholesale",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"34","Southern Asia",,"01359.90","Other fruits, n.e.c.",2011,7,"7%",,"Consumption","Households",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"34","Southern Asia",,"01359.90","Other fruits, n.e.c.",2011,15,"15%",,"Farm","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"35","South-Eastern Asia",,"01359.90","Other fruits, n.e.c.",2011,15,"15%",,"Farm","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"35","South-Eastern Asia",,"01359.90","Other fruits, n.e.c.",2011,25,"25%",,"Packaging, Processing","Processing",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"35","South-Eastern Asia",,"01359.90","Other fruits, n.e.c.",2011,10,"10%",,"Distribution","Wholesale",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"35","South-Eastern Asia",,"01359.90","Other fruits, n.e.c.",2011,7,"7%",,"Consumption","Households",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"35","South-Eastern Asia",,"01359.90","Other fruits, n.e.c.",2011,9,"9%",,"Handling, Storage","Farm",,"","","Modelled Estimates","FAO (2016), g l o b a l f o o d l o s s e s f o o d w a s t e",," Reference has been generated automatically"
"356","India",,"01212","Cabbages",2016,1.74,"1.74%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Maharashtra","01212","Cabbages",2016,12.81,"12.81%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01212","Cabbages",2016,6.81,"6.81%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01212","Cabbages",2016,2.56,"2.56%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01212","Cabbages",2016,9.37,"9.37%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Uttarakhand","01212","Cabbages",2016,4.38,"4.38%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Himachal Pradesh","01212","Cabbages",2016,4.38,"4.38%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Jharkhand","01212","Cabbages",2016,12.81,"12.81%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Haryana","01213","Cauliflowers and broccoli",2016,2,"2.0%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01213","Cauliflowers and broccoli",2016,2.21,"2.21%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01213","Cauliflowers and broccoli",2016,2,"2.00%",,"Storage","Storage","Cauliflower","","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01213","Cauliflowers and broccoli",2016,9.56,"9.56%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01213","Cauliflowers and broccoli",2016,7.55,"7.55%",,"Collection, Grading, Harvesting, Packaging, Transportation","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01213","Cauliflowers and broccoli",2016,2.21,"2.21%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01234","Tomatoes",2016,9.41,"9.41%",,"Collection, Harvesting, Packaging, Sorting, Transportation","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01234","Tomatoes",2016,12.44,"12.44%",,"Collection, Grading, Harvesting, Packaging, Retailing, Storage, Transportation, Wholesale","Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01234","Tomatoes",2016,3.03,"3.03%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01234","Tomatoes",2016,3.16,"3.16%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01242","Peas, green",2016,5.72,"5.72%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01242","Peas, green",2016,1.73,"1.73%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01242","Peas, green",2016,2.25,"2.25%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01242","Peas, green",2016,7.45,"7.45%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01253.01","Onions and shallots, green",2016,2.16,"2.16%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01253.01","Onions and shallots, green",2016,8.2,"8.20%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01253.01","Onions and shallots, green",2016,2.62,"2.62%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Maharashtra","01253.01","Onions and shallots, green",2016,12.72,"12.72%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01253.01","Onions and shallots, green",2016,6.05,"6.05%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Gujarat","01253.01","Onions and shallots, green",2016,5.49,"5.49%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01270","Mushrooms and truffles",2016,2.19,"2.19%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01270","Mushrooms and truffles",2016,7.32,"7.32%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01270","Mushrooms and truffles",2016,9.51,"9.51%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01270","Mushrooms and truffles",2016,0.99,"0.99%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01312","Bananas",2016,6.04,"6.04%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Karnataka","01312","Bananas",2016,4.36,"4.36%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01312","Bananas",2016,1.62,"1.62%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Kerala","01312","Bananas",2016,4.36,"4.36%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Andhra Pradesh","01312","Bananas",2016,10.6,"10.60%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Tamil Nadu","01312","Bananas",2016,4.36,"4.36%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01312","Bananas",2016,1.72,"1.72%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01312","Bananas",2016,7.76,"7.76%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Bihar","01316","Mangoes, guavas and mangosteens",2016,10,"10.00%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01316","Mangoes, guavas and mangosteens",2016,3.98,"3.98%",,"Storage","Storage","Guava","","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01316","Mangoes, guavas and mangosteens",2016,11.9,"11.90%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Uttar Pradesh","01316","Mangoes, guavas and mangosteens",2016,15.47,"15.47%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01316","Mangoes, guavas and mangosteens",2016,6.92,"6.92%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Maharashtra","01316","Mangoes, guavas and mangosteens",2016,4.91,"4.91%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01316","Mangoes, guavas and mangosteens",2016,5.33,"5.33%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Uttar Pradesh","01316","Mangoes, guavas and mangosteens",2016,10,"10.00%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Odisha","01316","Mangoes, guavas and mangosteens",2016,19.48,"19.48%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01316","Mangoes, guavas and mangosteens",2016,9.16,"9.16%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","West Bengal","01316","Mangoes, guavas and mangosteens",2016,6.61,"6.61%",,,"Whole supply chain","Guava","","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01316","Mangoes, guavas and mangosteens",2016,15.88,"15.88%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Bihar","01316","Mangoes, guavas and mangosteens",2016,15.47,"15.47%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01316","Mangoes, guavas and mangosteens",2016,2.09,"2.09%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01317","Papayas",2016,2.58,"2.58%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01317","Papayas",2016,4.12,"4.12%",,"Collection, Grading, Harvesting, Transportation","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Eastern Himalayan","01317","Papayas",2016,12.25,"12.25%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01317","Papayas",2016,0.98,"0.98%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01317","Papayas",2016,6.7,"6.70%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Andhra Pradesh","01317","Papayas",2016,3.16,"3.16%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2016,2.53,"2.53%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Maharashtra","01319","Other tropical and subtropical fruits, n.e.c.",2016,11.98,"11.98%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01329","Other citrus fruit, n.e.c.",2016,9.69,"9.69%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01329","Other citrus fruit, n.e.c.",2016,2.41,"2.41%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Punjab","01329","Other citrus fruit, n.e.c.",2016,6.1,"6.10%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India","Maharashtra","01329","Other citrus fruit, n.e.c.",2016,12.97,"12.97%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01329","Other citrus fruit, n.e.c.",2016,7.55,"7.55%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01329","Other citrus fruit, n.e.c.",2016,1.68,"1.68%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01330","Grapes",2016,1.77,"1.77%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01330","Grapes",2016,8.63,"8.63%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01330","Grapes",2016,6.52,"6.52%",,"Farm","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01330","Grapes",2016,2.11,"2.11%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01341","Apples",2016,1.31,"1.31%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01341","Apples",2016,10.39,"10.39%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01341","Apples",2016,4.33,"4.33%",,"Harvesting","Harvest",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01341","Apples",2016,9.08,"9.08%",,,"Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01359.90","Other fruits, n.e.c.",2016,7.41,"7.41%",,"Collection, Grading, Harvesting, Packaging, Transportation","Farm",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01359.90","Other fruits, n.e.c.",2016,2.31,"2.31%",,"Storage","Storage",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01359.90","Other fruits, n.e.c.",2016,9.73,"9.73%",,"Collection, Harvesting, Processing, Retailing, Transportation, Wholesale","Whole supply chain",,"","","Literature Review","rajesh (2016), assessment of quantitative harvest and post-harvest losses of major crops/commodities in india",," Reference has been generated automatically"
"356","India",,"01212","Cabbages",2014,0.16,"0.16",,"Storage","Storage",,"","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01212","Cabbages",2014,9.37,"9.37",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,0.02,"0.02",,"Processing","Storage",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,1.74,"1.74",,"Harvesting","Harvest",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,3.32,"3.32",,"Grading, Sorting","Farm",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,0.36,"0.36",,"Packaging","Farm",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,0.89,"0.89",,"Wholesale","Storage",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,0.08,"0.08",,"Storage","Storage",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,0.38,"0.38",,"Collection","Farm",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2014,1.02,"1.02",,"Transportation","Transport",,"","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01212","Cabbages",2014,1.42,"1.42",,"Retailing","Storage",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,0.92,"0.92",,"Transportation","Transport",,"","7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01213","Cauliflowers and broccoli",2014,9.56,"9.56",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,0.26,"0.26",,"Collection","Farm",,,"7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,2.21,"2.21",,"Harvesting","Harvest",,,"7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,0.38,"0.38",,"Packaging","Farm",,,"7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,0.07,"0.07",,"Storage","Storage",,,"7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,0.83,"0.83",,"Wholesale","Storage",,,"7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,1,"1",,"Retailing","Storage",,,"7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,3.78,"3.78",,"Grading, Sorting","Farm",,,"7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01213","Cauliflowers and broccoli",2014,0.09,"0.09",,"Storage","Storage",,"","7 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01234","Tomatoes",2014,0.24,"0.24",,"Packaging","Farm",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,1.63,"1.63",,"Retailing","Storage",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,0.12,"0.12",,"Farm","Storage",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,3.16,"3.16",,"Harvesting","Harvest",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,0.52,"0.52",,"Collection, Farm","Farm",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,3.74,"3.74",,"Grading, Sorting","Farm",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,1.75,"1.75",,"Transportation","Farm",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,0.02,"0.02",,"Processing","Storage",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,12.44,"12.44",,,"Whole supply chain",,"Physical Losses",,,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01234","Tomatoes",2014,1.26,"1.26",,"Wholesale","Storage",,,"8 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,0.61,"0.61",,"Transportation","Transport",,"","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01242","Peas, green",2014,0.13,"0.13",,"Packaging","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,0.32,"0.32",,"Collection","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,0.05,"0.05",,"Storage","Storage",,"","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01242","Peas, green",2014,1.09,"1.09",,"Wholesale","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,7.45,"7.45",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,0.55,"0.55",,"Retailing","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,2.41,"2.41",,"Grading, Sorting","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,0.03,"0.03",,"Processing","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01242","Peas, green",2014,2.25,"2.25",,"Harvesting","Harvest",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,0.3,"0.3",,"Storage","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,0.44,"0.44",,"Collection","Farm",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,0.72,"0.72",,"Retailing","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,2.35,"2.35",,"Grading, Sorting","Farm",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,0.12,"0.12",,"Packaging","Farm",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,2.62,"2.62",,"Harvesting","Harvest",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,0.51,"0.51",,"Transportation","Transport",,"","6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01253.01","Onions and shallots, green",2014,0.01,"0.01",,"Processing","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,8.2,"8.2",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,0.77,"0.77",,"Wholesale","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01253.01","Onions and shallots, green",2014,0.35,"0.35",,"Storage","Storage",,"","6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01270","Mushrooms and truffles",2014,0.99,"0.99",,"Harvesting","Harvest",,,"4 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01270","Mushrooms and truffles",2014,5.34,"5.34",,"Grading, Sorting","Farm",,,"4 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01270","Mushrooms and truffles",2014,9.51,"9.51",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01270","Mushrooms and truffles",2014,0.04,"0.04",,"Collection","Farm",,,"4 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01270","Mushrooms and truffles",2014,0.77,"0.77",,"Transportation","Transport",,"","4 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01270","Mushrooms and truffles",2014,1.52,"1.52",,"Retailing","Storage",,,"4 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01270","Mushrooms and truffles",2014,0.18,"0.18",,"Packaging","Farm",,,"4 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01270","Mushrooms and truffles",2014,0.66,"0.66",,"Storage","Storage",,"","4 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01312","Bananas",2014,0.26,"0.26",,"Collection","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,1.16,"1.16",,"Wholesale","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,7.76,"7.76",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,1.62,"1.62",,"Harvesting","Harvest",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,1.91,"1.91",,"Transportation","Transport",,"","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01312","Bananas",2014,0.19,"0.19",,"Packaging","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,0.45,"0.45",,"Retailing","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,2.06,"2.06",,"Grading, Sorting","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,0.08,"0.08",,"Storage","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01312","Bananas",2014,0.03,"0.03",,"Storage","Storage",,"","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,3.26,"3.26",,"Grading, Sorting","Farm",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,2.08,"2.08",,"Retailing","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,4.95,"4.95",,"Grading, Sorting","Farm",,"Birds And Insects Attack","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.01,"0.01",,"Storage","Storage",,"Poor Handling And Storage","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.23,"0.23",,"Packaging","Farm",,"Poor Handling And Storage","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.31,"0.31",,"Collection","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.23,"0.23",,"Storage","Storage",,"","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,1.62,"1.62",,"Wholesale","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,1.21,"1.21",,"Transportation","Transport",,"Improper Packaging","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.04,"0.04",,"Processing","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.09,"0.09",,"Packaging","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.11,"0.11",,"Storage","Storage",,"Poor Handling And Storage","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,2.09,"2.09",,"Harvesting","Harvest",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,9.16,"9.16",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,1.04,"1.04",,"Transportation","Transport",,"Poor Handling And Storage","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.69,"0.69",,"Wholesale","Storage",,"Poor Handling And Storage","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,1.18,"1.18",,"Retailing","Storage",,"Poor Handling And Storage","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,15.88,"15.88",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.3,"0.3",,"Collection","Farm",,,"8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,5.33,"5.33",,"Harvesting","Harvest",,"Overripe","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2014,0.25,"0.25",,"Processing","Storage",,"Poor Handling And Storage","8 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,0.34,"0.34",,"Packaging","Farm",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,0.79,"0.79",,"Wholesale","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,0.01,"0.01",,"Storage","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,0.92,"0.92",,"Transportation","Transport",,"","6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01317","Papayas",2014,0.42,"0.42",,"Collection","Farm",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,0.98,"0.98",,"Harvesting","Harvest",,"Dalayed In Harvesting Due To Fall In Prices Forcing Farmers To Dalay The Harvest","6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,6.7,"6.7",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,1.46,"1.46",,"Grading, Sorting","Farm",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,1.71,"1.71",,"Retailing","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01317","Papayas",2014,0.05,"0.05",,"Storage","Storage",,"","6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01317","Papayas",2014,0.03,"0.03",,"Processing","Storage",,,"6 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,1.7,"1.7",,"Transportation","Farm",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,0.28,"0.28",,"Packaging","Farm",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,0.03,"0.03",,"Processing","Storage",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,0.25,"0.25",,"Storage","Storage",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,2.53,"2.53",,"Harvesting","Harvest",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,0.01,"0.01",,"Farm","Storage",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,0.89,"0.89",,"Wholesale","Storage",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,0.35,"0.35",,"Collection, Farm","Farm",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,1.13,"1.13",,"Retailing","Storage",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,9.73,"9.73",,,"Whole supply chain",,"Physical Losses",,,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2014,2.55,"2.55",,"Grading, Sorting","Farm",,,"3 agro-climatic zones",,"S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,0.91,"0.91",,"Wholesale","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,1.65,"1.65",,"Transportation","Transport",,"","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,1.68,"1.68",,"Harvesting","Harvest",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,0.06,"0.06",,"Processing","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,0.33,"0.33",,"Collection","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,1.12,"1.12",,"Retailing","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,0.04,"0.04",,"Storage","Storage",,"","5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,0.18,"0.18",,"Packaging","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,3.71,"3.71",,"Grading, Sorting","Farm",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,9.69,"9.69",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01329","Other citrus fruit, n.e.c.",2014,0.02,"0.02",,"Storage","Storage",,,"5 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,3.36,"3.36",,"Grading, Sorting","Farm",,,"2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,0.09,"0.09",,"Processing","Storage",,"Lack Of Cold Storage","2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,1.77,"1.77",,"Harvesting","Harvest",,,"2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,0.78,"0.78",,"Wholesale","Storage",,"Lack Of Cold Storage","2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,0.98,"0.98",,"Transportation","Transport",,"","2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01330","Grapes",2014,8.63,"8.63",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,0.01,"0.01",,"Storage","Storage",,"Lack Of Cold Storage","2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01330","Grapes",2014,1.24,"1.24",,"Retailing","Storage",,"Lack Of Cold Storage","2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,0.1,"0.1",,"Packaging","Farm",,,"2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01330","Grapes",2014,0.3,"0.3",,"Collection","Farm",,,"2 agro-climatic zones","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,0.11,"0.11",,"Packaging","Farm",,,"1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,0.25,"0.25",,"Processing","Storage",,,"1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,0.13,"0.13",,"Storage","Storage",,,"1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,10.39,"10.39",,,"Whole supply chain",,"Physical Losses",,"Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,0.34,"0.34",,"Retailing","Storage",,,"1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,0.57,"0.57",,"Wholesale","Storage",,,"1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,4.33,"4.33",,"Harvesting","Harvest",,,"1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,3.94,"3.94",,"Grading, Sorting","Farm",,"Long Duration In The Field","1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01341","Apples",2014,0.02,"0.02",,"Storage","Storage",,"","1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01341","Apples",2014,0.42,"0.42",,"Transportation","Transport",,"","1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",""
"356","India",,"01341","Apples",2014,0.29,"0.29",,"Collection","Farm",,,"1 agro-climatic zone","Survey","S.N.Jha, P.K. Vishwakarma Tauqueer Ahmad ; ICAR-All India Coordinated Research Project on Post-Harvest Technology","http://www.ciphet.in/upload/sphl/MOFPI%20REPORT1.pdf",
"356","India",,"01212","Cabbages",2013,9.37,"9.37%",,,"Whole supply chain",,"Sourced from Jha et al. (2015","","Literature Review","Durba Kashyap ,Tripti Agarwal (2019), Food loss in India: water footprint, land footprint and GHG emissions",," Reference has been generated automatically"
"356","India",,"01213","Cauliflowers and broccoli",2013,9.56,"9.56%",,,"Whole supply chain",,"Sourced from Jha et al. (2015","","Literature Review","Durba Kashyap ,Tripti Agarwal (2019), Food loss in India: water footprint, land footprint and GHG emissions",," Reference has been generated automatically"
"356","India",,"01234","Tomatoes",2013,12.44,"12.44%",,,"Whole supply chain",,"Sourced from Jha et al. (2015","","Literature Review","Durba Kashyap ,Tripti Agarwal (2019), Food loss in India: water footprint, land footprint and GHG emissions",," Reference has been generated automatically"
"356","India",,"01312","Bananas",2013,7.76,"7.76%",,,"Whole supply chain",,"Sourced from Jha et al. (2015","","Literature Review","Durba Kashyap ,Tripti Agarwal (2019), Food loss in India: water footprint, land footprint and GHG emissions",," Reference has been generated automatically"
"356","India",,"01317","Papayas",2013,6.7,"6.7%",,,"Whole supply chain",,"Sourced from Jha et al. (2015","","Literature Review","Durba Kashyap ,Tripti Agarwal (2019), Food loss in India: water footprint, land footprint and GHG emissions",," Reference has been generated automatically"
"356","India",,"01341","Apples",2013,10.39,"10.39%",,,"Whole supply chain",,"Sourced from Jha et al. (2015","","Literature Review","Durba Kashyap ,Tripti Agarwal (2019), Food loss in India: water footprint, land footprint and GHG emissions",," Reference has been generated automatically"
"356","India",,"01213","Cauliflowers and broccoli",2010,35.5,"31-40",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01232","Cucumbers and gherkins",2010,15,"10.0-20",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01232","Cucumbers and gherkins",2010,5.4,"3.8-7",,,"Wholesale",,"Decay, Mechanic Damage, Sorting","10","Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01232","Cucumbers and gherkins",2010,8.6,"4.5-12.7",,,"Farm",,"Decay, Mechanic Damage, Sorting","10","Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01232","Cucumbers and gherkins",2010,7.1,"5-9.2",,,"Retail",,"Decay, Mechanic Damage, Sorting","10","Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01233","Eggplants (aubergines)",2010,10.75,"7.5-14",,,"Farm",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01233","Eggplants (aubergines)",2010,62.5,"45-80",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01233","Eggplants (aubergines)",2010,12.8,"6-19.6",,,"Wholesale",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01233","Eggplants (aubergines)",2010,7.1,"4.2-10",,,"Retail",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01234","Tomatoes",2010,12.45,"8.5-16.4",,,"Retail",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01234","Tomatoes",2010,11.88,"10.3-13.46",,,"Transport",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01234","Tomatoes",2010,9.435,"8.18-10.69",,,"Storage",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01234","Tomatoes",2010,17.5,"15-20",,,"Farm",,"rough handling, the effects of high ambient temperatures and poor quality
package","","Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",""
"356","India",,"01234","Tomatoes",2010,7.5,"5.0-10",,,"Farm",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01234","Tomatoes",2010,4.195,"3.64-4.75",,,"Harvest",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01234","Tomatoes",2010,11.05,"7-15.1",,,"Wholesale",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01234","Tomatoes",2010,4.74,"3.94-5.54",,,"Farm",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,10.55,"2.6-18.5",,,"Farm",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,4.5,"2.0-7",,"Handling","Farm",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,3.5,"2.0-5",,,"Retail",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,19.75,"10.5-29",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,4,"3.0-5",,,"Storage",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,8.3,"6.6-10",,,"Retail",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,4.25,"1.5-7",,,"Transport",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,4.95,"2-7.9",,,"Wholesale",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2010,3.5,"2.0-5",,,"Harvest",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01253.01","Onions and shallots, green",2010,27.5,"23-32",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01312","Bananas",2010,28.5,"26-31",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2010,24.75,"18.5-31",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2010,27.5,"25-30",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2010,5.75,"5-6.5",,,"Farm",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2010,8.3,"7.1-9.5",,,"Retail",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2010,6.95,"6-7.9",,,"Wholesale",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01316","Mangoes, guavas and mangosteens",2010,7.5,"5.0-10",,,"Transport",,,,"Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2010,9.4,"8.7-10.1",,,"Retail",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2010,11.25,"8.5-14",,,"Farm",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2010,8.2,"5-11.4",,,"Wholesale",,"Decay, Mechanic Damage, Sorting","10","Case Study",,"http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01319","Other tropical and subtropical fruits, n.e.c.",2010,40,"32-48",,,"Harvest",,,,"Case Study","Kitinoja","http://ucanr.edu/datastoreFiles/234-1847.pdf",
"356","India",,"01239.01","Okra",2009,12.95,"7.4 - 18.5%",,"Sorting","Farm",,"lack of pre-sorting to remove decayed produce before packing promoted spread of fungal and bacterial diseases and insect pests during handling",,"Survey","L. Kitinoja and H.Y. AlHassan (2012)",,
"356","India",,"01234","Tomatoes",2009,9.395,"8.18 - 10.61%",,"Storage","Storage","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01234","Tomatoes",2009,11.88,"10.3 - 13.46%",,"Transportation","Transport","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01234","Tomatoes",2009,8.4,"8.4%","0.84kg","Storage","Storage","Outside the Zero Energy Cool Chamber (ZECC)",,,"Controlled Experiment","Lisa Kitinoja (2010)",,
"356","India",,"01234","Tomatoes",2009,1.8,"1.8%","0.18kg","Storage","Storage","Trials in Zero Energy Cool Chamber (ZECC)",,,"Controlled Experiment","Lisa Kitinoja (2010)",,
"356","India",,"01234","Tomatoes",2009,4.195,"3.64 - 4.75%",,"Harvesting","Harvest","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01239.01","Okra",2009,3.5,"2 - 5%",,"Retailing","Retail","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01239.01","Okra",2009,4,"3 - 5%",,"Storage","Storage","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01239.01","Okra",2009,3.5,"2 - 5%",,"Harvesting","Harvest","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01239.01","Okra",2009,4.5,"2 - 7%",,"Handling","Farm","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01239.01","Okra",2009,4.25,"1.5 - 7%",,"Transportation","Transport","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01316","Mangoes, guavas and mangosteens",2009,4.5,"4 - 5%",,"Handling","Farm","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).","","","Case Study","Lisa Kitinoja (2010)",,""
"356","India",,"01316","Mangoes, guavas and mangosteens",2009,5.75,"4.5 - 7%",,"Storage","Storage","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).","","","Case Study","Lisa Kitinoja (2010)",,""
"356","India",,"01316","Mangoes, guavas and mangosteens",2009,4,"3 - 5%",,"Retailing","Retail","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).","","","Case Study","Lisa Kitinoja (2010)",,""
"356","India",,"01316","Mangoes, guavas and mangosteens",2009,3,"2 - 4%",,"Harvesting","Harvest","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).","","","Case Study","Lisa Kitinoja (2010)",,""
"356","India",,"01316","Mangoes, guavas and mangosteens",2009,7.5,"5 - 10%",,"Transportation","Transport","emperatures during the assessments in India ranged from hot (45 C = 113F in June and July) to cool (25 C =77F in September).",,,"Survey","Lisa Kitinoja (2010)",,
"356","India",,"01212","Cabbages",2008,17.5,"15-20",,,"Farm",,"","","Literature Review","Gajbhiye et al, 2008","http://ucanr.edu/datastoreFiles/234-1847.pdf","Sourced from Gajbhiye et al, 2008"
"356","India",,"01213","Cauliflowers and broccoli",2008,17.5,"15-20",,,"Farm",,"","","Literature Review","Gajbhiye et al, 2008","http://ucanr.edu/datastoreFiles/234-1847.pdf","Sourced from Gajbhiye et al, 2008"
"356","India",,"01234","Tomatoes",2008,35,"35",,,"Post-harvest",,"","","Literature Review","Gajbhiye et al, 2008","http://ucanr.edu/datastoreFiles/234-1847.pdf","Sourced from Gajbhiye et al, 2008"
"356","India",,"01253.01","Onions and shallots, green",2006,12.9,"12.9",,,"Farm",,"","","Literature Review","Kumar et al, 2006","http://ucanr.edu/datastoreFiles/234-1847.pdf","Sourced from Kumar et al, 2006"
"356","India",,"01212","Cabbages",2006,1.08,"1.08",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01212","Cabbages",2006,1.32,"1.32",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01212","Cabbages",2006,1.64,"1.64",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01212","Cabbages",2006,2.1,"2.1",,"Storage","Storage",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01212","Cabbages",2006,0.3,"0.3",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01212","Cabbages",2006,2.2,"2.2",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01212","Cabbages",2006,2.31,"2.31",,"Processing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01212","Cabbages",2006,0.27,"0.27",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01212","Cabbages",2006,1.11,"1.11",,"Storage","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01212","Cabbages",2006,2.62,"2.62",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01213","Cauliflowers and broccoli",2006,0.27,"0.27",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01213","Cauliflowers and broccoli",2006,0.18,"0.18",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01213","Cauliflowers and broccoli",2006,1.91,"1.91",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01213","Cauliflowers and broccoli",2006,2.31,"2.31",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01213","Cauliflowers and broccoli",2006,1.52,"1.52",,"Storage","Storage",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01213","Cauliflowers and broccoli",2006,0.47,"0.47",,"Storage","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01213","Cauliflowers and broccoli",2006,0.84,"0.84",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01213","Cauliflowers and broccoli",2006,2.17,"2.17",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01213","Cauliflowers and broccoli",2006,1.66,"1.66",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,2,"2",,"Processing","Storage",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,1.57,"1.57",,"Storage","Storage",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,0.77,"0.77",,"Packaging","Farm",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,1.73,"1.73",,"Harvesting","Harvest",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,4.62,"4.62",,"Farm","Storage",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,2.27,"2.27",,"Retailing","Storage",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,3.14,"3.14",,"Transportation","Farm",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,3.24,"3.24",,"Grading, Sorting","Farm",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,2.66,"2.66",,"Wholesale","Storage",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01234","Tomatoes",2006,1.06,"1.06",,"Collection","Farm",,,,,"ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01242","Peas, green",2006,0.3,"0.3",,"Storage","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01242","Peas, green",2006,1.18,"1.18",,"Storage","Storage",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01242","Peas, green",2006,1.08,"1.08",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01242","Peas, green",2006,0.23,"0.23",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01242","Peas, green",2006,2.44,"2.44",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01242","Peas, green",2006,1.32,"1.32",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01242","Peas, green",2006,0.5,"0.5",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01242","Peas, green",2006,3.3,"3.3",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01242","Peas, green",2006,3.46,"3.46",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,1.64,"1.64",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,0.14,"0.14",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,0.23,"0.23",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,0.44,"0.44",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01253.01","Onions and shallots, green",2006,2.7,"2.7",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,0.09,"0.09",,"Processing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,2.57,"2.57",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,2.18,"2.18",,"Storage","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01253.01","Onions and shallots, green",2006,2.67,"2.67",,"Storage","Storage",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01253.01","Onions and shallots, green",2006,2.19,"2.19",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01270","Mushrooms and truffles",2006,4.26,"4.26",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01270","Mushrooms and truffles",2006,1.64,"1.64",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01270","Mushrooms and truffles",2006,1.77,"1.77",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01270","Mushrooms and truffles",2006,1.73,"1.73",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01270","Mushrooms and truffles",2006,1.37,"1.37",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01270","Mushrooms and truffles",2006,2,"2",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01312","Bananas",2006,0.93,"0.93",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01312","Bananas",2006,1.14,"1.14",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01312","Bananas",2006,2.39,"2.39",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01312","Bananas",2006,0.36,"0.36",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01312","Bananas",2006,3.34,"3.34",,"Storage","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01312","Bananas",2006,1.6,"1.6",,"Storage","Storage",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01312","Bananas",2006,2.44,"2.44",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01312","Bananas",2006,1.33,"1.33",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01312","Bananas",2006,0.26,"0.26",,"Processing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01312","Bananas",2006,0.44,"0.44",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,1.2,"1.2",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,0.51,"0.51",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,0.94,"0.94",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,4.36,"4.36",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,4.64,"4.64",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,0.87,"0.87",,"Processing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,2.1,"2.1",,"Storage","Storage",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,2.77,"2.77",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,2.53,"2.53",,"Transportation","Transport",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,1.5,"1.5",,"Storage","Storage",,"","","Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",""
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,5.71,"5.71",,"Processing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,2.5,"2.5",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,5.91,"5.91",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,2.67,"2.67",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,2.8,"2.8",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,4.11,"4.11",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,3.79,"3.79",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01316","Mangoes, guavas and mangosteens",2006,0.68,"0.68",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01317","Papayas",2006,0.03,"0.03",,"Processing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01317","Papayas",2006,1.97,"1.97",,"Grading, Sorting","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01317","Papayas",2006,2.28,"2.28",,"Wholesale","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01317","Papayas",2006,2.39,"2.39",,"Retailing","Storage",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01317","Papayas",2006,0.28,"0.28",,"Collection","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01317","Papayas",2006,1.45,"1.45",,"Harvesting","Harvest",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",
"356","India",,"01317","Papayas",2006,0.23,"0.23",,"Packaging","Farm",,,,"Survey","ICAR - S.K. Nanda, P.K. Vishwakarma","https://www.researchgate.net/publication/280780214_Harvest_and_post_harvest_losses_of_major_crops_and_livestock_produce_in_India",