我想用两个不同范围和不同投影系统的geotiff文件制作一个带有2个子图的图。我想根据Rapideye范围裁剪情节。 我应该怎么做 ? 以下是该文件的详细信息。
SPOT-VGT
class : RasterLayer
dimensions : 8961, 8961, 80299521 (nrow, ncol, ncell)
resolution : 0.008928571, 0.008928571 (x, y)
extent : -20, 60.00893, -40.00893, 40 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0
data source : /AFRI_VGT_V1.3.tiff
names : g2_BIOPAR_WB.GWWR_201305110000_AFRI_VGT_V1.3
values : 0, 255 (min, max)
RAPIDEYE
class : RasterStack
dimensions : 14600, 14600, 213160000, 5 (nrow, ncol, ncell, nlayers)
resolution : 5, 5 (x, y)
extent : 355500, 428500, 2879500, 2952500 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=utm +zone=36 +datum=WGS84 +units=m +no_defs +ellps=WGS84 +towgs84=0,0,0
names : /rapideye.tif
min values : 0, 0, 0, 0, 0
max values : 65535, 65535, 65535, 65535, 65535
答案 0 :(得分:3)
这可能不是最优雅的方式,但可能有所帮助。 我根据你的例子松散地创建了两个示例栅格。它们具有相同的预测和范围。
library(raster)
r1 <- raster(nrows=500, ncols=500,
ext=extent(c(-20, 60.00893, -40.00893, 40)),
crs='+proj=longlat +datum=WGS84')
r1[] <- rnorm(500*500,0,1)
r2 <- raster(nrows=50, ncols=50,
ext=extent(c(355500, 428500, 2879500, 2952500)),
crs='+proj=utm +zone=36 +datum=WGS84 +units=m')
r2[] <- rnorm(50*50,0,1)
为了能够使用光栅r2的范围裁剪光栅r1,我首先从光栅r2的范围创建一个spatialPolygon,然后为其分配好的投影,第三个将多边形转换为光栅r1的投影。 / p>
library(rgdal)
# Make a SpatialPolygon from the extent of r2
r2extent <- as(extent(r2), 'SpatialPolygons')
# Assign this SpatialPolygon the good projection
proj4string(r2extent) <- proj4string(r2)
# Transform the projection to that of r1
r2extr1proj <- spTransform(r2extent, CRS(proj4string(r1)))
最后,您可以使用多边形r2extr1proj裁剪光栅r1,它表示r1投影中r2的范围。然后绘制两个栅格。
r1crop <- crop(r1, r2extr1proj)
layout(matrix(c(1:2), nrow=1))
plot(r1crop)
plot(r2)