Skip to main content

This repository contains the API for the AgroTechAvia simulators. This repository also contains several examples of how to interact with the API.

Project description

AgroTechSim API

AgroTechSim API Русский | English


Русский

🚀 Описание

AgroTechSim API — это Python-библиотека для работы с симулятором AgroTechSim, предназначенная для получения телеметрии с дронов, обработки сенсорных данных и реализации систем автономного управления. Библиотека предоставляет как низкоуровневый доступ к сырым данным сенсоров, так и высокоуровневые абстракции для упрощённого управления дроном.

Модуль позволяет разработчикам создавать сложные алгоритмы компьютерного зрения, навигации и управления без необходимости работы с реальным оборудованием, используя полнофункциональный симулятор дронов.

📊 Совместимость

Компонент Версия Статус
AgroTechSim API 1.0.1-v1.0.2 ✅ Compatible with AgroTechSim 1.0.3
AgroTechSim API 1.0.3 ✅ Compatible with AgroTechSim 1.0.4-1.0.5
Python 3.10 ✅ Recommended
InavMSPApi 1.1.0 ✅ Dependency

⚡ Установка

Вариант 1: Установка из PyPi (рекомендуется)

pip install agrotechsimapi

Этот способ автоматически установит все зависимости, включая inavmspapi требуемой версии.

Вариант 2: Установка из исходников

  1. Клонируйте репозиторий:
git clone https://github.com/AgroTechAvia/TechSimApi.git
cd TechSimApi
  1. Запустите скрипт установки:
python setup_by_source.py

Скрипт автоматически установит все зависимости и настроит окружение.

Вариант 3: Ручная установка (для разработчиков)

# 1. Создайте виртуальное окружение
python -m venv .venv

# 2. Активируйте окружение
# Windows:
.venv\Scripts\activate
# Linux/Mac:
source .venv/bin/activate

# 3. Установите inavmspapi
git clone https://github.com/AgroTechAvia/InavMSPApi.git
cd InavMSPApi
git checkout v1.1.0
pip install .

# 4. Установите agrotechsimapi
cd ..
git clone https://github.com/AgroTechAvia/TechSimApi.git
cd TechSimApi
pip install .

🎯 Функционал

Низкоуровневый API (SimClient)

  • 📷 Камеры: Получение цветных, тепловизионных, глубинных и спектральных изображений
  • 📡 Лидар: 360° сканирование окружения с настраиваемыми параметрами
  • 🎯 Радар: Обнаружение ближайших объектов с угловыми координатами
  • 📏 Дальномер: Точечное измерение расстояния
  • 💡 LED управление: Контроль подсветки дрона
  • 📊 Кинематика: Получение позиции, ориентации и скорости дрона

Высокоуровневый API (HighLevelSimClient)

  • 🚁 Управление полётом: Взлёт, посадка, удержание высоты
  • 🧭 Навигация: Движение к координатам в разных системах отсчёта
  • 🎯 Стабилизация: PID-регуляторы для автоматического удержания позиции
  • 👁️ Обработка изображений: Детектирование ArUco маркеров и blob-объектов
  • 🔄 Одометрия: Отслеживание перемещения относительно начальной точки
  • Обновление автономного полета: Для большинства дронов добавлены готовые пресеты PID в agrotechsimapi/utils/drone_setups.py, при этом все регуляторы можно настраивать вручную. Пример: examples_high_level/simple_flight/pid_waypoints_flight.py.

📁 Примеры использования

В репозитории представлены готовые примеры:

examples_low_level/ - Низкоуровневые примеры

examples_high_level/ - Высокоуровневые примеры

🚀 Быстрый старт

from agrotechsimapi import SimClient, CaptureType
import cv2

# Подключение к симулятору
client = SimClient(address="127.0.0.1", port=8080)

# Получение изображения с камеры
image = client.get_camera_capture(camera_id=0, type=CaptureType.color)

# Отображение изображения
cv2.imshow("Drone Camera", image)
cv2.waitKey(0)
cv2.destroyAllWindows()

🧪 Тестирование работоспособности

Для проверки корректной работы модуля с симулятором используйте интеграционные тесты. Файл test_sim_client_real.py содержит тесты, которые проверяют подключение к симулятору и работу всех основных функций.

📋 Предварительные требования:

  1. Запущенный симулятор AgroTechSim
  2. Дрон появился в симуляторе
  3. Установлен Python 3.10+ и необходимые зависимости

🚀 Запуск тестов:

# Перейдите в директорию проекта
cd TechSimApi

# Запустите тесты с симулятором
pytest test/test_sim_client_real.py --with-simulator -v

📊 Что проверяют тесты:

