---
answer: direct
beat: system-design
source: 1 article · updated: August 18, 2026
---

Can you describe a concrete lookup for finding nearby drivers?

Hash the rider's coordinates to their H3 cell at precision 9 (roughly 174 meters). Extract the level-8 parent cell to identify the region. Query a hash table for the six level-8 neighbor cells. Drivers indexed by cell ID are found in microseconds—no distance math, no sorting, just table probes.

Answered in

Why Uber Tiles the Planet in Hexagons

Hexagons with equidistant neighbors replace lat/long trigonometry with O(1) table lookups for finding nearby drivers and calculating surge pricing.

Crashtech Editorial August 18, 2026 System Design

Read the full analysis

Other questions this article answers

More system design questions

Every answer on Crashtech is written by the editor of the article it comes from — never auto-summarised. Browse all answers or the System Design beat.