Spot5BandCombination#
- class Spot5BandCombination(value)[source]#
Bases:
ListEnum
Band combination for SPOT4/5 data See this for more information.
- classmethod convert_from(to_convert: list | str) list #
Convert from a list or a string to an enum instance
- Parameters:
to_convert (Union[list, str]) – List or string to convert into an enum instance
- Returns:
Converted list
- Return type:
Example
>>> TsxPolarization.convert_from(["SINGLE", "S", TsxPolarization.QUAD]) [<TsxPolarization.SINGLE: 'S'>, <TsxPolarization.SINGLE: 'S'>, <TsxPolarization.QUAD: 'Q'>]
- classmethod from_value(val: Any) ListEnum #
Get the enum class from its value:
- Parameters:
val (Any) – Value of the Enum
- Returns:
Enum with value
- Return type:
ListEnum
Example
>>> TsxPolarization.from_value("Q") <TsxPolarization.QUAD: 'Q'>
- classmethod list_names() list #
Get the name list of this enum:
Example
>>> TsxPolarization.list_values() ["SINGLE", "DUAL", "QUAD", "TWIN"]
- classmethod list_values() list #
Get the value list of this enum
Example
>>> TsxPolarization.list_values() ["S", "D", "Q", "T"]
- HM = 'HM'#
“HM” for Spot-5 PAN data (5 m)
- HMX = 'HM+X'#
“HM+X” for Spot 5 merge product (3 bands, without SWIR) (5 m)
- J = 'J'#
“J” for Spot 5 multispectral product (4 bands, with SWIR) (10 m)
- T = 'T'#
“T” for supermode Spot data (2.5 m)
- TX = 'T+X'#
“T+X” for Spot 5 supermode and multispectral merge product (3 bands, without SWIR) (2.5 m)
- X = 'X'#
“X” for 3 bands extracted from 4 bands (10 m)