Trusted answers to developer questions

What is a Quadtree & how is it used in location-based services?

Get Started With Data Science

Learn the fundamentals of Data Science with this free course. Future-proof your career by adding Data Science skills to your toolkit — or prepare to land a job in AI, Machine Learning, or Data Analysis.

Quadtrees

Quadtrees are a knowledge structure that encodes a two-dimensional space into adaptable cells. Similar to binary trees, quadtrees are a tree structure where every non-leaf node has four children. In the Quadtree data structure, every internal node has four children. They are usually a bi-dimensional analogue of octrees that are used for the division of a two-dimensional space by repetitively subdividing it into four quadrants.

Within the location, these nodes show the four quadrants:

  • NorthWest
  • NorthEast
  • SouthWest
  • SouthEast

During the technique of quadtrees, nodes are recursively divided into pieces, with successive subdivisions leading to smaller and smaller cells.

When are Quadtrees used for?

Quadtrees are used for scaling an internet service to handle thousands of requests every second. This requires an excellent caching strategy. When geolocationlatitude and longitude is the main parameter of those requests, conventional caching techniques and procedures fall through. Quadtrees are used to understand high cache hit ratios, while also keeping the responses relevant, even in intense areas.

Dynamic grids

While 10km cells are overlarge to use in urban areas, there are many less dense areas outside of cities where two locations a couple of kilometres apart would have an equivalent list of 20 nearby Xone businesses. Ideally, we’d be able to use large, imprecise cells in sparse areas and smaller, more granular cells in dense areas.

Often a quadtree is represented as a grid, with each square representing a node within the tree. The subsequent image visualizes the method of subdividing nodes during a quadtree, starting with a uni-root node and finishing with a tree of depth:

Quadtree as a Grid

We use quadtrees to keep a balance among the precision and validity of results. But let’s say we wish to create a tree in which each leaf node is exact enough to search for a specific location within the node in the same group.

We can do this by developing a tree that begins with one node that is shown to the entire world and subsequently divides until every node satisfies this eligibility. The best case is when a tree that is precise has few nodes. This can attenuate the number of entries in the cache.

The following image shows the finished quadtree near Denver, CO to represent how quadtree depth changes with population intensity:

Colorado, USA
Colorado, USA

Auto-Update

Every night we recompute the quadtree to support our currently subscribed businesses. We use an easy heuristic to satisfy the criteria of consistent search results. If the number of search results entered on a node exceeds a predefined threshold, then we divide it further.

//
public static void buildQuadtree(Node node) {
if (searchBusinesses(node).size() > 20) {
node.subdivide();
for (Node child : node.getChildren()) {
buildQuadtree(child);
}
}
}

Quadtrees in action

When our server receives an invitation for businesses in a location, we first find the quadtree node for that location:

public static void getNearbyBusinesses(float latitude, float longitude)

Then, we use that node to create the cache key, and if necessary, to look for businesses:

// Demo code to extract nearby Business
public static void getNearbyBusinesses(float latitude, float longitude) {
QuadtreeNode node = LookupQuadTreeNode(latitude, longitude);
String cacheKey = "quadtree_" + node.getId();
List<Result> results = Cache.get(cacheKey);
if (results == null) {
results = searchBusinesses(node);
Cache.set(cacheKey, results, "2h");
}
render(results);
}

The search method that is applied in cache miss is identical to the search that is performed when creating the cache tree. The search is also centered on each node with a radius that is proportional to the dimensions of the node.

Conclusion

Quadtrees allow us to mix the advantages of caching the geo-locations with both high and low precisions. Against an 18 percentage cache hit ratio, we gained truncating locations up to 3 decimal places by using quadtrees. On peek time, it resulted in cache hit ratio of more than 99.9%.

Cache hit ratio graph
Cache hit ratio graph

RELATED TAGS

quad tree
location
data structures
Did you find this helpful?