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

Reproduce the header figure end-to-end on a generated dataset (no data needed):

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.0.tar.gz (13.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.0-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: adaptive_voronoi_mapping-0.1.0.tar.gz
  • Upload date:
  • Size: 13.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.0.tar.gz
Algorithm Hash digest
SHA256 1a2bead9e5dbb1178e69b23d86a6433f47924289bcee3f14e12c22d5160da796
MD5 f7ab1d1c5cb80aad9d5c716468c8a4cb
BLAKE2b-256 803009efdd5f9e6c6b730102f827b7ae7410d16c5d256fb59937c96627d61d91

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaptive_voronoi_mapping-0.1.0.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.0-py3-none-any.whl.

File metadata

File hashes

Hashes for adaptive_voronoi_mapping-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f5089e1083c908e9a8663b7d0a4d2ac041a63b6bfe675b85948b0a7603f467a9
MD5 54370b5b3106752bcc38df194139d035
BLAKE2b-256 8d5f5b38528c1264ba987a6a3099f707b1508e500cfc7e256f92290f1bd03919

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaptive_voronoi_mapping-0.1.0-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