我尝试使用ncdf软件包读取NC数据,其中我读取了时间维度。
ti<-get.var.ncdf(nc,varid="time")
nc$dim$time$unit
"hours since 1-1-1 00:00:0.0"
所以号码从每小时1-1-1 00:00:00开始
我想知道如何将它转移到日期,如1/1/2003
谢谢
答案 0 :(得分:0)
您可以执行以下操作:
hours <- 17645592 # e.g. this is the number of hours from 01-01-01 to 2014-01-01
DATE <- as.POSIXct(x='01-01-01',tz='GMT',format='%Y-%m-%d') + (hours*60*60)
# > DATE
#[1] "2014-01-01 GMT