Update README.md
Browse files
README.md
CHANGED
@@ -1 +1,37 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc0-1.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
tags:
|
6 |
+
- drone
|
7 |
+
pretty_name: Drone Turn Analysis Data
|
8 |
+
size_categories:
|
9 |
+
- 1K<n<10K
|
10 |
+
---
|
11 |
+
## Dataset Summary
|
12 |
+
**Drone Turn Analysis Data** dataset provides information on drone turning behavior, this dataset collected using the **Mission Planner simulator** for educational purpose.
|
13 |
+
|
14 |
+
### Features:
|
15 |
+
- **Timestamp**: Time of the data capture.
|
16 |
+
- **Velocity**: Drone's speed (m/s) during the turn.
|
17 |
+
- **Heading Change**: Directional change in degrees.
|
18 |
+
- **Target Distance**: Planned distance for the maneuver.
|
19 |
+
- **Actual Distance**: Actual distance covered.
|
20 |
+
- **Overshoot**: Difference between target and actual distances.
|
21 |
+
- **Turn Success**: Boolean indicator of successful turn.
|
22 |
+
- **Latitude and Longitude**: Geographic coordinates of the drone's location.
|
23 |
+
- **Altitude**: Drone's height above ground level.
|
24 |
+
|
25 |
+
## Use Case
|
26 |
+
This dataset is ideal for **Predictive Modeling and Optimization**.
|
27 |
+
|
28 |
+
## Sources
|
29 |
+
Collected using the [Mission Planner](http://ardupilot.org/planner/docs/mission-planner-overview.html).
|
30 |
+
|
31 |
+
## Load the dataset
|
32 |
+
|
33 |
+
```python
|
34 |
+
from datasets import load_dataset
|
35 |
+
|
36 |
+
dataset = load_dataset("SGF-14/drone_turn_analysis_data")
|
37 |
+
```
|