Add new raster objects based on position index values.
pi.add(
attTbl,
ngbList,
rNumb = FALSE,
RO,
mainPI = NULL,
secPI = NULL,
add.mPI = NULL,
add.sPI = NULL,
cond.filter = NULL,
min.N = NULL,
plot = FALSE,
r = NULL
)
data.frame, the attribute table returned by the function
attTbl
.
list, the list of neighborhoods returned by the function
ngbList
.
logic, the neighborhoods of the argument ngbList
are
identified by cell numbers (rNumb=FALSE
) or by row numbers
(rNumb=TRUE
) (see ngbList
). It is advised to use row
numbers for large rasters.
column name, the name of the column with the raster object IDs.
column name, the name of the column with main position index values.
column name, the name of the column with secondary position index values.
numeric, threshold of main position index values. Cells with values above the threshold are flagged as cells potentially being part of new raster objects.
numeric, threshold of secondary position index values. Cells with values above the threshold flagged as cells potentially being part of new raster objects.
character string, defines what cells have to be considered
by the function the arguments. Test cell absolute conditions can be used
(see conditions
).
numeric, the minimum number of cells a raster object has to have to be included in the function output.
logic, plot the results.
single or multi-layer raster of the class SpatRaster
(see
help("rast", terra)
) used to compute the attribute table. Required
only if plot = TRUE
.
The function returns a class vector with raster objects IDs. The vector has length equal to the number of rows of the attribute table. NA values are assigned to cells that do not belong to any raster object.
New raster objects are added based on position index values. Two
different position indices can be passed to the function (mainPI
and
secPI
).
Input raster objects are assigned to the same class to flag cells that are part of raster objects;
Cells with values above mainPI
OR above mainPI
are
flagged as cells potentially being part of new raster objects;
If not connected to any of the existing raster objects, the groups of cells above position index values are assigned to new raster objects.
Only raster objects with at least as many cells as specified by the
argument min.N
are included in the function output.
If both mainPI
and secPI
are equal to NULL
, the
function will exclusively filter raster objects based on their size
(min.N
).
Raster objects are added only if they do not share any border with input raster objects.
# DUMMY DATA
######################################################################################
# LOAD LIBRARIES
library(scapesClassification)
library(terra)
# LOAD THE DUMMY RASTER
r <- list.files(system.file("extdata", package = "scapesClassification"),
pattern = "dummy_raster\\.tif", full.names = TRUE)
r <- terra::rast(r)
# COMPUTE THE ATTRIBUTE TABLE
at <- attTbl(r, "dummy_var")
# COMPUTE THE LIST OF NEIGBORHOODS
nbs <- ngbList(r, attTbl=at)
################################################################################
# COMPUTE RASTER OBJECTS
################################################################################
at$RO[at$dummy_var==8] <- 1
at$RO <- cond.4.nofn(at, nbs, classVector = at$RO, class=1, nbs_of = 1,
cond = "dummy_var < dummy_var[] & dummy_var > 2")
# One raster object
unique(at$RO)
#> [1] NA 1
################################################################################
# POSITION INDEX
################################################################################
at$PI <- (at$dummy_var - mean(at$dummy_var))/stats::sd(at$dummy_var)
################################################################################
# POSITION INDEX ADDITION
################################################################################
RO1 <- pi.add(at, nbs,
RO = "RO", # Raster objects
mainPI = "PI", # PI addition layer
add.mPI = 1, # add disjoint objects with PI values > 1
plot = FALSE, r = r)
################################################################################
# PLOT
################################################################################
# Convert class vectors to raster
r_RO <- cv.2.rast(r = r, classVector = at$RO)
r_RO1 <- cv.2.rast(r = r, classVector = RO1)
# Plot
oldpar <- par(mfrow = c(1,2))
m <- c(4.5, 0.5, 2, 3.2)
terra::plot(r_RO, type="classes", main="Raster objects - Input", mar=m,
plg=list(x=1, y=1, cex=0.9))
terra::plot(r_RO1, type="classes", main="Raster objects - Output", mar=m,
plg=list(x=1, y=1, cex=0.9))
text(xyFromCell(r,at$Cell), as.character(round(at$PI,2)),
cex = 0.8) # visualize relPI
text(0.01, 1, "Add on PI >= 1", adj=c(0,0), cex = 0.8)
par(oldpar)
# Two raster object
unique(RO1)
#> [1] NA 1 2