以下のリンクが参考になる。 https://qiita.com/skotaro/items/01d66a8c9902a766a2c0
カラーバーのラベルと目盛りを変更する場合は、set_ticksとset_ticklabelsを用いる。
ticks = [-1,0,1] ticklabels = ["A","B","C"] clb = fig.colorbar(im) clb.set_ticks(ticks) clb.set_ticklabels(ticklabels)
ax.legend(bbox_to_anchor=(1,1), loc='upper right', borderaxespad=0)
ax.legend(frameon=False)
gl = ax.gridlines(crs=ccrs.PlateCarree(),draw_labels=True,linewidth=0.5,linestyle='--',color='gray') gl.xlocator = mticker.FixedLocator([130,135,140]) gl.ylocator = mticker.FixedLocator([35,40]) gl.top_labels = False gl.right_labels = False gl.xlabel_style = {'size':6} gl.ylabel_style = {'size':6}