Skip to content

Files

Latest commit

 

History

History
50 lines (37 loc) · 1.2 KB

README.md

File metadata and controls

50 lines (37 loc) · 1.2 KB

Vehicle Side Slip Dashboard

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.

Vehicle Side Slip Dashboard Banner

Setup Instructions

Follow these steps to set up the project environment after you have cloned this repo:

  1. Create a new conda environment:

    conda create -n tmp python=3.10 -y
  2. Activate the conda environment:

    conda activate tmp
  3. Install uv first:

    pip install uv
  4. Install the required packages:

    uv pip install -r requirements.txt
  5. Run the Streamlit application:

    streamlit run src/app.py

Development Instructions

  1. Code Linting and Formatting:
    ruff check
    ruff format

Notes

  • Ensure you have conda installed (if not, you may install it via miniforge).