diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-02-20 13:21:15 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-02-20 13:21:15 +0100 |
| commit | 04844ac495f65e824a0bd9f9e49ea3360f2c063f (patch) | |
| tree | 01f357111ee7f5d2ce2287d4372bb8bb95f81044 /src/apply_vgridshift.cpp | |
| parent | 0d8600e46b20fba28eb0cf0cabbbb4c6b586c6bf (diff) | |
| download | PROJ-04844ac495f65e824a0bd9f9e49ea3360f2c063f.tar.gz PROJ-04844ac495f65e824a0bd9f9e49ea3360f2c063f.zip | |
Apply multiplier in proj_vgrid_value()
Diffstat (limited to 'src/apply_vgridshift.cpp')
| -rw-r--r-- | src/apply_vgridshift.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apply_vgridshift.cpp b/src/apply_vgridshift.cpp index 951bdf6d..ae23e39a 100644 --- a/src/apply_vgridshift.cpp +++ b/src/apply_vgridshift.cpp @@ -165,7 +165,7 @@ static double read_vgrid_value( PJ *defn, PJ_LP input, double vmultiplier, int * } - return value; + return value * vmultiplier; } /************************************************************************/ |
