Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update analysis pipelines #104

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 57 additions & 18 deletions config/analysis-modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,25 +40,25 @@
},
{
"name": "Average Auto Points",
"path": "averageScores.auto",
"path": "avgAutoPoints",
"decimals": 2,
"sort": 1
},
{
"name": "Average Teleop Points",
"path": "averageScores.teleop",
"path": "avgTeleopPoints",
"decimals": 2,
"sort": 1
},
{
"name": "Average Stage Points",
"path": "averageScores.stage",
"path": "avgStagePoints",
"decimals": 2,
"sort": 1
},
{
"name": "Average Points",
"path": "averageScores.total",
"path": "avgTotalPoints",
"decimals": 2,
"sort": 1
},
Expand All @@ -69,8 +69,8 @@
"sort": 1
},
{
"name": "Average Speaker",
"path": "averages.scoreSpeaker",
"name": "Average Unamped Speaker",
"path": "averages.scoreUnampedSpeaker",
"decimals": 1,
"sort": 1
},
Expand All @@ -86,7 +86,6 @@
"decimals": 1,
"sort": -1
},

{
"name": "Average Onstage Time",
"path": "stageCycle.averageTimeComplete",
Expand Down Expand Up @@ -119,17 +118,46 @@
"options": {
"slices": [
{
"name": "Amp",
"path": "counts.scoreAmp"
"name": "Subwoofer",
"path": "counts.scoreCombinedSubwoofer"
},
{
"name": "Podium",
"path": "counts.scoreCombinedPodium"
},
{
"name": "Wing",
"path": "counts.scoreCombinedSubwoofer"
},
{
"name": "Midfield",
"path": "counts.scoreCombinedMidfield"
},

{
"name": "Miss",
"path": "counts.miss"
}
]
}
},
{
"view": "team",
"module": "Pie",
"position": "main",
"name": "Amp / Speaker Distribution",
"options": {
"slices": [
{
"name": "Speaker",
"path": "counts.scoreCombinedSpeaker"
},
{
"name": "Amp",
"path": "counts.scoreAmp"
}
]
}
},
{
"view": "team",
"module": "Pie",
Expand Down Expand Up @@ -188,7 +216,7 @@
"name": "Alliance Score",
"position": "main",
"options": {
"path": "averageScores.total",
"path": "avgTotalPoints",
"aggrMethod": "sum",
"decimals": 2
}
Expand All @@ -199,7 +227,18 @@
"name": "Auto Points",
"position": "main",
"options": {
"path": "averageScores.auto",
"path": "avgAutoPoints",
"sort": 1,
"decimals": 1
}
},
{
"view": "match",
"module": "ColumnDisplay",
"name": "Teleop Points",
"position": "main",
"options": {
"path": "avgTeleopPoints",
"sort": 1,
"decimals": 1
}
Expand All @@ -210,7 +249,7 @@
"name": "Stage Points",
"position": "main",
"options": {
"path": "averageScores.stage",
"path": "avgStagePoints",
"sort": 1,
"decimals": 1
}
Expand All @@ -221,7 +260,7 @@
"name": "Total Points",
"position": "main",
"options": {
"path": "averageScores.total",
"path": "avgTotalPoints",
"sort": 1,
"decimals": 1
}
Expand Down Expand Up @@ -262,25 +301,25 @@
"list": [
{
"name": "Expected Auto Points",
"path": "averageScores.auto",
"path": "avgAutoPoints",
"decimals": 2,
"aggrMethod": "sum"
},
{
"name": "Expected Teleop Points",
"path": "averageScores.teleop",
"path": "avgTeleopPoints",
"decimals": 2,
"aggrMethod": "sum"
},
{
"name": "Expected Stage Points",
"path": "averageScores.stage",
"path": "avgStagePoints",
"decimals": 2,
"aggrMethod": "sum"
},
{
"name": "Expected Score",
"path": "averageScores.total",
"path": "avgTotalPoints",
"decimals": 2,
"aggrMethod": "sum"
}
Expand Down
Loading