我有一个新项目,计算一些季节性气候指标。作为其中的一部分,我需要确定一组气候月度数据中最潮湿的季度:
print(pr_cube)
Precipitation / (mm) (time: 12; latitude: 125; longitude: 211)
Dimension coordinates:
time x - -
latitude - x -
longitude - - x
其中时间是每个月,平均 30 年与 coord('time) =
DimCoord([2030-01-01 00:00:00, 2030-02-01 00:00:00, 2030-03-01 00:00:00,
2030-04-01 00:00:00, 2030-05-01 00:00:00, 2030-06-01 00:00:00,
2030-07-01 00:00:00, 2030-08-01 00:00:00, 2030-09-01 00:00:00,
2030-10-01 00:00:00, 2030-11-01 00:00:00, 2030-12-01 00:00:00]
我想知道是否可以为所有连续 3 个月的集合添加季节坐标,包括“环绕”,如下所示:
iris.coord_categorisation.add_season(cube, coord, name='season',
seasons=(''jfm', 'fma', 'mam', 'amj', 'mjj', 'jja', 'jas', 'aso', 'son', 'ond', 'ndj', 'djf'))
或者
season = ('jfm', 'fma', 'mam', 'amj', 'mjj', 'jja', 'jas', 'aso', 'son', 'ond', 'ndj', 'djf')
iris.coord_categorisation.add_season_membership(cube, coord, season, name='all_quarters')
尚未对此进行测试,只是想知道是否有建议或建议?
然后,获得最大降雨量的季节?
Qtr_max_rain = pr_cube.collapsed('season', iris.analysis.MAX)
那会正常工作吗?