diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2017-03-27 11:39:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-27 11:39:38 +0200 |
| commit | 56a754ccd83ff41d1c8edee5fe3548d96f4daaf6 (patch) | |
| tree | 6b4db431d85786d2a2b01222f85a202959fadc64 /src/Makefile.am | |
| parent | d849419552c36d2f6f74973d075783666e179734 (diff) | |
| download | PROJ-56a754ccd83ff41d1c8edee5fe3548d96f4daaf6.tar.gz PROJ-56a754ccd83ff41d1c8edee5fe3548d96f4daaf6.zip | |
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.
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
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) |
