登录
首页 >  Golang >  Go问答

找不到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学习网公众号,一起学习编程~

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>