Skip to main content

Adaptive Voronoi Mapping

User-focused visualisation of very large labelled spatial datasets.

Given millions of geolocated points, each carrying a binary class label (0 or 1), plotting every point produces an unreadable, overplotted smear. This package instead builds an adaptive Voronoi map: it refines the domain finely where the two classes meet and coarsely where one class dominates, then summarises each region by its majority class. The result is a compact, legible picture of where each class prevails — a map the eye can read at a glance.

raw overplotted points versus the adaptive Voronoi map and its region edges

Left: 60,000 labelled points, overplotted into noise. Middle: the adaptive Voronoi map — one crisp boundary. Right: the region edges, automatically fine along the class boundary and coarse in the uniform interior.

Why Voronoi — and why it suits the human eye

This is the idea behind the master's thesis "Çok Büyük Konumsal Verinin Kullanıcı Odaklı Görselleştirilmesi" (user-focused visualisation of very large spatial data). "User-focused" means built for human perception: the goal is not a pixel-perfect scatter but a picture the visual system parses effortlessly.

Voronoi tessellations are a natural fit because the eye already reads them everywhere — a giraffe's coat, cracked soil, the veins of a leaf are all Voronoi-like partitions of space into locally-dominant cells:

Voronoi-like tessellations in nature: giraffe coat, cracked soil, leaf venation

By collapsing a dense point cloud into majority-class Voronoi regions — small where detail matters (class boundaries), large where it does not — the map matches how people naturally segment a scene into regions, instead of asking them to integrate millions of overlapping dots.

How it works

  1. Adaptive quadtree partition (quadtree.py). The domain is covered by a uniform grid of square cells; each cell is recursively split into four quadrants while it is too sparse (point density below min_density) or too mixed (class dominance below min_dominance), stopping at max_depth. Cells therefore cluster around class boundaries and stay large in uniform areas.
  2. Voronoi diagram (mapping.py). One seed is dropped inside each leaf cell and a Voronoi diagram is built over the seeds (plus four far-away frame points that bound the outer regions).
  3. Region colouring (mapping.py). Every data point is assigned to its nearest seed via a ball tree; each region is coloured by the majority class of the points inside it — green for class 0, red for class 1, blue where empty.
  4. Neighbour filter (optional). A region whose coloured neighbours are all the opposite class is flipped, removing isolated speckles.
  5. Rendering (plotting.py) with matplotlib — optional region edges, overlaid raw points, and a background image.

An average_entropy metric (point-weighted mean binary entropy per region) quantifies how class-pure the resulting map is; lower is better, and it lets you compare parameter settings objectively.

Install

pip install adaptive-voronoi-mapping

Requires Python ≥ 3.9 (numpy, scipy, scikit-learn and matplotlib are pulled in automatically).

From a checkout, for development:

pip install -e .

Quick start

Straight after pip install, with no data of your own, produce a map in one command:

avmap --demo        # builds a synthetic dataset and saves avmap-demo.png

From a repo checkout you can also reproduce the header figure:

python examples/demo_synthetic.py     # writes assets/hero.png

A real dataset ships with the repo (clone it to get the file — it lives under examples/ and is deliberately left out of the pip wheel): examples/worlddatas.txt, ~245k labelled world points that the world preset is tuned for. A pip install-only user brings their own row col label file instead.

# from a repo checkout: run the bundled real dataset with a ready-made preset
avmap examples/worlddatas.txt --preset world --save world.png

# or set parameters explicitly
avmap mydata.txt --height 180 --width 360 --cell-size 30 \
      --max-depth 6 --min-density 17 --min-dominance 0.4 --filter --entropy

Library:

from adaptive_voronoi import read_points, build_map, plot_map, PRESETS
import matplotlib.pyplot as plt

points = read_points("examples/worlddatas.txt")
vmap = build_map(points, **PRESETS["world"]["build"])
plot_map(vmap, points=points, **PRESETS["world"]["plot"])
plt.show()

Data format

One point per line — three whitespace-separated integers:

row col label

row and col are integer coordinates scaled by scale (100 in the thesis datasets, i.e. hundredths of a degree); label is 0 or 1.

Presets

Three presets (turkey, world, airpollution) reproduce the thesis experiments — each bundles the domain size and refinement parameters for one dataset. Explicit CLI flags override any preset value.

Origin & credits

This is a clean reimplementation of the code behind the thesis above; the algorithm and behaviour are unchanged — only the code was reorganised for clarity and packaging. The three nature photographs are illustrative external images included only to motivate the Voronoi idea (they are not produced by this code and are not part of the dataset pipeline).

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adaptive_voronoi_mapping-0.1.1.tar.gz (14.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adaptive_voronoi_mapping-0.1.1-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file adaptive_voronoi_mapping-0.1.1.tar.gz.

File metadata

  • Download URL: adaptive_voronoi_mapping-0.1.1.tar.gz
  • Upload date:
  • Size: 14.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for adaptive_voronoi_mapping-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c354e0f24291f28e72536e3350339f789b67ae516a53b5cd148920a14f4ea585
MD5 88ec4f37e971baee701d3ef2f163cd65
BLAKE2b-256 64c888ae2e10c68d20a4687e7378f3deec8108b51709b10b68b13a0cb0a60e8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaptive_voronoi_mapping-0.1.1.tar.gz:

Publisher: release.yml on tekinertekin/adaptive-voronoi-mapping

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adaptive_voronoi_mapping-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for adaptive_voronoi_mapping-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ff7ffc135e7620e7d938763a8ac8d6a8610c1fc91cb2f6f78c5a0ef5362b85d5
MD5 aa34cfa5dae3975f12bde838b21a4be6
BLAKE2b-256 cdc4ffd7502c2a92ad15f6d9eaa22c5bb55dd623ef036e38988292443cdd01b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaptive_voronoi_mapping-0.1.1-py3-none-any.whl:

Publisher: release.yml on tekinertekin/adaptive-voronoi-mapping

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page