How LiDAR Works
LiDAR (Light Detection and Ranging) is like sonar but uses laser light instead of sound. It sends out rapid laser pulses and measures how long each pulse takes to bounce back. With the speed of light known, distance = (speed × time) / 2.
Think of it like throwing a ball at a wall and timing the bounce-back — except LiDAR does this millions of times per second with light.
ToF vs FMCW LiDAR
There are two main LiDAR technologies:
Time-of-Flight (ToF): Measures the round-trip time of a single laser pulse. Simple, reliable, used in most drone LiDARs (Velodyne, Livox, DJI L1).
Frequency-Modulated Continuous Wave (FMCW): Uses a continuously modulated laser. It can measure velocity simultaneously with distance — like how a police radar detects speed, not just distance.
LiDAR Scanning Patterns
Different LiDARs scan the environment in different ways. The choice affects coverage, resolution, and suited applications.
Point Cloud Data
A LiDAR produces a point cloud — a collection of 3D points (x, y, z) with optional intensity values. Each point represents one laser return.
Point Cloud Visualization Pipeline
LiDAR Specifications for Drones
| Spec | Hobby Grade | Survey Grade | Top-end |
|---|---|---|---|
| Range | 10-30m | 100-300m | 300m+ |
| Points/sec | 10K-100K | 100K-1M | 1M+ |
| Accuracy | ±3-5cm | ±1-2cm | ±1cm |
| Weight | 50-200g | 500g-2kg | 2kg+ |
| Examples | RPLidar A1 | DJI L1 | Velodyne VLP-16 |
Hands-On Project: LiDAR Point Cloud Viewer
Create a simple point cloud visualizer and ground-plane detector:
Key Takeaways
- LiDAR measures distance using laser light (ToF or FMCW)
- Scanning patterns determine coverage: mechanical (360°), MEMS (raster), Flash (full frame)
- Point clouds are collections of 3D points with optional intensity
- Processing pipeline: raw → filter → segment → register → mesh
- Popular drone LiDARs: RPLidar (hobby), DJI L1/L2 (survey), Livox (mid-range)