luxury-lakehouse/pining-for-the-data
收藏Hugging Face2026-03-21 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/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)
提供机构:
luxury-lakehouse



