F1-analysis / pages /Peak_G-Forces.py
tracinginsights's picture
Update pages/Peak_G-Forces.py
24dc754
raw
history blame
660 Bytes
import streamlit as st
from repo_directory import Peak_G_Forces as gf
from repo_directory import button
YEAR_SELECTED = st.selectbox(
'Select Year',
(2023, 2022, 2021, 2020, 2019, 2018))
RACE_SELECTED = st.selectbox(
'Select Race',
(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23))
SESSION = st.selectbox(
'Select Session',
('FP1', 'FP2', 'FP3', 'Q', 'SQ', 'R'))
laps, f1session = gf.gets_laps(YEAR_SELECTED, RACE_SELECTED, SESSION)
df = gf.get_df(laps, f1session)
gf.plot_acceleration(df, f1session)
gf.plot_braking(df, f1session)
gf.plot_right(df, f1session)
gf.plot_left(df, f1session)