Skip to main content

A package for loading, preprocessing, vizualising and synchronizing soccere event aand tracking data.

Project description

databallpy

A package for loading, preprocessing, vizualising and synchronizing soccer event- and tracking data.

This package is developed to create a standardized way to analyse soccer matches 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 match. In this case, the Match object combines information from the event and tracking data.

Changelog for version 0.2.0

  • Added parser for Metrica, including an open dataset
  • Added functionality to synchronize tracking and event data
  • Added functionality to plot events
  • Fixed bug, now both tracking and event data are normalized in direction
  • Fixed unexpected behaviour, all date related objects are now datetime objects

Planned changes

  • Adding different filters to filter the tracking data
  • Make the Match object more accesable if you don't have tracking or event data
  • Adding features to quantify pressure, ball possession, etc. (if you have any ideas/requests, please open an issue!)
  • Adding expected passing and goals models

Installation

$ pip install databallpy

Usage

The package is centered around the Match object. A Match has tracking data, event data metadata about the match. For a more elaborate example, see the example file

$ from databallpy.match import get_match, get_open_match
$
$ match = get_match(
$   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 to load an open metrica dataset of tracking and event data
$ match = get_open_match()
$
$ match.home_team_name # the team name of the home playing team
$ match.away_players # pandas dataframe with the names, ids, shirt numbers and positions of the away team
$ match.tracking_data # pandas dataframe with tracking data of the match
$ match.event_data # pandas dataframe with event data of the match

See the documentation of the Match object for more options. Note that this package is developed to combine event and tracking data, therefore both datastreams are necessary to create a Match object.

Synchronization of tracking and event data

Tracking and event data is often poorly synchronized. For instance, when taking the event data of Opta and tracking data of Tracab, and take the timing of the events to synchronize tracking and event data we get something like this:

As you can see, the timing (and placing) of the events do not correspond good with the tracking data locations. 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:

$ match.synchronise_tracking_and_event_data()

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

Tracking data providers:

  • Tracab
  • Metrica

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.

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

databallpy-0.2.0.tar.gz (30.5 kB view hashes)

Uploaded Source

Built Distribution

databallpy-0.2.0-py3-none-any.whl (35.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page