-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdatasets.json
More file actions
1946 lines (1930 loc) · 139 KB
/
datasets.json
File metadata and controls
1946 lines (1930 loc) · 139 KB
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
{
"UC1": [
{
"name": "UAV Canyelles Vineyard Dataset 2023-04-21",
"author": "Esther Vera, Paula Osés, Oriol Arroyo, Aldo Sollazzo, Chirag Rangholia",
"date": "2023-04-21",
"link": "https://zenodo.org/records/15114347",
"description": "Crop monitoring dataset generated with DJI Mavic 3 Classic UAV and Metashape Agisoft that contains RGB images, pointcloud data, orthomosaic images and the DEM.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM.",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-04-28",
"author": "Esther Vera, Paula Osés, Oriol Arroyo, Aldo Sollazzo, Chirag Rangholia",
"date": "2023-04-28",
"link": "https://zenodo.org/records/15124471",
"description": "Crop monitoring dataset generated with DJI Mavic 3 Classic UAV and Metashape Agisoft that contains RGB images, pointcloud data, orthomosaic images and the DEM.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM.",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-05-05",
"author": "Esther Vera, Oriol Arroyo, Aldo Sollazzo, Chirag Rangholia, Paula Osés",
"date": "2023-05-05",
"link": "https://zenodo.org/records/15124564",
"description": "Crop monitoring dataset generated with DJI Mavic 3 Classic UAV and Metashape Agisoft that contains RGB images, pointcloud data, orthomosaic images and the DEM.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM.",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-06-09",
"author": "Esther Vera, Oriol Arroyo, Aldo Sollazzo, Chirag Rangholia, Paula Osés",
"date": "2023-06-09",
"link": "https://zenodo.org/records/15064455",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM.",
"labels": "No"
}
},
{
"name": "UC1 DATA FOLDER GITHUB",
"author": "Esther Vera, Aldo Sollazzo, Chirag Rangholia",
"date": "2024-05-15",
"link": "https://zenodo.org/records/8123870",
"description": "This dataset contains the necessary data to execute the UC1_Crop_Monitoring codes in GitHub.",
"parameters": {
"location": "Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "Features files with rows and plants positions for orthomosaic, health status, images for UC1 models and images generated.",
"labels": "Yes"
}
},
{
"name": "VINEYARD PLANT LEAVES IMAGES (SUMMER 2024)",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2024-10-17",
"link": "https://zenodo.org/records/13944498",
"description": "Crop monitoring dataset generated with DJI Mavic Classic 3 UAV and Metashape Agisoft that contains vineyard images and RGB pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "Plant leaves images of summer 2024",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-08-30",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-05-08",
"link": "https://zenodo.org/records/15173656",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-08-13",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-05-08",
"link": "https://zenodo.org/records/15172492",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-08-31",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-03-24",
"link": "https://zenodo.org/records/15075341",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-07-28",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-03-24",
"link": "https://zenodo.org/records/15075338",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, G, RE)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-06-09",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-03-21",
"link": "https://zenodo.org/records/15064455",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, G, RE)",
"labels": "No"
}
},
{
"name": "VINEYARD PLANTS LABELLED FOR DETECTION (HEALTHY, MILDEW, LOW-IRON)",
"author": "Esther Vera, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-03-26",
"link": "https://zenodo.org/records/15090766",
"description": "This dataset consists of 508 images labeled for detecting plant health in vineyards. Each image is annotated with bounding boxes and has a resolution of 640 × 640 pixels. The dataset is formatted for YOLOv12 and was manually labeled using Roboflow. It is divided into 356 images for training, 102 images for validation, and 50 images for testing, ensuring a balanced distribution for model development and evaluation.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "508 labeled images of vineyard plant health: Healthy, Mildew, and Low-Iron Deficiency, for YOLOv12.",
"labels": "Yes"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-06-18",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-03-19",
"link": "https://zenodo.org/records/15046758",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-07-17",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-28",
"link": "https://zenodo.org/records/15149667",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-07-03",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-28",
"link": "https://zenodo.org/records/15147343",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-05-30",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-28",
"link": "https://zenodo.org/records/15124374",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-05-26",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-04",
"link": "https://zenodo.org/records/15130400",
"description": "Crop monitoring dataset generated with DJI Mavic 3 Classic UAV and Metashape Agisoft that contains RGB images, pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM.",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-05-18",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-04",
"link": "https://zenodo.org/records/15120688",
"description": "Crop monitoring dataset generated with DJI Mavic 3 Classic UAV and Metashape Agisoft that contains RGB images, pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-05-23",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-04",
"link": "https://zenodo.org/records/15120063",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2023-04-28",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-04",
"link": "https://zenodo.org/records/15124471",
"description": "Crop monitoring dataset generated with DJI Mavic 3 Classic UAV and Metashape Agisoft that contains vineyard images and RGB pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-08-13",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-08",
"link": "https://zenodo.org/records/15172492",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UAV Canyelles Vineyard Dataset 2024-07-31",
"author": "Esther Vera, Albert Pedraza, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-04-08",
"link": "https://zenodo.org/records/15166695",
"description": "Crop monitoring dataset generated with DJI Mavic 3M UAV and Metashape Agisoft that contains vineyard images and RGB and multispectral pointcloud data, orthomosaic images and the DEM. This data is aligned with the rest of UAV Canyelles Vineyard Datasets uploaded by Noumena (UC1), so different orthomosaics / pointclouds / DEM of different dates can be analyzed jointly for cropped and uncropped files.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, shapefile, pointclouds, orthomosaics, DEM in different bands (RGB, NIR, G, RE, R, NDVI)",
"labels": "No"
}
},
{
"name": "UC1 DATA FOLDER - 3D POINT CLOUD ANALYSIS",
"author": "Esther Vera, Aldo Sollazzo, Chirag Rangholia",
"date": "2025-11-13",
"link": "https://zenodo.org/records/17601303",
"description": "Dataset containing rgb and ndvi downsampled and standardized point clouds, ground point clouds, plant point clouds, 2d grids, 3d grids and height, volume, density and color analysis data or 3d growth analysis over time. To be used with UC1 model 08.",
"parameters": {
"location": "Canyelles, Barcelona, Spain",
"coordinates (wgs84)": "41.288687, 1.713078",
"sensor_type": ["RGB", "Multispectral"],
"contents": "Point clouds, 2D grid, 3D grids, analysis data",
"labels": "No"
}
}
],
"UC2" :[
{
"name": "UAV Spraying Parameters-Coverage in Vineyards",
"author": "Vasilis Psiroukis",
"date": "2023-12-06",
"link": "https://zenodo.org/records/10276149",
"description": "A set of UAV spraying data collected using WSPs, across different parameter configurations.",
"parameters": {
"location": "Athens, Greece",
"coordinates (wgs84)": "",
"sensor_type": ["Water-Sensitive Paper (WSP)"],
"contents": "Spray coverage data, Volume Median Diameter (VMD) estimates",
"labels": "No"
}
},
{
"name": "UAV Spraying Parameters-Coverage in Vineyards (2024 Experimental Year)",
"author": "Vasilis Psiroukis",
"date": "2024-12-05",
"link": "https://zenodo.org/records/14280682",
"description": "A set of UAV spraying data collected using WSPs, across different parameter configurations.",
"parameters": {
"location": "Athens, Greece",
"coordinates (wgs84)": "",
"sensor_type": ["Water-Sensitive Paper (WSP)"],
"contents": "Spray coverage data, Volume Median Diameter (VMD) estimates",
"labels": "No"
}
},
{
"name": "UAV Dataset containing RGB , Multispectral, Thermal images from Vineyard",
"author": "Vasilis Psiroukis",
"date": "03-06-2019",
"link": "https://zenodo.org/records/18678620",
"description": "This repository contains a processed image dataset acquired during drone-based surveys on Vineyard. The data were collected using RGB, Multispectral and Thermal cameras flown at 30m altitude over Vineyard. The images are from one field and differents on the capture days from seeding time. The resolution for the RGB is (4608x3456) and for Multispectral is (1280x960). ",
"parameters": {
"location": "Location description or coordinates: Nemea, Greece",
"coordinates (wgs84)": "37.8037739, 22.69408438888889",
"sensor type": ["RGB", "Multispectral", "Thermal"],
"contents": "UAV Data using RGB, Multispectral and Thermal cameras flown at 30m altitude over Vineyard",
"labels": "No"
}
},
{
"name": "UAV Dataset containing RGB, Multispectral and Thermal images fromTomato fields",
"author": "Vasilis Psiroukis",
"date": "07-06-2019",
"link": "https://zenodo.org/records/18679662",
"description": "This repository contains a processed image dataset acquired during drone-based surveys on Tomato fields. The data were collected using RGB, Multispectral and Thermal cameras flown at 30m altitude over Tomato fields. The images are from one field and differents on the capture days from seeding time. The resolution for the RGB is (4608x3456) and for Multispectral is (1280x960). ",
"parameters": {
"location": "Location description or coordinates: Thessaly, Greece",
"coordinates (wgs84)": "39.3653056, 22.303275",
"sensor type": ["RGB", "Multispectral", "Thermal"],
"contents": "UAV Data using RGB,Multispectral and Thermal cameras flown at 30m altitude over Tomato fields",
"labels": "No"
}
},
{
"name": "UAV Dataset containing RGB , Multispectral images from cotton crops",
"author": "Vasilis Psiroukis",
"date": "03-07-2020",
"link": "https://zenodo.org/records/18801595",
"description": "This repository contains a processed image dataset acquired during drone-based surveys on cotton fields. The data were collected using RGB, and multispectral camera flown at 70m altitude over a cotton field. The images are from one field and differents on the capture days from seeding time. The resolution for the RGB is (4608x3456) and for Multispectral is (1280x960). ",
"parameters": {
"location": "Location description or coordinates: Farsala, Greece",
"coordinates (wgs84)": "39.329872, 22.515747222222224",
"sensor type": ["RGB", "Multispectral"],
"contents": "UAV Data using RGB and Multispectral cameras flown at 70m altitude over Cotton fields",
"labels": "No"
}
}
],
"UC3": [
{
"name": "Drone raw images of cattle in french grazing areas",
"author": "Adrien Lebreton",
"date": "2023-08-10",
"link": "https://zenodo.org/records/8234156",
"description": "The dataset encompasses around 900 raw .jpeg drone images of grazing areas where cattle graze collected between June and August 2023.",
"parameters": {
"location": "France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB", "Thermal"],
"contents": "Drone images, flight metadata",
"labels": "No"
}
},
{
"name": "Sheep videos taken from drone at low altitude",
"author": "Adrien Lebreton, Louise Helary",
"date": "2023-12-18",
"link": "https://zenodo.org/records/10400302",
"description": "The dataset encompasses 16 .MP4 videos from drone (DJI mavic 3 Enterprise or Thermal) of around 50 sheep crossing a gate.",
"parameters": {
"location": "France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB", "Thermal"],
"contents": "Drone videos",
"labels": "No"
}
},
{
"name": "Drone images and their annotations of grazing cows",
"author": "Adrien Lebreton, Louise Helary",
"date": "2024-04-24",
"link": "https://zenodo.org/records/11048412",
"description": "It contains 1385 images and 4941 bounding boxes of cows taken with a DJI Pilot 2 drone. This dataset is a major contribution for public and research stakeholders to develop cow detection and counting models.",
"parameters": {
"location": "France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "Drone images, flight metadata, bounding boxes annotations",
"labels": "Yes"
}
},
{
"name": "Drone videos and their annotations of passing sheep (for counting purpose)",
"author": "Louise Helary, Kinsey Nnenna, Marta Kolodziejczyk, Jana Schewe, Léa Philip, Estelle Nicolas, Adrien Lebreton",
"date": "2024-06-18",
"link": "https://zenodo.org/records/12094356",
"description": "The dataset encompasses 4 .MP4 videos from drone (DJI mavic 3 Enterprise or Thermal) of around 50 sheep crossing a gate.",
"parameters": {
"location": "France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB", "Thermal"],
"contents": "Drone videos, flight metadata, annotations in YOLO and MOTS",
"labels": "Yes"
}
},
{
"name": "Aerial videos and images of goats (for computer vision purpose)",
"author": "Adrien Lebreton, Laurence Depuille, Estelle Nicolas, Louise Helary",
"date": "2025-01-03",
"link": "https://zenodo.org/records/14591324",
"description": "The dataset contains drone-captured videos and images from two goat farms in France, featuring varied settings and resolutions.",
"parameters": {
"location": "Ardèche, France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "Drone videos, RGB images",
"labels": "No"
}
},
{
"name": "Drone images and their annotations of goats/small ruminants (for computer vision purpose)",
"author": "Adrien Lebreton, Léane Duval, Laurence Depuille, Estelle Nicolas, Louise Helary",
"date": "2025-02-26",
"link": "https://zenodo.org/records/14929694",
"description": "This dataset includes annotated drone videos and images of sheep and goats with YOLO-labeled bounding boxes for computer vision detection.",
"parameters": {
"location": "Ardèche, France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "Drone images, flight metadata, YOLO annotations",
"labels": "Yes"
}
},
{
"name": "Drone videos and images of sheep in various conditions (for computer vision purpose)",
"author": "Adrien Lebreton, Coline Morin, Estelle Nicolas, Louise Helary",
"date": "2025-03-26",
"link": "https://zenodo.org/records/14967219",
"description": "Counting sheep and goats is a significant challenge for farmers managing flocks with hundreds of animals. Our objective is to develop a computer vision-based methodology to count sheep and goats as they pass through a corridor or gate. This approach utilizes low-altitude aerial videos (<15 m) recorded by drones.",
"parameters": {
"location": "Alpes de Haute Provence and Limousin, France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "Drone videos, RGB images",
"labels": "No"
}
},
{
"name": "Drone videos and images of sheep in various conditions (for computer vision purpose) - Part II",
"author": "Adrien Lebreton, Laurent Helary, E. Nicolas, L. Goin, P.-G. Grisot, T. Jegorel",
"date": "2026-03-06",
"link": "https://zenodo.org/records/18889354",
"description": "This dataset is the second part of 'Drone videos and images of sheep in various conditions (for computer vision purpose)' and offers a large diversity of sheep aerial images across farms and seasons. It includes 1679 images and 47 videos, featuring background diversity (grey rangelands and diverse green pastures), lighting diversity, and both dispersed and highly clustered groups of sheep. Additional objects such as dogs, humans, and farm equipment are also visible in some scenes.",
"parameters": {
"location": "Alpes de Haute Provence and Limousin, France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "RGB images, Drone videos, flight metadata",
"labels": "No"
}
},
{
"name": "Drone videos to test sheep counting computer vision pipeline",
"author": "Adrien Lebreton, P.-G. Grisot, L. Depuille, L. Goin, E. Nicolas, Laurent Helary",
"date": "2026-03-06",
"link": "https://zenodo.org/records/18889878",
"description": "This dataset provides 98 videos (79 post-processed and 19 raw) of small ruminant flocks funneled through passages, designed to test and evaluate a sheep detection, tracking, and counting pipeline using a virtual counting line. The videos are intended for use with a computer vision pipeline, with a Python GUI demonstrator available for simple testing.",
"parameters": {
"location": "France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "Drone videos, flight metadata",
"labels": "No"
}
},
{
"name": "Drone images and their annotations of sheep in various conditions (for computer vision purpose)",
"author": "Adrien Lebreton, A. de Brito, E. Blaise, T. Jegorel, L. Goin, P.-G. Grisot, E. Nicolas, Laurent Helary",
"date": "2026-03-06",
"link": "https://zenodo.org/records/18889623",
"description": "This dataset provides 809 annotated drone images of sheep in various conditions, with 18,018 sheep bounding boxes in Ultralytics YOLO Detection 1.0 format. It is designed for training or evaluating object detection models, and includes both nadir and oblique views, as well as evaluation subsets for model benchmarking.",
"parameters": {
"location": "France",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "Drone images, annotations (YOLO format), flight metadata",
"labels": "Yes"
}
}
],
"UC4": [
{
"name": "Forestry and Biodiversity monitoring in Lithuania with hyperspectral camera and UAV",
"author": "BETAVIA",
"date": "2023-09-11",
"link": "https://zenodo.org/records/8333789",
"description": "Hyperspectral imaging acquired with UAV on different dates of a pine tree forest.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "Drone hyperspectral images, calibration images, hyperspectral data cubes, flight metadata",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with thermal camera over Lithuanian forests in winter for wild boar detection",
"author": "BETAVIA",
"date": "2024-07-15",
"link": "https://zenodo.org/records/12743334",
"description": "The dataset consists of thermal images captured by DJI drones over Lithuanian forests in winter, used for wild boar detection",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Thermal"],
"contents": "Thermal videos, flight metadata",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #1",
"author": "BETAVIA",
"date": "2024-09-27",
"link": "https://zenodo.org/records/13846686",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #12",
"author": "BETAVIA",
"date": "2024-09-27",
"link": "https://zenodo.org/records/15063168",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #11",
"author": "BETAVIA",
"date": "2025-03-21",
"link": "https://zenodo.org/records/15063160",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #10",
"author": "BETAVIA",
"date": "2025-03-21",
"link": "https://zenodo.org/records/15063121",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #9",
"author": "BETAVIA",
"date": "2025-03-21",
"link": "https://zenodo.org/records/15063049",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #8",
"author": "BETAVIA",
"date": "2025-03-21",
"link": "https://zenodo.org/records/15063013",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #7",
"author": "BETAVIA",
"date": "2025-03-21",
"link": "https://zenodo.org/records/15062953",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #5",
"author": "BETAVIA",
"date": "2024-12-20",
"link": "https://zenodo.org/records/14535422",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #6",
"author": "BETAVIA",
"date": "2024-12-20",
"link": "https://zenodo.org/records/14535456",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #4",
"author": "ART21",
"date": "2024-12-20",
"link": "https://zenodo.org/records/14535368",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #13",
"author": "ART21",
"date": "2025-09-17",
"link": "https://zenodo.org/records/17142640",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #14",
"author": "ART21",
"date": "2025-09-17",
"link": "https://zenodo.org/records/17142746",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "Multiple DJI drone flights with hyperspectral camera over forests in Lithuania #15",
"author": "ART21",
"date": "2025-09-17",
"link": "https://zenodo.org/records/17142780",
"description": "The dataset contains processed hyperspectral data cubes in ENVI format, with both georectified and non-georectified files, along with generated RGB and NDVI images.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Hyperspectral"],
"contents": "RGB images, NDVI images, hyperspectral data cubes, georectified data",
"labels": "No"
}
},
{
"name": "DJI Mavic 3 Thermo flights over Lithuanian forests #1",
"author": "UAB Beta via",
"date": "2025-10-10",
"link": "https://zenodo.org/records/17310544",
"description": "Dataset of DJI Mavic 3 Thermal drone flights over Lithuanian forests, including thermal videos, visual and thermal images, and GPS metadata for wildlife monitoring.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Thermal", "RGB"],
"contents": "Thermal videos, metadata, thermal/RGB images",
"labels": "No"
}
},
{
"name": "DJI Mavic 3 Thermo flights over Lithuanian forests #2",
"author": "UAB Beta via",
"date": "2025-10-10",
"link": "https://zenodo.org/records/17311014",
"description": "Dataset of DJI Mavic 3 Thermal drone flights over Lithuanian forests, including thermal videos, visual and thermal images, and GPS metadata for wildlife monitoring.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Thermal", "RGB"],
"contents": "Thermal videos, metadata, thermal/RGB images",
"labels": "No"
}
},
{
"name": "DJI Mavic 3 Thermo flights over Lithuanian forests #3",
"author": "UAB Beta via",
"date": "2025-10-10",
"link": "https://zenodo.org/records/17311189",
"description": "Dataset of DJI Mavic 3 Thermal drone flights over Lithuanian forests, including thermal videos, visual and thermal images, and GPS metadata for wildlife monitoring.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Thermal", "RGB"],
"contents": "Thermal videos, metadata, thermal/RGB images",
"labels": "No"
}
},
{
"name": "DJI Mavic 3 Thermo flights over Lithuanian forests #4",
"author": "UAB Beta via",
"date": "2025-10-10",
"link": "https://zenodo.org/records/17311327",
"description": "Dataset of DJI Mavic 3 Thermal drone flights over Lithuanian forests, including thermal videos, visual and thermal images, and GPS metadata for unhealthy forest monitoring.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Thermal", "RGB"],
"contents": "Thermal videos, metadata, thermal/RGB images",
"labels": "No"
}
},
{
"name": "DJI Mavic 3 Thermo flights over Lithuanian forests #4",
"author": "UAB Beta via",
"date": "2025-10-10",
"link": "https://zenodo.org/records/17311890",
"description": "Dataset of DJI Mavic 3 Thermal drone flights over Lithuanian forests, including thermal videos, visual and thermal images, and GPS metadata for unhealthy forest monitoring.",
"parameters": {
"location": "Lithuania",
"coordinates (wgs84)": "",
"sensor_type": ["Thermal", "RGB"],
"contents": "Thermal videos, metadata, thermal/RGB images",
"labels": "No"
}
}
],
"UC5" :[
{
"name": "Photogrammetry Orthomosaic and Digital Surface Model (Strumica, North Macedonia)",
"author": "GEOSENSE, AGFUTURA",
"date": "2024-07-26",
"link": "https://zenodo.org/records/12909590",
"description": "A sample dataset from Strumica, North Macedonia, featuring photogrammetric orthomosaics and a Digital Surface Models (DSM).",
"parameters": {
"location": "Strumica, North Macedonia",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "RGB images, 3D pointcloud, DEM, orthomosaics",
"labels": "No"
}
},
{
"name": "Photogrammetry Orthomosaic and Digital Surface Model 2 (Strumica, North Macedonia)",
"author": "GEOSENSE",
"date": "2024-10-24",
"link": "https://zenodo.org/records/12772799",
"description": "A sample dataset from Strumica, North Macedonia, featuring photogrammetric orthomosaics and a Digital Surface Models (DSM).",
"parameters": {
"location": "Strumica, North Macedonia",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "RGB images, 3D pointcloud, DEM, orthomosaics",
"labels": "No"
}
},
{
"name": "ICAERUS - UC5 - Enhanced Payload Data for Drone Logistics in Rural Areas",
"author": "GEOSENSE",
"date": "2024-12-11",
"link": "https://zenodo.org/records/12909590",
"description": "Dataset that supports the development and operation of the DaeDaLus (Drone Delivery Logistics Services) platform.",
"parameters": {
"location": "Strumica, North Macedonia",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "RGB images, 3D pointcloud, DEM, orthomosaics",
"labels": "No"
}
},
{
"name": "Drone Processed Images for Coastal Litter Detection (RGB, Thermal, Multispectral)",
"author": "GEOSENSE IKE, Harokopio University of Athens",
"date": "2025",
"link": "https://zenodo.org/records/17805043",
"description": "Processed image dataset acquired during drone-based surveys for coastal litter pollution detection. Data collected using RGB, thermal, and multispectral camera payloads flown at multiple altitudes (30m, 60m, 90m, 120m) over coastal environments with varying shoreline morphology and litter density.",
"parameters": {
"location": "",
"coordinates (wgs84)": "",
"sensor_type": ["RGB", "Thermal", "Multispectral"],
"contents": "Processed RGB images, thermal images, multispectral images at multiple altitudes (30m, 60m, 90m, 120m).",
"labels": "No"
}
}
],
"OCT - Agrobit Srl": [
{
"name": "UAV AgroTwin Vineyard Dataset 2024",
"author": "Simone Kartsiotis, Antonio Donnangelo",
"date": "2024-06-19",
"link": "https://zenodo.org/records/12168516",
"description": "The datasets contains RGB images and pointclouds of a vineyard field.",
"parameters": {
"location": "Strumica, North Macedonia",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "RGB images, 3D pointclouds",
"labels": "No"
}
}
],
"OCT - TAAL": [
{
"name": "3D cloud reconstruction and 2D NDVI index",
"author": "Taal S.r.l.",
"date": "2024-07-26",
"link": "https://zenodo.org/records/12954801",
"description": "The dataset contains 3D pointclouds and 2D NDVI maps of an olive grove.",
"parameters": {
"location": "Rome, Italy",
"coordinates (wgs84)": "",
"sensor_type": ["RGB", "Multispectral"],
"contents": "3D pointclouds, 2D NDVI maps",
"labels": "No"
}
},
{
"name": "raw drone sensing data - 1",
"author": "Taal S.r.l.",
"date": "2024-07-26",
"link": "https://zenodo.org/records/12943015",
"description": "It includes RGB and multispectral images collected with the DJI Mavic 3M in an olive grove, along with flight mission files and GIS information, organized by individual drone flights in separate folders.",
"parameters": {
"location": "Rome, Italy",
"coordinates (wgs84)": "",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, multispectral images (R, RE, G, NIR), flight metadata",
"labels": "No"
}
},
{
"name": "raw drone sensing data - 2",
"author": "Taal S.r.l.",
"date": "2024-07-26",
"link": "https://zenodo.org/records/12924461",
"description": "It includes RGB and multispectral images collected with the DJI Mavic 3M in an olive grove, along with flight mission files and GIS information, organized by individual drone flights in separate folders.",
"parameters": {
"location": "Rome, Italy",
"coordinates (wgs84)": "",
"sensor_type": ["RGB", "Multispectral"],
"contents": "RGB images, multispectral images (R, RE, G, NIR), flight metadata",
"labels": "No"
}
},
{
"name": "Ground Truth Data",
"author": "Taal S.r.l.",
"date": "2024-07-29",
"link": "https://zenodo.org/records/13120763",
"description": "The dataset features a dataset of labeled RGB and NDVI olive tree images for training classification models, with health statuses detailed in three CSV files.",
"parameters": {
"location": "Rome, Italy",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "RGB images, augmented images, CSV label files",
"labels": "Yes"
}
},
{
"name": "Tree detected",
"author": "Taal S.r.l.",
"date": "2024-07-29",
"link": "https://zenodo.org/records/13121962",
"description": "The repository contains a dataset of labeled olive trees with bounding boxes used for training detection models.",
"parameters": {
"location": "Rome, Italy",
"coordinates (wgs84)": "",
"sensor_type": ["RGB"],
"contents": "RGB images, augmented images, CSV label files",
"labels": "Yes"
}
},
{
"name": "Plant Health Status",
"author": "Taal S.r.l.",
"date": "2024-07-30",
"link": "https://zenodo.org/records/13132625",
"description": "This dataset contains the xylella classifier results to identify asymptomatic health status, effectively differentiating it from mild and evident symptomatic conditions in olive trees.",
"parameters": {
"location": "Rome, Italy",
"coordinates (wgs84)": "",
"sensor_type": [""],
"contents": "Prediction results",
"labels": "No"
}
}
],
"OCT - SHIELD": [
{
"name": "SHIELD Demonstrations Dataset",
"author": "Obsidian Innovation Institute - Associação",
"date": "2024-07-31",
"link": "https://zenodo.org/records/13146217",
"description": "This dataset contains the NMEA sentences generated during the Secure and High Integrity EGNSS enabled drone (SHIELD) demonstration campaing and concerning the different demonstration scenarios.",
"parameters": {
"location": "Portugal",