注解
Click here to download the full example code
在地图上添加 logo¶
利用 pygmt.Figure.logo()
可以将 GMT 的图形 logo 绘制在图上。
注解
可结合《gmtlogo 模块》学习。
Out:
<IPython.core.display.Image object>
import pygmt
fig = pygmt.Figure()
fig.basemap(region=[0, 10, 0, 2], projection="X6c", frame=True)
fig.logo(position="jTR+o0.3c/0.6c+w3c")
fig.show()
Total running time of the script: ( 0 minutes 0.688 seconds)