View source: R/inputProcessingUtilties.R
| centerPointRasterTemplate | R Documentation | 
Creates a SpatRaster template from a
SpatVector point object in which the raster cells
are centered on the vector points.
centerPointRasterTemplate(rawPointData)
| rawPointData | A  | 
rawPointData is a SpatVector object that
contains x and y coordinates.
An empty SpatRaster designed to serve as a template for
rasterizing SpatVector objects.
rasterize
library(terra)
# Create point grid
coords <- data.frame(x = rep(seq(1:5), times = 5),
                    y = unlist(lapply(1:5, FUN = function(x) {
                      rep(x, times = 5)})))
# Create data and add NAs to simulate uneven bottom depths
dd <- data.frame(SURFACE = 1:25,
                d5M = 6:30,
                d10M = 11:35,
                d25M = 16:40)
dd$d25M[c(1:5, 18:25)] <- NA
dd$d10M[c(3:5, 21:23)] <- NA
dd$d5M[c(4, 22)] <- NA
dd[,c("x","y")] <- coords
# Create SpatialPointsDataFrame
sp <- vect(dd, geom = c("x", "y"))
# Here's the function
template <- centerPointRasterTemplate(rawPointData = sp)
class(template)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.