F1-analysis / pages /Corner_Analysis.py
tracinginsights's picture
Update pages/Corner_Analysis.py
8fc9fc2
raw
history blame
813 Bytes
import streamlit as st
from repo_directory import Corner_Analysis
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','SS', 'Q', 'SQ', 'R'))
laps, f1session, drivers = Corner_Analysis.get_data(YEAR_SELECTED, RACE_SELECTED, SESSION)
DRIVER_1 = st.selectbox(
'Select Driver 1',
drivers)
DRIVER_2 = st.selectbox(
'Select Driver 2',
drivers)
distance_range = st.slider(
'Select a range for distance ',
0, 7100, (1025, 2000))
Corner_Analysis.plot(DRIVER_1, DRIVER_2, distance_range, laps, f1session)