summaryrefslogtreecommitdiff
path: root/navit/tools/gpx2navit_txt/src/geod_set.c
blob: 65c6fffaf73ae77228dc23c427a5ecda3489d5da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
 * Navit, a modular navigation system.
 * Copyright (C) 2005-2008 Navit Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */

#ifndef lint
/*
 * static const char SCCSID[]="@(#)geod_set.c 4.8 95/09/23 GIE REL";
 */
#endif

#define _IN_GEOD_SET

#include <string.h>
#include "projects.h"
#include "geodesic.h"
#include "emess.h"
void geod_set(int argc, char **argv) {
    paralist *start = 0, *curr = NULL;	/* added NULL */
    double es;
    char *name;
    int i;

    /*
     * put arguments into internal linked list
     */
    if (argc <= 0)
        emess(1, "no arguments in initialization list");
    for (i = 0; i < argc; ++i)
        if (i)
            curr = curr->next = pj_mkparam(argv[i]);
        else
            start = curr = pj_mkparam(argv[i]);
    /*
     * set elliptical parameters
     */
    if (pj_ell_set(start, &geod_a, &es))
        emess(1, "ellipse setup failure");
    /*
     * set units
     */
    if ((name = pj_param(start, "sunits").s)) {	/* added parentheses */
        char *s;

        for (i = 0; (s = pj_units[i].id) && strcmp(name, s); ++i);
        if (!s)
            emess(1, "%s unknown unit conversion id", name);
        fr_meter = 1. / (to_meter = atof(pj_units[i].to_meter));
    } else
        to_meter = fr_meter = 1.;
    if ((ellipse = es != 0.)) {	/* added parentheses */
        onef = sqrt(1. - es);
        geod_f = 1 - onef;
        f2 = geod_f / 2;
        f4 = geod_f / 4;
        f64 = geod_f * geod_f / 64;
    } else {
        onef = 1.;
        geod_f = f2 = f4 = f64 = 0.;
    }
    /*
     * check if line or arc mode
     */
    if (pj_param(start, "tlat_1").i) {
        double del_S;
#undef f
        phi1 = pj_param(start, "rlat_1").f;
        lam1 = pj_param(start, "rlon_1").f;
        if (pj_param(start, "tlat_2").i) {
            phi2 = pj_param(start, "rlat_2").f;
            lam2 = pj_param(start, "rlon_2").f;
            geod_inv();
            geod_pre();
        } else if ((geod_S = pj_param(start, "dS").f)) {
            /* added
            							 * parentheses
            							 */
            al12 = pj_param(start, "rA").f;
            geod_pre();
            geod_for();
        } else
            emess(1, "incomplete geodesic/arc info");
        if ((n_alpha = pj_param(start, "in_A").i) > 0) {
            if (!(del_alpha = pj_param(start, "rdel_A").f))
                emess(1, "del azimuth == 0");
        } else if ((del_S = fabs(pj_param(start, "ddel_S").f))) {
            /* added
            								 * parentheses
            								 */
            n_S = geod_S / del_S + .5;
        } else if ((n_S = pj_param(start, "in_S").i) <= 0)
            emess(1, "no interval divisor selected");
    }
    /*
     * free up linked list
     */
    for (; start; start = curr) {
        curr = start->next;
        pj_dalloc(start);
    }
}