diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-03-30 19:07:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-30 19:07:10 +0200 |
| commit | a837eaf033d54b1563108dec3106003db20266fb (patch) | |
| tree | 52424eee22533b52c593113ab99c4a83d72b4ff5 /src/proj_internal.h | |
| parent | da32ee9459cb08df87d5c02a83037158772d1047 (diff) | |
| parent | 94defd1a7212d3ede321515255768b3b726ff948 (diff) | |
| download | PROJ-a837eaf033d54b1563108dec3106003db20266fb.tar.gz PROJ-a837eaf033d54b1563108dec3106003db20266fb.zip | |
Merge pull request #2052 from rouault/speedup_phi2
pj_phi2(): speed-up computation (and thus inverse ellipsoidal Mercator and LCC)
Diffstat (limited to 'src/proj_internal.h')
| -rw-r--r-- | src/proj_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proj_internal.h b/src/proj_internal.h index a3bc9f17..4dc63e1d 100644 --- a/src/proj_internal.h +++ b/src/proj_internal.h @@ -828,7 +828,7 @@ double pj_inv_mlfn(projCtx_t *, double, double, double *); double pj_qsfn(double, double, double); double pj_tsfn(double, double, double); double pj_msfn(double, double, double); -double PROJ_DLL pj_phi2(projCtx_t *, double, double); +double PROJ_DLL pj_phi2(projCtx_t *, const double, const double); double pj_qsfn_(double, PJ *); double *pj_authset(double); double pj_authlat(double, double *); |
