Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

gmt_aliases.csh 1.8 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  1. # $Id$
  2. #
  3. # Copyright (c) 1991-2015 by P. Wessel, W. H. F. Smith, R. Scharroo,
  4. # J. Luis, and F. Wobbe
  5. # See LICENSE.TXT file for copying and redistribution conditions.
  6. #
  7. # This script creates an alias for each GMT module which prepends the module
  8. # name with "gmt". For example: alias psxy "gmt psxy"
  9. #
  10. # Include this file in your GMT (t)csh script or on the command line with:
  11. # source path/to/gmt/share/tools/gmt_aliases.sh
  12. # If the GMT executable is not in the search path, set an extra alias:
  13. # alias gmt path/to/gmt
  14. set gmt_modules = (backtracker blockmean blockmedian blockmode dimfilter \
  15. filter1d fitcircle gmt2kml gmtconvert gmtdefaults gmtget gmtgravmag3d gmtinfo \
  16. gmtmath gmtselect gmtset gmtsimplify gmtspatial gmtstitch gmtvector gmtwhich \
  17. gravfft grd2cpt grd2rgb grd2xyz grdblend grdclip grdcontour grdcut grdedit \
  18. grdfft grdfilter grdgradient grdgravmag3d grdhisteq grdimage grdinfo \
  19. grdlandmask grdmask grdmath grdpaste grdpmodeler grdproject grdraster \
  20. grdredpol grdreformat grdrotater grdsample grdseamount grdspotter grdtrack \
  21. grdtrend grdvector grdview grdvolume greenspline gshhg hotspotter img2grd \
  22. kml2gmt makecpt mapproject mgd77convert mgd77info mgd77list mgd77magref \
  23. mgd77manage mgd77path mgd77sniffer mgd77track minmax nearneighbor originator \
  24. project ps2raster psbasemap psclip pscoast pscontour pscoupe pshistogram \
  25. psimage pslegend psmask psmeca pspolar psrose psscale pssegy pssegyz pstext \
  26. psvelo pswiggle psxy psxyz rotconverter sample1d segy2grd spectrum1d sph2grd \
  27. sphdistance sphinterpolate sphtriangulate splitxyz surface trend1d trend2d \
  28. triangulate x2sys_binlist x2sys_cross x2sys_datalist x2sys_get x2sys_init \
  29. x2sys_list x2sys_merge x2sys_put x2sys_report x2sys_solve xyz2grd)
  30. foreach module ( $gmt_modules )
  31. eval 'alias $module "gmt $module"'
  32. end
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...