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

Wie man eine Zahl auf 3 Dezimalstellen kürzt

Für die Rundung auf 3 Dezimalstellen können Sie diese Formel verwenden.

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

Zum Beispiel mit Ihren Beispieldaten und unter Verwendung dieser Aggregation:

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

Sie können das gewünschte Ergebnis erzielen.

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