Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grdppa #116

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/gmt_supplements_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ static struct Gmt_moduleinfo g_supplements_module[] = {
{"mgd77sniffer", "mgd77", "Along-track quality control of MGD77 cruises", ""},
{"mgd77track", "mgd77", "Plot track-line map of MGD77 cruises", ">X}"},
{"dimfilter", "misc", "Directional filtering of grids in the space domain", "<G{,GG},>DQ"},
{"grdppa", "misc", "Automatic extraction of ridge or valley axes", "<G{,>D}"},
{"earthtide", "potential", "Compute grids or time-series of solid Earth tides", ">D},GG),>DL,>DS"},
{"gmtflexure", "potential", "Compute flexural deformation of 2-D loads, forces, and bending moments", "ED(,QD(,TD(,>D}"},
{"gmtgravmag3d", "potential", "Compute the gravity/magnetic anomaly of a 3-D body by the method of Okabe", "TD{,FD(,GG),>D}"},
Expand Down
1 change: 1 addition & 0 deletions src/gmt_supplements_module.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ EXTERN_MSC int GMT_mgd77path (void *API, int mode, void *args);
EXTERN_MSC int GMT_mgd77sniffer (void *API, int mode, void *args);
EXTERN_MSC int GMT_mgd77track (void *API, int mode, void *args);
EXTERN_MSC int GMT_dimfilter (void *API, int mode, void *args);
EXTERN_MSC int GMT_grdppa (void *API, int mode, void *args);
EXTERN_MSC int GMT_earthtide (void *API, int mode, void *args);
EXTERN_MSC int GMT_gmtflexure (void *API, int mode, void *args);
EXTERN_MSC int GMT_gmtgravmag3d (void *API, int mode, void *args);
Expand Down
2 changes: 1 addition & 1 deletion src/misc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#

# source files
set (SUPPL_PROGS_SRCS dimfilter.c)
set (SUPPL_PROGS_SRCS dimfilter.c grdppa.c)

# lib sources
set (LIB_SRCS ${SUPPL_PROGS_SRCS})
Expand Down
Loading