Water Index 2015 - A spectral index for water applications.

Used in water detection.

When to use

  • Permanent and seasonal water body delineation
  • Flood mapping and emergency response
  • Wetland inventory and change detection
  • Reservoir and lake water level monitoring
  • Coastal shoreline change analysis

Limitations

  • Dark surfaces (shadows, asphalt, dark soils) can produce false positives
  • Suspended sediments and algae alter spectral response in shallow water
  • Mixed pixels at water boundaries reduce edge accuracy
  • Atmospheric correction quality directly impacts threshold selection
  • Sun glint over open water can saturate sensors and bias values
  • Requires four or more bands — limits portability across simpler sensors

What the values mean

-1 Definitely not water
-0.3 Dry / built-up surface
0 Possible moisture / wet soil
0.3 Open water
0.6 Deep / clear water
Surface typeTypical WI2015
Built-up, asphalt-0.5 to -0.2
Bare soil, vegetation-0.2 to 0
Wet soil, flooded fields0 to 0.3
Open water, lakes0.3 to 0.7

General Formula

G 550
R 650
N 850
S1 1610
S2 2190

Sensor-Specific Formulas

Most-used sensors — click to show code below

SensorProviderFormulaBand Mapping
USGS/NASA1.7204 + 171 * B3 + 3 * B4 - 70 * B5 - 45 * B6 - 71 * B7G→B3, R→B4, N→B5, S1→B6, S2→B7
ESA1.7204 + 171 * B3 + 3 * B4 - 70 * B8 - 45 * B11 - 71 * B12G→B3, R→B4, N→B8, S1→B11, S2→B12

Spectral Band Visualization — Landsat 8/9

Code Examples

Adapted for Landsat 8/9 bands —

wi2015_landsat-8-9.py

Frequently Asked Questions

What is the WI2015 (Water Index 2015) and when should I use it?

Water Index 2015 - A spectral index for water applications. Water indices exploit the strong absorption of shortwave infrared and near-infrared radiation by liquid water. They are critical for delineating water bodies, assessing moisture stress in vegetation, and monitoring hydrological changes over time. WI2015 is particularly suited for water. The general formula is 1.7204 + 171 * G + 3 * R - 70 * N - 45 * S1 - 71 * S2, which requires G and R and N and S1 and S2 spectral bands.

Which satellite sensors can I use to calculate WI2015?

WI2015 is supported by 2 satellite sensors in our database, including Landsat 8/9, Sentinel-2. Each sensor uses different band designations — for example, Landsat 8/9 uses the formula 1.7204 + 171 * B3 + 3 * B4 - 70 * B5 - 45 * B6 - 71 * B7, while Sentinel-2 uses 1.7204 + 171 * B3 + 3 * B4 - 70 * B8 - 45 * B11 - 71 * B12. Select a sensor above to see its specific band mapping.

What spectral bands does WI2015 require and why?

WI2015 requires G (550), R (650), N (850), S1 (1610), S2 (2190). Water absorbs strongly in the near-infrared and shortwave infrared portions of the spectrum, creating a measurable contrast with shorter wavelengths that penetrate the water surface.

How do I calculate WI2015 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.

Can WI2015 distinguish water from other dark surfaces?

WI2015 is designed to enhance water features, but dark surfaces like shadows, asphalt, and dark soils can produce similar values. For reliable water mapping, consider combining WI2015 with a threshold analysis and, where possible, a secondary index to reduce false positives. Time-series analysis can also help distinguish permanent water bodies from temporary dark surfaces.

WI2015 vs other water indices

IndexNameHow it differs
LSWILand Surface Water IndexAlternative water index — different band combination
LWVI-1Leaf Water Vegetation Index 1Alternative water index — different band combination
LWVI-2Leaf Water Vegetation Index 2Alternative water index — different band combination
MNDWIModified Normalized Difference Water IndexRefined formulation for specific conditions

Related Water Indices

References

https://doi.org/10.1016/j.rse.2015.12.055

Need help choosing?

Ask our AI assistant for sensor recommendations, code examples, or how WI2015 compares to other indices for your specific use case.

Ask AI →