I have a couple of feature requests/enhancement proposals. Is opening issues on github the right way to submit them?
Here, briefly:
1. lazy aggregated_by: Here's a typical use case. I have 37 years of six-hourly global reanalysis data, say temperature. I want to take daily maxima and then make a daily climatology (by day of year). In Iris I would do this by adding categorised coordinates and using aggregated_by, except that the dataset is huge and aggregated_by doesn't support lazy aggregation. Are there any plans to add support for this? I've rolled my own lazy climatology functions, so it isn't an urgent problem for me personally but seems like it would be nice to have.
2. Lazy, elementwise functions on more than two cubes: Typical use case: I use a python package that can calculate common thermodynamic quantities, which frequently depend on more than two meteorological fields. For instance, I might want to calculate wet-bulb temperature using air temperature dew-point temperature and pressure for a large dataset. Using iris.analysis.maths.IFunc I can create a cube function for two cubes, but not more. Would be nice to have, but I guess it would require additions to biggus.