Lake Atitlan, Guatemala
Software development 

ZoomWorld

This is a simple experiment I created, with a computer simulated map that has a very deep zoom. It uses procedural generation to randomly create a base map, and then adds details as you zoom into the map.

You can try it here: ZoomWorld.



The idea is to have a world where detail is only created when you need to see it. Then you can have a truly enormous world, but still have it fit inside a small amount of computer memory. The above world is three times the surface of the sun.

It starts by creating a map of colored 256x256 tiles, with random elevation and humidity values. When you zoom in one step, each tile is split in four (called a "quad tree"). The top left sub tile becomes a copy of the parent tile, and the other three get their elevation and humidity from an average of the adjacent tiles, plus a random value.

Elevation below zero is classified as waters. Waters greater than a specific size are oceans (deep blue), the rest are lakes (pale blue). Lowland areas are forests (normal humidity, green) or deserts (low humidity, yellow). Gray are mountains and white are mountain tops.

It is fascinating to zoom in and see how more and more detail is created. Imagine having it zoom in on a rich detailed world with forests, cities and people, all procedurally generated on the fly.

« ‡ »