Plotting netcdf file with levels in R

大城市里の小女人 提交于 2019-11-29 12:22:56

It is probably easiest to use the raster package:

library(raster)
r1 <- raster("soybean_AreaYieldProduction.nc", level=1)
r2 <- raster("soybean_AreaYieldProduction.nc", level=2)

plot(r1)
image(r1) 
s <- stack(r1, r2)
plot(s)

Other plotting methods

spplot(s)

library(rasterVis)
levelplot(r1) 
levelplot(s)

And see other mapping packages on CRAN

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!