Skip to content

Commit

Permalink
FIX: Correct SWIR_CIRRUS spectral band's enum value (to `SWIR_CIRRU…
Browse files Browse the repository at this point in the history
…S` instead of `CIRRUS`), avoiding shadowing cloud band `CIRRUS` #131
  • Loading branch information
remi-braun committed Mar 14, 2024
1 parent e91ecc3 commit 10ae28c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 0.21.1 (2024-mm-dd)

- FIX: Correct `SWIR_CIRRUS` spectral band's enum value (to `SWIR_CIRRUS` instead of `CIRRUS`), avoiding shadowing cloud band `CIRRUS` ([#131](https://github.com/sertit/eoreader/issues/131))

## 0.21.0.post0 (2024-01-08)

- FIX: Don't force install `planetary-computer` or `stac-asset` to use EOReader
Expand Down
4 changes: 2 additions & 2 deletions eoreader/bands/band_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ class SpectralBandNames(BandNames):
WV = "WATER_VAPOUR"
"""Water vapour"""

SWIR_CIRRUS = "CIRRUS"
"""Cirrus"""
SWIR_CIRRUS = "SWIR_CIRRUS"
"""SWIR Cirrus"""

SWIR_1 = "SWIR_1"
"""SWIR, Band 1"""
Expand Down

0 comments on commit 10ae28c

Please sign in to comment.