c.lisst: Concatenate lisst objects

Description Usage Arguments Details Value Examples

View source: R/manipulate.R

Description

This function allows to concatenate two or more lisst objects into a single object. Checks are made to ensure the final object is coherent (same instrument and inversion type, if applicable) and conversion between types is made as necessary. See details.

Usage

1
2
## S3 method for class 'lisst'
c(...)

Arguments

...

lisst objects to concatenate.

Details

The first lisst object is taken as reference, i.e., all subsequent lisst objects will be converted to its type ('raw', 'cor', 'cal', 'vsf', 'vol' or 'pnc') before the concatenation. A check on the lisst attributes is made to ensure consistency that all data is from a single instrument/model and from the same inversion type (if applicable).

Value

A lisst object with type equal to the first argument and containing data from all arguments.

Examples

1
2
3
l1 <- donkmeer_bin
l2 <- lget(donkmeer_bin, 'raw')
l3 <- c(l1, l2)

AlexCast/lisst documentation built on July 17, 2021, 12:58 a.m.