arangosh> for (i = -90; i <= 90; i += 10) { ........> for (j = -180; j <= 180; j += 10) { ........> db.complex.save({ name : "Name/" + i + "/" + j, ........> home : [ i, j ], ........> work : [ -i, -j ] }); ........> } ........> } ........> arangosh> db.complex.near(0, 170).limit(5); [ArangoError 1570: no suitable geo index found for geo restriction on 'complex'] arangosh> db.complex.ensureIndex({ type: "geo", fields: [ "home" ] }); { "bestIndexedLevel" : 17, "fields" : [ "home" ], "geoJson" : false, "id" : "complex/128759", "isNewlyCreated" : true, "maxNumCoverCells" : 8, "sparse" : true, "type" : "geo", "unique" : false, "worstIndexedLevel" : 4, "code" : 201 } arangosh> db.complex.near(0, 170).limit(5).toArray(); [ { "_key" : "127753", "_id" : "complex/127753", "_rev" : "_YOn1nhe--D", "name" : "Name/0/170", "home" : [ 0, 170 ], "work" : [ 0, -170 ] }, { "_key" : "127756", "_id" : "complex/127756", "_rev" : "_YOn1nhe--F", "name" : "Name/0/180", "home" : [ 0, 180 ], "work" : [ 0, -180 ] }, { "_key" : "127864", "_id" : "complex/127864", "_rev" : "_YOn1nhy--H", "name" : "Name/10/170", "home" : [ 10, 170 ], "work" : [ -10, -170 ] }, { "_key" : "127642", "_id" : "complex/127642", "_rev" : "_YOn1ndS--D", "name" : "Name/-10/170", "home" : [ -10, 170 ], "work" : [ 10, -170 ] }, { "_key" : "127648", "_id" : "complex/127648", "_rev" : "_YOn1ndS--H", "name" : "Name/0/-180", "home" : [ 0, -180 ], "work" : [ 0, 180 ] } ] arangosh> db.complex.geo("work").near(0, 170).limit(5); [ArangoError 1570: no suitable geo index found for geo restriction on 'complex'] arangosh> db.complex.ensureIndex({ type: "geo", fields: [ "work" ] }); { "bestIndexedLevel" : 17, "fields" : [ "work" ], "geoJson" : false, "id" : "complex/128767", "isNewlyCreated" : true, "maxNumCoverCells" : 8, "sparse" : true, "type" : "geo", "unique" : false, "worstIndexedLevel" : 4, "code" : 201 } arangosh> db.complex.geo("work").near(0, 170).limit(5).toArray(); [ { "_key" : "127753", "_id" : "complex/127753", "_rev" : "_YOn1nhe--D", "name" : "Name/0/170", "home" : [ 0, 170 ], "work" : [ 0, -170 ] }, { "_key" : "127756", "_id" : "complex/127756", "_rev" : "_YOn1nhe--F", "name" : "Name/0/180", "home" : [ 0, 180 ], "work" : [ 0, -180 ] }, { "_key" : "127864", "_id" : "complex/127864", "_rev" : "_YOn1nhy--H", "name" : "Name/10/170", "home" : [ 10, 170 ], "work" : [ -10, -170 ] }, { "_key" : "127642", "_id" : "complex/127642", "_rev" : "_YOn1ndS--D", "name" : "Name/-10/170", "home" : [ -10, 170 ], "work" : [ 10, -170 ] }, { "_key" : "127648", "_id" : "complex/127648", "_rev" : "_YOn1ndS--H", "name" : "Name/0/-180", "home" : [ 0, -180 ], "work" : [ 0, 180 ] } ]