Aligns a raster to a reference raster.
align_rasters(
unaligned,
reference,
dstfile,
output_Raster = FALSE,
nThreads = 1,
projres_only = FALSE,
verbose = FALSE,
...
)
Character. The filename of a raster to be aligned to the reference raster.
Character. The filename of a raster to be used as the reference for the alignment. Syncing will use the reference's projection, resolution, and extent.
Character. The filename of the synchronized output file.
Logical. Return output dst_dataset as a RasterBrick?
Numeric or Character. If numeric, the number of threads to use. Setting to > 1 enables multithreaded execution. Can also be "ALL_CPUS" to use all available CPUS. Default is 1.
Logical. Matches projection and pixel resolution only, but leaves the spatial extent unchanged. Useful for mosaicking. Default = FALSE.
Logical. Enable verbose execution? Default is FALSE.
parameters to be passed to gdalwarp (e.g. resampling approach).
Either NULL or a RasterBricks depending on whether output_Raster is set to TRUE.
Aligns a raster to the extent and projection of a reference raster and matches the resolution of the reference raster. This is helpful in preparing multiple files of different projections, resolutions, extents, and rotations for performing map algebra or change detection.