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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
/*
Distance Between Points Filter(s)
Copyright (C) 2002 Robert Lipe, robertlipe@usa.net
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., 59 Temple Place - Suite 330, Boston, MA 02111 USA
*/
#include "defs.h"
#include "filterdefs.h"
#include "grtcirc.h"
#if FILTERS_ENABLED
#ifndef M_PI
# define M_PI 3.14159265358979323846
#endif
static route_head *cur_rte = NULL;
static double pos_dist;
static char *distopt = NULL;
static char *purge_duplicates = NULL;
typedef struct {
double distance;
} extra_data;
static
arglist_t position_args[] = {
{"distance", &distopt, "Maximum positional distance",
NULL, ARGTYPE_FLOAT | ARGTYPE_REQUIRED, ARG_NOMINMAX },
{"all", &purge_duplicates,
"Suppress all points close to other points",
NULL, ARGTYPE_BOOL, ARG_NOMINMAX },
ARG_TERMINATOR
};
static double
gc_distance(double lat1, double lon1, double lat2, double lon2)
{
return gcdist(
RAD(lat1),
RAD(lon1),
RAD(lat2),
RAD(lon2)
);
}
static int
position_comp(const void * a, const void * b)
{
const waypoint *x1 = *(waypoint **)a;
const waypoint *x2 = *(waypoint **)b;
double latdiff, londiff, max;
/*
* this compare makes the assumption that things will fall into
* order by declaring their biggest single axial difference.
* It is much less math than distance and bearing from some random
* point.
*/
londiff = (x1->longitude -
x2->longitude) * 1000000.0;
latdiff = (x1->latitude -
x2->latitude) * 1000000.0;
max = fabs(londiff) >= fabs(latdiff) ? floor(londiff) : floor(latdiff);
if (max < 0)
return (-1);
else if (max > 0)
return (1);
return(0);
}
/* tear through a waypoint queue, processing points by distance */
static void
position_runqueue(queue *q, int nelems, int qtype)
{
queue * elem, * tmp;
waypoint ** comp;
double dist;
int i, j;
int del = 0;
comp = (waypoint **) xcalloc(nelems, sizeof(*comp));
i = 0;
QUEUE_FOR_EACH(q, elem, tmp) {
comp[i] = (waypoint *)elem;
i++;
}
if (qtype == wptdata)
qsort(comp, nelems, sizeof(waypoint *), position_comp);
for (i = 1, j = 0 ; i < nelems ; i++) {
dist = gc_distance(comp[j]->latitude,
comp[j]->longitude,
comp[i]->latitude,
comp[i]->longitude);
/* convert radians to integer feet */
dist = (int)(5280*radtomiles(dist));
if (dist <= pos_dist) {
switch (qtype) {
case wptdata:
waypt_del(comp[i]);
waypt_free(comp[i]);
del = !!purge_duplicates;
break;
case trkdata:
track_del_wpt(cur_rte, comp[i]);
del = !!purge_duplicates;
break;
case rtedata:
route_del_wpt(cur_rte, comp[i]);
del = !!purge_duplicates;
break;
default:
break;
}
}
else {
if (del ) {
switch (qtype) {
case wptdata:
waypt_del(comp[j]);
waypt_free(comp[j]);
del = 0;
break;
case trkdata:
track_del_wpt(cur_rte, comp[j]);
del = 0;
break;
case rtedata:
route_del_wpt(cur_rte, comp[j]);
del = 0;
break;
default:
break;
}
}
j = i;
}
}
if ( del ) {
switch (qtype) {
case wptdata:
waypt_del(comp[j]);
waypt_free(comp[j]);
break;
case trkdata:
track_del_wpt(cur_rte, comp[j]);
break;
case rtedata:
route_del_wpt(cur_rte, comp[j]);
break;
default:
break;
}
}
if (comp)
xfree(comp);
}
static void
position_process_route(const route_head * rh) {
int i = rh->rte_waypt_ct;
if (i) {
cur_rte = (route_head *)rh;
position_runqueue((queue *)&rh->waypoint_list, i, rtedata);
cur_rte = NULL;
}
}
static void
position_noop_w(const waypoint *w)
{
}
static void
position_noop_t(const route_head *h)
{
}
void position_process(void)
{
int i = waypt_count();
if (i)
position_runqueue(&waypt_head, i, wptdata);
route_disp_all(position_process_route, position_noop_t, position_noop_w);
track_disp_all(position_process_route, position_noop_t, position_noop_w);
}
void
position_init(const char *args) {
char *fm;
pos_dist = 0;
if (distopt) {
pos_dist = strtod(distopt, &fm);
if ((*fm == 'm') || (*fm == 'M')) {
/* distance is meters */
pos_dist *= 3.2802;
}
}
}
void
position_deinit(void) {
}
filter_vecs_t position_vecs = {
position_init,
position_process,
position_deinit,
NULL,
position_args
};
#endif // FILTERS_ENABLED
|