forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bend.cc
174 lines (136 loc) · 5.28 KB
/
bend.cc
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
Add route points before and after a bend.
Copyright (C) 2011 Fernando Arbeiza, [email protected]
Copyright (C) 2011 Robert Lipe, [email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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.
*/
#include <cmath> // macos wants abs from here!
#include <cstdlib> // for strtod, abs
#include <QString> // for QString
#include <QtGlobal> // for qAsConst, QAddConst<>::Type, foreach
#include "defs.h"
#include "bend.h"
#include "grtcirc.h" // for RAD, heading_true_degrees, gcdist, linepart, radtometers, DEG
#define MYNAME "bend"
#if FILTERS_ENABLED
void BendFilter::init()
{
maxDist = 0.0;
if (distopt) {
maxDist = strtod(distopt, nullptr);
}
minAngle = 0.0;
if (minangleopt) {
minAngle = strtod(minangleopt, nullptr);
}
route_backup(&routes_orig);
route_flush_all_routes();
}
Waypoint* BendFilter::create_wpt_dest(const Waypoint* wpt_orig, double lat_orig,
double long_orig, double lat_orig_adj, double long_orig_adj) const
{
double distance = gcdist(lat_orig, long_orig,
lat_orig_adj, long_orig_adj);
double lat_dest;
double long_dest;
distance = radtometers(distance);
if (distance <= maxDist) {
return nullptr;
}
double frac = maxDist / distance;
linepart(lat_orig, long_orig, lat_orig_adj, long_orig_adj, frac,
&lat_dest, &long_dest);
auto* wpt_dest = new Waypoint(*wpt_orig);
wpt_dest->latitude = DEG(lat_dest);
wpt_dest->longitude = DEG(long_dest);
return wpt_dest;
}
int BendFilter::is_small_angle(double lat_orig, double long_orig, double lat_orig_prev,
double long_orig_prev, double lat_orig_next,
double long_orig_next) const
{
double heading_prev = heading_true_degrees(lat_orig, long_orig,
lat_orig_prev, long_orig_prev);
double heading_next = heading_true_degrees(lat_orig, long_orig,
lat_orig_next, long_orig_next);
double heading_diff = heading_next - heading_prev;
return ((std::abs(heading_diff - 0.0) < minAngle)
|| (std::abs(heading_diff - 180.0) < minAngle)
|| (std::abs(heading_diff - 360.0) < minAngle));
}
void BendFilter::process_route(const route_head* route_orig, route_head* route_dest)
{
const Waypoint* wpt_orig_prev = nullptr;
const Waypoint* wpt_orig = nullptr;
foreach (const Waypoint* wpt_orig_next, route_orig->waypoint_list) {
if (wpt_orig_prev == nullptr) {
if (wpt_orig != nullptr) {
auto* waypoint_dest = new Waypoint(*wpt_orig);
route_add_wpt(route_dest, waypoint_dest);
}
} else {
double lat_orig = RAD(wpt_orig->latitude);
double long_orig = RAD(wpt_orig->longitude);
double lat_orig_prev = RAD(wpt_orig_prev->latitude);
double long_orig_prev = RAD(wpt_orig_prev->longitude);
double lat_orig_next = RAD(wpt_orig_next->latitude);
double long_orig_next = RAD(wpt_orig_next->longitude);
if (is_small_angle(lat_orig, long_orig, lat_orig_prev,
long_orig_prev, lat_orig_next, long_orig_next)) {
auto* waypoint_dest = new Waypoint(*wpt_orig);
route_add_wpt(route_dest, waypoint_dest);
} else {
Waypoint* wpt_dest_prev = create_wpt_dest(wpt_orig,
lat_orig, long_orig, lat_orig_prev, long_orig_prev);
if (wpt_dest_prev != nullptr) {
route_add_wpt(route_dest, wpt_dest_prev);
}
Waypoint* wpt_dest_next = create_wpt_dest(wpt_orig,
lat_orig, long_orig, lat_orig_next, long_orig_next);
if (wpt_dest_next != nullptr) {
route_add_wpt(route_dest, wpt_dest_next);
wpt_orig = wpt_dest_next;
}
}
}
wpt_orig_prev = wpt_orig;
wpt_orig = wpt_orig_next;
}
if (wpt_orig != nullptr) {
auto* waypoint_dest = new Waypoint(*wpt_orig);
route_add_wpt(route_dest, waypoint_dest);
}
}
void BendFilter::process_route_orig(const route_head* route_orig)
{
auto* route_dest = new route_head;
route_dest->rte_name = route_orig->rte_name;
route_dest->rte_desc = route_orig->rte_desc;
route_dest->fs = route_orig->fs.FsChainCopy();
route_dest->rte_num = route_orig->rte_num;
route_add_head(route_dest);
process_route(route_orig, route_dest);
}
void BendFilter::process()
{
for (const auto* route_orig : qAsConst(*routes_orig)) {
process_route_orig(route_orig);
}
}
void BendFilter::deinit()
{
routes_orig->flush();
delete routes_orig;
routes_orig = nullptr;
}
#endif // FILTERS_ENABLED