Slide 44
Slide 44 text
45/70
影像紀錄區
pi.isuphoto.org
MongoDB GeoIndex
●
Geospatial Indexing [Ref.]
:
– 地理座標索引
●
{ loc : [ 50 , 30 ] } //SUGGESTED OPTION
●
{ loc : { lon : 40.739037, lat: 73.992964 } }
– 建立索引
●
db.places.ensureIndex( { loc : "2d" } )
– 搜尋
●
db.places.find( { loc : [50,50] } )
●
db.places.find( { loc : { $near : [50,50] } } )
●
db.places.find( { loc : { $near : [50,50],$maxDistance :
5}}) 影像紀錄區 用在 作品定位 欄位的資料為
GeoIndex 格式。