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 pathvalidate.js
303 lines (273 loc) · 8.29 KB
/
validate.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
var inside = require('point-in-polygon');
var validate = module.exports = {
isGeoJSON: function ( x ) {
// Validate a GeoJSON object.
return (
validate.isGeometry(x) ||
validate.isFeature(x) ||
validate.isFeatureCollection(x)
);
},
isGeometry: function ( x ) {
// Validate a GeoJSON Geometry.
return (
validate.isPoint(x) ||
validate.isMultiPoint(x) ||
validate.isLineString(x) ||
validate.isMultiLineString(x) ||
validate.isPolygon(x) ||
validate.isMultiPolygon(x) ||
validate.isGeometryCollection(x)
);
},
isPosition: function ( x ) {
// Validate a GeoJSON Position.
return (
Array.isArray(x) &&
x.length > 1 &&
x.every(
function ( element ) {
return (typeof element === 'number');
}
)
);
},
isPointCoordinates: function ( x ) {
// Validate the coordinates of a GeoJSON Point.
return validate.isPosition(x);
},
isMultiPointCoordinates: function ( x ) {
// Validate the coordinates of a GeoJSON MultiPoint.
return (
Array.isArray(x) &&
x.every(validate.isPosition)
);
},
isLineStringCoordinates: function ( x ) {
// Validate the coordinates of a GeoJSON LineString.
return (
Array.isArray(x) &&
x.length > 1 &&
validate.isMultiPointCoordinates(x)
);
},
isLinearRingCoordinates: function ( x ) {
// Validate the coordinates of a GeoJSON LinearRing.
return (
Array.isArray(x) &&
x.length > 3 &&
validate.isLineStringCoordinates(x) &&
validate.equalPositions(x[0],x[x.length-1])
);
},
isMultiLineStringCoordinates: function ( x ) {
// Validate the coordinates of a GeoJSON MultiLineString.
return (
Array.isArray(x) &&
x.every(validate.isLineStringCoordinates)
);
},
isPolygonCoordinates: function ( x ) {
// Validate the coordinates of a GeoJSON Polygon.
return (
Array.isArray(x) &&
x.every(validate.isLinearRingCoordinates) &&
x.every(
function ( LinearRingPosition , i , PolygonPosition ) {
return (
i == 0 ||
validate.containedPolygon(
LinearRingPosition,
PolygonPosition[0]
)
);
}
)
);
},
isMultiPolygonCoordinates: function ( x ) {
// Validate the coordinates of a GeoJSON MultiPolygon.
return (
Array.isArray(x) &&
x.every(validate.isPolygonCoordinates)
);
},
isPoint: function ( x ) {
// Validate a GeoJSON Point.
return (
x != null &&
x.type === 'Point' &&
validate.isPointCoordinates(x.coordinates) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isMultiPoint: function ( x ) {
// Validate a GeoJSON MultiPoint.
return (
x != null &&
x.type === 'MultiPoint' &&
validate.isMultiPointCoordinates(x.coordinates) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isLineString: function ( x ) {
// Validate a GeoJSON LineString.
return (
x != null &&
x.type === 'LineString' &&
validate.isLineStringCoordinates(x.coordinates) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isMultiLineString: function ( x ) {
// Validate a GeoJSON MultiLineString.
return (
x != null &&
x.type === 'MultiLineString' &&
validate.isMultiLineStringCoordinates(x.coordinates) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isPolygon: function ( x ) {
// Validate a GeoJSON Polygon.
return (
x != null &&
x.type === 'Polygon' &&
validate.isPolygonCoordinates(x.coordinates) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isMultiPolygon: function ( x ) {
// Validate a GeoJSON MultiPolygon.
return (
x != null &&
x.type === 'MultiPolygon' &&
validate.isMultiPolygonCoordinates(x.coordinates) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isGeometryCollection: function ( x ) {
// Validate a GeoJSON GeometryCollection.
return (
x != null &&
x.type === 'GeometryCollection' &&
Array.isArray(x.geometries) &&
x.geometries.every(validate.isGeometry) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isFeature: function ( x ) {
// Validate a GeoJSON Feature.
return (
x != null &&
x.type === 'Feature' &&
typeof x.properties === 'object' &&
validate.hasCRS(x) &&
validate.hasBbox(x) &&
(
x.geometry === null ||
validate.isGeometry(x.geometry)
)
);
},
isFeatureCollection: function ( x ) {
// Validate a GeoJSON FeatureCollection.
return (
x != null &&
x.type === 'FeatureCollection' &&
Array.isArray(x.features) &&
x.features.every(validate.isFeature) &&
validate.hasCRS(x) &&
validate.hasBbox(x)
);
},
isCRS: function ( x ) {
// Validate a GeoJSON Coordinate Reference System.
return (
x != null &&
(
(
x.type === 'name' &&
x.properties != null &&
typeof x.properties.name === 'string' &&
x.properties.name.length > 0
) ||
(
x.type === 'link' &&
validate.isLink(x.properties)
)
)
);
},
hasCRS: function ( x ) {
// Validate the CRS property of a GeoJSON object.
return (
x != null &&
(
typeof x.crs === 'undefined' ||
x.crs === null ||
validate.isCRS(x.crs)
)
)
},
isLink: function ( x ) {
// Validate a GeoJSON Link.
return (
x != null &&
typeof x.href === 'string' &&
(
typeof x.type === 'undefined' ||
(
typeof x.type === 'string' &&
x.type.length > 0
)
)
);
},
isBbox: function ( x ) {
// Validate a GeoJSON Bounding Box.
if (!Array.isArray(x)) return false;
if (x.length%2 !== 0) return false;
var pivot = x.length/2;
for (var i=0; i < pivot; ++i) if (x[i] > x[i+pivot]) return false;
return true;
},
hasBbox: function ( x ) {
// Validate the bbox property of a GeoJSON object.
return (
x != null &&
(
typeof x.bbox === 'undefined' ||
validate.isBbox(x.bbox)
)
);
},
///////////////////////////////////////////////////////////////////// COMPARISON
equalPositions: function ( a , b ) {
// Compare two GeoJSON Positions for equality.
return (
validate.isPosition(a) && validate.isPosition(b) &&
a.length == b.length &&
a.every(
function ( element , index ) {
return (a[index] == b[index]);
}
)
);
},
containedPolygon: function ( inner , outer ) {
// Determine whether one GeoJSON LinearRing contains another.
return inner.every(
function ( Position ) {
return inside([Position[0], Position[1]], outer);
}
);
}
};