summaryrefslogtreecommitdiff
path: root/geoid.c
diff options
context:
space:
mode:
Diffstat (limited to 'geoid.c')
-rw-r--r--geoid.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/geoid.c b/geoid.c
index 74599dd4..55d6901b 100644
--- a/geoid.c
+++ b/geoid.c
@@ -21,7 +21,9 @@ static double bilinear(double x1, double y1, double x2, double y2, double x, dou
return (z22*(y-y1)*(x-x1)+z12*(y2-y)*(x-x1)+z21*(y-y1)*(x2-x)+z11*(y2-y)*(x2-x))/delta;
}
-static double wgs84_separation(double lat, double lon)
+
+/* return wgs84 to MSL geoid separtion in meters, given a lat/lot */
+double wgs84_separation(double lat, double lon)
{
#define GEOID_ROW 19
#define GEOID_COL 37