aboutsummaryrefslogtreecommitdiff
path: root/src/pj_init.c
diff options
context:
space:
mode:
authorThomas Knudsen <busstoptaktik@users.noreply.github.com>2018-02-12 11:53:27 +0100
committerGitHub <noreply@github.com>2018-02-12 11:53:27 +0100
commita557b49e85ebfbfe0af076bc529002ca60e4a045 (patch)
tree3f56b95bd9fcce2a4f4c0725b7cda1bcb4bba1cf /src/pj_init.c
parent4bbb3df6c7ca56f477ef53113258d13f8a71bbce (diff)
parent5480a1ffaa38e16dd592beeaa42deb7e2cf4eadb (diff)
downloadPROJ-a557b49e85ebfbfe0af076bc529002ca60e4a045.tar.gz
PROJ-a557b49e85ebfbfe0af076bc529002ca60e4a045.zip
Merge pull request #793 from busstoptaktik/pj_init_cleanup
A few repairs in and around pj_init.c
Diffstat (limited to 'src/pj_init.c')
-rw-r--r--src/pj_init.c37
1 files changed, 21 insertions, 16 deletions
diff --git a/src/pj_init.c b/src/pj_init.c
index f54a2a92..bf098686 100644
--- a/src/pj_init.c
+++ b/src/pj_init.c
@@ -470,22 +470,20 @@ pj_init(int argc, char **argv) {
}
-typedef PJ *(constructor)(PJ *);
-
-static constructor *pj_constructor (const char *name) {
+static PJ_CONSTRUCTOR pj_locate_constructor (const char *name) {
int i;
char *s;
for (i = 0; (s = pj_list[i].id) && strcmp(name, s) ; ++i) ;
if (0==s)
return 0;
- return (constructor *) pj_list[i].proj;
+ return (PJ_CONSTRUCTOR) pj_list[i].proj;
}
PJ *
pj_init_ctx(projCtx ctx, int argc, char **argv) {
char *s, *name;
- constructor *proj;
+ PJ_CONSTRUCTOR proj;
paralist *curr, *init, *start;
int i;
int err;
@@ -511,7 +509,7 @@ pj_init_ctx(projCtx ctx, int argc, char **argv) {
n_inits++;
}
- /* can't have nested pipeline directly */
+ /* can't have nested pipelines directly */
if (n_pipelines > 1) {
pj_ctx_set_errno (ctx, PJD_ERR_MALFORMED_PIPELINE);
return 0;
@@ -559,7 +557,7 @@ pj_init_ctx(projCtx ctx, int argc, char **argv) {
return pj_dealloc_params (ctx, start, PJD_ERR_PROJ_NOT_NAMED);
name += 5;
- proj = pj_constructor (name);
+ proj = pj_locate_constructor (name);
if (0==proj)
return pj_dealloc_params (ctx, start, PJD_ERR_UNKNOWN_PROJECTION_ID);
@@ -594,16 +592,23 @@ pj_init_ctx(projCtx ctx, int argc, char **argv) {
return pj_default_destructor (PIN, proj_errno(PIN));
err = pj_ellipsoid (PIN);
- if (PIN->need_ellps && 0 != err) {
- pj_log (ctx, PJ_LOG_DEBUG_MINOR, "pj_init_ctx: Must specify ellipsoid or sphere");
- return pj_default_destructor (PIN, proj_errno(PIN));
- }
- if (0==err) {
- PIN->a_orig = PIN->a;
- PIN->es_orig = PIN->es;
- if (pj_calc_ellipsoid_params (PIN, PIN->a, PIN->es))
- return pj_default_destructor (PIN, PJD_ERR_ECCENTRICITY_IS_ONE);
+
+ if (err) {
+ /* Didn't get an ellps, but doesn't need one: Get a free WGS84 */
+ if (PIN->need_ellps) {
+ pj_log (ctx, PJ_LOG_DEBUG_MINOR, "pj_init_ctx: Must specify ellipsoid or sphere");
+ return pj_default_destructor (PIN, proj_errno(PIN));
+ }
+ else {
+ PIN->f = 1.0/298.257223563;
+ PIN->a_orig = PIN->a = 6378137.0;
+ PIN->es_orig = PIN->es = PIN->f*(2-PIN->f);
+ }
}
+ PIN->a_orig = PIN->a;
+ PIN->es_orig = PIN->es;
+ if (pj_calc_ellipsoid_params (PIN, PIN->a, PIN->es))
+ return pj_default_destructor (PIN, PJD_ERR_ECCENTRICITY_IS_ONE);
/* Now that we have ellipse information check for WGS84 datum */
if( PIN->datum_type == PJD_3PARAM