In this domain, part of the upper left quadrant crosses 180 deg. longitude. Within .monet.quick_contourf, wrap_longitudes (to [-180, 180)) is applied, which gives unhelpful contour results:
Masking that region, contourf has no problem:
Solution: unwrap longitudes (to [0, 360)) before plotting if they aren't monotonic. Note that this doesn't seem to be needed for the other quick plot methods, which use imshow and pcolormesh.
In this domain, part of the upper left quadrant crosses 180 deg. longitude. Within
.monet.quick_contourf
,wrap_longitudes
(to [-180, 180)) is applied, which gives unhelpful contour results:Masking that region, contourf has no problem:
Solution: unwrap longitudes (to [0, 360)) before plotting if they aren't monotonic. Note that this doesn't seem to be needed for the other quick plot methods, which use imshow and pcolormesh.