Creating Your First Dataset
This guide walks you through creating and sharing your first dataset using DroneDB.
Prerequisites
- CLI installed or Registry running
- A folder containing geospatial data (images, orthophotos, point clouds, etc.)
Option 1: Using the CLI
1. Initialize a DroneDB index
Navigate to your data folder and initialize the index:
cd /path/to/your/data
ddb init
2. Add files to the index
ddb add *.tif *.jpg
DroneDB will automatically extract metadata (GPS, EXIF, sensor data) and classify each file.
3. Share to Hub
ddb share *.tif *.jpg
This will:
- Prompt you for your Hub credentials (or use a config file)
- Upload files to Hub
- Return a shareable link
To share to a self-hosted Registry:
ddb share *.tif -s http://localhost:5000
Option 2: Using the Web UI
- Login to Hub or your self-hosted Registry
- Create a new dataset in your organization
- Drag and drop files into the file browser
- Registry will automatically process and optimize them
Verify Your Dataset
After uploading, you can:
- View images on the synchronized map
- Inspect metadata in the detail panel
- Measure distances on orthophotos
- Visualize point clouds in 3D
Next Steps
- Learn about CLI commands
- Explore advanced features like multispectral and terrain analytics
- Configure OGC services for QGIS integration