luxury-lakehouse/pining-for-the-data
收藏资源简介:
--- license: mit language: - en tags: - soccer - football - tracking-data - sports-analytics - skillcorner pretty_name: "Pining for the Data — Open Soccer Tracking" size_categories: - 1K<n<10K --- # Pining for the Data Soccer tracking data in SkillCorner V3 format (match JSON + tracking JSONL at 10fps), redistributed as-is from [SkillCorner open data](https://github.com/SkillCorner/opendata) under the MIT license. > *"It's not pinin', it's passed on! This parrot is no more!"* > — Monty Python's Flying Circus, Dead Parrot sketch ## What This Is Tracking data from SkillCorner open data (MIT license). See NOTICE. - **Format:** SkillCorner V3 (match JSON + tracking JSONL) - **Frame rate:** 10 fps - **Data:** Redistributed as-is, no de-identification applied ## Usage ```python import json # Load match metadata with open("match.json") as f: match = json.load(f) # Load tracking frames with open("tracking.jsonl") as f: frames = [json.loads(line) for line in f] ``` ## License Data: [MIT](https://opensource.org/licenses/MIT) (redistributed from SkillCorner open data) Code: [MIT](https://opensource.org/licenses/MIT) ## Source Tracking data from [SkillCorner open data](https://github.com/SkillCorner/opendata) (MIT license). See NOTICE. Companion dataset to luxury-lakehouse, a serverless soccer analytics platform. Code and tooling: [pining-for-the-data](https://github.com/karstenskyt/pining-for-the-data)
许可证:MIT许可证 语言:英语 标签:足球、英式足球、追踪数据、体育分析、SkillCorner 数据集别名:《数据之思——开放足球追踪数据集》(Pining for the Data — Open Soccer Tracking) 样本规模类别:1000<n<10000 # 数据之思 本数据集采用斯凯尔科纳(SkillCorner)V3格式的足球追踪数据(赛事元数据JSON文件+10帧每秒的追踪数据JSONL文件),源自[SkillCorner开放数据集](https://github.com/SkillCorner/opendata),并以原始形式重新分发,遵循MIT许可证。 > *“它并未消逝,它已然离世!这只鹦鹉再也不会苏醒了!”* > ——《巨蟒剧团之飞翔的马戏团》,《死鹦鹉小品》 ## 本数据集内容 本数据集包含斯凯尔科纳(SkillCorner)开放数据集(MIT许可证)中的追踪数据,详见NOTICE文件。 - **数据格式**:斯凯尔科纳(SkillCorner)V3格式(赛事元数据JSON文件+追踪数据JSONL文件) - **帧率**:10帧每秒 - **数据说明**:以原始形式重新分发,未进行身份消隐处理 ## 使用示例 python import json # 加载赛事元数据 with open("match.json") as f: match = json.load(f) # 加载追踪帧数据 with open("tracking.jsonl") as f: frames = [json.loads(line) for line in f] ## 许可证 数据集:遵循[MIT许可证](https://opensource.org/licenses/MIT)(源自斯凯尔科纳(SkillCorner)开放数据集的重新分发) 代码:遵循[MIT许可证](https://opensource.org/licenses/MIT) ## 数据来源 本数据集的追踪数据源自[SkillCorner开放数据集](https://github.com/SkillCorner/opendata)(MIT许可证),详见NOTICE文件。 本数据集为无服务器足球分析平台`luxury-lakehouse`的配套数据集。 相关代码与工具集:[pining-for-the-data](https://github.com/karstenskyt/pining-for-the-data)



