I need to read a large number of .asc-files, delete rows and transform them to a raster-stack by stack()
. The source of the zip-packed data is here: ftp://ftp.dwd.de/pub/CDC/grids_germany/monthly/radiation_global/
I've already unziped the files. But now I wrote this code that's really slow, my computer can't accomplished it:
files <- list.files("mydirectory", pattern="\\.asc$",
full.names=TRUE, recursive=TRUE)
i <- lapply(files, readLines) #read data
i <- lapply(i, function(x){x[-(1:28)]}) #delete rows
i <- lapply(i, function(x){gsub('-999', ' NA ', x, fixed = TRUE)}) #convert '-999' to NA
i <- lapply(i, function(x){scan(textConnection(x), what = double(), n = 866*654)}) #convert to numeric
i <- lapply(i, function(x){matrix(x, nrow = 866, ncol = 654, byrow = TRUE)}) #convert to matrix
r <- lapply(i, function(x){raster(x)}) #rasterize data
st <- stack(r) #convert to stack-raster
I wonder if there is a better way to convert this data to raster-files. Other .asc files have got only 6 lines as an header like here: ftp://ftp.dwd.de/pub/CDC/grids_germany/monthly/precipitation/01_Jan/ . I read that data by a much simpler function which use only the stack()
-function:
loadRaster <- function(directory, output, clipping){
files <- list.files(path=directory, pattern="\\.asc$",
full.names=TRUE, recursive=TRUE)
stc <- stack(files)
crs(stc) <- gk3
stcC <- crop(stc, extent(clipping))
writeRaster(stcC, filename=output)
}
#You can ignore the code below "stc <-stack(files)"
Finally I got it by using
textConnection()
stepwise (opening and closing again), because – and there was maybe the cause for slowness – there is a limit for opened connections.