#📝 Note: Geo-Hashing

#Overview

Geohash encodes a (latitude, longitude) pair into a short alphanumeric string. Strings sharing a common prefix occupy the same geographic region — enabling efficient proximity queries via simple string prefix matching.

#Core Idea

Length Cell Width Cell Height
4 ~39 km ~20 km
5 ~5 km ~5 km
6 ~1.2 km ~0.6 km
7 ~153 m ~153 m
8 ~38 m ~19 m

#When to Use

#When NOT to Use

#Trade-offs

#Used In This Repo