https://github.com/leoovs/flight_planning
UAV path-planning tool
https://github.com/leoovs/flight_planning
path-finding route-planning uav
Last synced: 3 months ago
JSON representation
UAV path-planning tool
- Host: GitHub
- URL: https://github.com/leoovs/flight_planning
- Owner: leoovs
- License: mit
- Created: 2025-02-06T14:28:05.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2025-02-15T16:54:01.000Z (3 months ago)
- Last Synced: 2025-02-15T17:31:11.946Z (3 months ago)
- Topics: path-finding, route-planning, uav
- Language: CMake
- Homepage:
- Size: 401 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# flight_planning
A 3D-space route planning software for unmanned aerial vehicles.### Building
#### Requirements
- Git
- CMake v3.20
- C++17 toolchain
#### Steps
1. **Clone the repository**You can clone the repository by executing
`git clone https://github.com/leoovs/flight_planning`2. **Run CMake configuration**
You can run CMake configuration by executing
```Bash
cd flight_planning
cmake -B build
# or cmake -B build -G if you wish to provide an alternative generator
```3. **Build the targets**
You can build the targets by running `cmake --build build --parallel`