How to delete the polar circle?

Help! How to delete the polar

circle?

I want to delete the circle that the green arrow indicates.
The finished product drawing is similar to the one on the right

See GMT Default settings for MAP_POLAR_CAP.

But, how to delete it in pygmt? Thx

But, how to delete it in pygmt? Thank you

Please refer to the tutorial for configuring defaults in PyGMT - https://www.pygmt.org/dev/tutorials/advanced/configuration.html#sphx-glr-tutorials-advanced-configuration-py

Use:

import pygmt

fig = pygmt.Figure()
with pygmt.config(MAP_POLAR_CAP="88/90"):  # less longitude graticules at >88°N
    fig.coast(region="d", frame="afg", land="gray", projection="A0/90/35/12c")
fig.show()

Thank you very much! 抱拳了

1 Like