读取日最小温度数据
nc <- nc_open("xxxxx")
print(nc)
*Time variable info printed....*
time Size:22281`
axis: T`
bounds: time_bounds
units: hours since 1800-01-01 00:00:00
standard_name:time
calendar: gregorian
转换变量
region <- ncvar_get(nc, "geo_region")
temp <- ncvar_get(nc, "tasmin")
time <- nc.get.time.series(f = nc,
correct.for.gregorian.julian = TRUE,
time.dim.name = "time")
问题
什么是最好的方法,让这个fie到一个可用的DF的每日区域温度?我不确定我是否将时间变量正确转换为2021年11月结束,但应该是12月。
1条答案
按热度按时间zyfwsgd61#
我下载了这个文件,得到了22,646个观测值的时间维度。
使用
CFtime
package,您可以轻松处理气候观测文件中的时间维度,如下所示: