i got better

I’ve talked about this before: Parts I & II.

The above shows the latest results of my circular cartogram algorithm. It’s just a few steps away from being complete, at which point I’ll post the Python code here. Here’s what I’ve done between the First and Latest attempts.

Better definition of “neighbors”.

I now loop through each feature’s points to determine whether they match with another feature’s. Once two features are found to share two points, they are considered neighbors, and I move on to the next feature. This takes a bit of processing time, but WAY less than actually determining the entire shared border length.

I still use inverse distance between centroids to determine the strength of attraction. As mentioned in the previous post, this is a much easier (computationally) method than using the length of shared border.

Projected centroids

Previously, I was using raw lat-long as the x-y coordinates of the centroids. This worked, but harmed the resulting aesthetic. Now, before beginning the actual cartogram algorithm, I project all nodes, and use these to determine a more accurate centroid. I’m currently using Mercator, just because it was the easiest to code, but I’ll probably switch to an equivalent projection later.

What still needs to be done

Spherical distance for inverse distance between centroids

I’m currently using the Pythagorean theorem on raw lat-long coordinates to determine inverse distance between centroids. A more accurate method would be to calculate distance along the sphere, or even the ellipsoid. The formulas are easy (indeed, in the amount of time it took to write this paragraph, I probably could have switched over).

“True” polygon centroids

I’m currently just averaging all polygon nodes to determine the centroids. For another project, though, I’ve already calculated the “true” polygon centroid (using the largest ring for each feature — props to this site for the formulas).

Other issues

Though this is going really well, and I’ll be releasing the code soon, there are a couple somewhat major issues. First, the neighbor calculation mentioned above can be computationally intensive for really large, high-res shapefiles. For the British counties, it only takes about a second, but for a 3.6 mb world countries shapefile, it takes almost a minute. I’ll likely need to port that part of the code to C if I want to open it up to bigger shapefiles.

Second, the algorithm currently only works with contiguous features. So Great Britain (even with a few islands) works fine. But we run into problems with multi-continent features. I’ll need to build in some kind of group or continent detection later.

Stay tuned!

2 Comments

  1. Hi there,

    would it be possible to try the Phyton script out? We would be very much interested!

    Thanks!

    Stefan Schwarzer
    Posted January 19, 2009 at 6:19 am | Permalink
  2. Any chance you could publish those python scripts? Thanks!

    Alex Yule
    Posted May 26, 2009 at 5:22 pm | Permalink

4 Trackbacks

  1. [...] NY Times. That said, Eric Wolf’s work is a great achievement. It’s just great to see more cartogram algorithms implemented in Python. Tagged algorithm, cartograms, [...]

  2. By indiemaps.com/blog » cartogram blog roundup on June 2, 2008 at 11:42 pm

    [...] addition to my discussion of my own modest efforts at programming cartograms, there’s been quite a bit of attention paid in the blogosphere to [...]

  3. By indiemaps.com/blog » free cartograms on September 1, 2008 at 11:59 pm

    [...] the computational intensity of cartogram construction. Some, though, are written in Python, as is my circular cartogram algorithm and Eric Wolf’s rubber-sheet algorithm. Perhaps next I’ll do a post on the freely [...]

  4. By indiemaps.com/blog » dorling.py on February 21, 2009 at 10:08 pm

    [...] (see county.in). I’ve done some more experiments with the circular cartogram algorithm: here, here, and most recently [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *