File size: 1,160 Bytes
3fa6412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
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")
```