Create README.md
Browse files
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 |
+
```
|