Module eoreader.bands

Band module containing:

  • wrapper for SAR and optical bands
  • Index definitions
  • Aliases for all these useful variables

To use it, simply type:

>>> from eoreader.bands.alias import *
>>> GREEN
<OpticalBandNames.GREEN: 'GREEN'>
>>> HH
<SarBandNames.HH: 'HH'>
>>> NDVI
<function NDVI at 0x00000261F6FFA950>
Expand source code
"""
Band module containing:

- wrapper for SAR and optical bands
- Index definitions
- Aliases for all these useful variables

To use it, simply type:

```python
>>> from eoreader.bands.alias import *
>>> GREEN
<OpticalBandNames.GREEN: 'GREEN'>
>>> HH
<SarBandNames.HH: 'HH'>
>>> NDVI
<function NDVI at 0x00000261F6FFA950>
```
"""

Sub-modules

eoreader.bands.alias

Aliases for bands and index, created in order to import just this file and not OpticalBandNames, SarBandNames and eoreader.bands.index

eoreader.bands.bands

Optical Bands

eoreader.bands.index

Set of usual optical index …