Тест test_sim_client_real.py последовательно проверяет:

  1. ✅ Подключение к симулятору - проверка соединения
  2. ✅ Получение изображений с камер - цветная, тепловизионная, глубинная камеры
  3. ✅ Кинематические данные - позиция и ориентация дрона
  4. ✅ Данные дальномера - измерение расстояния
  5. ✅ Сканирование лидаром - 360° сканирование окружения
  6. ✅ Радар - обнаружение ближайших объектов
  7. ✅ Управление LED - включение/выключение подсветки
  8. ✅ Обработка изображений - добавление шума и артефактов
  9. ✅ Несколько камер - работа с разными ID камер
  10. ✅ Обработка ошибок - корректная реакция на невалидные параметры
  11. ✅ Производительность - время отклика основных функций

⚠️ Важные замечания по тестированию:

  • Симулятор должен быть запущен перед запуском тестов
  • Тесты могут пропускаться, если определенный сенсор не доступен в текущей конфигурации симулятора
  • Первые измерения лидара и радара могут быть некорректными (особенность симулятора)
  • Для ручной проверки можно использовать скрипт:

🔧 Пример вывода успешного тестирования:

============================================================
Running SimClient Integration Tests with Real Simulator
============================================================

test_connection: ✓ PASSED
test_get_camera_capture: ✓ PASSED  
test_get_kinematics_data: ✓ PASSED
test_get_range_data: ✓ PASSED
test_get_laser_scan: ✓ PASSED
test_get_radar_point: ⚠ SKIPPED (Radar not available)
test_led_control: ✓ PASSED
test_image_processing_methods: ✓ PASSED
test_multiple_camera_ids: ✓ PASSED
test_call_event_action: ✓ PASSED
test_error_handling: ✓ PASSED
test_performance: ✓ PASSED

✅ Все основные функции работают корректно!

🐛 Если тесты не проходят:

  1. Проверьте подключение к симулятору:
from agrotechsimapi import SimClient
client = SimClient()
print(f"Connected: {client.is_connected()}")
  1. Убедитесь, что порт 8080 открыт:
# Linux/Mac
nc -z localhost 8080
# Windows
Test-NetConnection -ComputerName localhost -Port 8080
  1. Проверьте, что дрон заспавнен в симуляторе

Тестирование позволяет убедиться, что все компоненты модуля работают корректно с текущей версией симулятора.


English

🚀 Description

AgroTechSim API is a Python library for working with the AgroTechSim simulator, designed for obtaining drone telemetry, processing sensor data, and implementing autonomous control systems. The library provides both low-level access to raw sensor data and high-level abstractions for simplified drone control.

The module enables developers to create complex computer vision, navigation, and control algorithms without the need for real hardware, using a full-featured drone simulator.

📊 Compatibility

Component Version Status
AgroTechSim API 1.0.1-v1.0.2 ✅ Works with AgroTechSim 1.0.3
AgroTechSim API 1.0.3 ✅ Works with AgroTechSim 1.0.4-1.0.5
Python 3.10 ✅ Recommended
InavMSPApi 1.1.0 ✅ Dependency

⚡ Installation

Option 1: Install from PyPi (recommended)

pip install agrotechsimapi

This method will automatically install all dependencies, including the required version of inavmspapi.

Option 2: Install from source

  1. Clone the repository:
git https://github.com/AgroTechAvia/TechSimApi.git
cd TechSimApi
  1. Run the installation script:
python setup_by_source.py

The script will automatically install all dependencies and set up the environment.

Option 3: Manual installation (for developers)

# 1. Create a virtual environment
python -m venv .venv

# 2. Activate the environment
# Windows:
.venv\Scripts\activate
# Linux/Mac:
source .venv/bin/activate

# 3. Install inavmspapi
git clone https://github.com/AgroTechAvia/InavMSPApi.git
cd InavMSPApi
git checkout v1.1.0
pip install .

# 4. Install agrotechsimapi
cd ..
git clone https://github.com/AgroTechAvia/TechSimApi.git
cd TechSimApi
pip install .

🎯 Features

Low-Level API (SimClient)

  • 📷 Cameras: Capture color, thermal, depth, and spectral images
  • 📡 Lidar: 360° environment scanning with configurable parameters
  • 🎯 Radar: Nearest object detection with angular coordinates
  • 📏 Rangefinder: Point distance measurement
  • 💡 LED Control: Drone lighting control
  • 📊 Kinematics: Get drone position, orientation, and velocity

