-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc_auto_paths.yml
113 lines (100 loc) · 2.27 KB
/
calc_auto_paths.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Used for calculating auto paths data in server
#
# Example:
#
# {
# "team_number": "7549",
# "exact_match": [
# "start_position",
# "intake_position_1",
# "intake_position_2",
# "intake_position_3",
# "intake_position_4",
# "intake_position_5",
# "intake_position_6",
# "intake_position_7",
# "intake_position_8",
# "score_1",
# "score_2",
# "score_3",
# "score_4",
# "score_5",
# "score_6",
# "score_7",
# "score_8",
# "score_9",
# "leave",
# "has_preload"
# ],
# "score_1_successes": 5,
# "score_2_successes": 7,
# "score_3_successes": 9,
# "score_4_successes": 5,
# "score_5_successes": 9,
# "score_6_successes": 1,
# "score_7_successes": 8,
# "score_8_successes": 6,
# "score_9_successes": 3
# }
#
# Contains information about this schema file
schema_file:
# Version of schema file
# Incremented every merged schema change
version: 1
# Data that doesn't fit into other categorical calculations
data:
team_number:
type: str
--path_groups:
# Values used to group paths toghether, these must be exactly the same across paths
exact_match:
- start_position
- intake_position_1
- intake_position_2
- intake_position_3
- intake_position_4
- intake_position_5
- intake_position_6
- intake_position_7
- intake_position_8
- score_1
- score_2
- score_3
- score_4
- score_5
- score_6
- score_7
- score_8
- score_9
- leave
- has_preload
# 1 is added each time all the datapoints are in the possible list of values
path_increment:
score_1_successes:
score_1: [speaker, amp]
type: int
score_2_successes:
score_2: [speaker, amp]
type: int
score_3_successes:
score_3: [speaker, amp]
type: int
score_4_successes:
score_4: [speaker, amp]
type: int
score_5_successes:
score_5: [speaker, amp]
type: int
score_6_successes:
score_6: [speaker, amp]
type: int
score_7_successes:
score_7: [speaker, amp]
type: int
score_8_successes:
score_8: [speaker, amp]
type: int
score_9_successes:
score_9: [speaker, amp]
type: int