Mathias Hauser

Results 175 comments of Mathias Hauser

Do you have bottleneck installed? Could you try `xr.set_options(use_bottleneck=False)`? See pydata/bottleneck#379

You'll have to uninstall bottleneck then - the `use_bottleneck` option was added more recently.

Indeed, this looks incomplete. As always - PR very welcome 😁

Thanks for the report. There was a recent release (2022.09) with many Index related bugfixes (including MuliIndex) - could you test this?

It's most likely possible to fix the xarray issue without the version number, see pydata/xarray#5875.

With pydata/xarray#5875 I could fix the issue without requiring the version number. But fixing this issue would nonetheless be appreciated! You may want to do ```python import version.version as __version__...

Interestingly if you do `lon + 30` or `lon_edge + 30` it seems to work.

Thank you for the quick fix! Feels like I keep throwing "edge" cases at you. > This appears to be due to the pyproj upgrade actually and wrapping the coordinates...

Thanks, makes sense. Just something I saw trying out different projections.

You may have to call `ax.set_global()` after scatter as it restricts the axes to the extent of the data (and I think matplotlib does the same).