Raster di mosaico in R?


10

Sto cercando di trasformare diversi raster in un unico grande raster in R. Uso di script pubblicati in /programming/15287807/how-can-i-create-raster-mosaic-using-list-of-rasters Ma ho ricevuto un messaggio di avviso e un messaggio di errore.

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)

Stava segnalando un errore come di seguito

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

Poi ho provato un'altra versione.

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

Ma qui alcuni messaggi di avviso come di seguito

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

Ho ignorato il messaggio, quindi ho continuato

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

ma qui lo stesso errore menzionato in precedenza

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

Ho trovato anche il seguente script, ma non funziona nceas.ucsb.edu/scicomp/usecases/createrasterimagemosaic
Vandka,

Risposte:


17

Il problema qui è che mosaic e do.call si aspettano un oggetto raster nell'elenco e non solo i nomi dei caratteri del raster contenuto nel vettore "rasters1". In effetti, stai chiedendo di mosaico un nome in un vettore e non un oggetto raster.

# 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

Solo una piccola variazione sul tema. Puoi evitare la creazione di un elenco vuoto e il ciclo for ...

    rast.list <- list()

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

... con un comando lappone .

    rast.list <- lapply(1:length(rasters1),
 function(x) {
raster(rasters1[x])
})
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.