带有 golang 和 mongodb 的商店定位器
storelocator with golang and mongodb
嘿,我正在尝试使用 golang 和 mongodb 构建商店定位器。
我对两者都不熟悉。我尝试搜索但无法在 golang 中找到代码,该代码可以帮助我将带有名称和坐标的商店插入 mongodb,然后在提供的纬度和经度值的 3000 米半径范围内搜索商店。
注意:我想自己提供id,这样如果我有id就可以轻松获取商店。
我尝试了下面给出的但没有任何反应,没有错误或在数据库中插入存储
test.go如下:
package main
import (
"encoding/json"
"fmt"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"log"
)
type Store struct {
ID string `bson:"_id,omitempty" json:"shopid"`
Name string `bson:"name" json:"name"`
Location GeoJson `bson:"location" json:"location"`
}
type GeoJson struct {
Type string `json:"-"`
Coordinates []float64 `json:"coordinates"`
}
func main() {
cluster := "localhost" // mongodb host
// connect to mongo
session, err := mgo.Dial(cluster)
if err != nil {
log.Fatal("could not connect to db: ", err)
panic(err)
}
defer session.Close()
session.SetMode(mgo.Monotonic, true)
// search criteria
long := 39.70
lat := 35.69
scope := 3000 // max distance in metres
var results []Store // to hold the results
// query the database
c := session.DB("test").C("stores")
// insert
man := Store{}
man.ID = "1"
man.Name = "vinka medical store"
man.Location.Type = "Point"
man.Location.Coordinates = []float64{lat, long}
// insert
err = c.Insert(man)
fmt.Printf("%v\n", man)
if err != nil {
fmt.Println("There is insert error")
panic(err)
}
// ensure
// Creating the indexes
index := mgo.Index{
Key: []string{"dsphere:location"},
Bits: 26,
}
err = c.EnsureIndex(index)
if err != nil {
fmt.Println("There is index error")
panic(err)
}
//find
err = c.Find(bson.M{
"location": bson.M{
"$nearSphere": bson.M{
"$geometry": bson.M{
"type": "Point",
"coordinates": []float64{long, lat},
},
"$maxDistance": scope,
},
},
}).All(&results)
//err = c.Find(bson.M{"_id": "1"}).All(&results)
if err != nil {
panic(err)
}
//convert it to JSON so it can be displayed
formatter := json.MarshalIndent
response, err := formatter(results, " ", " ")
fmt.Println(string(response))
}
@user7227958
由于您的坐标(缺乏)float64 精确性,看起来 Go 跟您耍了把戏。
检查这个:
使用 long := 39.70 和 lat := 35.69 你需要一个 scope=3000000 来选择你的记录。
但是,如果您要使用更精确的坐标,请说
long := 39.6910592
lat := 35.6909623
那么即使在 1 米的范围内(这是预期的),您也能找到您的商店。
干杯,
-D
嘿,我正在尝试使用 golang 和 mongodb 构建商店定位器。 我对两者都不熟悉。我尝试搜索但无法在 golang 中找到代码,该代码可以帮助我将带有名称和坐标的商店插入 mongodb,然后在提供的纬度和经度值的 3000 米半径范围内搜索商店。
注意:我想自己提供id,这样如果我有id就可以轻松获取商店。
我尝试了下面给出的但没有任何反应,没有错误或在数据库中插入存储
test.go如下:
package main
import (
"encoding/json"
"fmt"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"log"
)
type Store struct {
ID string `bson:"_id,omitempty" json:"shopid"`
Name string `bson:"name" json:"name"`
Location GeoJson `bson:"location" json:"location"`
}
type GeoJson struct {
Type string `json:"-"`
Coordinates []float64 `json:"coordinates"`
}
func main() {
cluster := "localhost" // mongodb host
// connect to mongo
session, err := mgo.Dial(cluster)
if err != nil {
log.Fatal("could not connect to db: ", err)
panic(err)
}
defer session.Close()
session.SetMode(mgo.Monotonic, true)
// search criteria
long := 39.70
lat := 35.69
scope := 3000 // max distance in metres
var results []Store // to hold the results
// query the database
c := session.DB("test").C("stores")
// insert
man := Store{}
man.ID = "1"
man.Name = "vinka medical store"
man.Location.Type = "Point"
man.Location.Coordinates = []float64{lat, long}
// insert
err = c.Insert(man)
fmt.Printf("%v\n", man)
if err != nil {
fmt.Println("There is insert error")
panic(err)
}
// ensure
// Creating the indexes
index := mgo.Index{
Key: []string{"dsphere:location"},
Bits: 26,
}
err = c.EnsureIndex(index)
if err != nil {
fmt.Println("There is index error")
panic(err)
}
//find
err = c.Find(bson.M{
"location": bson.M{
"$nearSphere": bson.M{
"$geometry": bson.M{
"type": "Point",
"coordinates": []float64{long, lat},
},
"$maxDistance": scope,
},
},
}).All(&results)
//err = c.Find(bson.M{"_id": "1"}).All(&results)
if err != nil {
panic(err)
}
//convert it to JSON so it can be displayed
formatter := json.MarshalIndent
response, err := formatter(results, " ", " ")
fmt.Println(string(response))
}
@user7227958
由于您的坐标(缺乏)float64 精确性,看起来 Go 跟您耍了把戏。
检查这个:
使用 long := 39.70 和 lat := 35.69 你需要一个 scope=3000000 来选择你的记录。
但是,如果您要使用更精确的坐标,请说
long := 39.6910592
lat := 35.6909623
那么即使在 1 米的范围内(这是预期的),您也能找到您的商店。
干杯, -D