地理位置索引-2d索引

```

> db.location.ensureIndex({"w":"2d"})

{

"createdCollectionAutomatically" : true,

"numIndexesBefore" : 1,

"numIndexesAfter" : 2,

"ok" : 1

}

> db.location.insert({w:[1,1]})

WriteResult({ "nInserted" : 1 })

> db.location.insert({w:[1,2]})

WriteResult({ "nInserted" : 1 })

> db.location.insert({w:[3,2]})

WriteResult({ "nInserted" : 1 })

> db.location.insert({w:[100,100]})

WriteResult({ "nInserted" : 1 })

> db.location.insert({w:[200,100]})

WriteResult({

"nInserted" : 0,

"writeError" : {

"code" : 13027,

"errmsg" : "point not in interval of [ -180, 180 ] :: caused by :: { _id: ObjectId('5870915a9a0bf268727ed5c0'), w: [ 200.0, 100.0 ] }"

}

})

> db.location.insert({w:[180,100]})

WriteResult({ "nInserted" : 1 })

> db.location.remove({w:[180,100]})

WriteResult({ "nRemoved" : 1 })

> db.location.insert({w:[180,80]})

WriteResult({ "nInserted" : 1 })

> db.location.find({w:{$near:[1,1]}})

{ "_id" : ObjectId("587091389a0bf268727ed5bc"), "w" : [ 1, 1 ] }

{ "_id" : ObjectId("5870913c9a0bf268727ed5bd"), "w" : [ 1, 2 ] }

{ "_id" : ObjectId("587091419a0bf268727ed5be"), "w" : [ 3, 2 ] }

{ "_id" : ObjectId("587091509a0bf268727ed5bf"), "w" : [ 100, 100 ] }

{ "_id" : ObjectId("587091979a0bf268727ed5c2"), "w" : [ 180, 80 ] }

> db.location.find({w:{$near:[1,1],$maxDistance:10}})

{ "_id" : ObjectId("587091389a0bf268727ed5bc"), "w" : [ 1, 1 ] }

{ "_id" : ObjectId("5870913c9a0bf268727ed5bd"), "w" : [ 1, 2 ] }

{ "_id" : ObjectId("587091419a0bf268727ed5be"), "w" : [ 3, 2 ] }

> db.location.find({w:{$near:[1,1],$maxDistance:10,$minDistance:1}})

{ "_id" : ObjectId("5870913c9a0bf268727ed5bd"), "w" : [ 1, 2 ] }

{ "_id" : ObjectId("587091419a0bf268727ed5be"), "w" : [ 3, 2 ] }

> db.location.find({w:{$near:[1,1],$maxDistance:10,$minDistance:2}})

{ "_id" : ObjectId("587091419a0bf268727ed5be"), "w" : [ 3, 2 ] }

> db.location.find({w:{$near:[1,1],$maxDistance:10,$minDistance:3}})

>

```

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容