High-Level API (HighLevelSimClient)

  • 🚁 Flight Control: Takeoff, landing, altitude hold
  • 🧭 Navigation: Movement to coordinates in different reference frames
  • 🎯 Stabilization: PID controllers for automatic position hold
  • 👁️ Image Processing: ArUco marker and blob object detection
  • 🔄 Odometry: Track movement relative to starting point
  • Autonomous flight update: For most drones there are built-in PID presets in agrotechsimapi/utils/drone_setups.py, and every regulator can still be overridden manually. See example: examples_high_level/simple_flight/pid_waypoints_flight.py.

📁 Usage Examples

The repository includes ready-to-use examples:

examples_low_level/ - Low-level examples

examples_high_level/ - High-level examples

🚀 Quick Start

from agrotechsimapi import SimClient, CaptureType
import cv2

# Connect to simulator
client = SimClient(address="127.0.0.1", port=8080)

# Get camera image
image = client.get_camera_capture(camera_id=0, type=CaptureType.color)

# Display image
cv2.imshow("Drone Camera", image)
cv2.waitKey(0)
cv2.destroyAllWindows()

🧪 Functionality Testing

To verify that the module works correctly with the simulator, use the integration tests. The test_sim_client_real.py file contains tests that check the connection to the simulator and the operation of all main functions.

📋 Prerequisites:

  1. Running AgroTechSim simulator on localhost:8080
  2. Drone spawned in the simulator
  3. Python 3.10+ installed with necessary dependencies

🚀 Running tests:

# Go to the project directory
cd TechSimApi

# Run tests with simulator
pytest tests/test_sim_client_real.py --with-simulator -v

📊 What the tests check:

The test_sim_client_real.py test sequentially verifies:

  1. ✅ Connection to simulator - connection check
  2. ✅ Camera image capture - color, thermal, depth cameras
  3. ✅ Kinematic data - drone position and orientation
  4. ✅ Rangefinder data - distance measurement
  5. ✅ Lidar scanning - 360° environment scanning
  6. ✅ Radar - nearest object detection
  7. ✅ LED control - turning lights on/off
  8. ✅ Image processing - adding noise and artifacts
  9. ✅ Multiple cameras - working with different camera IDs
  10. ✅ Error handling - correct response to invalid parameters
  11. ✅ Performance - response time of main functions

⚠️ Important testing notes:

  • Simulator must be running before starting tests
  • Tests may be skipped if a particular sensor is not available in the current simulator configuration
  • First lidar and radar measurements may be incorrect (simulator feature)
  • For manual checking you can use the script:

🔧 Example of successful test output:

============================================================
Running SimClient Integration Tests with Real Simulator
============================================================

test_connection: ✓ PASSED
test_get_camera_capture: ✓ PASSED  
test_get_kinematics_data: ✓ PASSED
test_get_range_data: ✓ PASSED
test_get_laser_scan: ✓ PASSED
test_get_radar_point: ⚠ SKIPPED (Radar not available)
test_led_control: ✓ PASSED
test_image_processing_methods: ✓ PASSED
test_multiple_camera_ids: ✓ PASSED
test_call_event_action: ✓ PASSED
test_error_handling: ✓ PASSED
test_performance: ✓ PASSED

✅ All main functions work correctly!

🐛 If tests fail:

  1. Check connection to simulator:
from agrotechsimapi import SimClient
client = SimClient()
print(f"Connected: {client.is_connected()}")
  1. Make sure port 8080 is open:
# Linux/Mac
nc -z localhost 8080
# Windows
Test-NetConnection -ComputerName localhost -Port 8080
  1. Verify that drone is spawned in simulator

Testing allows you to ensure that all module components work correctly with the current simulator version.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agrotechsimapi-1.0.3.tar.gz (52.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agrotechsimapi-1.0.3-py3-none-any.whl (36.1 kB view details)

Uploaded Python 3

File details

Details for the file agrotechsimapi-1.0.3.tar.gz.

File metadata

  • Download URL: agrotechsimapi-1.0.3.tar.gz
  • Upload date:
  • Size: 52.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.1

File hashes

Hashes for agrotechsimapi-1.0.3.tar.gz
Algorithm Hash digest
SHA256 fea997a30e2217f70a162710296e907b2b2106b1702815ebbd932377ef717ff1
MD5 b9606aaa11767c317aacf398b3618d3d
BLAKE2b-256 21ec276b975b05bf11181a9d19f7a5219fa6746e7ec6373a9130e45a2c1c9479

See more details on using hashes here.

File details

Details for the file agrotechsimapi-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: agrotechsimapi-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.1

File hashes

Hashes for agrotechsimapi-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 57a927de02ecdcc0c578c9be01c9be9755c3948db499cd0f7267b78dea758172
MD5 5686490988663ee8e27e9f340bdbf9c9
BLAKE2b-256 ea009bef5bf8d8af15f0263f3b979edaa4eafa0e89c40005ff9d4ee403243ff9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page