0

我正在做一个 mongo 聚合项目,每两小时对平均读数进行分组,返回所需的输出,如下所示

{
        "_id": {
            "Year": 2016,
            "locationID": " WL 001",
            "Day": 25,
            "Hour": 12,
            "Month": 1
        },
        "temperature": 10.858749999999999,
        "pH": 0,
        "Conductivity": 2032.375
    }

我想重新组合数据格式并连接 _id 字段的日期部分,以便它代表下面的新数据格式格式

{
    "_id": {
       "locationID": " WL 001",
    },
    "Readings": {
        "temperatue": {
            "value": 8.879
        },
        "SensoreDate": {
            "value": "2016-01-25:12"
        },
        "pH": {
            "value": 16.81
        },
        "Conductivity": {
            "value": 1084
        }
    },
}

这是我的聚合查询的 $project 部分

{
    "$project": {
        '_id': '$_id.locationID',
        'Readings': {
            'pH': {'value': '$pH'},
            'temperature': {'value': '$temperature'},
            'Conductivity': {'value': '$Conductivity'},
            'SensoreDate': {'value': {'$concat': ["$_id.Year", "$_id.Month", "$_id.Day", "$_id.Hour"]} }
        }
    }
}

但我得到一个错误$concat 只支持字符串,而不是 NumberInt32我已经尝试了几个选项,但无法让它工作

4

2 回答 2

1

您可以使用 concat 和 substr 将它们加入日期。

'SensoreDate': {
    'value': {
        '$concat': [{
                $substr: ["$_id.Year", 0, -1]
            },
            "-", {
                $substr: ["$_id.Month", 0, -1]
            },
            "-", {
                $substr: ["$_id.Day", 0, -1]
            },
            ":", {
                $substr: ["$_id.Hour", 0, -1]
            }
        ]
    }
 }
于 2016-11-12T22:57:47.100 回答
0

管道中无法将 int 转换为 str。所以$concat对于给定的数据格式是不可能的。

另一种可行的方法是将年、月、日转换为 BSON格式Date对象。

灵感是这样的dateObj: {$add: [new Date(0), '$time_in_sec_epoch']}

的计算$time_in_sec_epoch可以使用聚合运算符来完成,例如,$sum等。您可以使用此答案中给出的公式。这将是乏味的,但希望你明白这一点。$divide$subtract

对于dateObj字符串部分使用$dateToString

于 2016-11-12T18:23:20.913 回答