私は、同じ質問を持っていたし、ここに私のために働いていたものです:
- crutsその後、
- ラスタ
:
は、この2つのパッケージをインストールします。
library(cruts)
library(raster)
## suppose you downloaded the file cru_ts3.24.2011.2015.pre.dat.nc
rasta <- cruts2raster("cru_ts3.24.2011.2015.pre.dat.nc",
timeRange=c("2011-01-01","2015-01-01"))
## there are 4 years of monthly data in this example
## so r is a RasterStack with
## 48 layers; here's January of 2011
r.2011.1 <- rasta[[1]] ## gives a plot-able object for precip Jan 2011
plot(r.2011.1) ## should look like a pretty picture
r.2012.2 <- rasta[[14]] ## gives a plot-able object for precip Feb 2012
plot(r.2012.2) ## also a pretty picture
ありがとう – tazrart