This repository was archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathextract.js
117 lines (112 loc) · 3.82 KB
/
extract.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
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
var extract = module.exports = {
positionsOf: function ( geojson ) {
// Find all the Positions in a valid GeoJSON object.
var positions = [];
var extractLineStringPositions = function ( LineStringPosition ) {
LineStringPosition.forEach(
function ( Position ) {
positions.push(Position);
}
);
};
var extractPolygonPositions = function ( PolygonPosition ) {
PolygonPosition.forEach(extractLineStringPositions);
};
switch (geojson.type) {
case 'Point':
positions.push(geojson.coordinates);
break;
case 'MultiPoint':
case 'LineString':
extractLineStringPositions(geojson.coordinates);
break;
case 'MultiLineString':
case 'Polygon':
extractPolygonPositions(geojson.coordinates);
break;
case 'MultiPolygon':
geojson.coordinates.forEach(extractPolygonPositions);
break;
case 'GeometryCollection':
extractLineStringPositions(
extract.positionsOf(geojson.geometries)
);
break;
case 'Feature':
extractLineStringPositions(
extract.positionsOf(geojson.geometry)
);
break;
case 'FeatureCollection':
geojson.features.forEach(
function ( Feature ) {
extractLineStringPositions(
extract.positionsOf(Feature.geometry)
);
}
);
break;
}
return positions;
},
featuresOf: function ( geojson ) {
// Find all Features in a valid GeoJSON object.
var features = [];
switch (geojson.type) {
case 'Feature':
features.push(geojson);
break;
case 'FeatureCollection':
geojson.features.forEach(
function ( Feature ) {
extract.featuresOf(Feature).forEach(
function ( Feature ) {
features.push(Feature);
}
);
}
);
break;
}
return features;
},
geometriesOf: function ( geojson ) {
// Find all Geometries in a valid GeoJSON object.
var geometries = [];
var extractFeatureGeometries = function ( Feature ) {
extract.geometriesOf(Feature.geometry).forEach(
function ( Geometry ) {
geometries.push(Geometry);
}
);
};
switch (geojson.type) {
case 'Point':
case 'MultiPoint':
case 'LineString':
case 'MultiLineString':
case 'Polygon':
case 'MultiPolygon':
geometries.push(geojson);
break;
case 'GeometryCollection':
geojson.geometries.forEach(
function ( Geometry ) {
extract.geometriesOf(Geometry).forEach(
function ( Geometry ) {
geometries.push(Geometry);
}
);
}
);
break;
case 'Feature':
extractFeatureGeometries(geojson);
break;
case 'FeatureCollection':
geojson.features.forEach(extractFeatureGeometries);
break;
}
return geometries;
},
}