Home -> Examples
Live demos
Each demo pushes a different part of the engine: pre-baked tiles, windowed reads of a file too big to load, live math per request, vector tiles on a national grid most stacks can't touch, a live PostGIS database at continental scale, and (the odd one out) calling the engine straight from Python with no server at all. Open any card to see exactly how it's done, flag by flag, in plain English.

The whole country's official land-cover map: 842,000 shapes, no gaps. Served as pictures for QGIS and as vector tiles for the browser, at once.
See how it works ->
Every building outline in Spain and Portugal. A 3.8 GB file that opens in 4 MB of memory, because it reads only what you're looking at.
See how it works ->
Plant health computed on the fly from raw Sentinel-2 satellite bands. No pre-made image, no GDAL. Just the math, per tile.
See how it works ->
The same vector tiles served on the Swiss national grid, not Web Mercator, and precomputed on it. Also our most honest demo: watch a whole country fight a browser's memory, and see what we traded to win.
See how it works ->
Five countries queried live out of a 63 GB PostGIS database, on the EU's own grid (EuropeanETRS89_LAEAQuad, EPSG:3035) instead of Web Mercator. Precomputed where it's fast, live where it has to be.
See how it works ->
No server at all this time: render_png()
is the same engine as a plain Python call, byte-identical to the CLI, GIL released
for real parallelism. A v0.1.0 preview: raster only, vector and NDVI are next.