pub struct RasterStacker {
pub params: Box<RasterStackerParameters>,
pub sources: Box<MultipleRasterSources>,
pub type: Type,
}Expand description
RasterStacker : The RasterStacker stacks all of its inputs into a single raster time series. It queries all inputs and combines them by band, space, and then time. The output raster has as many bands as the sum of all input bands. Tiles are automatically temporally aligned. All inputs must have the same data type and spatial reference. ## Inputs The RasterStacker operator expects multiple raster inputs.
Fields§
§params: Box<RasterStackerParameters>§sources: Box<MultipleRasterSources>§type: TypeImplementations§
Source§impl RasterStacker
impl RasterStacker
Sourcepub fn new(
params: RasterStackerParameters,
sources: MultipleRasterSources,
type: Type,
) -> RasterStacker
pub fn new( params: RasterStackerParameters, sources: MultipleRasterSources, type: Type, ) -> RasterStacker
The RasterStacker stacks all of its inputs into a single raster time series. It queries all inputs and combines them by band, space, and then time. The output raster has as many bands as the sum of all input bands. Tiles are automatically temporally aligned. All inputs must have the same data type and spatial reference. ## Inputs The RasterStacker operator expects multiple raster inputs.
Trait Implementations§
Source§impl Clone for RasterStacker
impl Clone for RasterStacker
Source§fn clone(&self) -> RasterStacker
fn clone(&self) -> RasterStacker
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for RasterStacker
impl Debug for RasterStacker
Source§impl Default for RasterStacker
impl Default for RasterStacker
Source§fn default() -> RasterStacker
fn default() -> RasterStacker
Source§impl<'de> Deserialize<'de> for RasterStacker
impl<'de> Deserialize<'de> for RasterStacker
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for RasterStacker
impl PartialEq for RasterStacker
Source§fn eq(&self, other: &RasterStacker) -> bool
fn eq(&self, other: &RasterStacker) -> bool
self and other values to be equal, and is used by ==.