
Create raster mosaic with intelligent file selection
Source:R/05-mosaicing.R
create_raster_mosaic.RdCreate mosaics from multiple raster files with various methods and intelligent file selection based on region boundaries.
Usage
create_raster_mosaic(
input_data,
method = "merge",
region_boundary = NULL,
output_file = NULL,
parallel = FALSE
)Examples
if (FALSE) { # \dontrun{
# These examples require external data files not included with the package
# Basic mosaic
mosaic <- create_raster_mosaic("/path/to/rasters", method = "merge")
# Mosaic for specific region
ohio_mosaic <- create_raster_mosaic("/aster/files", "merge", "Ohio")
# Mean composite
mean_mosaic <- create_raster_mosaic(raster_list, method = "mean")
} # }