## Description The format of files in each compressed package is as follows: - 101010001: James trajectory data folder - 101010002: Curry trajectory data folder - 101010003: Jokic trajectory data folder - 101010009: Zion trajectory data folder - 101010082: Thompson trajectory data folder - file_index: file index. #### Explanation of the file index. - The first-level key represents the corresponding character name. In the example below, 101010001 represents James. - The second-level key represents the corresponding game session name, where the `c084278fcb164f6db75fe2ebd6f6726e` below corresponds to the second field of the `101010001_c084278fcb164f6db75fe2ebd6f6726e_9_744464.jsonl` file. - In the third-level key, `summit_level` represents the player's segment corresponding to the trajectory (the higher the level, the higher the player's segment). The number represents the specific round in the game session. In the example below, `0` corresponds to the first round of the game session `c084278fcb164f6db75fe2ebd6f6726e`, which is the third field of the `101010001_c084278fcb164f6db75fe2ebd6f6726e_9_744464.jsonl` file. - The fourth-level key represents information such as scores, assists, rebounds, and steals in the round. ``` "101010001": { "c084278fcb164f6db75fe2ebd6f6726e": { "summit_level": 10, "0": { "assist_count": 0, "block_count": 0, "blocked_count": 0, "rebound_count": 0, "score": 0, "steal_count": 1, "stolen_count": 0, "three_point_count": 0, "two_point_count": 0 }, "10": { "assist_count": 0, "block_count": 0, "blocked_count": 0, "rebound_count": 1, "score": 0, "steal_count": 0, "stolen_count": 0, "three_point_count": 0, "two_point_count": 0 }, ```