View source: R/ecospat.sampling.R
ecospat.rcls.grd | R Documentation |
Function for reclassifying grid files to get a combined statification from more than one grid
ecospat.rcls.grd(in_grid,no.classes)
in_grid |
A SpatRaster to be reclassified. |
no.classes |
The number of desired new classes. |
This function reclassifies the input grid into a number of new classes that the user defines. The boundaries of each class are decided automatically by splitting the range of values of the input grid into the user defined number of classes.
Returns a reclassified SpatRaster object
Achilleas Psomas achilleas.psomas@wsl.ch and Niklaus E. Zimmermann niklaus.zimmermann@wsl.ch
library(terra)
library(classInt)
library(biomod2)
data("bioclim_current")
bioclim_current <- terra::rast(bioclim_current)
bio3 <- bioclim_current[["bio3"]]
bio12 <- bioclim_current[["bio12"]]
B3.rcl<-ecospat.rcls.grd(bio3,9)
B12.rcl<-ecospat.rcls.grd(bio12,9)
B3B12.comb <- B12.rcl+B3.rcl*10
# Plotting a histogram of the classes
hist(B3B12.comb,breaks=100,col=heat.colors(88))
# Plotting the new SpatRaster (9x9 classes)
plot(B3B12.comb,col=rev(rainbow(88)),main="Stratified map")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.