Logo Lanfrica
  • Accueil
  • Atlas
  • Analyses
  • Documentation
  • Sign in

© 2026 Lanfrica. Tous droits réservés. Tous les droits d'auteur des ressources affichées sur le site Web Lanfrica appartiennent aux détenteurs de droits d'auteur d'origine, sauf indication contraire explicite.

obdaguy-create/GUI_Algorithmic-Frameworks-for-Drone-Based-Agricultural-Delivery-Across-Diverse-African-Terrains

Domaine:

agriculture

Type de record:

software
Créateur:
obd
Hôte:
A collection of all front end files used for the Project # GUI_Algorithmic-Frameworks-for-Drone-Based-Agricultural-Delivery-Across-Diverse-African-Terrains A collection of all front end files used for the Project # AgroFly — How to Run Everything ## File layout (place all in your project folder) ``` PROJECT/ ├── MAIN.py(FRONTEND REPO) ├── GUI.py(FRONTEND REPO) ← Can run independent of React ,used for visualization of Drone flight simulation Environment ├── AIRSIM_SIM.py (BACKEND REPO) ← updated (altitude, weight, avoidance) ├── API.py (BACKEND REPO) ← NEW: FastAPI backend ├── DB.py (BACKEND REPO) ├── CONFIG.py(BACKEND REPO) ├── UTILS.py(BACKEND REPO) ├── DATA_FETCHER.py(BACKEND REPO) └── frontend/ ← NEW: React dashboards ├── package.json ├── vite.config.js ├── index.html └── src/ ├── main.jsx ├── index.css ├── components/Nav.jsx └── pages/ ├── FarmerPage.jsx └── OperatorPage.jsx ``` --- ## 1 — Install Python dependencies (venv_airsim39) ```powershell & "...venv_airsim39\Scripts\Activate.ps1" pip install fastapi uvicorn "pymongo[srv]" airsim numpy pyproj srtm.py requests folium ``` --- ## 2 — Start AirSim (Unreal) Open your AirSim environment in Unreal Engine as normal. The Unreal window stays open separately — it IS the 3D visualisation. --- ## 3 — Start the FastAPI backend ```powershell # In venv_airsim39 uvicorn api:app --reload --port 8000 ``` Confirm: localhost → {"status":"ok","db":true} --- ## 4 — Start the React frontend ```powershell cd frontend npm install # first time only npm run dev ``` Open: localhost --- ## 5 — (Optional) Launch Tkinter GUI instead of browser ```powershell python main.py ``` The Tkinter GUI lets you set altitude + payload weight and launch a flight directly without using the browser dashboards. --- ## Weight → Altitude + Speed model | Payload | Effective altitude (base 20m) | Speed reduction | |---------|-------------------------------|-----------------| | 0 kg | 20.0 m | 0 …

Visit

github.com