Burn Area Index
The Burn Area Index (BAI) was developed by Chuvieco et al. (2002) to identify burned areas using the red and NIR spectral bands. BAI emphasizes the charcoal signal in post-fire images by considering the spectral distance from each pixel to a reference spectral point where recently burned areas tend to converge.
Used in fire & burn mapping.
When to use
- Post-fire burn perimeter mapping
- Burn severity classification (low, moderate, high)
- Vegetation recovery monitoring over years
- Carbon emission estimation from biomass loss
- Soil erosion risk assessment in burned watersheds
- burned area detection
- fire severity assessment
Limitations
- Requires both pre-fire and post-fire imagery for accurate severity mapping
- Vegetation regrowth begins quickly, narrowing the post-fire assessment window
- Surface moisture from rain after the fire can mask burn signatures
- Topographic shadows produce false low-severity areas
- Ground validation needed for fire severity classification accuracy
What the values mean
| Surface type | Typical BAI |
|---|---|
| Unburned vegetation | < -0.1 |
| Low severity burn | -0.1 to 0.1 |
| Moderate burn | 0.1 to 0.44 |
| High severity, full burn | > 0.44 |
General Formula
Sensor-Specific Formulas
Most-used sensors — click to show code below
| Sensor | Provider | Formula | Band Mapping |
|---|---|---|---|
| 21AT | 1 / ((0.1 - Red)^2 + (0.06 - NIR)^2) | RED→Red, NIR→NIR | |
| CG Satellite | 1 / ((0.1 - Red)^2 + (0.06 - NIR)^2) | RED→Red, NIR→NIR | |
| USGS/NASA | 1 / ((0.1 - B4)^2 + (0.06 - B5)^2) | RED→B4, NIR→B5 | |
| USDA | 1 / ((0.1 - Red)^2 + (0.06 - NIR)^2) | RED→Red, NIR→NIR | |
| ESA | 1 / ((0.1 - B4)^2 + (0.06 - B8)^2) | RED→B4, NIR→B8 | |
| MAXAR | 1 / ((0.1 - Red)^2 + (0.06 - NIR1)^2) | RED→Red, NIR→NIR1 | |
| MAXAR | 1 / ((0.1 - Red)^2 + (0.06 - NIR1)^2) | RED→Red, NIR→NIR1 |
Spectral Band Visualization — BJ3A
Code Examples
Adapted for BJ3A bands —
Frequently Asked Questions
What is the BAI (Burn Area Index) and when should I use it?
The Burn Area Index (BAI) was developed by Chuvieco et al. (2002) to identify burned areas using the red and NIR spectral bands. BAI emphasizes the charcoal signal in post-fire images by considering the spectral distance from each pixel to a reference spectral point where recently burned areas tend to converge. Burn severity indices quantify post-fire damage by measuring the spectral changes that occur when vegetation is consumed and the underlying soil and char are exposed. BAI is particularly suited for burned area detection, fire severity assessment, post-fire monitoring. The general formula is 1 / ((0.1 - RED)^2 + (0.06 - NIR)^2), which requires RED and NIR spectral bands.
Which satellite sensors can I use to calculate BAI?
BAI is supported by 23 satellite sensors in our database, including BJ3A, BJ3N, Dragonette-1, Dragonette-2/3, Gaofen-1 and 18 more. Each sensor uses different band designations — for example, BJ3A uses the formula 1 / ((0.1 - Red)^2 + (0.06 - NIR)^2), while BJ3N uses 1 / ((0.1 - Red)^2 + (0.06 - NIR)^2). Select a sensor above to see its specific band mapping.
What spectral bands does BAI require and why?
BAI requires RED (640-760), NIR (780-1400). These wavelength regions target the specific spectral features that this index is designed to measure.
How do I calculate BAI in Python or R?
Both Python and R code samples are provided above. In Python, use rasterio to load individual band GeoTIFF files and numpy for the arithmetic. In R, the terra package handles raster operations efficiently. The key is to load bands as floating-point arrays to avoid integer division, and to handle division-by-zero cases where the denominator equals zero. For production use, consider applying a valid data mask to exclude no-data pixels before calculation.
BAI vs other burn indices
| Index | Name | How it differs |
|---|---|---|
| VI6T | VI6T Index | Alternative burn index — different band combination |
Related Burn Indices
References
Need help choosing?
Ask our AI assistant for sensor recommendations, code examples, or how BAI compares to other indices for your specific use case.