- 积分
- 34118
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2019-4-6
- 最后登录
- 1970-1-1
|
发表于 2022-11-5 16:56:40
|
显示全部楼层
使用drawNDCGrid(wks)画出NDC坐标,然后用根据NDC坐标使用gsn_text_ndc添加经度文本,坐标自己慢慢微调,画好了再把drawNDCGrid(wks)去掉即可。参考如下:
drawNDCGrid(wks)
txres = True
txres@txFontHeightF = 0.013
gsn_text_ndc(wks, "0~F34~0", 0.5, 0.963, txres)
gsn_text_ndc(wks, "60~F34~0~F21~E", 0.37, 0.895, txres)
gsn_text_ndc(wks, "120~F34~0~F21~E", 0.365, 0.77, txres)
gsn_text_ndc(wks, "180~F34~0", 0.5, 0.702, txres)
gsn_text_ndc(wks, "120~F34~0~F21~W", 0.635, 0.77, txres)
gsn_text_ndc(wks, "60~F34~0~F21~W", 0.63, 0.895, txres) |
|