Ruth Comer
Ruth Comer
RTD search seems broken: https://github.com/SciTools/iris/issues/5383
I reckon this is a dragon.
I don't think v2.3 ever made it into Met Office SSS.
See #5955 for a version of this fix without the type-hinting rabbit hole.
The tests failed because of a problem with a new version of pytest which has now been yanked. I’m going to close and re-open to restart the CI.
I just noticed there is overlap here with #22407.
I have not studied it in detail, but the proposed `set_data` in #22407 appears to do what we need for `set_XYUVC`. So potentially @ianhi's code could be pulled in here.
I think what you have done makes sense. `_sub_prep` does the checking that there are no common keys in `subthing_kw` and `per_subthing_kw`, so it needs to have those dictionaries separate....
With v3.8.2 I have ```python import pytz import matplotlib.pyplot as plt from datetime import datetime time_index_berlin = [pytz.timezone('Europe/Berlin').localize(datetime(year=2015, month=11, day=27, hour=x)) for x in range(4)] time_index_utc = [pytz.timezone('UTC').localize(datetime(year=2015, month=11, day=27,...
Confirmed, `plot` errors if you pass it the _tz_ parameter. Yes, Berlin is an hour ahead of UTC (in winter). So when it's midnight in Berlin, it's only 11pm UTC....