Слияние растровых стеков с различными размерами / проекциями - PullRequest
0 голосов
/ 23 мая 2019

Как я могу извлечь все данные CONUS SSURGO из FedData, а затем, как я могу объединить этот растр в один растр с данными worldclim?

# FedData Tester
library(FedData)
library(magrittr)

# Extract data for the Village Ecodynamics Project "VEPIIN" study area:
# http://veparchaeology.org
vepPolygon <- polygon_from_extent(raster::extent(672800, 740000, 4102000, 4170000),
                                  proj4string = "+proj=utm +datum=NAD83 +zone=12")

# Get the NRCS SSURGO data (USA ONLY)
SSURGO.VEPIIN <- get_ssurgo(template = vepPolygon, 
                     label = "VEPIIN")
# Plot the NED again
raster::plot(NED)
# Plot the SSURGO mapunit polygons
plot(SSURGO.VEPIIN$spatial,
     lwd = 0.1,
     add = TRUE)

...

library(raster)
library(sp)

r <- getData("worldclim",var="bio",res=2.5)
...