XKCD Click and Drag

20 thoughts
last posted Sept. 20, 2012, 12:33 a.m.
0
get stream as: markdown or atom
0

XKCD's Click and Drag is a wonderfully massive drawing with all sorts of hidden gems in it if you're willing to, well, click and drag.

0

The drawing is divided into 2048 x 2048 pixel tiles.

0

Each tile has a file name of the form

<number>(n|s)<number>(w|e).png
0

I wrote a quick Python script that starts at 1n1e and successfully attempts to load in each of four directions (keeping track of where it's already been) to explore the entire contiguous tile set.

0

The full extent seems to be 8n and 19s in the vertical and 33w and 48e in the horizontal.

That means an 81 x 27 tile extent (or 2,187 possible tile locations).

0

There are, however, 212 actual tile locations that don't 404. That's still 889,192,448 pixels!

0

First attempt at showing which locations in the overall extent actually have tiles:

0

I'm suspicious I haven't got it right yet, though, as there's nothing in the lower half.

0

Attempting a brute-force retrieval without requiring contiguity.

0

Doing a brute-force retrieval resulted in 225 tiles instead of 212.

0

Without requiring contiguity, here are the tile locations:

0

With the extra 13 tiles, that means the pixel count is actually 943,718,400 (although that's just the locations for which there are tiles; arguably there are "pixels" in the white areas above too)

0

27 x 81 x 2048 x 2048 = 9,172,942,848

0

Hmm, looks like a bug is causing the symmetry, not the data.

0

Here is a (hopefully bug-free) version of where the tiles are:

0

Here's a 1/64th scale version (which this site will further scale to fit the card):

Full 1/64th scale version at:

http://cl.ly/image/352L0Y2g2X06

0

David Glick has pointed out there's a 13n1e which goes against my earlier comment about 8n being the "north"-most extent. Recalculating some pictures now...

0

Fixed the northern extent and flipped the polarity below "sea-level":

0

I haven't stated it explicitly here yet, but "north" locations default to all white if no tile and "south" locations default to all black if no tile.