Created
March 4, 2022 13:06
-
-
Save johnlpage/04dccee846a4d4c2fda76ca552463182 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
$match: { | |
$expr: { | |
$gt: ["$date", { | |
$dateSubtract: { | |
startDate: "$$NOW", | |
unit: "day", | |
amount: 7 | |
} | |
}] | |
} | |
} | |
}, { | |
$setWindowFields: { | |
partitionBy: "$location", | |
sortBy: { | |
date: 1 | |
}, | |
output: { | |
tenminavg: { | |
$avg: "$temp", | |
window: { | |
range: [-60, 60], | |
unit: "minute" | |
} | |
} | |
} | |
} | |
}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment