From 56a754ccd83ff41d1c8edee5fe3548d96f4daaf6 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Mon, 27 Mar 2017 11:39:38 +0200 Subject: Horisontal and vertical gridshift drivers Until now gridshifts has not been working with the new API in proj.h since parsing of +nadgrids and +geoidgrids is build into pj_transform(). This commit introduces the possibility to do both horizontal and vertical gridshift with the pipeline API. The vgridshift and hgridshift kernels are simple wrappers for pj_apply_gridshift3() and pj_apply_vgridshift() that are also used by pj_transform(). Introduced in PR #492. --- src/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index a2508fe8..f9dee2a9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -74,7 +74,8 @@ libproj_la_SOURCES = \ jniproj.c pj_mutex.c pj_initcache.c pj_apply_vgridshift.c geodesic.c \ pj_strtod.c \ \ - pj_obs_api.c PJ_cart.c PJ_pipeline.c PJ_horner.c PJ_helmert.c + pj_obs_api.c PJ_cart.c PJ_pipeline.c PJ_horner.c PJ_helmert.c \ + PJ_vgridshift.c PJ_hgridshift.c install-exec-local: rm -f $(DESTDIR)$(bindir)/invproj$(EXEEXT) -- cgit v1.2.3