Skip to content
24 changes: 23 additions & 1 deletion config/analysis-modules.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
[
{
"view":"team",
"module":"Stats",
"position":"side",
"name":"Mobility",
"options":{
"list":[
{
"name":"Avg Time to Leave",
"path":"averageLeave",
"decimals":2,
"sort":1
}
]
}
},
{
"view":"team",
"module":"Stats",
Expand Down Expand Up @@ -77,7 +93,13 @@
"sort":-1,
"multiplier":0.001,
"unit":" sec"
}
},
{
"name":"Park Rate",
"path":"averagePark",
"decimals":2,
"sort":-1
}
]
}
},
Expand Down
26 changes: 25 additions & 1 deletion config/analysis-pipeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,30 @@
"options": {
"path" : "scores.total"
}
}
},
{
"type":"team",
"name":"average",
"outputPath":"averagePark",
"options":{
"path":"counts.park"
}
},
{
"type":"tmp",
"name":"actionTime",
"outputPath":"leaveTime",
"options":{
"path":"leaveCommunity"
}
},
{
"type":"team",
"name":"average",
"outputPath":"averageLeave",
"options":{
"path":"leaveTime"
}
}

]
Loading