diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2010-05-11 04:05:04 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2010-05-11 04:05:04 +0000 |
| commit | b08809dfede44f0e32bcee930d408f9f5e6bd7cf (patch) | |
| tree | 464aea87c1a6aad834bac1da671e6e78ced8c2ae /src/projects.h | |
| parent | e4f028223c773d3d60c6e59e00653ff22e538c90 (diff) | |
| download | PROJ-b08809dfede44f0e32bcee930d408f9f5e6bd7cf.tar.gz PROJ-b08809dfede44f0e32bcee930d408f9f5e6bd7cf.zip | |
preliminary addition of vertical datum shifting capability
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@1839 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/projects.h')
| -rw-r--r-- | src/projects.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/projects.h b/src/projects.h index fcc9e48d..6a91ebda 100644 --- a/src/projects.h +++ b/src/projects.h @@ -236,6 +236,11 @@ typedef struct PJconsts { double datum_params[7]; struct _pj_gi **gridlist; int gridlist_count; + + int has_geoid_vgrids; + struct _pj_gi **vgridlist_geoid; + int vgridlist_geoid_count; + double from_greenwich; /* prime meridian offset (in radians) */ double long_wrap_center; /* 0.0 for -180 to 180, actually in radians*/ int is_long_wrap_set; @@ -342,7 +347,7 @@ void set_rtodms(int, int); char *rtodms(char *, double, int, int); double adjlon(double); double aacos(double), aasin(double), asqrt(double), aatan2(double, double); -PVALUE pj_param(paralist *, char *); +PVALUE pj_param(paralist *, const char *); paralist *pj_mkparam(char *); int pj_ell_set(paralist *, double *, double *); int pj_datum_set(paralist *, PJ *); |
