-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhierarchybuilder.cpp
222 lines (195 loc) · 5.36 KB
/
hierarchybuilder.cpp
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
#include "FOSMBin.hpp"
#include <set>
#include <math.h>
class Distance
{
public:
int index;
double distance;
Distance(int index, double distance)
:index(index),
distance(distance)
{
}
bool operator < (const Distance & other) const
{
if(distance < other.distance )
return true;
else
return false;
}
};
class Box
{
public:
//double coord[4];
double minlat, maxlat, minlon, maxlon;
Box():
minlat(0),
maxlat(0),
minlon(0),
maxlon(0)
{
}
Box(double minlat, double maxlat, double minlon, double maxlon)
: minlat(minlat),
maxlat(maxlat),
minlon(minlon),
maxlon(maxlon)
{
}
bool contains(const Box & b) const
{
if (
(b.minlat > minlat)
&&
(b.maxlat < maxlat)
&&
(b.minlon < minlon)
&&
(b.maxlon < maxlon)
)
{
return 1;
}
return 0;
}
void report()
{
cout << " lat(" << minlat << " , " << maxlat
<< " lon(" << minlon << " , " << maxlon
<< ")" << endl;
vector<Box>::iterator bi;
cout << "Children" << endl;
for(bi=children.begin(); bi!=children.end(); bi++) {
cout << "Child : " << endl;
bi->report();
}
cout << "end of Children" << endl;
}
void add(Box & b)
{
// now we add this box to the children, or put it in the top level.
if (contains(b))
{
vector<Box>::iterator bi;
for(bi=children.begin(); bi!=children.end(); bi++) {
if (bi->contains(b))
{
bi->add(b); // add this
cout << "adding to child" << endl;
report();
return;
}
else if (b.contains(*bi)) {
children.erase(bi);
b.add(*bi);
children.push_back(b);
cout << "Replacing child" << endl;
report();
return;
}
}
cout << "adding to child of main" << endl;
children.push_back(b); // otherwise just insert it at the end
}
else
{
cout << "expanding main" << endl;
add(b.minlat, b.minlon);
add(b.maxlat, b.maxlon);
}
report();
}
void add(double lat, double lon)
{
if (minlat ==0 )
{
minlat=lat;
}
if (minlon ==0 )
{
minlon=lon;
}
if (lat < minlat)
{
minlat=lat;
}
if (lat > maxlat)
{
maxlat=lat;
}
if (lon < minlon)
{
minlon=lon;
}
if (lon > maxlon)
{
maxlon=lon;
}
report();
}
vector<Box> children; // all the children boxes that are contained in this box
};
int main()
{
Geography geo;
geo.read_data();
Geography::way_nodes_t::iterator ways_nodes_it;
set<Distance> LongestWay;
Box topBoxWay; // this is the biggest box found of ways
Box topBoxPoint; // this is the biggest box found of points
int way_index=0;
for (ways_nodes_it = geo.way_nodes.begin();
ways_nodes_it != geo.way_nodes.end();
ways_nodes_it++)
{
vector<int>::const_iterator cii;
vector<int> &data =ways_nodes_it->second;
double distance=0;
int nodecount=0;
Box bbox; // this is the bbox of this way
for(cii=data.begin(); cii!=data.end(); cii++) {
int nodeidx=*cii;
int nodeid = geo.node_id[nodeidx];
double lat = geo.node_lat[nodeidx];
double lon = geo.node_lon[nodeidx];
bbox.add(lat,lon); // expand the bbox
topBoxPoint.add(lat,lon); //expand the main bbox
topBoxPoint.report();
nodecount++;
if (cii!=data.begin())
{
double lat2 = geo.node_lat[nodeidx];
double lon2 = geo.node_lon[nodeidx];
// distance
double dlat = lat2 - lat;
double dlon = lon2 - lon;
double pyth = sqrt((dlat * dlat) + (dlon + dlon));
distance += pyth;
}
}
cout << "way" << way_index << " nodecount " << nodecount << "distance" <<distance<< endl;
LongestWay.insert(Distance(way_index,distance));
way_index++;
topBoxWay.add(bbox);
topBoxWay.report();
}
// find the longest ways in general, based on the length of the node.
// compare each way with each other.
/// use those as central splitting things.
// left or right of that way, starting with the longest. for each segment.
// find circles that contain all the nodes, outer circle
// find the most extreme nodes, max x, max y, min x, min y.
// look in the binary middle, then try and find a splitting way.
// sort the
// for each extreme point, look for the next point that increases the area the most, find a connection between them.
// for points on top of each other, withing a certain threshhold, merge them together.
// for nodes that are only alone a road, merge into one.
// for ways that forme a circle, create a single object from that.
// look for circles inside, ones that touch or are near the outer,
// that will fit into the major outer one.
// look for ways that cut across the entire area, splitting it.
// split up the data based on what is already there, left of road, right of road, use the biggest objects to start with.
// create a hierarchy based on that.
}