Ruth Comer

Results 455 comments of Ruth Comer

Currently the entire geometry gets transformed if part of it is in the map view. So in this case we are transforming a lot of ocean boundary points unnecessarily. A...

The [documentation for contourf](https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.contourf.html#matplotlib.axes.Axes.contourf) says that both x and y must be monotonic. There is logic in the `tranform_first` handling to ensure that x is monotonic, but I wonder if...

There was a prototype of something like that at #1248.

Hi @mx-moth, please could you try your use-case again with Cartopy 0.23? 1. I am confident you should see an improvement 2. We have deprecated the _auto_update_ parameter so that...

I would use compressed layout rather than tight layout. I added an answer on StackOverflow. Edit: sorry I only just noticed how old this issue is. But now that compressed...

Thanks for the report @malininae! This can be reproduced with: ```python import iris.cube import numpy as np cube = iris.cube.Cube(np.ones(42)) coord = iris.coords.DimCoord(range(42), long_name='foo') cube.add_dim_coord(coord, 0) cube.rolling_window('foo', iris.analysis.WPERCENTILE, window=5, percent=90,...

I wanted this again today. I think the implementation is easy, and the hard bit is deciding what the interface should be. So marking this for discussion.

I wanted this again today so I rolled my own ```python def print_coord_times(coord, points=True, bounds=True): """ Given a time type coordinate (e.g. 'time' or 'forecast_reference_time'), print string representations of the...

Thanks for the report @catherinehardacre. Since you say that the steps you require work outside of ESMValTool, that suggests that the problem is with ESMValTool itself rather than with Iris....

Matplotlib moves docs about quite a lot and has a bespoke [sphinx extension](https://github.com/matplotlib/matplotlib/blob/main/doc/sphinxext/redirect_from.py) to avoid breaking any links. That might be a bit excessive for us though. I would suggest...