We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29db0b9 commit 981ed04Copy full SHA for 981ed04
proplot/axes/geo.py
@@ -609,6 +609,10 @@ def format(
609
rc_kw['grid.labelweight'] = labelweight
610
with rc.context(rc_kw, mode=rc_mode):
611
# Apply extent mode first
612
+ # NOTE: We deprecate autoextent on _CartopyAxes with _rename_kwargs which
613
+ # does not translate boolean flag. So here apply translation.
614
+ if extent is not None and not isinstance(extent, str):
615
+ extent = ('globe', 'auto')[int(bool(extent))]
616
self._update_boundary(round)
617
self._update_extent_mode(extent, boundinglat)
618
0 commit comments