pub trait Stack {
// Required methods
fn stack(
&mut self,
other: RasterDataShape,
dim_to_stack: Dimension,
) -> &mut RasterDataShape;
fn extend(&mut self, other: RasterDataShape) -> &mut RasterDataShape;
}Expand description
Trait for stacking RasterDataShapes.
Required Methods§
Sourcefn stack(
&mut self,
other: RasterDataShape,
dim_to_stack: Dimension,
) -> &mut RasterDataShape
fn stack( &mut self, other: RasterDataShape, dim_to_stack: Dimension, ) -> &mut RasterDataShape
Stacks another shape along a dimension.
Sourcefn extend(&mut self, other: RasterDataShape) -> &mut RasterDataShape
fn extend(&mut self, other: RasterDataShape) -> &mut RasterDataShape
Extends the time dimension.