找不到2sphere元素
来源:stackoverflow
时间:2024-03-08 15:54:24 485浏览 收藏
今日不肯埋头,明日何以抬头!每日一句努力自己的话哈哈~哈喽,今天我将给大家带来一篇《找不到2sphere元素》,主要内容是讲解等等,感兴趣的朋友可以收藏或者有更好的建议在评论提出,我都会认真看的!大家一起进步,一起学习!
我来是因为我需要实现地理计算,但是,它不起作用。我目前正在使用包 globalsign/mgo
从文档中我们可以看到:
db.<collection>.find( { <location field> :
{ $near :
{ $geometry :
{ type : "point" ,
coordinates : [ <longitude> , <latitude> ] } ,
$maxdistance : <distance in meters>,
}
}
}
)
查询2dsphere索引:https://docs.mongodb.com/manual/tutorial/query-a-2dsphere-index/ 2dsphere 索引:https://docs.mongodb.com/manual/core/2dsphere/
所以我有以下内容:
import (
"github.com/globalsign/mgo/bson"
"shared/models"
"time"
)
type address struct {
id *bson.objectid `protobuf:"bytes,1,opt,name=id,proto3" json:"_id,omitempty" bson:"_id"`
isarchived bool `protobuf:"varint,2,opt,name=isarchived,proto3" json:"is_archived,omitempty" bson:"is_archived"`
createdat time.time `protobuf:"varint,3,opt,name=createdat,proto3" json:"created_at,omitempty" bson:"created_at"`
updatedat time.time `protobuf:"varint,4,opt,name=updatedat,proto3" json:"update_at,omitempty" bson:"updated_at"`
placeid *bson.objectid `protobuf:"bytes,5,opt,name=placeid,proto3" json:"place_id,omitempty" bson:"place_id"`
countrycode string `protobuf:"bytes,6,opt,name=countrycode,proto3" json:"country_code,omitempty" bson:"country_code,omitempty"`
administrativearea string `protobuf:"bytes,7,opt,name=administrativearea,proto3" json:"administrative_area,omitempty" bson:"administrative_area,omitempty"`
locality string `protobuf:"bytes,8,opt,name=locality,proto3" json:"locality,omitempty" bson:"locality,omitempty"`
postalcode string `protobuf:"bytes,9,opt,name=postalcode,proto3" json:"postal_code,omitempty" bson:"postal_code,omitempty"`
thoroughfare string `protobuf:"bytes,10,opt,name=thoroughfare,proto3" json:"thoroughfare,omitempty" bson:"thoroughfare,omitempty"`
premise string `protobuf:"bytes,11,opt,name=premise,proto3" json:"premise,omitempty" bson:"premise,omitempty"`
location geojson `protobuf:"bytes,12,opt,name=location,proto3" json:"location,omitempty" bson:"location,omitempty"`
}
type geojson struct {
type string `json:"-"`
coordinates []float64 `json:"coordinates"`
}
var addresses []*models.address
collection := _session.db(constants.dbname).c(documentname)
err := collection.find(session, addressdocument, bson.m{
"location": bson.m{
"$near": bson.m{
"$geometry": bson.m{
"type": "point",
"coordinates": []float64{ -115.172813, 36.101379 },
},
"$maxdistance": 5000000,
},
},
}) &addresses)
由此,我收到以下错误:
“处理查询时出错:ns=dbname.addressdocumenttree:geoneear field=location maxdist=5e+06 isnearsphere=0\nsort:{}\nproj:{}\n planner 返回错误:无法找到 $geonear 查询的索引”
我在程序初始化时确保索引
// EnsureIndex
func EnsureAddressIndex(session *mgo.Session) error {
_session := session.Copy()
defer _session.Close()
c := _session.DB(constants.DBName).C(addressDocument)
// Might be needed one day
pIndex := mgo.Index{
Key: []string{"location:2dsphere"},
Bits: 26,
}
err := c.EnsureIndex(pIndex)
if err != nil {
return err
}
return nil
}
有什么想法吗?我有超过 20k 个地址,它们都有纬度/经度。
编辑 1
我尝试从 globalsign/mgo 切换到 gopkg.in/mgo.v2,但没有成功
解决方案
终于找到问题了..实际上,我没有以正确的方式创建索引..
// ensureindex force ids to be unique
func ensureaddressindex(session *mgo.session) error {
_session := session.copy()
defer _session.close()
c := _session.db(constants.dbname).c(addressdocument)
// might be needed one day
pindex := mgo.index{
key: []string{"$2dsphere:location"},
bits: 26,
}
err := c.ensureindex(pindex)
if err != nil {
return err
}
return nil
}
在索引声明中,我有以下行:
pindex := mgo.index{
key: []string{"location:2dsphere"},
bits: 26,
}
但是正确的写法是
pIndex := mgo.Index{
Key: []string{"$2dsphere:location"},
Bits: 26,
}
希望有帮助!
今天带大家了解了的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
478 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 543次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 516次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 500次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 485次学习