Quadtrees

Pragya Sapkota
2 min readJan 25, 2023

We might have heard about Octrees a few times. It is a tree data structure that is used for the partition of three-dimensional space. What most of us don’t know is that octrees also have a two-dimensional analog called Quadtrees. Where octrees had eight children for each node, quadtrees limits to four. A two-dimensional space is repeatedly divided into four quadrants where each of which acts as a node with spatial information. The longitude and latitude are represented as cartesian coordinates (x, y), and search the points efficiently.

When we already have latitudes and longitudes, why do we need quadtrees?

This is a question many people have on their minds. Let’s see what’s the difference when we use quadtrees over longitude and latitude.

While using coordinates of latitude and longitude, we need to use Euclidean distance to calculate close location points. However, when there are large data sets, it shows CPU-intensive nature. This makes the use of coordinates in the real-time system not scalable.

Geohashing also helps us save extra computational operations because it only divides a node after a certain threshold. In addition, with the use of some mapping algorithms like the Hilbert Curve, the range query performance is also improved.

Types of Quadtrees

The types of quadtrees depend on the data that needs to be represented like areas, points, lines, curves, etc. Some of the most common quadtrees types are listed below: -

  • Edge Quadtrees
  • Point Quadtrees
  • Point-region (PR) Quadtrees
  • Compressed Quadtrees
  • Polygonal Map (PM) Quadtrees

Use Cases of Quadtrees

Let’s view some of the use cases of quadtrees.

  • Spatial Indexing
  • Range Queries
  • InDriver, Pathao, etc. (location-based services)
  • Mesh Generation
  • Computer Graphics
  • Sparse Data Storage
  • Image representation, processing, and compression

I hope this article was helpful to you.

Please don’t forget to applaud this article and follow me!!!

Any kind of feedback or comment is welcome!!!

You can also subscribe to my stories via email so that you’ll get notified whenever I bring out an article on a new subject.

Thank you for your time and support!!!!

Keep Reading!! Keep Learning!!!

--

--