GMT 入门
GMT 实例
GMT 进阶
- 基础知识
- 表数据
- 网格文件
- 颜色表 CPT
- 标准选项
- 地图投影
- -JX: Linear, logarithmic, power, and time
- -JP: Polar/Cylindrical
- -JA: Lambert azimuthal equal area
- -JB: Albers conic equal area
- -JC: Cassini cylindrical
- -JCyl_stere: Cylindrical stereographic
- -JD: Equidistant conic
- -JE: Azimuthal equidistant
- -JF: Azimuthal gnomonic
- -JG: Azimuthal orthographic/General perspective
- -JH: Hammer equal area
- -JI: Sinusoidal equal area
- -JJ: Miller cylindrical
- -JK: Eckert equal area
- -JL: Lambert conic conformal
- -JM: Mercator cylindrical
- -JN: Robinson
- -JO: Oblique Mercator
- -JPoly: (American) polyconic
- -JQ: Equidistant cylindrical
- -JR: Winkel Tripel
- -JS: General stereographic
- -JT: Transverse Mercator
- -JU: Universal Transverse Mercator (UTM)
- -JV: Van der Grinten
- -JW: Mollweide
- -JY: Cylindrical equal area
- 配置参数
- 地学数据集
- 中国地理空间数据集
- 中文支持
- API
- 模块手册
- basemap
- begin
- clear
- clip
- coast
- colorbar
- contour
- coupe
- end
- figure
- filter1d
- fitcircle
- gmt
- gmt-config
- gmtbinstats
- gmtconnect
- gmtdefaults
- gmtget
- gmtinfo
- gmtlogo
- gmtmath
- gmtselect
- gmtset
- gmtsimplify
- gmtspatial
- gmtsplit
- gmtvector
- gmtwhich
- grd2cpt
- grd2xyz
- grdblend
- grdclip
- grdcontour
- grdconvert
- grdcut
- grdedit
- grdfill
- grdimage
- grdinfo
- grdlandmask
- grdmask
- grdmath
- grdpaste
- grdproject
- grdsample
- grdtrack
- grdtrend
- grdvector
- grdview
- grdvolume
- gshhg
- histogram
- image
- img2google
- img2grd
- kml2gmt
- makecpt
- mapproject
- mask
- meca
- nearneighbor
- plot
- polar
- project
- psconvert
- rose
- sac
- sample1d
- solar
- spectrum1d
- sph2grd
- sphdistance
- sphinterpolate
- sphtriangulate
- surface
- ternary
- text
- triangiulate
- velo
- wiggle
- x2sys_binlist
- x2sys_cross
- x2sys_datalist
- x2sys_get
- x2sys_init
- x2sys_list
- x2sys_merge
- x2sys_put
- x2sys_report
- x2sys_solve
- xyz2grd
- mgd77manage
- mgd77convert
- mgd77header
- mgd77info
- mgd77list
- mgd77magref
- mgd77path
- mgd77sniffer
- mgd77track
- legend
- docs
- subplot
- inset
附录
其他
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
GMT中文效果演示
中文文字
本例中展示了如何在绘图时使用中文标签和中文标题,以及如何打印横排和竖排的中文。
左图中Y轴标签与纵轴平行
中图中Y轴标签与X轴平行
右图中Y轴标签单独绘制并使用了竖排中文字体。
gmt begin chinese-texts png # 左图 gmt set FONT_TITLE 24p,41,black FONT_LABEL 16p,39,black gmt basemap -R0/10/0/5 -JX6c/4c -Bxaf+l"横轴" -Byaf+l"纵轴" -BWSen+t"中文标题" gmt text -F+f << EOF 3 2.5 20p,39,black 横排文字 8 4.0 20p,43,red 竖排文字 EOF # 中图 gmt set FONT_TITLE 24p,41,black FONT_LABEL 16p,39,black gmt basemap -R0/10/0/5 -JX6c/4c -Bxaf+l"横轴" -Byaf+L"纵轴" -BWSen+t"中文标题" -X9c gmt text -F+f << EOF 3 2.5 20p,39,black 横排文字 8 4.0 20p,43,red 竖排文字 EOF # 右图 gmt set FONT_TITLE 24p,41,black FONT_LABEL 16p,39,black gmt basemap -R0/10/0/5 -JX6c/4c -Bxaf+l"横轴" -BWSen+t"中文标题" -X9c gmt basemap -Byaf+L"纵轴" -BW --FONT_LABEL=16p,43,black --MAP_LABEL_OFFSET=20p gmt text -F+f << EOF 3 2.5 20p,39,black 横排文字 8 4.0 20p,43,red 竖排文字 EOF gmt end show
中文月份
GMT 可以绘制中文的月份。
Linux 和 macOS 用户需要先修改 GMT 中文语言文件的字符编码(Windows 用户不需要):
# 进入 GMT 语言定义文件所在目录 cd `gmt --show-sharedir`/localization # 备份中文语言文件 cp gmt_cn1.locale gmt_cn1.locale_old # 将中文编码方式从默认的 GB2312 修改为 UTF8 编码,这样才能正常显示中文月份 iconv -f GBK -t UTF8 gmt_cn1.locale
设置 GMT_LANGUAGE 为中文(即 cn1
),并设置标注字体为中文。
gmt begin chinese-months png # 设置GMT语言为中文 gmt set GMT_LANGUAGE cn1 # 设置标注的字体为中文字体 gmt set FONT_ANNOT_PRIMARY 16p,39,black # FORMAT_TIME_PRIMARY_MAP 为 full 表示显示“一月” gmt set FORMAT_DATE_MAP o FORMAT_TIME_PRIMARY_MAP full gmt basemap -R1997T/1998T/0/10 -JX25c/4c -Bpxa1O -Byaf -BWSen # FORMAT_TIME_PRIMARY_MAP 为 abbreviated 表示显示“一” gmt set FORMAT_DATE_MAP o FORMAT_TIME_PRIMARY_MAP abbreviated gmt basemap -R1997T/1998T/0/10 -JX25c/4c -Bpxa1O -Byaf -BWSen -Y-6c gmt end show
中文星期
GMT支持中文的星期。要想使用中文表示星期几,需要设置 GMT_LANGUAGE 为中文,即 cn1
,并设置标注的字体为中文。
gmt begin chinese-weeks png # 设置GMT语言为中文 gmt set GMT_LANGUAGE cn1 # 设置标注的字体为中文字体 gmt set FONT_ANNOT_PRIMARY 12p,39 # FORMAT_TIME_PRIMARY_MAP 为 full 表示显示“星期一” gmt set FORMAT_DATE_MAP u FORMAT_TIME_PRIMARY_MAP full gmt basemap -R1969-7-21T/1969-7-28T/0/4 -JX15c/3c -Bpxa1K -Byaf -BWSen # FORMAT_TIME_PRIMARY_MAP 为 abbreviated 表示显示“周一” gmt set FORMAT_DATE_MAP u FORMAT_TIME_PRIMARY_MAP abbreviated gmt basemap -R1969-7-21T/1969-7-28T/0/4 -JX15c/3c -Bpxa1K -Byaf -BWSen -Y-5c gmt end show
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论