MongoDB的位置索引是什么单位?米?万里?

时间:2011-02-13 05:09:52

标签: python mongodb geolocation database

db.posts.ensureIndex({"loc":"2d"})

如果我这样做并通过它查询......

有哪些单位?

db.posts.find({"loc": {"$within": {"$center" : [ user_center, user_radius ] }}})

如果我想找到5英里外的东西,我的半径是什么呢?

1 个答案:

答案 0 :(得分:1)

你的单位是你在那里储存的任何东西。如果您以度为单位存储在将作为$within的单位的地球上。

如果你使用度数,那么5英里的$within将是〜0.07,因为学位是60海里。