MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Standortdaten im Mongodb-Dokument speichern

Aktualisieren Sie Ihre Dokumente und erstellen Sie eine neue Sammlung

db.location.aggregate([
  { "$addFields": {
    "location": {
      "type": "Point",
      "coordinates": ["$location.loc.lng", "$location.loc.lat"]
    },
    "geocode": "$location.geocode"
  }},
  { "$out": "location" }
])

Erstellen Sie dann einen Index für location Feld

db.location.createIndex({ "location": "2d" })