Update README.md
Browse files
README.md
CHANGED
|
@@ -5,4 +5,132 @@ tags:
|
|
| 5 |
- Digital_elevation_map
|
| 6 |
- DEM
|
| 7 |
- Terrain_navigation
|
| 8 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
- Digital_elevation_map
|
| 6 |
- DEM
|
| 7 |
- Terrain_navigation
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# UAV Trajectory Simulation Dataset for Terrain-Based Localization
|
| 11 |
+
|
| 12 |
+
## Dataset Overview
|
| 13 |
+
|
| 14 |
+
This dataset contains simulated UAV flight data generated using ROS2, Gazebo, and PX4 autopilot system. The dataset features a quadcopter performing autonomous flight trajectories over realistic terrain imported from satellite imagery and Digital Elevation Model (DEM) maps of the Taif region in Saudi Arabia.
|
| 15 |
+
|
| 16 |
+
## Dataset Files
|
| 17 |
+
|
| 18 |
+
The dataset contains:
|
| 19 |
+
- **7 trajectory CSV files**: `traj_1_taif_map_data.csv` through `traj_7_taif_map_data.csv`
|
| 20 |
+
- **1 Digital Elevation Model**: `taif_DEM.tif` (GeoTIFF format)
|
| 21 |
+
|
| 22 |
+
### File Structure
|
| 23 |
+
```
|
| 24 |
+
traj_1_taif_map_data.csv
|
| 25 |
+
traj_2_taif_map_data.csv
|
| 26 |
+
traj_3_taif_map_data.csv
|
| 27 |
+
traj_4_taif_map_data.csv
|
| 28 |
+
traj_5_taif_map_data.csv
|
| 29 |
+
traj_6_taif_map_data.csv
|
| 30 |
+
traj_7_taif_map_data.csv
|
| 31 |
+
taif_DEM.tif
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Data Characteristics
|
| 35 |
+
|
| 36 |
+
### Flight Telemetry Data (CSV Files)
|
| 37 |
+
Each CSV file contains synchronized flight measurements with the following columns:
|
| 38 |
+
|
| 39 |
+
| Column | Description | Unit |
|
| 40 |
+
|--------|-------------|------|
|
| 41 |
+
| `timestamp` | Unix timestamp with nanosecond precision | ns |
|
| 42 |
+
| `tx`, `ty`, `tz` | 3D position coordinates in local frame | m |
|
| 43 |
+
| `vel_x`, `vel_y`, `vel_z` | Linear velocities | m/s |
|
| 44 |
+
| `orientation_x`, `orientation_y`, `orientation_z`, `orientation_w` | Quaternion orientation | - |
|
| 45 |
+
| `angular_vel_x`, `angular_vel_y`, `angular_vel_z` | Angular velocities | rad/s |
|
| 46 |
+
| `linear_acc_x`, `linear_acc_y`, `linear_acc_z` | Linear accelerations | m/s² |
|
| 47 |
+
| `latitude`, `longitude` | GPS coordinates | degrees |
|
| 48 |
+
| `altitude` | GPS altitude | m |
|
| 49 |
+
| `lidar_range` | LiDAR distance measurement | m |
|
| 50 |
+
| `AMSL` | Altitude above mean sea level | m |
|
| 51 |
+
|
| 52 |
+
### Digital Elevation Model (taif_DEM.tif)
|
| 53 |
+
- **Format**: GeoTIFF Digital Elevation Model
|
| 54 |
+
- **Coverage**: Taif region terrain corresponding to all flight trajectories
|
| 55 |
+
- **Source**: Generated from real satellite imagery and DEM data
|
| 56 |
+
- **Application**: Provides terrain elevation reference for localization algorithms
|
| 57 |
+
|
| 58 |
+
### Data Sample
|
| 59 |
+
```
|
| 60 |
+
timestamp,tx,ty,tz,vel_x,vel_y,vel_z,orientation_x,orientation_y,orientation_z,orientation_w,angular_vel_x,angular_vel_y,angular_vel_z,linear_acc_x,linear_acc_y,linear_acc_z,latitude,longitude,altitude,lidar_range,AMSL
|
| 61 |
+
993.128,-251.516708374023,-45.2020683288574,213.485137939453,5.11164286075962,0.045598402309674,0.220133052308578,0.023194692263158,0.003760659242595,-0.99578133623088,0.088699054215541,0.003482932690531,0.020824493840337,0.000891029543709,-0.57949709892273,0.020221803337337,9.83791255950928,21.2853756,40.2180381,1111.32048684451,213.142578125,1105.18774414063
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
## Simulation Environment
|
| 65 |
+
|
| 66 |
+
- **Flight Controller**: PX4 autopilot with realistic flight dynamics
|
| 67 |
+
- **Simulator**: Gazebo physics simulation
|
| 68 |
+
- **Framework**: ROS2 for data collection and sensor integration
|
| 69 |
+
- **Terrain Source**: Real-world satellite imagery and elevation data from Taif region
|
| 70 |
+
- **Vehicle**: Simulated quadcopter with onboard sensors
|
| 71 |
+
|
| 72 |
+
## Applications
|
| 73 |
+
|
| 74 |
+
This dataset is designed for research in:
|
| 75 |
+
- **Inertial Navigation Systems (INS)** development and testing
|
| 76 |
+
- **Terrain-based UAV localization** algorithms using elevation data
|
| 77 |
+
- **GPS-aided navigation** system validation
|
| 78 |
+
- **Multi-modal sensor fusion** techniques (IMU, GPS, LiDAR)
|
| 79 |
+
- **Flight trajectory analysis** and planning
|
| 80 |
+
- **Autonomous navigation** algorithm development
|
| 81 |
+
|
| 82 |
+
## Technical Specifications
|
| 83 |
+
|
| 84 |
+
### Flight Characteristics
|
| 85 |
+
- **7 distinct trajectories** with varying flight patterns
|
| 86 |
+
- **Precise time synchronization** across all sensor modalities
|
| 87 |
+
- **6DOF pose ground truth** available for algorithm benchmarking
|
| 88 |
+
- **Multi-sensor data fusion** including IMU, GPS, and LiDAR
|
| 89 |
+
|
| 90 |
+
### Terrain Characteristics
|
| 91 |
+
- **Desert-like terrain** with challenging navigation conditions
|
| 92 |
+
- **Realistic elevation profiles** from actual geographic data
|
| 93 |
+
- **Elevation-based localization** opportunities using DEM data
|
| 94 |
+
|
| 95 |
+
## Limitations
|
| 96 |
+
|
| 97 |
+
- **Sensor Coverage**: Current version includes IMU, GPS, and LiDAR data only
|
| 98 |
+
- **Terrain Type**: Limited to desert environment characteristics
|
| 99 |
+
- **Single Region**: Data collected over Taif region only
|
| 100 |
+
|
| 101 |
+
## Future Dataset Versions
|
| 102 |
+
|
| 103 |
+
### Planned Additions
|
| 104 |
+
- **Camera Images**: Complete image sequences from onboard cameras will be uploaded in the next version
|
| 105 |
+
|
| 106 |
+
## Usage Notes
|
| 107 |
+
|
| 108 |
+
1. **Data Alignment**: All measurements in each CSV file are time-synchronized
|
| 109 |
+
2. **Coordinate Systems**: Position data (tx, ty, tz) is in local simulation frame
|
| 110 |
+
3. **Terrain Context**: Use `taif_DEM.tif` for elevation reference and terrain-based localization
|
| 111 |
+
4. **Multiple Trajectories**: Each CSV represents a complete autonomous flight mission
|
| 112 |
+
5. **Future Updates**: Camera images will be added in a future version of this dataset
|
| 113 |
+
|
| 114 |
+
## Data Quality
|
| 115 |
+
|
| 116 |
+
- **Ground Truth Accuracy**: Complete 6DOF pose information for validation
|
| 117 |
+
- **Realistic Physics**: PX4 autopilot provides authentic flight dynamics
|
| 118 |
+
- **Synchronized Sensors**: All data streams precisely time-aligned
|
| 119 |
+
- **Validated Terrain**: Elevation model derived from verified satellite sources
|
| 120 |
+
|
| 121 |
+
## Citation
|
| 122 |
+
|
| 123 |
+
If you use this dataset in your research, please cite:
|
| 124 |
+
```
|
| 125 |
+
@article{JARRAYA2025106613,
|
| 126 |
+
title = {OS-RFODG: Open-source ROS2 framework for outdoor UAV dataset generation},
|
| 127 |
+
journal = {Results in Engineering},
|
| 128 |
+
volume = {27},
|
| 129 |
+
pages = {106613},
|
| 130 |
+
year = {2025},
|
| 131 |
+
issn = {2590-1230},
|
| 132 |
+
doi = {https://doi.org/10.1016/j.rineng.2025.106613},
|
| 133 |
+
url = {https://www.sciencedirect.com/science/article/pii/S2590123025026829},
|
| 134 |
+
author = {Imen Jarraya and Mohamed Abdelkader and Khaled Gabr and Muhammad Bilal Kadri and Fatimah Alahmed and Wadii Boulila and Anis Koubaa},
|
| 135 |
+
keywords = {UAV localization, Dataset generation, ROS2 framework, Geospatial mapping, Sensor data synchronization},
|
| 136 |
+
```
|