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.vc | |
| 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.vc')
| -rw-r--r-- | src/makefile.vc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/makefile.vc b/src/makefile.vc index e1eacf04..b0d8291d 100644 --- a/src/makefile.vc +++ b/src/makefile.vc @@ -59,7 +59,8 @@ support = \ pj_strtod.obj pj_run_selftests.obj pj_generic_selftest.obj pipeline = \ - pj_obs_api.obj PJ_cart.obj PJ_pipeline.obj PJ_horner.obj PJ_helmert.obj + pj_obs_api.obj PJ_cart.obj PJ_pipeline.obj PJ_horner.obj PJ_helmert.obj \ + PJ_vgridshift.obj PJ_hgridshift.obj geodesic = geodesic.obj |
