- 积分
- 133
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2018-6-7
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 jhr6222250 于 2024-5-19 19:19 编辑
怎么加入层次信息,.attrs['GRIB_typeOfLevel'] ='heightAboveGround' 为heightAboveGround赋值一个层次,2m- ds2 = xr.Dataset({'t2m': (('latitude', 'longitude'), np.zeros((5, 6)) + 300.)})
- ds2.coords['latitude'] = np.linspace(90., -90., 5)
- ds2.coords['longitude'] = np.linspace(0., 360., 6, endpoint=False)
- ds2.t2m.attrs['GRIB_shortName'] = 't2m'
- cfgrib.to_grib(ds2, 'out.grib2', grib_keys={'edition': 2})
复制代码
|
|