Skip to content

Commit

Permalink
109 doc add providers get match (#110)
Browse files Browse the repository at this point in the history
* Added moving average filter

* Added scipy, and savitzky_golay filter

* Changed comments PR

* Added supported providers to get_match
  • Loading branch information
DaanGro authored Aug 7, 2023
1 parent b108b97 commit 21f8e0e
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions databallpy/get_match.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,25 @@ def get_match(
"""Function to get all information of a match given its datasources
Args:
tracking_data_loc (str, optional): location of the tracking data. Defaults to
None.
tracking_data_loc (str, optional): location of the tracking data.
Defaults to None.
tracking_metadata_loc (str, optional): location of the metadata of the tracking
data. Defaults to None.
data. Defaults to None.
event_data_loc (str, optional): location of the event data. Defaults to None.
event_metadata_loc (str, optional): location of the metadata of the event data.
Defaults to None.
Defaults to None.
tracking_data_provider (str, optional): provider of the tracking data. Defaults
to None.
to None. Supported providers are:
- Tracab
- Metrica
- Inmotio
event_data_provider (str, optional): provider of the event data. Defaults to
None.
None. Supported providers are:
- Opta
- Metrica
- Instat
check_quality (bool, optional): whether you want to check the quality of the
tracking data. Defaults to True
tracking data. Defaults to True
Returns:
(Match): a Match object with all information available of the match.
"""
Expand Down

0 comments on commit 21f8e0e

Please sign in to comment.