A fixed-wing UAV environment based on gymnasium.
Project description
fly-craft
Documentation
TODO:
Installation
Using PyPI
pip install fly-craft
From source
git clone https://github.com/GongXudong/fly-craft.git
pip install -e fly-craft
Usage
import gymnasium as gym
import flycraft
env = gym.make('FlyCraft-v0')
observation, info = env.reset()
for _ in range(500):
action = env.action_space.sample() # random action
observation, reward, terminated, truncated, info = env.step(action)
if terminated or truncated:
observation, info = env.reset()
env.close()
Citation
Cite as
@article{gong2024flycraft,
title = {fly-craft: Open-Source Goal-Conditioned Environments for Fixed-Wing UAV Attitude Control},
author = {Xudong, Gong and Hao, Wang and Dawei, Feng and Weijia, Wang},
year = 2024,
journal = {},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flycraft-0.0.5.tar.gz
(419.5 kB
view hashes)
Built Distribution
flycraft-0.0.5-py3-none-any.whl
(452.6 kB
view hashes)