This function uses an is.raptor
file (preferably obtained from align
) and adds a column with the first cells detected within radial files (i.e. first cell formed in the growing season). The value indicates to which radial file the first cell belongs to (counting from left to right). All cells with NA
are not considered as first row cells and are excluded in further analyses.
first.cell(input, frac.small, yrs, make.plot = TRUE)
input | an |
---|---|
frac.small | a numeric value (between 0 and 1) that is multiplied by the average cell lumen size of the ring, determining the minimum threshold used to exclude cells in the first row that are too small (default = 0.5). |
yrs | either a numeric vector providing the year(s) of interest or |
make.plot | logical flag indicating whether to make a plot (default = |
An is.raptor
file with an added column describing the first cells.
The first row of cells is detected by using a local search algorithm, where the first cell is indicated by a green box when make.plot = TRUE
, and the last by a red box. Values within the graph indicate the row numbers that have been detected. The output adds a column to the input data which indicates the first row of cells. The frac.small argument allows the user to filter out unrealistically small cells.
if (FALSE) { #first row detection example input<-is.raptor(example.data(species="LOT_PICEA"), str = FALSE) input<-input[which(input[,"YEAR"]>2006 & input[,"YEAR"]<2011),] aligned<-align(input,list=c(0.04,0.04,0,0)) first<-first.cell(aligned, frac.small = 0.5, yrs = FALSE, make.plot = TRUE) }