jfloresf commited on
Commit
cebfe33
Β·
verified Β·
1 Parent(s): f4571c9

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This dataset was used for implementation of an ensemble model for sugar cane burning detection in North and Central Coast of Peru.
2
+ For more information, please visit the [project](https://github.com/jfloresf17/scburning)
3
+
4
+ To download the dataset, run the following command:
5
+ ```bash
6
+ git clone https://huggingface.co/datasets/jfloresf/scburning
7
+ cd scburning
8
+ ```
9
+
10
+ Revert the multipart compression: merge first, then untar
11
+ ```bash
12
+ cat database/database.tar.* | tar -xzvf - -i
13
+ cat inference/emergencies/emergencies.tar.* | tar -xzvf - -i
14
+ cat inference/pilot/pilot.tar.* | tar -xzvf - -i
15
+ ```
16
+
17
+ <div style="text-align: justify;">
18
+ Consists in 1,054 images of 512x512 pixels with different
19
+ folders:
20
+
21
+
22
+ Sentinel-2 10 bands ('S2'), Normalized Burn Ratio ('nbr'), Burned Area Detection Index ('badi'), Slope in percentage ('slope'), Normalized Difference Vegetation Index ('ndvi'), Normalized Difference Water Index ('ndwi'), Distance to Crop Cover ('dlc'), Ground Truth ('target') according the following structure:
23
+ </div>
24
+
25
+ ```
26
+ database/
27
+ β”œβ”€β”€ badi/
28
+ β”‚ β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
29
+ | β”œβ”€β”€ ...
30
+ β”œβ”€β”€ dlc/
31
+ β”‚ β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
32
+ | β”œβ”€β”€ ...
33
+ β”œβ”€β”€ landcover/
34
+ β”‚ β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
35
+ | β”œβ”€β”€ ...
36
+ β”œβ”€β”€ nbr/
37
+ β”‚ β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
38
+ | β”œβ”€β”€ ...
39
+ β”œβ”€β”€ ndvi/
40
+ β”‚ β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
41
+ | β”œβ”€β”€ ...
42
+ |── ndwi/
43
+ | β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
44
+ | β”œβ”€β”€ ...
45
+ |── slope/
46
+ | β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
47
+ | β”œβ”€β”€ ...
48
+ |── S2/
49
+ | β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
50
+ | β”œβ”€β”€ ...
51
+ |── target/
52
+ | β”œβ”€β”€ ROI_0000_01_04__..._20201008T082324.tif
53
+ | β”œβ”€β”€ ...
54
+ ```