This project is a web application built with Streamlit that visualizes vehicle dynamics, specifically focusing on side slip data. It provides interactive controls and visualizations to help users understand vehicle behavior under various conditions.
Follow these steps to set up the project environment after you have cloned this repo:
-
Create a new conda environment:
conda create -n tmp python=3.10 -y
-
Activate the conda environment:
conda activate tmp
-
Install
uv
first:pip install uv
-
Install the required packages:
uv pip install -r requirements.txt
-
Run the Streamlit application:
streamlit run src/app.py
- Code Linting and Formatting:
ruff check ruff format
- Ensure you have
conda
installed (if not, you may install it via miniforge).