SGF-14's picture
Update README.md
3fa6412 verified
|
raw
history blame
1.16 kB
---
license: cc0-1.0
language:
- en
tags:
- drone
pretty_name: Drone Turn Analysis Data
size_categories:
- 1K<n<10K
---
## Dataset Summary
**Drone Turn Analysis Data** dataset provides information on drone turning behavior, this dataset collected using the **Mission Planner simulator** for educational purpose.
### Features:
- **Timestamp**: Time of the data capture.
- **Velocity**: Drone's speed (m/s) during the turn.
- **Heading Change**: Directional change in degrees.
- **Target Distance**: Planned distance for the maneuver.
- **Actual Distance**: Actual distance covered.
- **Overshoot**: Difference between target and actual distances.
- **Turn Success**: Boolean indicator of successful turn.
- **Latitude and Longitude**: Geographic coordinates of the drone's location.
- **Altitude**: Drone's height above ground level.
## Use Case
This dataset is ideal for **Predictive Modeling and Optimization**.
## Sources
Collected using the [Mission Planner](http://ardupilot.org/planner/docs/mission-planner-overview.html).
## Load the dataset
```python
from datasets import load_dataset
dataset = load_dataset("SGF-14/drone_turn_analysis_data")
```