blob: 4b7e0d4eff39ee31a41faf98aba567fe48c6696e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
var t = db.geo_s2selfintersectingpoly;
t.drop();
t.ensureIndex({geo: "2dsphere"});
var intersectingPolygon = {"type": "Polygon", "coordinates": [
[[0.0, 0.0], [0.0, 4.0], [-3.0, 2.0], [1.0, 2.0], [0.0, 0.0]]
]};
/*
* Self intersecting polygons should cause a parse exception.
*/
t.insert({geo : intersectingPolygon});
assert(db.getLastError());
|