"""
Event Schedule - :mod:`fastf1.events`
=====================================
The :class:`EventSchedule` provides information about past and upcoming
Formula 1 events.
An :class:`Event` can be a race weekend or a testing event. Each event
consists of multiple :class:`~fastf1.core.Session`.
The event schedule objects are built on top of pandas'
:class:`pandas.DataFrame` (event schedule) and :class:`pandas.Series` (event).
Therefore, the usual methods of these pandas objects can be used in addition
to the special methods described here.
Event Schedule Data
-------------------
The event schedule and each event provide the following information as
DataFrame columns or Series values:
- ``RoundNumber`` | :class:`int` |
The number of the championship round. This is unique for race
weekends, while testing events all share the round number zero.
- ``Country`` | :class:`str` | The country in which the event is held.
- ``Location`` | :class:`str` |
The event location; usually the city or region in which the track is
situated.
- ``OfficialEventName`` | :class:`str` |
The official event name as advertised, including sponsor names and stuff.
- ``EventName`` | :class:`str` |
A shorter event name usually containing the country or location but no
no sponsor names. This name is required internally for proper api access.
- ``EventDate`` | :class:`pd.Timestamp` |
The events reference date and time. This is used mainly internally.
Usually, this is the same as the date of the last session.
- ``EventFormat`` | :class:`str` |
The format of the event. One of 'conventional', 'sprint',
'sprint_shootout', 'sprint_qualifying', 'testing'. See :ref:`event-formats`
- ``Session*`` | :class:`str` |
The name of the session. One of 'Practice 1', 'Practice 2', 'Practice 3',
'Qualifying', 'Sprint', 'Sprint Shootout' or 'Race'.
Testing sessions are considered practice.
``*`` denotes the number of
the session (1, 2, 3, 4, 5).
- ``Session*Date`` | :class:`pd.Timestamp` |
The date and time at which the session is scheduled to start or was
scheduled to start as timezone-aware local timestamp.
(Timezone-aware local timestamps are not available when the ``'ergast'``
backend is used.)
``*`` denotes the number of the session (1, 2, 3, 4, 5).
- ``Session*DateUtc`` | :class:`pd.Timestamp` |
The date and time at which the session is scheduled to start or was
scheduled to start as non-timezone-aware UTC timestamp.
``*`` denotes the number of the session (1, 2, 3, 4, 5).
- ``F1ApiSupport`` | :class:`bool` |
Denotes whether this session is supported by the official F1 API.
Lap timing data and telemetry data can only be loaded if this is true.
Supported Seasons
.................
FastF1 provides its own event schedule for the 2018 season and all later
seasons. The schedule for all seasons before 2018 is built using data from
the Ergast API. Only limited data is available for these seasons. Usage of the
Ergast API can be enforced for all seasons by setting ``backend='ergast'``,
in which case the same limitations apply for the more recent seasons too.
**Exact scheduled starting times for all sessions**:
Supported starting with the 2018 season.
Starting dates for sessions before 2018 (or when enforcing usage of the Ergast
API) assume that each race weekend was held according to the 'conventional'
schedule (Practice 1/2 on friday, Practice 3/Qualifying on Saturday, Race on
Sunday). A starting date and time can only be provided for the race session.
All other sessions are calculated from this and no starting times can be
provided for these. These assumptions will be incorrect for certain events!
**Testing events**: Supported for the 2020 season and later seasons. Not
supported if usage of the Ergast API is enforced.
.. _event-formats:
Event Formats
.............
- **'conventional': Practice 1, Practice 2, Practice 3, Qualifying, Race**
- **'sprint': Practice 1, Qualifying, Practice 2, Sprint, Race**
This is the original sprint format that was used in some races in 2021 and
2022. The Qualifying on friday set the grid for the Sprint on saturday.
The results from the Sprint set the grid for the Race on sunday.
- **'sprint_shootout': Practice 1, Qualifying, Sprint Shootout, Sprint, Race**
This format was used in 2023. The Qualifying on friday sets the grid for the
main Race on sunday. The Sprint Shootout on saturday is held in similar
fashion to a normal Qualifying session and sets the grid for the Sprint that
takes place on saturday as well.
- **'sprint_qualifying': Practice 1, Sprint Qualifying, Sprint, Qualifying,
Race**
This format is used starting from 2024. In general, it is similar to the
previous 'sprint_shootout' format, but the order of the sessions was changed
and 'Sprint Shootout' is renamed to 'Sprint Qualifying'. This means that
the Sprint Qualifying on friday is held in similar fashion to a normal
Qualifying and sets the grid for the Sprint on saturday. The Qualifying later
on saturday then sets the grid for the race on Sunday.
- **'testing': no fixed session order**
usually three practice sessions on three separate days
.. _SessionIdentifier:
Session identifiers
-------------------
Multiple event (schedule) related functions and methods make use of a session
identifier to differentiate between the various sessions of one event.
This identifier can currently be one of the following:
- session name abbreviation: ``'FP1', 'FP2', 'FP3', 'Q', 'S', 'SS', 'SQ',
'R'``
- full session name: ``'Practice 1', 'Practice 2',
'Practice 3', 'Sprint', 'Sprint Shootout', 'Sprint Qualifying',
'Qualifying', 'Race'``;
provided names will be normalized, so that the name is
case-insensitive
- number of the session: ``1, 2, 3, 4, 5``
Note that the old ``'sprint'`` event format from 2021 and 2022 originally used
the name 'Sprint Qualifying' before renaming these sessions to just 'Sprint'.
The official schedule for 2021 now lists all these sessions as 'Sprint' and
FastF1 will therefore return all these session as 'Sprint'. When querying for a
specific session, FastF1 will also accept the 'Sprint Qualifying'/'SQ'
identifier instead of only 'Sprint'/'S' for backwards compatibility.
Functions for accessing schedule data
-------------------------------------
The functions for accessing event schedule data are documented in
:ref:`GeneralFunctions`.
Data Objects
------------
Overview
........
.. autosummary::
EventSchedule
Event
API Reference
.............
.. autoclass:: EventSchedule
:members:
:undoc-members:
:autosummary:
.. autoclass:: Event
:members:
:undoc-members:
:autosummary:
""" # noqa: W605 invalid escape sequence (escaped space)
import collections
import datetime
import json
import warnings
from typing import (
Literal,
Optional,
Union
)
import dateutil.parser
import pandas as pd
import fastf1._api
import fastf1.ergast
from fastf1.core import Session
from fastf1.internals.fuzzy import fuzzy_matcher
from fastf1.internals.pandas_base import (
BaseDataFrame,
BaseSeries
)
from fastf1.logger import (
get_logger,
soft_exceptions
)
from fastf1.req import Cache
from fastf1.utils import (
recursive_dict_get,
to_datetime,
to_timedelta
)
_logger = get_logger(__name__)
_SESSION_TYPE_ABBREVIATIONS = {
'R': 'Race',
'Q': 'Qualifying',
'S': 'Sprint',
'SQ': 'Sprint Qualifying',
'SS': 'Sprint Shootout',
'FP1': 'Practice 1',
'FP2': 'Practice 2',
'FP3': 'Practice 3'
}
_SCHEDULE_BASE_URL = "https://raw.githubusercontent.com/" \
"theOehrly/f1schedule/master/"
[docs]
def get_session(
year: int,
gp: Union[str, int],
identifier: Optional[Union[int, str]] = None,
*,
backend: Optional[Literal['fastf1', 'f1timing', 'ergast']] = None,
force_ergast: bool = False,
) -> Session:
"""Create a :class:`~fastf1.core.Session` object based on year, event name
and session identifier.
.. note:: This function will return a :class:`~fastf1.core.Session`
object, but it will not load any session specific data like lap timing,
telemetry, ... yet. For this, you will need to call
:func:`~fastf1.core.Session.load` on the returned object.
To get a testing session, use :func:`get_testing_session`.
Examples:
Get the second free practice of the first race of 2021 by its session
name abbreviation::
>>> get_session(2021, 1, 'FP2')
Get the qualifying of the 2020 Austrian Grand Prix by full session
name::
>>> get_session(2020, 'Austria', 'Qualifying')
Get the 3rd session of the 5th Grand Prix in 2021::
>>> get_session(2021, 5, 3)
Args:
year: Championship year
gp: Name as str or round number as int. If gp is
a string, a fuzzy match will be performed on all events and the
closest match will be selected.
Fuzzy matching uses country, location, name and officialName of
each event as reference.
Some examples that will be correctly interpreted: 'bahrain',
'australia', 'abudabi', 'monza'.
identifier: see :ref:`SessionIdentifier`
backend: select a specific backend as data source, options:
- ``'fastf1'``: FastF1's own backend, full support for 2018 to now
- ``'f1timing'``: uses data from the F1 live timing API, sessions
for which no timing data is available are not listed
(supports 2018 to now)
- ``'ergast'``: uses data from Ergast, no local times are
available, no information about availability of f1 timing data is
available (supports 1950 to now)
When no backend is specified, ``'fastf1'`` is used as a default and
the other backends are used as a fallback in case the default
is not available.
For seasons older than 2018 ``'ergast'`` is always used.
force_ergast: [Deprecated, use ``backend='ergast'``] Always use data
from the ergast database to create the event schedule
"""
event = get_event(year, gp, force_ergast=force_ergast, backend=backend)
return event.get_session(identifier)
[docs]
def get_testing_session(
year: int,
test_number: int,
session_number: int,
*,
backend: Optional[Literal['fastf1', 'f1timing']] = None
) -> Session:
"""Create a :class:`~fastf1.core.Session` object for testing sessions
based on year, test event number and session number.
Args:
year: Championship year
test_number: Number of the testing event (usually at most two)
session_number: Number of the session within a specific testing
event. Each testing event usually has three sessions.
backend: select a specific backend as data source, options:
- ``'fastf1'``: FastF1's own backend, full support for 2018 to now
- ``'f1timing'``: uses data from the F1 live timing API, sessions
for which no timing data is available are not listed
(supports 2018 to now)
When no backend is specified, ``'fastf1'`` is used as a default and
``f1timing`` is used as a fallback in case the default
is not available.
.. versionadded:: 2.2
"""
event = get_testing_event(year, test_number, backend=backend)
return event.get_session(session_number)
[docs]
def get_event(
year: int,
gp: Union[int, str],
*,
backend: Optional[Literal['fastf1', 'f1timing', 'ergast']] = None,
force_ergast: bool = False,
strict_search: bool = False,
exact_match: bool = False
) -> "Event":
"""Create an :class:`~fastf1.events.Event` object for a specific
season and gp.
To get a testing event, use :func:`get_testing_event`.
Args:
year: Championship year
gp: Name as str or round number as int. If gp is
a string, a fuzzy match will be performed on all events and the
closest match will be selected.
Fuzzy matching uses country, location, name and officialName of
each event as reference.
Note that the round number cannot be used to get a testing event,
as all testing event are round 0!
backend: select a specific backend as data source, options:
- ``'fastf1'``: FastF1's own backend, full support for 2018 to now
- ``'f1timing'``: uses data from the F1 live timing API, sessions
for which no timing data is available are not listed
(supports 2018 to now)
- ``'ergast'``: uses data from Ergast, no local times are
available, no information about availability of f1 timing data is
available (supports 1950 to now)
When no backend is specified, ``'fastf1'`` is used as a default and
the other backends are used as a fallback in case the default
is not available.
For seasons older than 2018 ``'ergast'`` is always used.
force_ergast: [Deprecated, use ``backend='ergast'``] Always use data
from the ergast database to create the event schedule
strict_search: This argument is deprecated and planned for removal,
use the equivalent ``exact_match`` instead
exact_match: Match precisely the query, or default to
fuzzy search. If no event is found with
``exact_match=True``, the function will return None
.. versionadded:: 2.2
"""
schedule = get_event_schedule(year=year, include_testing=False,
force_ergast=force_ergast,
backend=backend)
if isinstance(gp, str):
event = schedule.get_event_by_name(
gp, strict_search=strict_search, exact_match=exact_match)
else:
event = schedule.get_event_by_round(gp)
return event
[docs]
def get_testing_event(
year: int,
test_number: int,
*,
backend: Optional[Literal['fastf1', 'f1timing']] = None
) -> "Event":
"""Create a :class:`fastf1.events.Event` object for testing sessions
based on year and test event number.
Args:
year: Championship year
test_number: Number of the testing event (usually at most two)
backend: select a specific backend as data source, options:
- ``'fastf1'``: FastF1's own backend, full support for 2018 to now
- ``'f1timing'``: uses data from the F1 live timing API, sessions
for which no timing data is available are not listed
(supports 2018 to now)
When no backend is specified, ``'fastf1'`` is used as a default and
``f1timing`` is used as a fallback in case the default
is not available.
.. versionadded:: 2.2
"""
if backend == 'ergast':
raise ValueError("The 'ergast' backend does not support "
"testing events!")
schedule = get_event_schedule(year=year, backend=backend)
schedule = schedule[schedule.is_testing()]
try:
assert test_number >= 1
return schedule.iloc[test_number - 1]
except (IndexError, AssertionError):
raise ValueError(f"Test event number {test_number} does not exist")
[docs]
def get_event_schedule(
year: int,
*,
include_testing: bool = True,
backend: Optional[Literal['fastf1', 'f1timing', 'ergast']] = None,
force_ergast: bool = False
) -> "EventSchedule":
"""Create an :class:`~fastf1.events.EventSchedule` object for a specific
season.
Args:
year: Championship year
include_testing: Include or exclude testing sessions from the
event schedule.
backend: select a specific backend as data source, options:
- ``'fastf1'``: FastF1's own backend, full support for 2018 to now
- ``'f1timing'``: uses data from the F1 live timing API, sessions
for which no timing data is available are not listed
(supports 2018 to now)
- ``'ergast'``: uses data from Ergast, no local times are
available, no information about availability of f1 timing data is
available (supports 1950 to now)
When no backend is specified, ``'fastf1'`` is used as a default and
the other backends are used as a fallback in case the default
is not available.
For seasons older than 2018 ``'ergast'`` is always used.
force_ergast: [Deprecated, use ``backend='ergast'``] Always use data
from the ergast database to create the event schedule
.. versionadded:: 2.2
"""
if force_ergast:
warnings.warn("Option ``force_ergast`` has been deprecated, use"
"``backend='ergast'`` instead")
backend = 'ergast'
_backends_named_order = {
'fastf1': _get_schedule_ff1,
'f1timing': _get_schedule_from_f1_timing,
'ergast': _get_schedule_from_ergast
}
if backend is not None:
_backends = [_backends_named_order[backend]]
elif year < 2018:
_backends = [_backends_named_order['ergast']]
else:
_backends = list(_backends_named_order.values())
schedule = None
for func in _backends:
schedule = func(year)
if schedule is not None:
break
if schedule is None: # raise Error if fallback failed as well
raise ValueError("Failed to load any schedule data.")
if not include_testing:
schedule = schedule[~schedule.is_testing()]
return schedule
[docs]
def get_events_remaining(
dt: Optional[datetime.datetime] = None,
*,
include_testing: bool = True,
backend: Optional[Literal['fastf1', 'f1timing', 'ergast']] = None,
force_ergast: bool = False
) -> 'EventSchedule':
"""
Create an :class:`~fastf1.events.EventSchedule` object for remaining
season.
Args:
dt: Optional DateTime to get events after.
include_testing: Include or exclude testing sessions from the
event schedule.
backend: select a specific backend as data source, options:
- ``'fastf1'``: FastF1's own backend, full support for 2018 to now
- ``'f1timing'``: uses data from the F1 live timing API, sessions
for which no timing data is available are not listed
(supports 2018 to now)
- ``'ergast'``: uses data from Ergast, no local times are
available, no information about availability of f1 timing data is
available (supports 1950 to now)
When no backend is specified, ``'fastf1'`` is used as a default and
the other backends are used as a fallback in case the default
is not available.
For seasons older than 2018 ``'ergast'`` is always used.
force_ergast: [Deprecated, use ``backend='ergast'``] Always use data
from the ergast database to create the event schedule
.. versionadded:: 2.3
"""
if dt is None:
dt = datetime.datetime.now()
events = get_event_schedule(
dt.year, include_testing=include_testing,
force_ergast=force_ergast, backend=backend
)
result = events.loc[events["EventDate"] >= dt]
return result
@soft_exceptions("FastF1 schedule",
"Failed to load schedule from FastF1 backend!",
_logger)
def _get_schedule_ff1(year):
response = Cache.requests_get(
_SCHEDULE_BASE_URL + f"schedule_{year}.json"
)
data = dict()
json_data = json.loads(response.text)
for key in json_data.keys():
data[key] = list(json_data[key].values())
# convert gmt offset to timedelta
gmt_offset = list()
for go in data.pop('gmt_offset'):
if go is None:
gmt_offset.append(datetime.timedelta(0))
else:
# hh:mm -> hh:mm:00 before to_timedelta
gmt_offset.append(to_timedelta(f"{go}:00"))
length = len(gmt_offset)
# create additional columns for UTC timestamps
for n in range(5):
data[f'session{n+1}_date_Utc'] = [None, ] * length
# convert and set all timestamps
for i in range(length):
data['event_date'][i] = to_datetime(data['event_date'][i]) \
.replace(hour=0, minute=0, second=0)
for j in range(5):
date = to_datetime(data[f'session{j+1}_date'][i])
if date is None:
date_utc = None
else:
# create tz-aware local time
date = date.replace(tzinfo=datetime.timezone(gmt_offset[i]))
# create non-tz-aware utc time
date_utc = date.astimezone(datetime.timezone.utc) \
.replace(tzinfo=None)
data[f'session{j+1}_date'][i] = pd.Timestamp(date)
data[f'session{j+1}_date_Utc'][i] = pd.Timestamp(date_utc)
df = pd.DataFrame(data)
# change column names from snake_case to UpperCamelCase
col_renames = {col: ''.join([s.capitalize() for s in col.split('_')])
for col in df.columns}
df = df.rename(columns=col_renames)
schedule = EventSchedule(df, year=year, force_default_cols=True)
return schedule
@soft_exceptions("F1 API schedule",
"Failed to load schedule from F1 API backend!",
_logger)
def _get_schedule_from_f1_timing(year: int):
# create an event schedule using data from the F1 API
response = fastf1._api.season_schedule(f'/static/{year}/')
data = collections.defaultdict(list)
for event in response:
data['Country'].append(event['Country']['Name'])
data['Location'].append(event['Location'])
data['EventName'].append(event['Name'])
data['OfficialEventName'].append(event['OfficialName'])
# select only valid sessions
sessions = list()
for ses in event['Sessions']:
if (ses.get('Key') != -1) and ses.get('Name'):
sessions.append(ses)
n_events = min(len(sessions), 5)
# number of events, usually 3 for testing, 5 for race weekends
# in special cases there are additional unrelated events
if 'test' in event['Name'].lower():
data['EventFormat'].append('testing')
data['RoundNumber'].append(0)
elif year <= 2020:
data['EventFormat'].append('conventional')
data['RoundNumber'].append(event['Number'])
elif year in (2021, 2022):
if sessions[3]['Name'] == 'Sprint Qualifying':
# fix for 2021 where Sprint was called Sprint Qualifying
sessions[3]['Name'] = 'Sprint'
if sessions[3]['Name'] == 'Sprint':
data['EventFormat'].append('sprint')
else:
data['EventFormat'].append('conventional')
data['RoundNumber'].append(event['Number'])
elif year == 2023:
if sessions[2]['Name'] == 'Sprint Shootout':
data['EventFormat'].append('sprint_shootout')
else:
data['EventFormat'].append('conventional')
data['RoundNumber'].append(event['Number'])
elif year >= 2024:
if sessions[1]['Name'] == 'Sprint Qualifying':
data['EventFormat'].append('sprint_qualifying')
else:
data['EventFormat'].append('conventional')
data['RoundNumber'].append(event['Number'])
data['F1ApiSupport'].append(True)
for i in range(0, 5):
# parse the up to five sessions for each event
try:
session = sessions[i]
except IndexError:
data[f'Session{i+1}'].append(None)
data[f'Session{i+1}Date'].append(None)
data[f'Session{i+1}DateUtc'].append(None)
else:
data[f'Session{i+1}'].append(session['Name'])
# save timestamp as tz-aware local time and non-tz-aware utc
date = to_datetime(session['StartDate'])
gmt_offset = to_timedelta(session['GmtOffset'])
date = date.replace(tzinfo=datetime.timezone(gmt_offset))
date_utc = date.astimezone(datetime.timezone.utc) \
.replace(tzinfo=None)
data[f'Session{i+1}Date'].append(pd.Timestamp(date))
data[f'Session{i+1}DateUtc'].append(pd.Timestamp(date_utc))
# set the event date to the date of the last session
ev_date = data[f'Session{n_events}DateUtc'][-1]
ev_date = ev_date.replace(hour=0, minute=0, second=0)
data['EventDate'].append(ev_date)
schedule = EventSchedule(data, year=year, force_default_cols=True)
return schedule
@soft_exceptions("Ergast API Schedule",
"Failed to load schedule from Ergast API backend!",
_logger)
def _get_schedule_from_ergast(year) -> "EventSchedule":
# create an event schedule using data from the ergast database
season = fastf1.ergast.fetch_season(year)
data = collections.defaultdict(list)
for rnd in season:
data['RoundNumber'].append(int(rnd.get('round')))
data['Country'].append(
recursive_dict_get(rnd, 'Circuit', 'Location', 'country')
)
data['Location'].append(
recursive_dict_get(rnd, 'Circuit', 'Location', 'locality')
)
data['EventName'].append(rnd.get('raceName'))
data['OfficialEventName'].append("")
try:
date = pd.to_datetime(
f"{rnd.get('date', '')}T{rnd.get('time', '')}",
).tz_localize(None)
except dateutil.parser.ParserError:
date = pd.NaT
data['EventDate'].append(date)
if 'Sprint' in rnd:
# Ergast doesn't support sprint shootout format yet
if year in (2021, 2022):
_format = 'sprint'
session_names = ['Practice 1', 'Qualifying', 'Practice 2',
'Sprint', 'Race']
elif year == 2023:
_format = 'sprint_shootout'
session_names = ['Practice 1', 'Qualifying', 'Sprint Shootout',
'Sprint', 'Race']
else:
_format = 'sprint_qualifying'
session_names = ['Practice 1', 'Sprint Qualifying', 'Sprint',
'Qualifying', 'Race']
data['EventFormat'].append(_format)
data['Session1'].append(session_names[0])
data['Session1DateUtc'].append(
date.floor('D') - pd.Timedelta(days=2))
data['Session2'].append(session_names[1])
data['Session2DateUtc'].append(
date.floor('D') - pd.Timedelta(days=2))
data['Session3'].append(session_names[2])
data['Session3DateUtc'].append(
date.floor('D') - pd.Timedelta(days=1))
data['Session4'].append(session_names[3])
data['Session4DateUtc'].append(
date.floor('D') - pd.Timedelta(days=1))
data['Session5'].append(session_names[4])
data['Session5DateUtc'].append(date)
else:
data['EventFormat'].append("conventional")
data['Session1'].append('Practice 1')
data['Session1DateUtc'].append(
date.floor('D') - pd.Timedelta(days=2))
data['Session2'].append('Practice 2')
data['Session2DateUtc'].append(
date.floor('D') - pd.Timedelta(days=2))
data['Session3'].append('Practice 3')
data['Session3DateUtc'].append(
date.floor('D') - pd.Timedelta(days=1))
data['Session4'].append('Qualifying')
data['Session4DateUtc'].append(
date.floor('D') - pd.Timedelta(days=1))
data['Session5'].append('Race')
data['Session5DateUtc'].append(date)
data['F1ApiSupport'].append(True if year >= 2018 else False)
# simplified; this is only true most of the time
df = pd.DataFrame(data)
schedule = EventSchedule(df, year=year, force_default_cols=True)
return schedule
[docs]
class EventSchedule(BaseDataFrame):
"""This class implements a per-season event schedule.
For detailed information about the information that is available for each
event, see `Event Schedule Data`_.
This class is usually not instantiated directly. You should use
:func:`fastf1.get_event_schedule` to get an event schedule for a specific
season.
Args:
*args: passed on to :class:`pandas.DataFrame` superclass
year: Championship year
force_default_cols: Enforce that all default columns and only
the default columns exist
**kwargs: passed on to :class:`pandas.DataFrame` superclass
(except 'columns' which is unsupported for the event schedule)
.. versionadded:: 2.2
"""
_COL_TYPES = {
'RoundNumber': int,
'Country': str,
'Location': str,
'OfficialEventName': str,
'EventDate': 'datetime64[ns]',
'EventName': str,
'EventFormat': str,
'Session1': str,
'Session1Date': object, # tz-aware datetime.datetime
'Session1DateUtc': 'datetime64[ns]',
'Session2': str,
'Session2Date': object,
'Session2DateUtc': 'datetime64[ns]',
'Session3': str,
'Session3Date': object,
'Session3DateUtc': 'datetime64[ns]',
'Session4': str,
'Session4Date': object,
'Session4DateUtc': 'datetime64[ns]',
'Session5': str,
'Session5Date': object,
'Session5DateUtc': 'datetime64[ns]',
'F1ApiSupport': bool
}
_metadata = ['year']
def __init__(self, *args, year: int = 0,
force_default_cols: bool = False, **kwargs):
if force_default_cols:
kwargs['columns'] = list(self._COL_TYPES)
super().__init__(*args, **kwargs)
self.year = year
# apply column specific dtypes
for col, _type in self._COL_TYPES.items():
if col not in self.columns:
continue
if self[col].isna().all():
if _type == 'datetime64[ns]':
self[col] = pd.NaT
elif _type == object: # noqa: E721, type comparison with ==
self[col] = None
else:
self[col] = _type()
self[col] = self[col].astype(_type)
@property
def _constructor_sliced_horizontal(self) -> type["Event"]:
return Event
[docs]
def is_testing(self):
"""Return `True` or `False`, depending on whether each event is a
testing event."""
return pd.Series(self['EventFormat'] == 'testing')
[docs]
def get_event_by_round(self, round: int) -> "Event":
"""Get an :class:`Event` by its round number.
Args:
round: The round number
Raises:
ValueError: The round does not exist in the event schedule
"""
if round == 0:
raise ValueError("Cannot get testing event by round number!")
mask = self['RoundNumber'] == round
if not mask.any():
raise ValueError(f"Invalid round: {round}")
return self[mask].iloc[0]
def _strict_event_search(self, name: str):
"""
Match Event Name exactly, ignoring case.
"""
query = name.lower()
for i, event in self.iterrows():
if 'EventName' in event:
if event['EventName'].lower() == query:
return self.loc[i]
else:
return None
def _fuzzy_event_search(self, name: str) -> "Event":
def _remove_common_words(event_name):
common_words = ["formula 1", str(self.year), "grand prix", "gp"]
event_name = event_name.casefold()
for word in common_words:
event_name = event_name.replace(word, "")
return event_name
def _matcher_strings(ev):
strings = list()
if ('Location' in ev) and ev['Location']:
strings.append(ev['Location'].casefold())
if ('Country' in ev) and ev['Country']:
strings.append(ev['Country'].casefold())
if ('EventName' in ev) and ev['EventName']:
strings.append(_remove_common_words(ev["EventName"]))
if ('OfficialEventName' in ev) and ev['OfficialEventName']:
strings.append(_remove_common_words(ev["OfficialEventName"]))
return strings
user_input = name
name = _remove_common_words(name)
reference = [_matcher_strings(event) for _, event in self.iterrows()]
index, exact = fuzzy_matcher(name, reference)
event = self.iloc[index]
if not exact:
_logger.warning(f"Correcting user input '{user_input}' to "
f"'{event.EventName}'")
return event
[docs]
def get_event_by_name(
self,
name: str,
*,
strict_search: bool = False,
exact_match: bool = False
) -> "Event":
"""Get an :class:`Event` by its name.
A fuzzy match is performed to find the event that best matches the
given name. Fuzzy matching is performed using the country, location,
name and officialName of each event. This is not guaranteed to return
the correct result. You should therefore always check if the function
actually returns the event you had wanted.
To guarantee the function returns the event queried, toggle
strict_search, which will only return an event if its event name
matches (non case sensitive) the query string.
.. warning:: You should avoid adding common words to ``name`` to avoid
false string matches.
For example, you should rather use "Belgium" instead of "Belgian
Grand Prix" as ``name``.
Args:
name: The name of the event. For example,
``.get_event_by_name("british")`` and
``.get_event_by_name("silverstone")`` will both return the
event for the British Grand Prix.
strict_search: This argument is deprecated and planned for removal.
Use the equivalent ``exact_match`` instead
exact_match: Search only for exact query matches
instead of using fuzzy search. For example,
``.get_event_by_name("British Grand Prix",
exact_match=True)``
will return the event for the British Grand Prix, whereas
``.get_event_by_name("British", exact_match=True)``
will return ``None``
"""
if strict_search:
warnings.warn(("strict_search is deprecated and planned for "
"removal, use the equivalent exact_match instead"),
FutureWarning)
if strict_search or exact_match:
return self._strict_event_search(name)
else:
return self._fuzzy_event_search(name)
[docs]
class Event(BaseSeries):
"""This class represents a single event (race weekend or testing event).
Each event consists of one or multiple sessions, depending on the type
of event and depending on the event format.
For detailed information about the information that is available for each
event, see `Event Schedule Data`_.
This class is usually not instantiated directly. You should use
:func:`fastf1.get_event` or similar to get a specific event.
Args:
year: Championship year
"""
_metadata = ['year']
def __init__(self, *args, year: int = None, **kwargs):
super().__init__(*args, **kwargs)
self.year = year
[docs]
def is_testing(self) -> bool:
"""Return `True` or `False`, depending on whether this event is a
testing event."""
return self['EventFormat'] == 'testing'
[docs]
def get_session_name(self, identifier) -> str:
"""Return the full session name of a specific session from this event.
Examples:
>>> import fastf1
>>> event = fastf1.get_event(2021, 1)
>>> event.get_session_name(3)
'Practice 3'
>>> event.get_session_name('Q')
'Qualifying'
>>> event.get_session_name('praCtice 1')
'Practice 1'
Args:
identifier: see :ref:`SessionIdentifier`
Raises:
ValueError: No matching session or invalid identifier
"""
try:
num = float(identifier)
except ValueError:
# by name or abbreviation
for name in _SESSION_TYPE_ABBREVIATIONS.values():
if identifier.casefold() == name.casefold():
session_name = name
break
else:
try:
session_name = \
_SESSION_TYPE_ABBREVIATIONS[identifier.upper()]
except KeyError:
raise ValueError(f"Invalid session type '{identifier}'")
# 'Sprint' was originally called 'Sprint Qualifying' only in the
# old 'sprint' event format and renamed later; support the old
# name for backwards compatibility by silently correcting to the
# new name
if ((session_name == 'Sprint Qualifying')
and (self.year in (2021, 2022))):
session_name = 'Sprint'
if session_name not in self.values:
raise ValueError(f"Session type '{identifier}' does not "
f"exist for this event")
else:
# by number
if (float(num).is_integer()
and (num := int(num)) in (1, 2, 3, 4, 5)):
session_name = self[f'Session{num}']
else:
raise ValueError(f"Invalid session type '{num}'")
if not session_name:
raise ValueError(f"Session number {num} does not "
f"exist for this event")
return session_name
[docs]
def get_session_date(self, identifier: Union[str, int], utc=False) \
-> pd.Timestamp:
"""Return the date and time (if available) at which a specific session
of this event is or was held.
Args:
identifier: see :ref:`SessionIdentifier`
utc: return a non-timezone-aware UTC timestamp
Raises:
ValueError: No matching session or invalid identifier
"""
session_name = self.get_session_name(identifier)
relevant_columns = self.loc[['Session1', 'Session2', 'Session3',
'Session4', 'Session5']]
mask = (relevant_columns == session_name)
if not mask.any():
raise ValueError(f"Session type '{identifier}' does not exist "
f"for this event")
else:
_name = mask.idxmax()
date_utc = self[f"{_name}DateUtc"]
date = self[f"{_name}Date"]
if (not utc) and pd.isnull(date) and (not pd.isnull(date_utc)):
raise ValueError("Local timestamp is not available")
if utc:
return date_utc
return date
[docs]
def get_session(self, identifier: Union[int, str]) -> "Session":
"""Return a session from this event.
Args:
identifier: see :ref:`SessionIdentifier`
Raises:
ValueError: No matching session or invalid identifier
"""
try:
num = float(identifier)
except ValueError:
# by name or abbreviation
session_name = self.get_session_name(identifier)
if session_name not in self.values:
raise ValueError(f"Session type '{identifier}' does not "
f"exist for this event")
else:
# by number
if (float(num).is_integer()
and (num := int(num)) in (1, 2, 3, 4, 5)):
session_name = self[f'Session{num}']
else:
raise ValueError(f"Invalid session type '{num}'")
if not session_name:
raise ValueError(f"Session number {num} does not "
f"exist for this event")
return Session(event=self, session_name=session_name,
f1_api_support=self.F1ApiSupport)
[docs]
def get_race(self) -> "Session":
"""Return the race session."""
return self.get_session('Race')
[docs]
def get_qualifying(self) -> "Session":
"""Return the qualifying session."""
return self.get_session('Qualifying')
[docs]
def get_sprint(self) -> "Session":
"""Return the sprint session."""
return self.get_session('Sprint')
[docs]
def get_sprint_shootout(self) -> "Session":
"""Return the sprint shootout session."""
return self.get_session('Sprint Shootout')
[docs]
def get_sprint_qualifying(self) -> "Session":
"""Return the sprint qualifying session."""
return self.get_session('Sprint Qualifying')
[docs]
def get_practice(self, number: int) -> "Session":
"""Return the specified practice session.
Args:
number: 1, 2 or 3 - Free practice session number
"""
return self.get_session(f'Practice {number}')