-
Notifications
You must be signed in to change notification settings - Fork 43
/
tile-profiler.js
55 lines (47 loc) · 2.1 KB
/
tile-profiler.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
var _ = require('underscore');
var spherical = require('spherical');
module.exports = {
layerInfo: function(vtile) {
var jsonsizes = vtile.toJSON().reduce(function(memo, l) {
memo[l.name] = JSON.stringify(l).length;
return memo;
}, {});
return JSON.parse(vtile.toGeoJSON('__array__')).map(function(layer) {
var info = {
name: layer.name, // name of the layer
coordCount: [], // # coords per feature
duplicateCoordCount: [], // # duplicate coords per feature
coordDistance: [], // distances between consecutive coordinates
features: layer.features.length, // number of features
jsonsize: jsonsizes[layer.name] // length of layer as a JSON string
};
layer.features.reduce(featureDetails, info);
return info;
});
}
};
function featureDetails(info, feature) {
var coords = flattenGeoJsonCoords(feature.geometry);
var coordDistances = coords.map(findDistances);
coordDistances.shift();
info.coordCount.push(coords.length);
info.duplicateCoordCount.push(coords.reduce(countDuplicates, 0));
info.coordDistance = info.coordDistance.concat(coordDistances);
return info;
}
function countDuplicates(count, coord, index, coordinates) {
if (index !== 0 &&
coord[0] === coordinates[index - 1][0] &&
coord[1] === coordinates[index - 1][1]) count++;
return count;
}
function findDistances(coord, index, coordinates) {
if (index === 0) return null;
return spherical.distance(coordinates[index - 1], coord);
}
function flattenGeoJsonCoords(geometry) {
if (geometry.type === 'Point') return [ geometry.coordinates ];
if (geometry.type === 'LineString' || geometry.type === 'MultiPoint') return geometry.coordinates;
if (geometry.type == 'Polygon' || geometry.type === 'MultiLineString') return _(geometry.coordinates).flatten(true);
if (geometry.type === 'MultiPolygon') return _(geometry.coordinates).flatten();
}