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
附录
其他
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
绘制点线图及图例
- 示例贡献者
plot 模块可以绘制散点图也可以绘制线段,但不直接支持绘制点线图。
想要绘制点线图,则需要对同一数据两次调用 plot 模块。第一次调用使用 -S 选项绘制符号,第二次调用不使用 -S 选项绘制线段。
若要绘制图例,则需要手动准备图例文件。图例文件的具体语法见 legend 模块。准备图例文件主要是如下三个步骤:
生成符号对应的图例条目
使用图例文件的
G
记录将接下来的图例条目上移 N 行,N 为符号图例条目的数目生成线段对应的图例条目
下面的示例中在绘制三个数据时使用了不同属性的点线,并绘制对应的图例。
#!/usr/bin/env bash # # 绘制点线图及图例 # gmt begin legend_ex2 gmt basemap -R-0.2/4.2/0/7 -JX16c/8c -Bxa1+l"Number of iterations" -Bya1+l"Normalized RMS" -BWSrt # data 1 cat > 1.txt << EOF 0 6.680 1 1.18 2 0.861 3 0.533 4 0.374 EOF gmt plot 1.txt -Ss0.4c -W1p,DEEPSKYBLUE gmt plot 1.txt -W1p,DEEPSKYBLUE # data 2 cat > 2.txt << EOF 0 6.458 1 2.423 2 0.789 3 0.523 4 0.304 EOF gmt plot 2.txt -Sc0.4c -W1p,BROWN1 gmt plot 2.txt -W1p,BROWN1 # data 3 cat > 3.txt << EOF 0 6.627 1 3.223 2 0.650 3 0.507 4 0.289 EOF gmt plot 3.txt -Sa0.4c -W1p,PURPLE gmt plot 3.txt -W1p,PURPLE # 制作图例文件 # 设置不同的符号 # symbol space legend type length (-) thickness,color space LegendName echo S 0.2c s 0.3c - 0.8p,DEEPSKYBLUE 0.8c Line1 >> legends.txt echo S 0.2c c 0.3c - 0.8p,BROWN1 0.8c Line2 >> legends.txt echo S 0.2c a 0.3c - 0.8p,PURPLE 0.8c Line3 >> legends.txt # 上移 3 行 echo G -3l >> legends.txt # 设置不同的线段 echo S 0.2c - 0.6c - 0.8p,DEEPSKYBLUE 0.8c >> legends.txt echo S 0.2c - 0.6c - 0.8p,BROWN1 0.8c >> legends.txt echo S 0.2c - 0.6c - 0.8p,PURPLE 0.8c >> legends.txt gmt legend legends.txt -DjTR+l1.2+o0.2c/0.2c -F+p1p rm legends.txt 1.txt 2.txt 3.txt gmt end show
绘制点线图及其图例
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论