sql >> Database teknologi >  >> NoSQL >> MongoDB

Sådan afkortes et tal til 3 decimaler

Til afrunding med 3 decimaler kan du bruge denne formel.

$divide: [ {$trunc: { $multiply: [ "$$coordinate" , 1000 ] } }, 1000 ]

For eksempel med dine eksempeldata og ved at bruge denne aggregering:

db.getCollection('Test2').aggregate([
    { $project : 
        { 
            "location.type" : "$location.type",
            "location.coordinates" :  
            { 
                $map: 
                {
                    input: "$location.coordinates",
                    as: "coordinate",
                    in: { $divide: [ {$trunc: { $multiply: [ "$$coordinate" , 1000 ] } }, 1000 ] }
              }
            }   
        } 
    }
])

du kan opnå det ønskede resultat.

{
    "_id" : ObjectId("59f9a4c814167b414f6eb553"),
    "location" : {
        "type" : "Point",
        "coordinates" : [ 
            -74.005, 
            40.705
        ]
    }
}


  1. Struktur af en synkron applikation i Node.js og MongoDb

  2. Er MongoDB _id (ObjectId) genereret i stigende rækkefølge?

  3. Håndtering af flere databaseteknologier med ClusterControl

  4. Opsætning af singleton-forbindelse med node.js og mongo