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
附录
其他
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
-e 选项
GMT命令在读入数据时默认会处理读入的所有数据记录。-e 选项的作用是筛选或排除匹配某个字符串或者正则表达式的数据记录。
-e 选项的用法有两种:
匹配某个字符串: -e[~]“pattern”
匹配某个正则表达式: -e[~]/regexp/[i]
在匹配字符串或正则表达式前加上 ~ 表示反向操作,即排除匹配字符串或正则表达式的数据记录。如果数据记录中本身就包括字符 ~,则需要使用 ~ 对其进行转义。对于匹配正则表达式而言,还可以加上 i 表示忽略大小写。
如果需要指定多个可能的匹配字符串或表达式,则可以加上 +ffile。其中 file 中每行列出一个匹配字符串或表达式。如果某个匹配字符串以 +f 开头,则会被GMT当作是 -e 的子选项,因而需要使用 +f 以实现转义。
以一个常见的应用场景举例。假如文件 input.dat 中有一堆数据点,每个数据都对应某个分类,文件内容如下:
1 1 type1 2 2 type1 3 3 type1 4 4 type2 5 5 type2 6 6 type2 7 7 type3 8 8 type10 9 9 type10 10 10 null
可以使用 -e 选项筛选出自己需要的数据记录。
筛选出所有匹配 type 的记录:
$ gmt select input.dat -e"type" 1 1 type1 2 2 type1 3 3 type1 4 4 type2 5 5 type2 6 6 type2 7 7 type3 8 8 type10 9 9 type10
排除所有匹配 null 的记录:
$ gmt select input.dat -e~"null" 1 1 type1 2 2 type1 3 3 type1 4 4 type2 5 5 type2 6 6 type2 7 7 type3 8 8 type10 9 9 type10
筛选所有匹配 type2 的记录:
$ gmt select input.dat -e"type2" 4 4 type2 5 5 type2 6 6 type2
筛选所有匹配 type1 的记录:
# 错误写法,因为 type1 也包含在字符串 type10 中 $ gmt select input.dat -e"type1" 1 1 type1 2 2 type1 3 3 type1 8 8 type10 9 9 type10 # 正确写法 # 此处使用了正则表达式,符号 $ 表示行末匹配 $ gmt select input.dat -e/type1$/ 1 1 type1 2 2 type1 3 3 type1
正则表达式的具体用法不在本手册的范围之内,用户请自行搜索“正则表示式”。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论