-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadalldata.cpp
149 lines (123 loc) · 4.11 KB
/
readalldata.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
#include "FOSMBin.hpp"
class EmitOSM : public Geography
{
public:
EmitOSM ()
: Geography()
{
debug=0;
}
void ProcessNodes() {
component_map_t::iterator iter;
for (iter=component_map.begin();iter!=component_map.end();iter++) {
cout << "component " << iter->first << endl;
vector<int>::const_iterator cii;
vector<int> &data =iter->second;
std::map<int, int> component_ways; //each way from this component, with a count
char buffer [255];
int component=iter->first;
sprintf(buffer,"split/%d.osm",component);
ofstream of(buffer);
if(!of){
cerr << "cannot open " << buffer << endl;
return ;
}
of << "<?xml version='1.0' encoding='UTF-8'?>" << endl;
of << "<osm version=\"0.6\" generator=\"fosmbin2osm\">" << endl;
for(cii=data.begin(); cii!=data.end(); cii++)
{
int nodeidx=*cii;//
nodes_ways_t::iterator node_ways_it;
node_ways_it=node_ways.find(nodeidx); // get all the ways from that node
if (node_ways_it!=node_ways.end()) {
std::vector<int> & wayids=node_ways_it->second;
std::vector<int>::iterator waysit;
for (waysit=wayids.begin();waysit != wayids.end();waysit++) {
int wayid=*waysit;
// for each way that this node occurs in
way_components[wayid]=component;
if (debug > 20)
{
cerr << "from node : " << nodeidx <<"(" << node_id[nodeidx] << ")"
<< " emit way: " << wayid <<"(" << way_id[wayid] << ")"
<< " in component :" << component << endl;
}
component_ways[wayid]++;// we will output these later
}// for each way
}// if there are any ways
emitnode(nodeidx,of); // emit the nodes
}// noide
// now emit all ways
{
std::map<int, int>::iterator it;
for ( it = component_ways.begin(); it != component_ways.end(); it ++ ) {
int wayid = it->first;
if (debug) {
cerr << " emit way: " << wayid <<"(" << way_id[wayid] << ")"
<< " in component :" << component << endl;
}
emitway(wayid,of);
}
}
of << "</osm>" << endl;
}// component
}
void emitnode(int i, ostream & os) {
int component=node_components[i];
os << "<node ";
os << "id='"<< node_id[i] << "' ";
os << " version='1' ";
os << " lat='";
os.precision(6);
os.setf(ios::fixed,ios::floatfield); // floatfield set to fixed
os << node_lat[i];
os << "' " ;
os << " lon='";
os.precision(6);
os.setf(ios::fixed,ios::floatfield); // floatfield set to fixed
os << node_lon[i] << "' ";
os << ">";
os << "<tag k='component' v='" << component << "'/>" ;
os << "</node> " << endl;
}
void emitway(int i, ostream & os) {
int component=way_components[i];
// way_component
os << "<way ";
os << " version='1' ";
os << "id='"<< way_id[i] << "' ";
os << ">";
os << "<tag k='component' v='" << component << "'/>" ;
//way_nodes
way_nodes_t::iterator ways_nodes_it;
ways_nodes_it=way_nodes.find(i);
if (ways_nodes_it ==way_nodes.end()) { /* empty */ }
else {
vector<int>::const_iterator cii;
vector<int> &data =ways_nodes_it->second;
os << endl;
for(cii=data.begin(); cii!=data.end(); cii++) {
int nodeidx=*cii;
int nodeid = node_id[nodeidx];
os << "<nd ref='" << nodeid << "' />" << endl;
}
os << "</way> " << endl;
}
}
};
int main()
{
EmitOSM geo;
geo.read_data();
// geo.read_components(); // this optional data is read in
vector<int>::const_iterator cii;
int i=0;
for(i=0; i < geo.way_id.size(); i++) {
geo.component_map[0].push_back(i);
}
for(i=0; i < geo.node_id.size(); i++) {
geo.node_components.push_back(0);
}
geo.ProcessNodes();
geo.report();
}