File size: 746 Bytes
4e57d68
 
c99acf6
4e57d68
 
 
 
c99acf6
 
 
4e57d68
 
 
c99acf6
4e57d68
 
 
 
c99acf6
4e57d68
26b723b
4e57d68
26b723b
4e57d68
26b723b
4e57d68
26b723b
4e57d68
26b723b
4e57d68
26b723b
4e57d68
 
26b723b
4e57d68
26b723b
4e57d68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import streamlit as st
from repo_directory import Circuit_plots
from repo_directory import button, utils

# selections
YEAR = st.selectbox(
    'Select Year',
    (2024,2023, 2022, 2021, 2020, 2019, 2018))



RACE = st.selectbox(
    'Select Race',    
    utils.get_events(YEAR))


SESSION = st.selectbox(
    'Select Session',
    utils.get_sessions(YEAR, RACE))

Circuit_plots.plot_speed(YEAR,RACE,SESSION)

Circuit_plots.plot_speed2(YEAR,RACE,SESSION)

Circuit_plots.plot_brake(YEAR,RACE,SESSION)

Circuit_plots.plot_throttle(YEAR,RACE,SESSION)

Circuit_plots.plot_elevation(YEAR,RACE,SESSION)

Circuit_plots.plot_lon_acc(YEAR,RACE,SESSION)


Circuit_plots.plot_lat_acc(YEAR,RACE,SESSION)

Circuit_plots.plot_vertical_acc(YEAR,RACE,SESSION)