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 839851c commit 4b7b799Copy full SHA for 4b7b799
pygmt/tests/test_inset.py
@@ -30,5 +30,6 @@ def test_inset_context_manager():
30
fig.basemap(region=[-74, -69.5, 41, 43], projection="M9c", frame=True)
31
with fig.inset(position="jBL+w3c+o0.2c", margin=0, box=Box(pen="black")):
32
fig.basemap(region=[-80, -65, 35, 50], projection="M3c", frame="afg")
33
- fig.basemap(rose="jTR+w3c") # Pass rose argument with basemap after the inset
+ # Plot an rose after the inset
34
+ fig.directional_rose(position="TR", position_type="inside", width="3c")
35
return fig
0 commit comments