Painting by numbers

Cover picture

Hi, Elana here. At Datawrapper, I’m typically found on the other end of our support@datawrapper.de inbox, helping you with all your charting, mapping, and data-wrangling questions.

In my day-to-day work, I spend my time thinking about how to use Datawrapper to best create high-quality visualizations that are engaging and communicate a clear message.

On my own time though, I find myself using Datawrapper in rather unintended ways. A particular hobby of mine: transforming images into chartable datasets. In case you missed them, check out my past creations:

To be honest, I was kind of running out of ideas, and then I realized, I had completely neglected a huge part of Datawrapper: maps.

three Datawrapper map types

Datawrapper offers three map types. Two of those: symbol, and locator maps allow you to precisely position symbols on a map by coordinate. That could certainly work nicely for my purposes, but seemed just a bit too simple.

A choropleth map, on the other hand, where geographical regions get colored according to a dataset – now that sounded more intriguing.

What if I could somehow use a map’s regions as my image pixels? What would that look like?

See for yourself. Can you recognize these famous city landmarks?

I think the results are pretty interesting. Although they’re programmatically generated, there’s a human abstractness that emerges through the human-made geographical boundaries. Each map is messy in its unique human way.

Generating the dataset

This would not have been possible without a bit of code. To generate the datasets and create the maps, I built myself a little tool that would:

  • Take an image and a GeoJSON file as the input
  • Save the position, and red, green, and blue values for each of the image’s pixels (using HTML canvas)
  • Render the map (using d3.js)
  • For each map region, collect all the pixels that would be positioned within its bounding box
  • Calculate the average color of each of region’s pixels (using my colleague Gregor’s fantastic library for working with colors, chroma.js)
  • Save all the data to a CSV, and upload it to Datawrapper
dataset in Datawrapper UI
  • Loop through all the color categories, and define the colors
Custom colors Datawrapper UI

And that’s essentially it! If you’d interested in me making this publicly available, let me know.

Some final thoughts

In the above maps, I colored each region according to explicit categories. With colors taken directly from the source images. Often though, choropleth maps are colored using a color scale that corresponds to numeric data. This is something that I could have experimented with further.

For example, here we see the same map of New York, with the regions colored according to the numeric luminance column instead.

Map colored by luminance

I included the red, green, blue, and luminosity (brightness) of each region in the map datasets, so if you hover over one of the maps and click Edit this chart you can experiment with different color scales for yourself!


I hope you enjoyed this! Next Thursday you can expect a Weekly Chart by our developer Fabian. See you then!

Comments