matjs commited on
Commit
71cda6b
·
1 Parent(s): 9a61925

feat: readme

Browse files
Files changed (1) hide show
  1. README.md +91 -1
README.md CHANGED
@@ -12,4 +12,94 @@ tags:
12
  pretty_name: IGNIS - Intelligent Geospatial Network for Incendiary Surveillance
13
  size_categories:
14
  - n<1K
15
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  pretty_name: IGNIS - Intelligent Geospatial Network for Incendiary Surveillance
13
  size_categories:
14
  - n<1K
15
+ ---
16
+
17
+ # IGNIS - Intelligent Geospatial Network for Incendiary Surveillance
18
+
19
+ A dataset for **image segmentation of wildfires** in satellite/aerial imagery. The dataset contains **paired images and labels**, where each label highlights wildfire-affected regions.
20
+
21
+ ## Dataset Summary
22
+
23
+ This dataset was created to support research in **wildfire detection, monitoring, and environmental risk assessment**. It can be used for training and evaluating segmentation models.
24
+
25
+ * **Task:** Image Segmentation
26
+ * **Domain:** Remote sensing / Environmental monitoring
27
+ * **License:** CC BY 4.0
28
+
29
+ ## Supported Tasks
30
+
31
+ * **Image Segmentation** – Identify wildfire regions pixel-by-pixel.
32
+ * **Potential Applications:**
33
+
34
+ * Early wildfire detection
35
+ * Environmental monitoring
36
+ * Risk modeling and prevention systems
37
+
38
+ ## Dataset Structure
39
+
40
+ ### Data Splits
41
+
42
+ The dataset is divided into:
43
+
44
+ * `train`
45
+ * `validation`
46
+ * `test`
47
+
48
+ ## Data Fields
49
+
50
+ * **image** (`Image`) – RGB image
51
+ * **label** (`Label`) – TXT file containing coordinates for the polygons following YOLOv11 format
52
+
53
+ Example:
54
+
55
+ ```
56
+ {
57
+ "image": "train/images/image_001.jpg",
58
+ "label": "train/labels/image_001.txt"
59
+ }
60
+ ```
61
+
62
+ ## Dataset Creation
63
+
64
+ ### Motivation
65
+
66
+ Wildfires are an increasing threat worldwide. This dataset was built to help researchers and engineers develop segmentation models that can detect wildfire-affected areas in aerial/satellite imagery.
67
+
68
+ This dataset is originally a personal project, but anyone with expert knowledge in meteorological, geographic, geophisical and related areas might feel free to reach out and help expand the dataset and increase its quality.
69
+
70
+ ### Source Data
71
+
72
+ * **Collection Process:** Images were sourced from open satellite/aerial datasets.
73
+ * **Annotation Process:** Masks were generated using a mix between manual labelling and automatic polygon generation thanks to Roboflow's tools.
74
+
75
+ ### Annotations
76
+
77
+ * **Annotation Guidelines:** Each class is labeled as:
78
+
79
+ * 0 → Burned Ground (burnt)
80
+ * 1 → Smoke Cloud (smoke_cloud)
81
+ * 2 → Smoke Column (smoke_column)
82
+ * 3 → Wildfire (wildfire)
83
+
84
+ ## Licensing Information
85
+
86
+ * **Dataset License:** CC BY 4.0
87
+
88
+ ## Citation
89
+
90
+ If you use this dataset, please cite:
91
+
92
+ ```
93
+ @dataset{ignis,
94
+ title = {Intelligent Geospatial Network for Incendiary Surveillance},
95
+ author = {Matheus J. G. Silva},
96
+ year = {2025},
97
+ url = {https://huggingface.co/datasets/matjs/ignis}
98
+ }
99
+ ```
100
+
101
+ ## Acknowledgements
102
+
103
+ * [NASA FIRMS - Fire Information for Resource Management System](https://firms.modaps.eosdis.nasa.gov/)
104
+ * [NASA Earth Observatory](https://earthobservatory.nasa.gov)
105
+ * Inspired by the growing need for **AI-assisted wildfire monitoring**.