Skip to main content

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 fly_craft

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


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.1.tar.gz (428.7 kB view hashes)

Uploaded Source

Built Distribution

flycraft-0.0.1-py3-none-any.whl (62.8 kB view hashes)

Uploaded Python 3

Supported by

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