forked from osmlab/name-suggestion-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getRaw.js
57 lines (48 loc) · 1.55 KB
/
getRaw.js
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
#!/usr/bin/env node
var osmium = require('osmium');
var fs = require('fs');
var start = new Date().getTime();
if (process.argv.length < 3) {
console.log("Usage: " + process.argv[0] + ' ' + process.argv[1] + " OSMFILE");
process.exit(1);
}
var input_filename = process.argv[2],
handler = new osmium.Handler(),
output_filename = 'topNames.json',
osmKeys = ['amenity', 'shop'],
counts = {},
THRESHOLD = process.argv[3] || 50;
handler.options({"tagged_nodes_only": true});
handler.on('node', takeTags);
handler.on('way', takeTags);
function takeTags(entity) {
if (entity.tags && entity.tags('name')) {
var tags = entity.tags();
for (var key in tags) {
if (osmKeys.indexOf(key) != -1) {
var fullName = key + '/' + tags[key] + '|' + entity.tags('name');
if (counts[fullName]) {
counts[fullName] += 1;
} else {
counts[fullName] = 1;
}
}
}
}
}
function done() {
var out = {};
for (var key in counts) {
if (counts[key] > THRESHOLD) {
out[key] = counts[key];
}
}
console.error('> ' + THRESHOLD + ': ' + Object.keys(out).length);
fs.writeFileSync(output_filename, JSON.stringify(out, null, 4));
}
handler.on('done', function() {
done();
console.error('run time: ' + Math.round((new Date().getTime() - start)/1000));
});
var reader = new osmium.Reader(input_filename,{node:true,way:true});
reader.apply(handler, { "with_location_handler": false });