CleanMethod

CleanMethod

class CleanMethod(value)[source]

Bases: sertit.misc.ListEnum

Cleaning method for optical bands

Attributes

CLEAN

Clean everything that can be cleaned (nodata, saturated pixels, cosmic rays, broken detectors...).

NODATA

Clean only the detector nodata (nan outside the detector footprint).

RAW

Return raw band without any cleaning (fastest method)

CLEAN = 'clean'

Clean everything that can be cleaned (nodata, saturated pixels, cosmic rays, broken detectors…). Default method but slowest.

NODATA = 'nodata'

Clean only the detector nodata (nan outside the detector footprint). A bit faster than the previous method.

RAW = 'raw'

Return raw band without any cleaning (fastest method)