File size: 4,694 Bytes
eb6bf10 | 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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | {
"schema_name": "match_states_parquet",
"schema_version": 2,
"artifact_pattern": "match_states/match_{match_id}.parquet",
"format": "parquet",
"row_grain": "one row per POV per parsed demo tick",
"description": "Anonymized tick-level POV and game-state traces derived from the source demo. The match_id is encoded in the artifact path. This is the redistributable substitute for raw demo state access.",
"sort_order": [
"tick",
"pov_idx"
],
"privacy_boundary": {
"contains_steam_ids": false,
"contains_online_account_ids": false,
"contains_player_names": false,
"player_reference": "pov_idx is stable within one match-map demo"
},
"columns": [
{
"name": "tick",
"arrow_type": "int32",
"nullable": false,
"description": "Absolute demo tick."
},
{
"name": "pov_idx",
"arrow_type": "int16",
"nullable": false,
"description": "Anonymized player POV id."
},
{
"name": "team_side",
"arrow_type": "string",
"nullable": false,
"valid_values": [
"T",
"CT",
""
]
},
{
"name": "FORWARD",
"arrow_type": "bool",
"nullable": false
},
{
"name": "BACK",
"arrow_type": "bool",
"nullable": false
},
{
"name": "LEFT",
"arrow_type": "bool",
"nullable": false
},
{
"name": "RIGHT",
"arrow_type": "bool",
"nullable": false
},
{
"name": "JUMP",
"arrow_type": "bool",
"nullable": false
},
{
"name": "DUCK",
"arrow_type": "bool",
"nullable": false
},
{
"name": "WALK",
"arrow_type": "bool",
"nullable": false
},
{
"name": "FIRE",
"arrow_type": "bool",
"nullable": false
},
{
"name": "RIGHTCLICK",
"arrow_type": "bool",
"nullable": false
},
{
"name": "RELOAD",
"arrow_type": "bool",
"nullable": false
},
{
"name": "INSPECT",
"arrow_type": "bool",
"nullable": false
},
{
"name": "USE",
"arrow_type": "bool",
"nullable": false
},
{
"name": "pitch",
"arrow_type": "float32",
"nullable": false,
"unit": "degrees"
},
{
"name": "yaw",
"arrow_type": "float32",
"nullable": false,
"unit": "degrees"
},
{
"name": "delta_pitch",
"arrow_type": "float32",
"nullable": false,
"unit": "degrees"
},
{
"name": "delta_yaw",
"arrow_type": "float32",
"nullable": false,
"unit": "degrees"
},
{
"name": "pos_x",
"arrow_type": "float32",
"nullable": false,
"unit": "CS2 world units"
},
{
"name": "pos_y",
"arrow_type": "float32",
"nullable": false,
"unit": "CS2 world units"
},
{
"name": "pos_z",
"arrow_type": "float32",
"nullable": false,
"unit": "CS2 world units"
},
{
"name": "active_weapon",
"arrow_type": "int16",
"nullable": false,
"description": "Coarse weapon category id; indexes weapons.json."
},
{
"name": "active_weapon_id",
"arrow_type": "int16",
"nullable": false,
"description": "Exact weapon id; indexes weapons.json."
},
{
"name": "health",
"arrow_type": "int16",
"nullable": false
},
{
"name": "ammo_clip",
"arrow_type": "int16",
"nullable": false
},
{
"name": "ammo_reserve",
"arrow_type": "int16",
"nullable": false,
"description": "255 means unknown or not applicable."
},
{
"name": "armor_value",
"arrow_type": "int16",
"nullable": false
},
{
"name": "has_helmet",
"arrow_type": "bool",
"nullable": false
},
{
"name": "has_defuser",
"arrow_type": "bool",
"nullable": false
},
{
"name": "has_bomb",
"arrow_type": "bool",
"nullable": false
},
{
"name": "balance",
"arrow_type": "int32",
"nullable": false,
"description": "Player money balance when available from parser state."
},
{
"name": "t_score",
"arrow_type": "uint8",
"nullable": false
},
{
"name": "ct_score",
"arrow_type": "uint8",
"nullable": false
}
],
"validation": [
"no denied identity columns are present",
"rows are sorted by tick and pov_idx",
"pov_idx values are within [0, 9] for complete 10-POV matches",
"button columns are boolean",
"health and armor_value are in [0, 100]"
]
}
|