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
附录
其他
grdsample
- 官方文档
- 简介
对网格文件做重采样
grdsample 模块读取一个网格文件,并对其做插值以生成一个新的网格文件。新旧网格文件可能的区别在于:
不同的配准方式(-r 或 -T)
不同的网格间隔或网格节点数(-I)
不同的网格范围(-R)
网格文件插值方式有多种,默认使用 bicubic 插值,可以使用 -n 选项设置其它插值方式。该模块可以安全地将粗网格插值为细网格;反之,将细网格插值为粗网格时,则可能存在混叠效应,因而需要在插值前使用 grdfft 或 grdfilter 对网格文件做滤波。
若省略
gmt grdsample in_grdfile
- in_grdfile
要重采样的2D网格文件
- -Gout_grdfile
输出的网格文件名
可选选项
- -Ixinc[+e|n][/yinc[+e|n]]
指定X和Y方向的网格间隔
xinc 和 yinc 为 X 和 Y 方向的网格间隔。对于地理坐标,可以指定网格间隔单位 [默认单位为度]
+e 微调X和Y方向范围的最大值,使得其是网格间隔的整数倍(默认会微调网格间隔以适应给定的数据范围)
+n 表明 xinc 和 yinc 不是网格间隔,而是X和Y方向的节点数。此时会根据节点数、网格区域范围以及网格配准方式重新计算网格间隔。
注意:
若 yinc 设置为0,则表示其与 xinc 相同
若使用 -Rgrdfile 选项,则网格间隔和配准方式已经根据网格文件自动初始化,此时依然可以使用 -I 和 -r 覆盖相应的值
- -Rxmin/xmax/ymin/ymax[+r][+uunit] (more …)
指定数据范围
若只使用
网格插值过程中可能会导致插值后的值出现失真或意外值。例如,使用样条插值可能会导致插值后的数据的最大最小值超过原始数据的最大最小值。若这一结果不可接受,可以通过给 -n 选项加上 +c 以对超过原始数据最值的部分做裁剪。
若某个插值点不在输入数据的网格节点上,则插值时若该节点周围的节点值为NaN,则该节点的值也会被插值为NaN。默认的bicubic插值算法会生成连续的一阶导数但需要周围4x4个节点。bilinear插值算法只需要周围的2x2个节点,但其只是零阶连续。若光滑性很重要,则使用bicubic算法;若需要尽量避免NaN值的传播,则使用bilinear算法。
除了插值之外,还可以使用 grd2xyz 将网格数据转换为表数据,然后将输出交给 surface 或 greenspline 重新网格化。
示例
将5x5分的数据采样成1x1分:
gmt grdsample @earth_relief_05m -R0/20/0/20 -I1m -Gtopo_1m.nc将网格线配准的网格文件修改为像素配准的网格文件:
gmt grdsample @earth_relief_05m -T -Gpixel.nc参考文献
Marks, K. M., and W. H. F. Smith, 2007, Some remarks on resolving seamounts in satellite gravity, Geophys. Res. Lett., 34 (L03307), https://doi.org/10.1029/2006GL028857.
相关模块
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论