Мозаика растров в R?


10

Я пытаюсь объединить несколько растров в один большой растр в R. Используя скрипт, который размещен на /programming/15287807/how-can-i-create-raster-mosaic-using-list-of-rasters Но я получил предупреждение и сообщение об ошибке.

rasters1 <- list.files("F:\\MOD15A2_LAI_1km\\MOD15A2_LAI_2009", 
                      pattern = "mod15a2.a2009001.*.005.*.img$", 
                      full.names = TRUE, recursive = TRUE)

mos1 <-mosaic(rasters1, fun=mean)

Это было сообщение об ошибке, как показано ниже

Error in (function (classes, fdef, mtable)  : 
  unable to find an inherited method for function ‘extent’ for signature ‘"character"

Тогда я попробовал другую версию.

rasters1.mosaicargs <- rasters1
rasters1.mosaicargs$fun <- mean

Но здесь какое-то предупреждение, как показано ниже

Warning message:
In rasters1.mosaicargs$fun <- mean : Coercing LHS to a list

Я проигнорировал сообщение, затем продолжил

mos2 <- do.call(mosaic, rasters1.mosaicargs)

но здесь та же ошибка упоминается в качестве выше

Error in (function (classes, fdef, mtable)  : 
  unable to find an inherited method for function ‘mosaic’ for signature ‘"character", "character"

Я нашел также следующий скрипт, но он не работает nceas.ucsb.edu/scicomp/usecases/createrasterimagemosaic
Вандка

Ответы:


17

Проблема в том, что мозаика и do.call ожидают растровый объект в списке, а не только имена символов растра, который содержится в векторе "rasters1". По сути, вы запрашиваете мозаичное имя в векторе, а не растровый объект.

# Create some example data
require(raster)
    r <- raster(ncol=100, nrow=100)
      r1 <- crop(r, extent(-10, 11, -10, 11))
        r1[] <- 1:ncell(r1)
          r2 <- crop(r, extent(0, 20, 0, 20))
          r2[] <- 1:ncell(r2)
      r3 <- crop(r, extent(9, 30, 9, 30))
    r3[] <- 1:ncell(r3)

# If I create a list object of the raster names, as your are doing with list.files, 
#    do.call will fail with a character signature error 
rast.list <- list("r1","r2","r3")   
  rast.list$fun <- mean     
    rast.mosaic <- do.call(mosaic,rast.list)

# However, if I create a list contaning raster objects, the do.call function 
#   will work when mosaic is passed to it.      
rast.list <- list(r1, r2, r3)     
  rast.list$fun <- mean
    rast.mosaic <- do.call(mosaic,rast.list)
      plot(rast.mosaic)

# You could specify a for loop to create a list object, 
#   contaning raster objects
rasters1 <- list.files("F:/MOD15A2_LAI_1km/MOD15A2_LAI_2009", 
                       pattern="mod15a2.a2009001.*.005.*.img$", 
                       full.names=TRUE, recursive=TRUE)
rast.list <- list()
  for(i in 1:length(rasters1)) { rast.list[i] <- raster(rasters1[i]) }

# And then use do.call on the list of raster objects
rast.list$fun <- mean
  rast.mosaic <- do.call(mosaic,rast.list)
    plot(rast.mosaic)

1

Просто небольшая вариация на тему. Вы можете избежать создания пустого списка и цикла for ...

    rast.list <- list()

    for(i in 1:length(rasters1)) { 
rast.list[i] <- raster(rasters1[i])
}

... с радостной командой.

    rast.list <- lapply(1:length(rasters1),
 function(x) {
raster(rasters1[x])
})
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.