A package for loading, preprocessing, vizualising and synchronizing soccere event and tracking data.
Project description
DataBallPy
A package for loading, synchronizing, and analyzing your soccer event- and tracking data.
This package is developed to create a standardized way to analyse soccer games using both event- and tracking data. Other packages, like kloppy and floodlight, already standardize the import of data sources. The current package goes a step further in combining different data streams from the same game. In this case, the Game object combines information from the event and tracking data. The main current feature is the smart synchronization of the tracking and event data. We utilize the Needleman-Wunch algorithm, inspired by this article, to align the tracking and even data, while ensuring the order of the events, something that is not done when only using (different) cost functions.
Final goal for DataBallPy
Although reading in and synchronising data is already very helpfull to get started with your analysis, it's only the first step. Even after this first step, getting your first 'simple' metrics out of the data might be more difficult than anticipated. Therefore, the primary end goal for this package is to create a space where (scientific) soccer metrics are implemented and can be used in a few lines. We even plan to go further and show clear notebooks (to combine text and code) with visualizations for all the features we implement. This way, you will not only get easy access to the features/metrics, but also understand exactly how it is calculated. We hope this will inspire others (both developers and scientist) to further improve the current features, and come up with valuable new ones. If you are interested in some of the features we implemented, see our official documentation.
Changelog V0.7.0 (04/11/2025)
- Integration between Kloppy and Databallpy (UnravelSports & migvidal5)
$ pip install 'databallpy[kloppy]'
from kloppy import sportec
from databallpy import get_game_from_kloppy
event_dataset = sportec.load_open_event_data(match_id="J03WPY")
tracking_dataset = sportec.load_open_tracking_data(match_id="J03WPY", only_alive=False)
game = get_game_from_kloppy(tracking_dataset=tracking_dataset,event_dataset=event_dataset)
- Allow for more null values in
Game - Loser rules regarding tz aware datetime columns in
TrackingDataandEventData - Removed depricated functions
home_players_column_idsandaway_players_column_ids, please usegame.get_column_ids(team="home")instead.
Installation
Choose either of both commands. If you would like to use Kloppy as data parser, use the second one, else the first one would do.
$ pip install databallpy
$ pip install 'databallpy[kloppy]'
Usage
The package is centered around the Game object. A Game has tracking data, event data metadata about the game.
For a more elaborate example, see the Getting Started.
from databallpy import get_game, get_open_game
game = get_game(
tracking_data_loc="../data/tracking_data.dat",
tracking_metadata_loc="../data/tracking_metadata.xml",
tracking_data_provider="tracab"
event_data_loc="../data/event_data_f24.xml",
event_metadata_loc="../data/event_metadata_f7.xml",
event_data_provider="opta",
)
# or get the open game provided by the DFL (Sportec Solutions)
game = get_open_game()
[!note] The current internal supported tracking data providers are:
- Tracab (including Sportec Solutions from the DFL)
- Metrica
- Inmotio
The accepted variables for the
tracking_data_providerare["tracab", "metrica", "inmotio", "dfl", "sportec"]The current internal supported event data provider are:
- Opta
- Metrica
- Instat
- SciSports
- Sportec Solutions (from the DFL)
- Statsbomb
The accepted variables for the
event_data_providerare["opta", "metrica", "instat", "scisports", "dfl", "sportec", "statsbomb"]Don't see your provider here? Check out the integration with Kloppy. Parse your data using Kloppy, and simply convert it to a DataballPy
Gameobject usingget_game_from_kloppy!If you wish to use a different provider that is not listed here, please open an issue here
Open Data
A great project just released tracking and event data for open use. In total, 2 games of the 1st bundesliga and 5 of the 2nd bundesliga were open sourced here. The dataset was open sources via the CC-BY 4.0 licence, so please consider this when you make use of the data. The data is automatically downloaded and saved locally when you use the get_open_game function from DataBallPy. The match information can be imported from databallpy.utils.constants.OPEN_GAME_IDS_DFL:
OPEN_GAME_IDS_DFL = {
"J03WMX": "1. FC Köln vs. FC Bayern München",
"J03WN1": "VfL Bochum 1848 vs. Bayer 04 Leverkusen",
"J03WPY": "Fortuna Düsseldorf vs. 1. FC Nürnberg",
"J03WOH": "Fortuna Düsseldorf vs. SSV Jahn Regensburg",
"J03WQQ": "Fortuna Düsseldorf vs. FC St. Pauli",
"J03WOY": "Fortuna Düsseldorf vs. F.C. Hansa Rostock",
"J03WR9": "Fortuna Düsseldorf vs. 1. FC Kaiserslautern",
}
See the documentation of the Game object and the example usage for more options. Note that this package is developed to combine event and tracking data, for now both datastreams are necessary to create a Game object.
Features
Preprocessing
- Data Filtering: Filter the data based on the quality of the tracking data.
- Adding velocity and Acceleration: Add velocity and acceleration to the tracking data.
Synchronization of tracking and event data
See our elaborate synchronisation page in the documentation for more information!
Tracking and event data is often poorly synchronized. For instance, when taking the event data of Opta and tracking data of Tracab, you can sync the fist frame with the kick-off pass. Now you can sync the other events with the tracking data based on the time difference between the event and the kick off pass. If you do this, how get something like this:
Your browser does not support the video tag.As you can see, the timing (and placing) of the events do not correspond good with the tracking data locations, especially when events follow up quickly or around shots. Using the methodology of this article, this package is able to synchronize tracking and event data using the Needleman-Wunsch algorithm.
After running the following command, the events are better synchronized to the tracking data:
$ game.synchronise_tracking_and_event_data()
Your browser does not support the video tag.
For a more elaborate example of how we synchronize the tracking and event data, see the Synchronisation Page in our documentation.
Visualizations
DataBallPy offers a variety of visualizations to help you understand the data better. For example, you can visualize the tracking data with synchronised event as shown above. Also, you can visualize events and tracking data separately. For more information, see the Visualizations Page in our documentation.
Soccer Specific Metrics
- Covered Distance: Calculate the covered distance in different velocity and acceleration zones.
- Pressure: Calculate the pressure any player in the game (Herold & Kempe, 2022).
- Team Possession: Calculate the team possession based on the synchronised event data.
- Individual Player Possession: Calculate the individual player possession based on the tracking data (Vidal-Codina et al., 2022).
- Simple Expected Goals (xG) model: Calculate the simple expected goals model.
- Expected Threat model: Calculate the expected threat model from Karun Singh to on ball events.
- Voronoi Model: Calculate the Voronoi space occupation based on the tracking data.
- Gaussian Model: Calculate the Gaussian space occupation based on the tracking data (Fernandez & Born, 2018).
Documentation
The official documentation can be found here.
Providers
For now we limited providers. We are planning on adding more providers later on.
Event data providers:
- Opta
- Metrica
- Instat
- SciSports
- Sportec Solutions (for the DFL)
Tracking data providers:
- Tracab (including Sportec Solutions format from the DFL)
- Metrica
- Inmotio
Contributing
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
Maintainers & owners
Contributors
License
databallpy was created by Alexander Oonk & Daan Grob. It is licensed under the terms of the MIT license.
Similar projects
Although we think this package helps when starting to analyse soccer data, other packages may be better suited for your specific needs. Make sure to check out the following packages as well:
And for a more specific toturials on how to get started with soccer data"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file databallpy-0.7.2.tar.gz.
File metadata
- Download URL: databallpy-0.7.2.tar.gz
- Upload date:
- Size: 881.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.5 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93e9c11845f9b03c28a36c9e7605db010ab18901a185532a620bb95cd414cba1
|
|
| MD5 |
8e15ba867e556e519477f79cdef5b851
|
|
| BLAKE2b-256 |
b8726788e4632647bee715598d376db7812d029160465e34bef3582475f69705
|
File details
Details for the file databallpy-0.7.2-py3-none-any.whl.
File metadata
- Download URL: databallpy-0.7.2-py3-none-any.whl
- Upload date:
- Size: 910.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.5 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a999a89f29c1cee8d06578e1e779ee89481953d5db2ea49680ad7aa2cb3f9774
|
|
| MD5 |
1bc5eaed1d3144b17d83603d7b77a3bf
|
|
| BLAKE2b-256 |
320dffe916966e4071425be8c26b76e72dd650e105324ca922e131616a91e010
|