Skip to content

Instantly share code, notes, and snippets.

@johnlpage
Created March 4, 2022 13:06
Show Gist options
  • Save johnlpage/04dccee846a4d4c2fda76ca552463182 to your computer and use it in GitHub Desktop.
Save johnlpage/04dccee846a4d4c2fda76ca552463182 to your computer and use it in GitHub Desktop.
[{
$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