<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Indianapolis Museum of Art Blog &#187; Maps</title>
	<atom:link href="http://www.imamuseum.org/blog/tag/maps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imamuseum.org/blog</link>
	<description>The IMA blog is a space to discuss everything related to the Indianapolis Museum of Art.</description>
	<lastBuildDate>Fri, 20 Nov 2009 19:20:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>There&#8217;s more to color than meets the eye</title>
		<link>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/</link>
		<comments>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:47:38 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[art blog]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[demographics]]></category>
		<category><![CDATA[Ed Bachta]]></category>
		<category><![CDATA[ima]]></category>
		<category><![CDATA[IMA Dashboard]]></category>
		<category><![CDATA[Indianapolis Museum of Art]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[Museum Blog]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[visualization]]></category>
		<category><![CDATA[zip codes]]></category>

		<guid isPermaLink="false">http://www.imamuseum.org/blog/?p=3538</guid>
		<description><![CDATA[It has come to my attention that the tweets are out of the bag about the new interactive admissions map on the IMA dashboard. The map is a mashup of our admissions data using the Google Maps API and a zip code demographics resource called ZIPskinny. I thought that I would take some time today [...]]]></description>
			<content:encoded><![CDATA[<p>It has come to my attention that the tweets are out of the bag about the new <a href="http://dashboard.imamuseum.org/series/Admissions+Map" target="_blank">interactive admissions map</a> on the IMA dashboard. The map is a <a href="http://en.wikipedia.org/wiki/Mashup_(web_application_hybrid)" target="_blank">mashup</a> of our admissions data using the <a href="http://code.google.com/apis/maps/" target="_blank">Google Maps API</a> and a zip code demographics resource called <a href="http://zipskinny.com/" target="_blank">ZIPskinny</a>. I thought that I would take some time today to discuss the art and science of colormap selection that went into developing this visualization.</p>
<p style="text-align: center;"><a href="http://dashboard.imamuseum.org/series/Admissions+Map"><img class="size-medium wp-image-3540 aligncenter" title="Admissions Map" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/admissions_map-299x300.png" alt="Admissions Map" width="299" height="300" /></a></p>
<p><span id="more-3538"></span></p>
<p>First, a quick overview of some technical bits. The user can select a range of dates from the map interface, and a new set of markers is rendered after an AJAX query to the backend PHP code, which requests the data from our database and aggregates it at the zip code and state level. The decision to do this two level aggregation was based on the performance hit that would be taken in trying to render on the order of 7000 icons for a year&#8217;s worth of data on a nationwide map. The <a href="http://code.google.com/apis/maps/documentation/reference.html#GMarkerManager" target="_blank">MarkerManager</a> class (which used to be part of the core Google Maps API) is used to display one set of icons when zoomed inside of what might be called &#8220;state level&#8221; and another set when zoomed out further. This adds a bit of extra complexity to our colormap choice.</p>
<p>There are a number of ways that this data could have been mapped into visual symbols. The size or shape of the glyphs could be related to the number of admissions, for example. The method that we are using maps the number of admissions to color (when this mapping is stored, it is called a colormap). The particular mapping that we use is important, because some mappings are better than others for certain tasks. For the markers on the map, we use a colormap that smoothly transitions from a blue at the low end to a red at the high end. The particular choice of blue to red leverages our cultural understanding of blue as &#8220;cold&#8221; and red as &#8220;hot&#8221; (note that sometimes colormap choice depends on cultural interpretation), a metaphor which works well as a representation of low vs. high admission rates. The combination of these two choices allows us to understand the general trends in the data without needing to refer back to the legend frequently. The drawback is that it is a bit more difficult to compare the value of two individual markers than it would be if we had picked a colormap of more distinct hues such as {red, orange, yellow, green, blue, purple}. We tried to make it easier for the viewer to make comparisons by limiting the number of colors in our legend.</p>
<p>The next important choice is how exactly to map the number of admissions to a particular color. To do this well, an understanding of the distribution of the data is necessary. Intuitively, we would expect that there will be high admissions numbers for the zip codes closest to the museum, and the trend will be toward increasingly lower admissions from more distant zip codes, and likely there will be many zip codes with very low, but non-zero admissions numbers. The best way to look at this objectively is with a <a href="http://en.wikipedia.org/wiki/Histogram" target="_blank">histogram</a>. I will take a number of approaches with the data from the year 2008, for which the highest raw admission count for a zip code was 12,375 (during the aggregation, 9 digit zip codes are merged into 5 digit zip codes, resulting in slightly higher numbers in some instances), out of 6806 zip codes.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3545" title="Linear" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear-300x204.png" alt="Linear histogram" width="300" height="204" /></p>
<p>This first histogram segments the zip codes into buckets in a linear fashion, with each bucket representing 10% of 12,375. As you can see, the vast majority of the zip codes end up in the first bucket. If we used 10 colors with this linear mapping, almost all of the glyphs would be blue. It would be great for identifying and comparing the few zip codes that have very high admission, but a lot of subtlety in the big picture would be lost.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3547" title="Linear with upper limit" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_linear_clamp-300x204.png" alt="Linear with upper limit" width="300" height="204" /></p>
<p>This histogram also uses a linear segmentation, but with an upper limit (or clamp). Any zip code with 10 admissions or more are put into the red bucket. This would be fine for comparing admissions from distant zip codes, but we wouldn&#8217;t be able to distinguish visually between admissions from zip codes around Indianapolis.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-3548" title="Logarithmic" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/histogram_log-300x204.png" alt="Logarithmic" width="300" height="204" /></p>
<p>This is where the beauty of <a href="http://en.wikipedia.org/wiki/Logarithm" target="_blank">logarithms</a> comes to the rescue. Let&#8217;s use our example to walk through the process. First we determine the logarithm of our maximum number, 12375, in base 2 (working in base 2 is very efficient for computers). The result is 13.59. The highest bucket represents 12375 in the real world, and 13.59 in exponent-land. Each bucket represents a tenth of 13.57 in exponent-land, just as in our first histogram each bucket represented a tenth of 12375. We then simply derive the numbers that each bucket represents in the real world; 2 to the 1.359th power equals 3 (when represented as a whole number), for example. These whole numbers in the real world are then used to put the zip codes in the proper bins.</p>
<p>The result is that we have teased out more meaning to bestow upon our colors. There are still thousands of zip codes in those blue buckets, but they are the ones that are scattered across the nation on our map, so here we are aided by spatial distribution. In the red zone, there are dozens of zip codes in each bucket, and this is just what we want to be able to analyze the subtleties around Indianapolis where the icons are more spatially dense. It also turns out that this trend is pretty much independent of the date range, and the colormap still works out well at the state level.</p>
<p>On the actual map we use eight icons rather than ten to reduce clutter in the legend, but the algorithm is the same.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-3543" title="ZIPskinny demographics" src="http://www.imamuseum.org/blog/wp-content/uploads/2009/03/zipskinny.png" alt="ZIPskinny demographics" width="276" height="311" /></p>
<p>You might notice that we use a different type of colormap in the demographic windows. We actually tried using a smooth colormap for this data for the more linear demographics (Income, Age, etc.). The problem was that it was then very difficult to visually relate a particular shade of blue or green to a particular age or income level, which would almost certainly lead to eye strain and headaches. So here we used a more rainbow-like colormap to make that analysis easier.</p>
<p>In summary, colormap selection is a complex process involving aspects of mathematics, design, and the nature of the dataset. It&#8217;s one of those areas where art and science come together and the best practices of each can lead to successful communication of concepts and beautiful representations of data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imamuseum.org/blog/2009/03/03/theres-more-to-color-than-meets-the-eye/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Letterboxing: Crazy Pastime or new Olympic Event?</title>
		<link>http://www.imamuseum.org/blog/2008/08/04/letterboxing-crazy-passtime-or-new-olympic-event/</link>
		<comments>http://www.imamuseum.org/blog/2008/08/04/letterboxing-crazy-passtime-or-new-olympic-event/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 09:00:00 +0000</pubDate>
		<dc:creator>Rob Stein</dc:creator>
				<category><![CDATA[Art and Nature Park]]></category>
		<category><![CDATA[Horticulture]]></category>
		<category><![CDATA[Local]]></category>
		<category><![CDATA[Musings]]></category>
		<category><![CDATA[Clues]]></category>
		<category><![CDATA[Grounds]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[ima]]></category>
		<category><![CDATA[Indianapolis Museum of Art]]></category>
		<category><![CDATA[Letterboxing]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[Olympics]]></category>
		<category><![CDATA[Robert Indiana]]></category>
		<category><![CDATA[rubber stamps]]></category>
		<category><![CDATA[treasure hunting]]></category>

		<guid isPermaLink="false">http://www.imamuseum.org/blog/?p=605</guid>
		<description><![CDATA[The heat of summer is definitely upon us and as I sit here in my office, I can&#8217;t help but wish I was outside roasting away! So, for those of you looking for a good excuse to get some fresh air and a little adventure, I thought I&#8217;d share with you my one of my [...]]]></description>
			<content:encoded><![CDATA[<p>The heat of summer is definitely upon us and as I sit here in my office, I can&#8217;t help but wish I was outside roasting away! So, for those of you looking for a good excuse to get some fresh air and a little adventure, I thought I&#8217;d share with you my one of my new favorite pastimes&#8230; LETTERBOXING!</p>
<p style="text-align: center;"><em>(stay tuned for a great way to experience the IMA grounds before the end of this post!)</em></p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/thewoolleyman/93809844/"><img class="aligncenter size-full wp-image-608" title="letterboxinglog" src="http://www.imamuseum.org/blog/wp-content/uploads/2008/07/letterboxinglog.jpg" alt="A Letterboxing log book with a few stamps inside" width="450" height="364" /></a></p>
<p>A friend told me about how they went letterboxing on a recent vacation and was surprised that I&#8217;d never heard of it before. Letterboxing is similar to its more recent cousin, GeoCaching, and involves hiding small boxes with journals and stamps inside them. The idea being to bring your own stamp and journal with you to collect a log of all the treasures you have found! Letterboxers leave clues to the locations of boxes they have planted online for others to find. Experienced letterboxers can collect hundreds of stamps from around the country and individual boxes can stay alive for many years! As I began to learn a bit more about it&#8230; I was hooked!</p>
<p><span id="more-605"></span></p>
<h2>A Brief History of Letterboxing</h2>
<p>Apparently, letterboxing has been around for a long time. <a title="Letterboxing on Wikipedia" href="http://en.wikipedia.org/wiki/Letterboxing">Wikipedia&#8217;s article on letterboxing</a> says that it originated in England around 150 years ago! Letterboxing seems to have gained popularity in North America in the late 1990&#8217;s. In exploring this a bit more online, I was stunned to find out how many boxes exist right around the corner! One popular letterboxing website lists over 46,000 registered letterboxes in the United States and over 1000 in the state of Indiana. There are even 2 letterboxes close by for our blog readers in Zimbabwe&#8230; What&#8230; am I living in a cave? How could I have missed this one? The thought of all these stealthy hidden little boxes brings out the pirate in me&#8230; Arggh!</p>
<p style="text-align: center;"><a href="http://www.atlasquest.com/boxes/traditional/map.html?gTypeId=2;gSort=5;gCoord=39.769001,-86.155664;gLocation=Indianapolis%2C+IN;gTitle=Indianapolis%2C+IN%2C+US"><img class="alignnone size-medium wp-image-606" title="Letterbox Map" src="http://www.imamuseum.org/blog/wp-content/uploads/2008/07/letterboxmap-300x231.jpg" alt="A treasure map of letterboxes in and around Indianapolis" width="300" height="231" /></a></p>
<p style="text-align: center;"><em>(A Google Map of Letterbox locations around Indianapolis)</em></p>
<h2>Letterboxing Resources</h2>
<p>I&#8217;ve found a few great sites to fuel your burning letterboxing habit! Lately, I&#8217;ve been looking these sites up on my phone as we sail around with the top down on the Jeep looking for stamps to fill our journal. A good primer on what you need to start letterboxing can be found on this <a title="Getting Started with Letterboxing" href="http://www.atlasquest.com/aboutlb/gettingstarted.html">&#8220;Getting Started&#8221;</a> page.</p>
<p>When you&#8217;re ready to find some boxes to search for these are some great links to start with:</p>
<ul>
<li><a href="http://www.atlasquest.com/search.html">Search Letterboxes on AtlasQuest.com</a></li>
<li><a href="http://letterboxing.org/BoxFind.php">Search for Letterboxes on Letterboxing.org</a></li>
</ul>
<h2>Letterboxing @ IMA</h2>
<p><a href="http://www.atlasquest.com/showinfo.html?gBoxId=67949"><img class="alignright size-medium wp-image-616" style="float: right;" title="imabridge" src="http://www.imamuseum.org/blog/wp-content/uploads/2008/07/imabridge.jpg" alt="X marks the spot" width="300" height="225" /></a>So, why talk about a crazy hobby like letterboxing on the IMA&#8217;s blog? Well besides the obvious craft involved in creating some of the stamps I&#8217;ve seen&#8230; I was stunned to find out that there are two, count &#8216;em, two letterboxes already hidden on the grounds of the IMA. I&#8217;d be breaking the secret code of letterboxers if I gave away their exact locations&#8230; but here are the links to the clues so you can find them yourself. We&#8217;ve found both of them in the last two weeks, so I know their both still safe and sound. I wonder if our grounds keeping staff knows about these?</p>
<ul>
<li><a title="A box named IMA" href="http://www.atlasquest.com/showinfo.html?gBoxId=2168">IMA &#8211; planted by &#8220;Trail Mail Junkie&#8221;</a></li>
<li><a href="http://www.atlasquest.com/showinfo.html?gBoxId=67949">Robert Indiana &#8211; planted by &#8220;Dream a Dream&#8221;</a></li>
</ul>
<p>I&#8217;m thinking that we&#8217;ll have to take it upon ourselves as proud IMA-staffers to plant a few more of these puppies out in the Art and Nature Park before it opens! Any ideas of some good hiding spots?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imamuseum.org/blog/2008/08/04/letterboxing-crazy-passtime-or-new-olympic-event/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
