Skip to main content

Prism maps in Google Earth and UUorld

In an earlier post, I showed how KML can be used to create 3D choropleth maps or prism maps. A prism map is a statistical surface map viewed in perspective (1). It's the recommended way of visualising numerical data using choropleth mapping (2). See these examples showing internet users in the world:

This choropleth map shows the number of internet users per 100 population in 2005 (see this post for more information about the map). Even though it's possible to see that one shade is lighter or darker than another, it's impossible to see that the shade for one country is twice as dark as another. It's better to use this type of choropleth maps with nominal or ordinal data, and not numerical data (interval or ratio measurements).

This image shows the same data visualised in Google Earth (the problem with holes in extruded polygons is described here). The height (and colour) is proportional to the percentage of internet users. This prism map portray ratios correctly, - a country having twice as many internet users (in percent) as another will be represented by a prism twice as high. The advantage of using Google Earth is that the globe is easily rotatable in all directions, and the user can thereby avoid the problem that tall prisms sometimes block smaller prism. But the globe view can also be challenging, as it's not possible to see the whole world at a glance.

UUorld has specialised in animated prism maps. Instead of using a globe, the units are extruded from a flat surface. The surface can be zoomed, tilted and rotated in every direction. This video shows the capabilities of UUorld, and also an alternative view when visualising raw totals instead of percentages. I will later show how prism maps can be animated in Google Earth.

An alternative to prism maps is to use proportional symbols or pie charts. The size of the chart could be proportional to the total population, while the pie chart could show the percentage of internet users.

References
1. Multimedia Cartography, 1995, William Cartwright, Michael P. Peterson and Georg Gartner, Springer
2. Thematic Cartography and Geographic Visualization, Second Edition 2005, Terry A. Slocum et al., Pearson Education, Inc

Comments

Anonymous said…
Hi,

Nice results in Google, but I diasgree with this:

"it's impossible to see that the shade for one country is twice as dark as another. It's better to use this type of choropleth maps with nominal or ordinal data, and not numerical data (interval or ratio measurements)."

You're talking about classed vs. unclassed represeentation (e.g. classed vs. unclassed choropleth maps). A lot of research and experience has shown that classed choropleth maps are very valid for interval and ratio data.

So, if you only have color at your disposal, I think the classed map works just fine (and i'm against the unclassed method). I do like the use of extrusion/prisms, and I agree that it lends itself well to rotation/viewing from multiple angles in GE.... you are being redundant though by using color and prism height to show the same variable. It might be more interesting (and complicated!) to use the height to show something else to compare to internet usage.

Have you seen this site for color thematic mapping color advice?

http://www.colorbrewer.org

Nice work,

-Cory
Bjørn Sandvik said…
Hi Cory,

Thanks for your feedback. I agree that a classed choropleth map (and a legend) might be an option, especially if you only have colour as your disposal. I'll dig into data classification shortly.

Why are you against the unclassed method? Shouldn't it be in the choropleth toolbox?

I think the view is enhanced by using two visual variables (height and colour) for represening the same variable. I'll look at bivarate mapping at a later stage, - and will test various ways of doing this in a geobrowser.

Thanks,
Bjorn

Popular posts from this blog

Creating a WebGL Earth with three.js

This blog post will show you how to create a WebGL Earth with three.js , a great JavaScript library which helps you to go 3D in the browser. I was surprised how easy it seemed when reading a blog post  by Jerome Etienne . So I decided to give it a try using earth textures  from one of my favourite cartographers, Tom Patterson . WebGL is a JavaScript API for rendering interactive 3D graphics in modern web browsers without the use of plug-ins. Three.js is built on top of WebGL, and allows you to create complex 3D scenes with a few lines of JavaScript. If your browser supports WebGL you should see a rotating Earth below: [ Fullscreen ] To be able to display something with three.js, you need three things: a scene, a camera and a renderer. var width  = window.innerWidth,     height = window.innerHeight; var scene = new THREE.Scene(); var camera = new THREE.PerspectiveCamera(45, width / height, 0.01, 1000); camera.position.z = 1.5; var rende...

Thematic Mapping Engine

It's time to introduce the Thematic Mapping Engine (TME). In my previous blog posts, I've shown various techniques of how geobrowsers can be used for thematic mapping. The goal has been to explore the possibilites and to make these techniques available to a wider audience. The Tematic Mapping Engine provides an easy-to-use web interface where you can create visually appealing maps on-the-fly. So far only prism maps are supported, but other thematic mapping techniques will be added in the upcoming weeks. The engine returns a KMZ file that you can open in Google Earth or download to your computer. My primary data source is UNdata . The above visualisation is generated by TME ( download KMZ ) and shows child mortaility in the world ( UNdata ). The Thematic Mapping Engine is also an example of what you can achieve with open source tools and datasets in the public domain: A world border dataset is loaded into a MySQL database . The same database contains tables with statistics ...

Creating 3D terrains with Cesium

Previously, I’ve used three.js to create 3D terrain maps in the browser ( 1 , 2 , 3 , 4 , 5 , 6 ). It worked great for smaller areas, but three.js doesn’t have built-in support for tiling and advanced LOD algorithms needed to render large terrains. So I decided to take Cesium for a spin. Cesium is a JavaScript library for creating 3D globes and 2D maps in the browser without a plugin. Like three.js, it uses WebGL for hardware-accelerated graphics. Cesium allows you to add your own terrain data, and this blog post will show you how. Impressed by the terrain rendering in @CesiumJS - with a 10m elevation model for Norway! Farewell Google Earth. pic.twitter.com/RQKvfu2hBb — Bjørn Sandvik (@thematicmapping) October 4, 2014 Compared to  the dying Google Earth plugin , it's quite complicated to get started with Cesium. The source code is well documented and the live coding Sandcastle is great, but there is a lack of tutorials  and my development slows down when ...