提问人:crargc 提问时间:2/22/2023 更新时间:2/22/2023 访问量:32
xloc 和 yloc 的网格线和位置
gridlines and position of xlocs and ylocs
问:
我正在使用
projection=ccrs.Stereographic(central_latitude=64.9631, central_longitude=-19.0208, false_easting=0.0, false_northing=0.0, true_scale_latitude=None, globe=None)
fi=plt.figure(figsize=(24, 18), dpi=600)
ax = plt.axes(projection=projection)
ax.set_global()
ax.coastlines(linewidth=5)
ax.add_feature(cfeature.BORDERS, linewidth=0.5, edgecolor='blue')
ax.add_feature(cfeature.STATES, linewidth=0.3, edgecolor='brown')
ax.add_feature(cfeature.LAND,linewidth=5)
ax.add_feature(cfeature.COASTLINE)
ax.add_feature(cfeature.BORDERS, linestyle='--')
ax.add_feature(cfeature.LAKES, alpha=0.5)
ax.add_feature(cfeature.STATES,linewidth=5)
ax.add_feature(cfeature.RIVERS,linewidth=5)
有没有可能的方法可以选择将 lon 和 lat 标签放在不同的位置
ax.gridlines(xlocs=range(-40,10,10), ylocs=range(50,75,5),draw_labels=True)
我希望 ylocs 中的标签放置在 xlocs=-10 中,而不是默认情况下的 xlocs=0 中。
如果有任何更改,我可以使标签的字体大小更大吗? 先谢谢你。
答: 暂无答案
评论