Evaluate whether two SpatRaster objects have the same extent, number of rows and columns, projection, resolution, and origin (or a subset of these comparisons).
# S4 method for SpatRaster,SpatRaster
compareGeom(x, y, ..., lyrs=FALSE,
crs=TRUE, warncrs=FALSE, ext=TRUE, rowcol=TRUE, res=FALSE)
SpatRaster
SpatRaster
Additional SpatRasters
logical. If TRUE
, the number of layers is compared
logical. If TRUE
, coordinate reference systems are compared
logical. If TRUE
, a warning is given if the crs is different (instead of an error)
logical. If TRUE
, bounding boxes are compared
logical. If TRUE
, number of rows and columns of the objects are compared
logical. If TRUE
, resolutions are compared (redundant when checking extent and rowcol)
# NOT RUN {
r1 <- rast()
r2 <- rast()
r3 <- rast()
compareGeom(r1, r2, r3)
nrow(r3) <- 10
# }
# NOT RUN {
compareGeom(r1, r3)
# }
Run the code above in your browser using DataLab