rfillspgaps | R Documentation |
The function close gaps of a raster data by using IDW.
rfillspgaps(rasterLayer,
maskPol=NULL,
nmax =50,
zcol=1,
...)
rasterLayer |
SpatRaster-class, RasterLayer-class, SpatialGrid-class or SpatialPixels-class; Raster that contains NAs. |
maskPol |
sf-class, SpatVector-class, SpatialPolygons or SpatialPolygonsDataFrame; Area of interest to spatially fill |
nmax |
see krige, idw function. |
zcol |
|
... |
arguments passed to krige, idw function. |
raster object with NA replaced using IDW in rasterLayer
format.
Milan Kilibarda kili@grf.bg.ac.rs
Kilibarda, M., T. Hengl, G. B. M. Heuvelink, B. Graeler, E. Pebesma, M. Percec Tadic, and B. Bajat (2014), Spatio-temporal interpolation of daily temperatures for global land areas at 1 km resolution, J. Geophys. Res. Atmos., 119, 2294-2313, doi:10.1002/2013JD020803;
Kilibarda M., M. Percec Tadic, T. Hengl, J. Lukovic, B. Bajat - Spatial Statistics (2015), Global geographic and feature space coverage of temperature data in the context of spatio-temporal interpolation, doi:10.1016/j.spasta.2015.04.005.
rfilltimegaps
pred.strk
library(terra)
data(nlmodis20110712)
data(NLpol)
nlmodis20110712 <- terra::rast(nlmodis20110712)
# SpaVector
NLpol = vect(NLpol)
crs(NLpol) <- "epsg:4326"
# # sf
# NLpol <- st_as_sf(NLpol) #, crs = st_crs(4326))
plot(nlmodis20110712)
# fill spatial gaps
r=rfillspgaps(nlmodis20110712,NLpol)
plot(r)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.