Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "IDSSE — Integrated Dataset of Synchronized Spatiotemporal and Event Data in Elite Soccer"
|
| 3 |
+
license: cc-by-4.0
|
| 4 |
+
tags:
|
| 5 |
+
- sports
|
| 6 |
+
- soccer
|
| 7 |
+
- football
|
| 8 |
+
- tracking-data
|
| 9 |
+
- event-data
|
| 10 |
+
- geospatial
|
| 11 |
+
- timeseries
|
| 12 |
+
- bundesliga
|
| 13 |
+
task_categories:
|
| 14 |
+
- other
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# IDSSE — Sportec Open Tracking & Event Data
|
| 18 |
+
|
| 19 |
+
Mirror of the IDSSE dataset, originally hosted on Figshare, re-hosted here for stable and fast access via [kloppy](https://github.com/PySport/kloppy) and related tools.
|
| 20 |
+
|
| 21 |
+
## Contents
|
| 22 |
+
|
| 23 |
+
7 complete matches from the German Bundesliga season 2022/23 (1st and 2nd division), collected by [Sportec Solutions](https://sportec-solutions.de) using TRACAB optical tracking technology.
|
| 24 |
+
|
| 25 |
+
Each match includes:
|
| 26 |
+
- **Tracking data** — position of all players and the ball at 25 fps
|
| 27 |
+
- **Event data** — synchronized match events (passes, shots, duels, …)
|
| 28 |
+
- **Metadata** — teams, players, pitch dimensions
|
| 29 |
+
|
| 30 |
+
## Load with kloppy
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
from kloppy import sportec
|
| 34 |
+
|
| 35 |
+
tracking = sportec.load_open_tracking_data(match_id="J03WPY")
|
| 36 |
+
events = sportec.load_open_event_data(match_id="J03WPY")
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
Available match IDs: `J03WPY`, `J03WMX`, `J03WN1`, `J03WOH`, `J03WOY`, `J03WPF`, `J03WQF`
|
| 40 |
+
|
| 41 |
+
## Original source
|
| 42 |
+
|
| 43 |
+
| | |
|
| 44 |
+
|---|---|
|
| 45 |
+
| **Figshare DOI** | https://doi.org/10.6084/m9.figshare.28196177 |
|
| 46 |
+
| **Paper DOI** | https://doi.org/10.1038/s41597-025-04505-y |
|
| 47 |
+
| **Data owner** | Deutsche Fußball Liga (DFL) |
|
| 48 |
+
| **License** | [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/) |
|
| 49 |
+
|
| 50 |
+
## Citation
|
| 51 |
+
|
| 52 |
+
```bibtex
|
| 53 |
+
@article{bassek2025idsse,
|
| 54 |
+
title = {An integrated dataset of synchronized spatiotemporal and event data in elite soccer},
|
| 55 |
+
author = {Bassek, M. and others},
|
| 56 |
+
journal = {Scientific Data},
|
| 57 |
+
volume = {12},
|
| 58 |
+
number = {1},
|
| 59 |
+
pages = {195},
|
| 60 |
+
year = {2025},
|
| 61 |
+
doi = {10.1038/s41597-025-04505-y}
|
| 62 |
+
}
|
| 63 |
+
```
|