-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathclustr.cpp
236 lines (209 loc) · 6.86 KB
/
clustr.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
223
224
225
226
227
228
229
230
231
232
233
234
235
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <list>
#include <stdexcept>
#include <cmath>
#include <unistd.h>
#include "clustr.h"
#include "shapefile.h"
using namespace std;
using namespace Clustr;
void write_points_to_shapefile (Shapefile &shape, vector<Point> &pts,
string text) {
vector<Point>::iterator begin = pts.begin(),
end = pts.end();
for (vector<Point>::iterator it = begin; it != end; it++) {
Feature pt_feat(shape);
Geometry pt_geom(wkbPoint);
pt_geom.push_back(*it);
pt_feat.set(pt_geom);
pt_feat.set("tag", text.c_str());
shape.add_feature(pt_feat);
}
}
void write_polygon_to_shapefile (Shapefile &shape, Polygon &poly, string text, long int count) {
Feature feat(shape);
Geometry geom(wkbPolygon);
geom.insert_rings(poly.begin(), poly.end());
feat.set(geom);
feat.set("tag", text.c_str());
feat.set("count", count);
feat.set("area", poly.area());
feat.set("perimeter", poly.perimeter());
feat.set("density", ((float)count)/poly.area());
shape.add_feature(feat);
}
bool extract_alpha_component (Mesh::component &c, Polygon &poly, bool verbose)
{
Mesh::vertex_circulator v(c);
Vertex_handle v0(*v);
Ring ring;
do {
ring.push_back(v->point());
} while (*(++v) != v0);
if (ring.size() < 4) {
if (verbose) cerr << "Discarding degenerate shape." << endl;
return false;
}
if (verbose)
cerr << "- " << ring.size() << " vertices, "
<< "area: " << fabs(ring.area())
<< ", perimeter: " << ring.perimeter() << endl;
poly.push_back(ring);
return true;
}
void construct_alpha_shape (Config &config, Shapefile &shape,
vector<Point> &pts, string text)
{
coord_type alpha = config.alpha;
Mesh mesh(pts.begin(), pts.end(), alpha);
if (alpha == 0) {
if (config.verbose) cerr << "Computing optimal alpha... ";
alpha = *mesh.find_optimal_alpha(1);
if (config.verbose) cerr << alpha << endl;
mesh.set_alpha(alpha);
}
if (config.verbose)
cerr << mesh.number_of_solid_components() <<
" component(s) found for alpha value " << alpha << "." << endl;
for (Mesh::component c = mesh.components_begin();
c != mesh.components_end(); c++) {
Polygon poly;
if (extract_alpha_component(c, poly, config.verbose)) {
if (config.verbose)
cerr << "Writing polygon for tag '" << text << "'." << endl;
write_polygon_to_shapefile(shape, poly, text, pts.size());
}
}
}
void construct_output (Config &config, Shapefile &shape,
vector<Point> &pts, string tag) {
cerr << "Got " << pts.size() << " points for tag '"
<< tag << "'." << endl;
if (config.points_only) {
write_points_to_shapefile(shape, pts, tag);
} else {
if (pts.size() >= 3) {
construct_alpha_shape(config, shape, pts, tag);
} else {
if (config.verbose)
cerr << "Need more than 3 points for tag '"
<< tag << "'" << endl;
}
}
}
void display_usage (void) {
cerr << endl
<< "clustr " << VERSION << " - construct polygons from tagged points"
<< endl
<< "written by " << AUTHOR << endl
<< COPYRIGHT << endl
<< endl
<< "Usage: clustr [-a <n>] [-p] [-v] <input> <output>" << endl
<< " -h, -? this help message" << endl
<< " -v be verbose (default: off)" << endl
<< " -a <n> set alpha value (default: use \"optimal\" value)"
<< endl
<< " -p output points to shapefile, instead of polygons"
<< endl
<< endl
<< "If <input> is missing or given as \"-\", stdin is used."
<< endl
<< "If <output> is missing, output is written to clustr.shp."
<< endl
<< "Input file should be formatted as: <tag> <lon> <lat>\\n" << endl
<< "Tags must not contain spaces." << endl
<< endl;
}
bool parse_options (Config &config, int argc, char **argv) {
istringstream iss;
string optstring("a:pvh?");
if (argc <= 1) {
display_usage();
return false;
}
int opt = getopt( argc, argv, optstring.c_str() );
while( opt != -1 ) {
switch( opt ) {
case 'a':
iss.str((string) optarg);
iss >> config.alpha;
break;
case 'p':
config.points_only = true;
break;
case 'v':
config.verbose = true;
break;
case 'h': /* fall-through is intentional */
case '?':
display_usage();
return false;
}
opt = getopt( argc, argv, optstring.c_str() );
}
if (optind < argc) {
config.in_file = argv[optind++];
}
if (optind < argc) {
config.out_file = argv[optind];
}
return true;
}
int main(int argc, char **argv) {
vector<Point> points;
istream *input;
Config config;
Shapefile *shape;
if (!parse_options(config, argc, argv))
return 1;
if (config.in_file == "-") {
input = &cin;
} else {
input = new ifstream(config.in_file.c_str());
}
if (config.points_only) {
if (config.verbose) {
cerr << "Only converting points to Shapefile,"
<< " no clustering performed." << endl;
}
shape = new Shapefile(config.out_file, wkbPoint);
shape->add_field("tag", OFTString, 64);
} else {
shape = new Shapefile(config.out_file, wkbPolygon);
shape->add_field("tag", OFTString, 64);
shape->add_field("count", OFTInteger, 8);
shape->add_field("area", OFTReal, 10, 2);
shape->add_field("perimeter", OFTReal, 10, 2);
shape->add_field("density", OFTReal, 10, 2);
}
string line, tag, previous = "";
vector<Point> pts;
Point pt;
if (config.verbose)
cerr << "Reading points from input." << endl;
while (!getline(*input,line).eof()) {
istringstream is(line);
if (!(is >> tag >> pt)) {
cerr << "Bad input line: " << line;
continue;
}
if (previous == "") {
previous = tag;
}
if (tag != previous) {
construct_output(config, *shape, pts, previous);
pts.clear();
previous = tag;
}
pts.push_back(pt);
}
construct_output(config, *shape, pts, tag);
// if you want to do memory leak testing, include <ogr_api.h> and
// uncomment the following line:
// OGRCleanupAll();
delete shape;
return 0;
}