rio_tiler.mosaic.methods.defaults
rio_tiler.mosaic.methods.defaults ¶
rio_tiler.mosaic.methods.defaults: default mosaic filling methods.
CountMethod
dataclass
¶
Bases: MosaicMethodBase
Stack the arrays and return the valid pixel count.
FirstMethod
dataclass
¶
Bases: MosaicMethodBase
Feed the mosaic array with the first pixel available.
HighestMethod
dataclass
¶
Bases: MosaicMethodBase
Feed the mosaic array with the highest pixel values.
LastBandHighMethod
dataclass
¶
Bases: MosaicMethodBase
Feed the mosaic array using the last band as decision factor (highest value).
LastBandLowMethod
dataclass
¶
Bases: MosaicMethodBase
Feed the mosaic array using the last band as decision factor (lowest value).
LowestMethod
dataclass
¶
Bases: MosaicMethodBase
Feed the mosaic array with the lowest pixel values.
MeanMethod
dataclass
¶
Bases: MosaicMethodBase
Stack the arrays and return the Mean pixel value.
MedianMethod
dataclass
¶
Bases: MosaicMethodBase
Stack the arrays and return the Median pixel value.
StdevMethod
dataclass
¶
Bases: MosaicMethodBase
Stack the arrays and return the Standard Deviation value.