<?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>C L Snyder &#187; Maps</title>
	<atom:link href="http://www.clsnyder.com/WordPress/category/maps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clsnyder.com/WordPress</link>
	<description>Kaizen with Sprezzatura</description>
	<lastBuildDate>Mon, 06 Feb 2012 22:52:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tutorial on Mapping</title>
		<link>http://www.clsnyder.com/WordPress/2011/05/19/tutorial-on-mapping/</link>
		<comments>http://www.clsnyder.com/WordPress/2011/05/19/tutorial-on-mapping/#comments</comments>
		<pubDate>Fri, 20 May 2011 02:11:09 +0000</pubDate>
		<dc:creator>clsnyder</dc:creator>
				<category><![CDATA[Maps]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.clsnyder.com/WordPress/?p=13397</guid>
		<description><![CDATA[Introduction What do you want to map? There are a variety of maps and a variety of methods. choropleth 1 These are color gradient maps. A simple method is to use IBM&#8217;s Many Eyes online software to do a graph &#8230; <a href="http://www.clsnyder.com/WordPress/2011/05/19/tutorial-on-mapping/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2 id="toc-introduction" id="introduction">Introduction</h2>
<p>What do you want to map? There are a variety of maps and a variety of methods. </p>
<h3 id="toc-choropleth-1" id="choropleth1">choropleth 1</h3>
<p>These are color gradient maps. A simple method is to use IBM&#8217;s <a href="http://www-958.ibm.com/software/data/cognos/manyeyes/">Many Eyes</a> online software to do a graph by state or by country. </p>
<h3 id="toc-choropleth-2" id="choropleth2">choropleth 2</h3>
<p><a href="http://code.google.com/apis/chart/interactive/docs/gallery/intensitymap.html">Google </a>has a nice way to do a simple choropleth map: Here is the code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;&lt;br/&gt;
&lt;head&gt;&lt;br/&gt;
&lt;script type='text/javascript' src='https://www.google.com/jsapi'&gt;&lt;/script&gt;
&lt;script type='text/javascript'&gt;
google.load('visualization', '1', {packages:['intensitymap']});       
google.setOnLoadCallback(drawChart);       
function drawChart() 
{         
var data = new google.visualization.DataTable();         
data.addColumn('string', '', 'State');         
data.addColumn('number', 'Accurate', 'a');         
data.addColumn('number', 'Ghost', 'b');         
data.addRows(6);         
data.setValue(0, 0, 'OH');         
data.setValue(0, 1, 1324);         
data.setValue(0, 2, 9640821);         
data.setValue(1, 0, 'IN');         
data.setValue(1, 1, 1133);         
data.setValue(1, 2, 3287263);         
data.setValue(2, 0, 'TN');         
data.setValue(2, 1, 304);         
data.setValue(2, 2, 9629091);         
data.setValue(3, 0, 'IO');         
data.setValue(3, 1, 232);         
data.setValue(3, 2, 1904569);         
data.setValue(4, 0, 'MA');         
data.setValue(4, 1, 187);         
data.setValue(4, 2, 8514877);  
data.setValue(5, 0, 'DC');         
data.setValue(5, 1, 187);         
data.setValue(5, 2, 8514877);        
var chart = new google.visualization.IntensityMap(document.getElementById('chart_div'));         
chart.draw(data, {region:'usa',width: 800, height: 640});       
} 
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;&lt;br/&gt;
&lt;div id=&quot;chart_div&quot;&gt;&lt;/div&gt;&lt;br/&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

</p>
<h3> Another method is to plug the address (&#038; all data) into google fusion tables (<a href="http://www.google.com/fusiontables/Home">here</a>)</p>
<h3 id="toc-google-map-with-marker-size-variation-by-frequency" id="googlemapwithmarkersizevariationbyfrequency">Google Map with marker size variation by frequency</h3>
<p>Here are the easiest steps:</p>
<ol>
<li>You need a spreadsheet or CSV file with the following columns:</li>
</ol>
<table>
<colgroup>
<col style="text-align:left;"/>
<col style="text-align:right;"/>
<col style="text-align:right;"/>
<col style="text-align:right;"/>
</colgroup>
<thead>
<tr>
<th style="text-align:left;">Description</th>
<th style="text-align:right;">Latitude</th>
<th style="text-align:right;">Longitude</th>
<th style="text-align:right;">Frequency</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">Chicago</td>
<td style="text-align:right;">30.343</td>
<td style="text-align:right;">&#8211;44.43535</td>
<td style="text-align:right;">5</td>
</tr>
</tbody>
</table>
<ol>
<li>If you need the lat and long data, but have the zipcode, name, address, or almost any scrap of data, go to <a href="http://www.findlatitudeandlongitude.com/">this site</a>. This can be a little tedious, but will give you the values. There are also lookup tables (xls) by zipcode. Perhaps a better option is <a href="http://www.gpsvisualizer.com/geocoder/">this site</a>, which allows you to simply paste in info such as :</li>
</ol>
<p>Duke<br />
Vanderbilt<br />
University of Michigan</p>
<p>and get back latitude and longitude cooridinates.</p>
<ol>
<li>Take the above formatted csv file, and go to <a href="http://www.gpsvisualizer.com/map_input?form=data">this</a> very useful site. You can either upload or simply paste in the data and a google map is generated (or google earth map).</li>
</ol>
<p></body><br />
</html></p>
<p><script>window.onload = function(){var div = document.getElementById('contentdiv'),oldscroll = 620;div.scrollTop = oldscroll;}</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.clsnyder.com/WordPress/2011/05/19/tutorial-on-mapping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APSA Map</title>
		<link>http://www.clsnyder.com/WordPress/2009/07/06/map/</link>
		<comments>http://www.clsnyder.com/WordPress/2009/07/06/map/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 02:02:54 +0000</pubDate>
		<dc:creator>clsnyder</dc:creator>
				<category><![CDATA[Maps]]></category>

		<guid isPermaLink="false">http://www.clsnyder.com/WordPress/2009/07/06/map/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://apps.mapspread.com/a/kaizen/apsa-members-2" frameborder="0" style="width:500px;height:400px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.clsnyder.com/WordPress/2009/07/06/map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

