Riproiezione di raster da lat / lon a UTM in R?


13

devo trasformarlo in un UTM per rendere funzionale il buffer.

wets<-readOGR(dsn=".",layer="shapefile")
r.raster <- raster()
extent(r.raster) <- extent(wets)
res(r.raster) <- 100 

wets.r <- rasterize(wet,r.raster)
plot(wets.r)
wetsbuf<-buffer(wets.r,width=500)

Durante la creazione del buffer che è l'ultima riga di codice, fornisce questo avviso:

Warning message:  
In couldBeLonLat(x) :
  raster has a longitude/latitude CRS, but coordinates do not match that

ecco le informazioni

  summary(wets.r)
          layer
 Min.        1
 1st Qu.     1
 Median      2
 3rd Qu.     9
 Max.       11
 NA's    52629

summary(wets)

  Object of class SpatialPolygonsDataFrame
Coordinates:
      min       max
 x  683705  714088.8
 y 4326266 4343768.0
 Is projected: TRUE 
 proj4string :
 [+proj=tmerc +lat_0=0 +lon_0=24 +k=0.9996 +x_0=500000 +y_0=0 +datum=GGRS87
 +units=m +no_defs +ellps=GRS80 +towgs84=-199.87,74.79,246.62]
 Data attributes:
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
    0.0     2.5     5.0     5.0     7.5    10.0 






 wets.r

class       : RasterLayer 
dimensions  : 175, 304, 53200  (nrow, ncol, ncell)
resolution  : 100, 100  (x, y)
extent      : 683705, 714105, 4326268, 4343768  (xmin, xmax, ymin, ymax)
coord. ref. : +proj=longlat +datum=WGS84 +ellps=WGS84 +towgs84=0,0,0 
data source : in memory
names       : layer 
values      : 1, 11  (min, max)
attributes  :
   ID FID
 from:  1   0
 to  : 11  10

Devo cambiare la predizione per poter fare il buffer.


Sei in un sistema di coordinate proiettato o in un CS geografico?
Aaron

Penso che i dati vettoriali iniziali siano in un sistema di coordinate proiettato.
gsa,

Proiettato (ad es. UTM) o geografico (lat / lon)?
Aaron

Non so come controllare, penso che UTM non ne sia certo
gsa,

quali sono le coordinate e in quale area (stato, città) ti trovi?
Grazie

Risposte:


16

Ecco come riproiettare un raster in R usando il pacchetto raster . In questo esempio, il geotiff di input era in un sistema di coordinate geografiche NAD83 e riproiettavo in un sistema di coordinate proiettato NAD 83 UTM 15. Un buon riferimento per le proiezioni in formato Proj4, utilizzate da RGDAL, è disponibile su spatialreference.org .

library(raster)

# Create RasterLayer object
r <- raster('C:/temp/binary_nad83.tif')

# Define the Proj.4 spatial reference 
# http://spatialreference.org/ref/epsg/26915/proj4/
sr <- "+proj=utm +zone=15 +ellps=GRS80 +datum=NAD83 +units=m +no_defs" 

# Project Raster
projected_raster <- projectRaster(r, crs = sr)

# Write the RasterLayer to disk (See datatype documentation for other formats)
writeRaster(projected_raster, filename="C:/temp/binary_utm15.tif", datatype='INT1U', overwrite=TRUE)

Grazie per la risposta, restituisce però questo: Errore in projectExtent (da, projto): impossibile eseguire questa trasformazione Inoltre: Messaggio di avviso: In rgdal :: rawTransform (projfrom, projto, nrow (xy), xy [, 1], xy [,: 218 punti proiettati non finiti
gsa

Stai utilizzando un raster a banda singola o multibanda? Questo esempio è per un raster a banda singola.
Aaron

Viene da un processo rasterizzato di un vettore (zone umide) non di un'immagine satellitare, quindi andrò con la singola banda.
gsa,

Prova ad aggiornare i tuoi pacchetti raster / rgal: r-sig-geo.2731867.n2.nabble.com/…
Aaron

@gsa, se funziona è una buona idea votare e accettare la risposta! Altrimenti, modifica e chiarisci la tua domanda originale.
Simbamangu,
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.