R裁剪栅格数据和设置轴限制

时间:2013-06-20 13:06:49

标签: r dictionary raster

在另一个线程的帮助下,我设法绘制了一些全局地图。首先,我将气象GRIB2数据转换为Netcdf,然后绘制全局地图。

现在我想绘制地图的一个子区域。我尝试了crop命令并成功提取了全局nc文件的子区域。但是在绘图时我找不到如何控制轴限制。它绘制的地图比数据区域大,因此两侧都会出现大的空白区域。

这是我用来绘制地图的脚本

library("ncdf")
library("raster")
library("maptools")

DIA=format(Sys.time(), "%Y%m%d00") # Data d'avui
url=sprintf("ftp://ftp.ncep.noaa.gov/pub/data/nccf/com/gfs/prod/gfs.%s/gfs.t00z.pgrb2f00", DIA) # Ruta del ftp
loc=file.path(sprintf("%s",url))
download.file(loc,"gfs.grb",mode="wb")

system("/usr/bin/grib2/wgrib2/wgrib2 -s gfs.grb | grep :TMP: | /usr/bin/grib2/wgrib2/wgrib2 -i gfs.grb -netcdf temp.nc",intern=T)

t2m <- raster("temp.nc", varname = "TMP_2maboveground")
rt2m <- rotate(t2m)
t2mc=rt2m-273.15

DAY=format(Sys.time(), "%Y%m%d") # Data d'avui

e=extent(-40,40,20,90)
tt=crop(t2mc,e)

png(filename="gfs.png",width=700,height=600,bg="white")    
    rgb.palette <- colorRampPalette(c("snow1","snow2","snow3","seagreen","orange","firebrick"), space = "rgb")#colors
    plot(tt,col=rgb.palette(200),main=as.expression(paste("Temperatura a 2m ",DAY," + 00 UTC",sep="")),axes=T)
dev.off()

给出这个输出。

cropped plot

它必须是一个简单的,但我是一个简单的R用户。提前谢谢。

编辑:按照建议添加xlim = c(-40,40),ylim = c(20,90)时的新输出。它似乎无法解决问题。但是使用x,y大小的输出png文件看起来很有希望,因为我可以调整大小以适应地图。确定它必须是另一种解决方案,正确的我无法找到。

enter image description here

1 个答案:

答案 0 :(得分:9)

下载数据文件后,我可以直接阅读 光栅。我选择221乐队(如果我没错),那就是你 根据需要 this table

library("raster")
t2mc <- raster('gfs.grb', band=221)

> t2mc
class       : RasterLayer 
band        : 221  (of  315  bands)
dimensions  : 361, 720, 259920  (nrow, ncol, ncell)
resolution  : 0.5, 0.5  (x, y)
extent      : -0.25, 359.75, -90.25, 90.25  (xmin, xmax, ymin, ymax)
coord. ref. : +proj=longlat +a=6371229 +b=6371229 +no_defs 
data source : /home/oscar/gfs.grb 
names       : gfs 

您不需要整个范围,因此您可以使用crop来获取 期望的程度:

e <- extent(-40,40,20,90)
tt <- crop(t2mc,e)

我试图在没有tt的情况下显示plot栅格 成功。但是,如果您使用的话,它可以与spplot一起正常使用 不同程度(89.5而不是90):

e <- extent(-40,40,20,89.5)
tt <- crop(t2mc,e)

spplot(tt)

现在我们必须添加管理界限:

library(maps)
library(mapdata)
library(maptools)

ext <- as.vector(e)
boundaries <- map('worldHires',
                  xlim=ext[1:2], ylim=ext[3:4],
                  plot=FALSE)
boundaries <- map2SpatialLines(boundaries,
                               proj4string=CRS(projection(tt)))

并更改调色板:

rgb.palette <- colorRampPalette(c("snow1","snow2","snow3","seagreen","orange","firebrick"),
                                space = "rgb")

spplot(tt, col.regions=rgb.palette,
       colorkey=list(height=0.3),
       sp.layout=list('sp.lines', boundaries, lwd=0.5))

spplot result

如果您更喜欢latticeExtra::layer方法,则可以实现 与此代码类似的结果:

library(rasterVis)
levelplot(tt, col.regions=rgb.palette,
          colorkey=list(height=.3)) +
    layer(sp.lines(boundaries, lwd=0.5))