# # Copyright (c) 1991-2024 by the GMT Team (https://www.generic-mapping-tools.org/team.html) # See LICENSE.TXT file for copying and redistribution conditions. # # This script creates a function for each GMT module which calls the module # via the main GMT executable (gmt ). # # Include this file in your GMT bash script or on the command line with: # source $(gmt --show-sharedir)/tools/gmt_functions.sh # If the GMT executable is not in the search path, set an extra function: # function gmt () { path/to/gmt "$@"; } # export -f gmt # check for bash [ -z "$BASH_VERSION" ] && return if ! [ -x "$(command -v gmt)" ]; then echo 'Error: gmt is not found in your search PATH.' >&2 exit 1 fi gmt_modules=$(gmt --show-classic) compat_modules="minmax gmtstitch gmtdp grdreformat ps2raster originator" for module in ${gmt_modules} ${compat_modules}; do eval "function ${module} () { gmt ${module} \"\$@\"; }" eval "export -f ${module}" done