我正在处理大型光栅堆栈,我需要重新采样并剪切它们。 我读了Tiff文件列表并创建堆栈:
files <- list.files(path=".", pattern="tif", all.files=FALSE, full.names=TRUE)
s <- stack(files)
r <- raster("raster.tif")
s_re <- resample(s, r,method='bilinear')
e <- extent(-180, 180, -60, 90)
s_crop <- crop(s_re, e)
此过程需要数天才能完成!但是,使用ArcPy和python要快得多。我的问题是:为什么R中的过程如此缓慢以及是否有办法加速这个过程? (我使用雪包进行并行处理,但这也没有帮助)。
这些是r
和s
层:
> r
class : RasterLayer
dimensions : 3000, 7200, 21600000 (nrow, ncol, ncell)
resolution : 0.05, 0.05 (x, y)
extent : -180, 180, -59.99999, 90.00001 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0
> s
class : RasterStack
dimensions : 2160, 4320, 9331200, 365 (nrow, ncol, ncell, nlayers)
resolution : 0.08333333, 0.08333333 (x, y)
extent : -180, 180, -90, 90 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0
答案 0 :(得分:5)
我的第二个@JoshO'Brien建议直接使用GDAL,而gdalUtils
使这个直截了当。
以下是使用与您相同尺寸的双精度网格的示例。对于10个文件,我的系统需要大约55秒。它可以线性扩展,因此您可以查看365个文件大约33分钟。
library(gdalUtils)
library(raster)
# Create 10 rasters with random values, and write to temp files
ff <- replicate(10, tempfile(fileext='.tif'))
writeRaster(stack(replicate(10, {
raster(matrix(runif(2160*4320), 2160),
xmn=-180, xmx=180, ymn=-90, ymx=90)
})), ff, bylayer=TRUE)
# Define clipping extent and res
e <- bbox(extent(-180, 180, -60, 90))
tr <- c(0.05, 0.05)
# Use gdalwarp to resample and clip
# Here, ff is my vector of tempfiles, but you'll use your `files` vector
# The clipped files are written to the same file names as your `files`
# vector, but with the suffix "_clipped". Change as desired.
system.time(sapply(ff, function(f) {
gdalwarp(f, sub('\\.tif', '_clipped.tif', f), tr=tr, r='bilinear',
te=c(e), multi=TRUE)
}))
## user system elapsed
## 0.34 0.64 54.45
您可以进一步与parLapply
:
library(parallel)
cl <- makeCluster(4)
clusterEvalQ(cl, library(gdalUtils))
clusterExport(cl, c('tr', 'e'))
system.time(parLapply(cl, ff, function(f) {
gdalwarp(f, sub('\\.tif', '_clipped.tif', f), tr=tr,
r='bilinear', te=c(e), multi=TRUE)
}))
## user system elapsed
## 0.05 0.00 31.92
stopCluster(cl)
对于10个网格(使用4个同步进程),32秒时,您正在查看大约20分钟的365个文件。实际上,它应该比这更快,因为两个线程最后可能什么都不做(10不是4的倍数)。
答案 1 :(得分:1)
为了比较,这就是我得到的:
library(raster)
r <- raster(nrow=3000, ncol=7200, ymn=-60, ymx=90)
s <- raster(nrow=2160, ncol=4320)
values(s) <- 1:ncell(s)
s <- writeRaster(s, 'test.tif')
x <- system.time(resample(s, r, method='bilinear'))
# user system elapsed
# 15.26 2.56 17.83
10个文件需要150秒。所以我希望365个文件需要1.5小时---但我没试过。