gctl/dep/tesseroids/toolkits/tessgyz.c

17 lines
328 B
C
Raw Normal View History

2024-09-10 15:45:07 +08:00
/*
Program to calculate gyz of a tesseroid model on a set of points.
*/
#include "../lib/constants.h"
#include "../lib/grav_tess.h"
#include "../lib/tessg_main.h"
/** Main */
int main(int argc, char **argv)
{
return run_tessg_main(argc, argv, "tessgyz", &tess_gyz,
TESSEROID_GYZ_SIZE_RATIO);
}