- 博客(2)
- 收藏
- 关注
原创 python处理气象nc数据中,对多年数据除去闰年中2月29日数据,并提取冬季(DJF)的数据
exclude_jan_feb_1979_mask = (data['time'].dt.year == 1979) & ((data['time'].dt.month == 1) | (data['time'].dt.month == 2))#去除1979年的1,2月数据,保证是一个完整的冬季数据。#将所有日期全部转换为除去闰年2月29日的数据,即每一年都是365天。f_z = xr.open_dataset('你的文件路径')#首先是打开文件读取原始数据。#通过掩码的方式来对数据筛选。
2024-05-27 12:26:34 270
原创 xarray报错found the following matches with the input file in xarray‘s IO backends: [‘netcd‘, ‘h5netcd]
在使用xarray时报错:ValueError: found the following matches with the input file in xarray's IO backends: ['netcdf4', 'h5netcdf']. But their dependencies may not be installed。报错后续还给了两个官网链接,进入官网链接查询报错原因为缺少两个库'netcdf4', 'h5netcdf'解决方法:在pycharm中搜索并安装这两个可用软件包。
2023-12-04 17:22:21 3628
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人