Create README.md
Browse files## 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")
```