Trait Stack

Source
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§

Source

fn stack( &mut self, other: RasterDataShape, dim_to_stack: Dimension, ) -> &mut RasterDataShape

Stacks another shape along a dimension.

Source

fn extend(&mut self, other: RasterDataShape) -> &mut RasterDataShape

Extends the time dimension.

Implementors§