如何在R中正确投影和绘制栅格

时间:2014-12-17 21:20:03

标签: r gis r-raster

我在相同区域Behrmann投影中有一个光栅,我想把它投射到Mollweide投影和情节。

然而,当我使用以下代码执行此操作时,绘图似乎不正确,因为地图延伸到两侧,并且有各种陆地的轮廓,我不期望它们。此外,地图扩展超出情节窗口。

任何人都可以帮我把它搞好吗?

谢谢!

使用的数据文件可以从this link下载。

这是我到目前为止的代码:

require(rgdal)
require(maptools)
require(raster)

data(wrld_simpl)

mollCRS <- CRS('+proj=moll')
behrmannCRS <- CRS('+proj=cea +lat_ts=30')

sst <- raster("~/Dropbox/Public/sst.tif", crs=behrmannCRS)

sst_moll <- projectRaster(sst, crs=mollCRS)
wrld <- spTransform(wrld_simpl, mollCRS)

plot(sst_moll)
plot(wrld, add=TRUE)

enter image description here

1 个答案:

答案 0 :(得分:5)

好吧,因为this页面上的示例似乎有效,我试图尽可能地模仿它。我认为问题出现是因为光栅图像的最左侧和最右侧重叠。如示例中的裁剪和Lat-Lon的中间重新投影似乎可以解决您的问题。

也许这种解决方法可以成为直接解决问题的更优雅解决方案的基础,因为重新投影栅格两次都不是有益的。

# packages
library(rgdal)
library(maptools)
library(raster)

# define projections
mollCRS <- CRS('+proj=moll')
behrmannCRS <- CRS('+proj=cea +lat_ts=30')

# read data
data(wrld_simpl)
sst <- raster("~/Downloads/sst.tif", crs=behrmannCRS)

# crop sst to extent of world to avoid overlap on the seam
world_ext = projectExtent(wrld_simpl, crs = behrmannCRS)
sst_crop = crop(x = sst, y=world_ext, snap='in')

# convert sst to longlat (similar to test file)
# somehow this gets rid of the unwanted pixels outside the ellipse
sst_longlat = projectRaster(sst_crop, crs = ('+proj=longlat'))

# then convert to mollweide
sst_moll <- projectRaster(sst_longlat, crs=mollCRS, over=T)
wrld <- spTransform(wrld_simpl, mollCRS)

# plot results
plot(sst_moll)
plot(wrld, add=TRUE)

enter image description here