<?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>Spatial Analysis &#187; Software</title>
	<atom:link href="http://spatialanalysis.co.uk/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://spatialanalysis.co.uk</link>
	<description>Spatial data visualisation, analysis and resources</description>
	<lastBuildDate>Thu, 02 Feb 2012 21:50:43 +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>Great Maps with ggplot2</title>
		<link>http://spatialanalysis.co.uk/2012/02/great-maps-ggplot2/</link>
		<comments>http://spatialanalysis.co.uk/2012/02/great-maps-ggplot2/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 13:02:15 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[R Spatial Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cycle]]></category>
		<category><![CDATA[ggplot2]]></category>
		<category><![CDATA[lineend]]></category>
		<category><![CDATA[London]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[rstats]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=3455</guid>
		<description><![CDATA[The above map (and this one) was produced using R and ggplot2 and serve to demonstrate just how sophisticated R visualisations can be. We are used to seeing similar maps produced with conventional GIS platforms or software such as Processing but I hadn&#8217;t yet seen one from the R community (feel free to suggest some ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2012/02/bike_ggplot.png"><img class="alignnone  wp-image-3456" title="bike_ggplot" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/02/bike_ggplot-1024x676.png" alt="" width="553" height="365" /></a></p>
<p>The above map (<a href="http://spatialanalysis.co.uk/2012/02/london-cycle-hire-pollution/" target="_blank">and this one</a>) was produced using R and <a href="http://had.co.nz/ggplot2/" target="_blank">ggplot2</a> and serve to demonstrate just <a href="http://spatialanalysis.co.uk/2012/01/coming-age-spatial-data-visualisation/" target="_blank">how sophisticated</a> R visualisations can be. We are used to seeing similar maps produced with conventional GIS platforms or software such as <a href="http://processing.org/" target="_blank">Processing</a> but I hadn&#8217;t yet seen one from the R community (feel free to suggest some in the comments). The map contains three layers: buildings, water and the journey segments. The most challenging aspect was to change the standard line ends in <a href="http://had.co.nz/ggplot2/geom_segment.html" target="_blank">geom_segment</a> from &#8220;butt&#8221; to &#8220;round&#8221; in order that the lines appeared continuous and not with &#8220;cracks&#8221; in, see below.</p>
<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2012/02/lineend.png"><img class="alignnone size-full wp-image-3459" title="lineend" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/02/lineend.png" alt="" width="553" height="288" /></a></p>
<p>I am grateful to Hadley and the rest of the ggplot2 Google Group for the solution. You can see it <a href="http://groups.google.com/group/ggplot2/browse_thread/thread/9a8befd1ffcc4ae6" target="_blank">here</a>. From this point I layered the plots using the <a href="http://had.co.nz/ggplot2/geom_polygon.html" target="_blank">geom_polygon()</a> command for the buildings and water bodies and my new function geom_segment2() for the journey segments- these were simply the start and end latitudes and longitudes for each node in the road network and the number of times a cyclist passed between them. I have included the code below<br />
&nbsp;</p>
<p><code><br />
#Code supplied by james cheshire Feb 2012<br />
#load packages and enter development mode<br />
library('devtools')<br />
dev_mode()<br />
library(ggplot2)<br />
library(proto)</p>
<p>#if your map data is a shapefile use maptools<br />
library(maptools)<br />
gpclibPermit()</p>
<p>#create GeomSegment2 function<br />
GeomSegment2 <- proto(ggplot2:::GeomSegment, {<br />
 objname <- "geom_segment2"<br />
 draw <- function(., data, scales, coordinates, arrow=NULL, ...) {<br />
  if (is.linear(coordinates)) {<br />
    return(with(coord_transform(coordinates, data, scales),<br />
      segmentsGrob(x, y, xend, yend, default.units="native",<br />
      gp = gpar(col=alpha(colour, alpha), lwd=size * .pt,<br />
        lty=linetype, lineend = "round"),<br />
      arrow = arrow)<br />
    ))<br />
  }<br />
}})</p>
<p>geom_segment2 <- function(mapping = NULL, data = NULL, stat =<br />
"identity", position = "identity", arrow = NULL, ...)  {<br />
 GeomSegment2$new(mapping = mapping, data = data, stat = stat,<br />
       position = position, arrow = arrow, ...)<br />
}</p>
<p>#load data stlat/stlong are the start points elat/elong are the end points of the lines<br />
lon<- read.csv("bikes_london.csv", header=F, sep=";")<br />
names(lon)<-c("stlat", "stlon", "elat", "elong", "count")</p>
<p>#load spatial data. You need to fortify if loaded as a shapefile<br />
water<- fortify(readShapePoly("waterfeatures.shp"))<br />
built<- fortify(readShapePoly("buildings.shp"))</p>
<p>#This step removes the axes labels etc when called in the plot.<br />
xquiet<- scale_x_continuous("", breaks=NA)<br />
yquiet<-scale_y_continuous("", breaks=NA)<br />
quiet<-list(xquiet, yquiet)</p>
<p>#create base plot<br />
plon1<- ggplot(lon, aes(x=stlon, y=stlat))</p>
<p>#ready the plot layers<br />
pbuilt<-c(geom_polygon(data=built, aes(x=long, y=lat, group=group), colour= "#4B4B4B", fill="#4F4F4F", lwd=0.2))<br />
pwater<-c(geom_polygon(data=water, aes(x=long, y=lat, group=group), colour= "#708090", fill="#708090"))</p>
<p>#create plot<br />
plon2<- plon1 +pbuilt+ pwater+ geom_segment2(aes(xend=elong, yend=elat, size= count, colour=count))+scale_size(range=c(0.06, 1.8))+scale_colour_gradient(low="#FFFFFF", high="#FFFF33", space="rgb")+coord_equal(ratio=1/cos(lon$elat[1]*pi/180))+quiet+ opts(panel.background=theme_rect(fill="#404040"))</p>
<p>plon2<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2012/02/great-maps-ggplot2/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Automated Cartography: The urban expansion of Lansing</title>
		<link>http://spatialanalysis.co.uk/2011/02/automated-cartography-the-urban-expansion-of-lansing/</link>
		<comments>http://spatialanalysis.co.uk/2011/02/automated-cartography-the-urban-expansion-of-lansing/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 12:10:07 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[automated cartography]]></category>
		<category><![CDATA[Lansing]]></category>
		<category><![CDATA[schmidt]]></category>
		<category><![CDATA[symap]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=1134</guid>
		<description><![CDATA[I hadn&#8217;t seen this video before. It demonstrates one of the earliest attempts at automated cartography for the display of time with spatial data. Truly ground breaking,  the video shows the urban growth of Lansing at 5 yearly intervals from between 1850 and 1965 and was produced by Allan Schmidt at the Michigan State University Urban ...]]></description>
			<content:encoded><![CDATA[<p>I hadn&#8217;t seen this video before. It demonstrates one of the earliest attempts at automated cartography for the display of time with spatial data. Truly ground breaking,  the video shows the urban growth of Lansing at 5 yearly intervals from between 1850 and 1965 and was produced by Allan Schmidt at the Michigan State University Urban Regional Research Institute. The visualisation was produced with the synergraphic mapping system (SYMAP) developed by Howard Fisher in the mid 1960s. More details and a fully downloadable version can be found <a href="http://www.archive.org/details/AllanHSchmidtAPictorialHistoryoftheExpansionoftheLansingMIMetroploitanAreausingSYMAPtimelapse" target="_blank">here.</a> A presentation on SYMAP is available<a href="http://gisagents.blogspot.com/2009/10/symap-movie.html" target="_blank"> here</a>. The sequence starts with a slow version of two minutes forty-five seconds before repeating the sequence more rapidly in forty-five seconds, and finally in five seconds.</p>
<p><embed type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docid=2350215725557772618&amp;hl=en&amp;fs=true" style="width:500px;height:404px" allowFullScreen="true" allowScriptAccess="always" /></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/02/automated-cartography-the-urban-expansion-of-lansing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESRI (UK) Case Study</title>
		<link>http://spatialanalysis.co.uk/2011/02/esri-uk-case-study/</link>
		<comments>http://spatialanalysis.co.uk/2011/02/esri-uk-case-study/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 10:13:00 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[CASA]]></category>
		<category><![CDATA[case study]]></category>
		<category><![CDATA[ESRI UK]]></category>
		<category><![CDATA[Higher education]]></category>
		<category><![CDATA[UCL]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=2240</guid>
		<description><![CDATA[Buried deep in the ESRI (UK) website is a case study I helped put together showcasing some of the ways we use GIS (specifically ESRI products) within UCL Department of Geography and Centre for Advanced Spatial Analysis. ESRI (UK) co-sponsor my PhD research and I have had a very positive and productive relationship with the company. I ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.esriuk.com/highereducation/resources/casestudies.asp" target="_blank">Buried deep </a>in the <a href="http://www.esriuk.com/" target="_blank">ESRI (UK) </a>website is a case study I helped put together showcasing some of the ways we use GIS (specifically ESRI products) within <a href="http://www.geog.ucl.ac.uk/" target="_blank">UCL Department of Geography</a> and <a href="http://casa.ucl.ac.uk/" target="_blank">Centre for Advanced Spatial Analysis</a>. ESRI (UK) co-sponsor my PhD research and I have had a very positive and productive relationship with the company. I know that they are keen to promote the use of their software within higher-education (and at secondary schools) and you can find out more <a href="http://www.esriuk.com/highereducation/" target="_blank">here</a>. Click on the image below for the case study.</p>
<p style="text-align: center;"><a href="http://www.esriuk.com/highereducation/documents/UCL%20Case%20Study.pdf"><img class="aligncenter size-full wp-image-2241" title="esri_case_study_img" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/02/esri_case_study_img1.png" alt="" width="476" height="417" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/02/esri-uk-case-study/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing rgdal on Mac OS X</title>
		<link>http://spatialanalysis.co.uk/2010/11/installing-rgdal-on-mac-os-x/</link>
		<comments>http://spatialanalysis.co.uk/2010/11/installing-rgdal-on-mac-os-x/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 17:43:06 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[R Spatial Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[gdal]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[R spatial]]></category>
		<category><![CDATA[rgdal]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=1523</guid>
		<description><![CDATA[******Roger Bivand has kindly just emailed me to say: &#8220;Your 2 November blog about rgdal on OSX is very misleading. The CRAN rgdal page: http://cran.r-project.org/web/packages/rgdal/index.html says all you need to know unless you need extra drivers, or already have PROJ.4 and GDAL installed. Just do: setRepositories(ind=1:2) install.packages(&#8220;rgdal&#8221;) installs rgdal with all its external dependencies satisfied. It is ...]]></description>
			<content:encoded><![CDATA[<p>******Roger Bivand has kindly just emailed me to say:</p>
<p>&#8220;Your 2 November blog about rgdal on OSX is very misleading. The CRAN rgdal page: <a href="http://cran.r-project.org/web/packages/rgdal/index.html" target="_blank">http://cran.r-project.org/web/<wbr>packages/rgdal/index.html</wbr></a> says all you need to know unless you need extra drivers, or already have PROJ.4 and GDAL installed. Just do:</p>
<p>setRepositories(ind=1:2)<br />
install.packages(&#8220;rgdal&#8221;)</p>
<p>installs rgdal with all its external dependencies satisfied. It is kindly provided by Prof. Brian Ripley, and is presently running up-to-date GDAL.&#8221;******</p>
<p>This may offer a straightforward solution. I would be interested to hear how people get on.</p>
<p>After running a spatial data analysis with R session today, it became apparent that there are one or two teething problems installing the important <a href="http://cran.r-project.org/web/packages/rgdal/index.html" target="_blank">rgdal </a>package on Mac OS X operating systems. The usual install.packages(&#8220;rgdal&#8221;) won&#8217;t work. My colleague <a href="http://www.casa.ucl.ac.uk/people/person.asp?ID=226" target="_blank">Jon Reades</a> did some digging around to find this solution. I have tested it and it seems to work fine.</p>
<p>[Note that you'll need to be comfortable with the Terminal. If you're not, then find someone who is.]</p>
<p>1. Download the GDAL OS X install from kyngchaos<br />
- <a href="http://www.kyngchaos.com/files/software/unixport/GDAL_Complete-1.7.dmg" rel="nofollow">http://www.kyngchaos.com/files/software/unixport/GDAL_Complete-1.7.dmg</a><br />
(Looks like the basic page [for updates after 1.7 if you're reading this ages from now] is <a href="http://www.kyngchaos.com/software/frameworks%29" rel="nofollow">http://www.kyngchaos.com/software/frameworks)</a><br />
- Install as per usual OS X install system<br />
- Fire up the Terminal, then pico (or vi[m]) the .bash_login file<br />
- Modify the PATH environment so that it reads:<br />
export PATH=”/Library/Frameworks/GDAL.framework/Programs:$PATH”<br />
[This is what enables the subsequent steps to find gdal-config]</p>
<p>2. Download and install proj4 from source<br />
- <a href="http://trac.osgeo.org/proj/wiki/WikiStart#Download" rel="nofollow">http://trac.osgeo.org/proj/wiki/WikiStart#Download</a><br />
- Download source code version proj-4.7.0.tar.gz<br />
- Fire up the Terminal<br />
&gt; cd ~/Downloads/<br />
&gt; tar -xzvf proj-4.7.0.tar.gz<br />
&gt; cd proj-4.7.0<br />
&gt; ./configure<br />
&gt; make &amp;&amp; make test<br />
&gt; sudo make install<br />
[ should install to /usr/local/lib by default]</p>
<p>3. Download and install rgdal from source<br />
- <a href="http://cran.r-project.org/src/contrib/rgdal_0.6-28.tar.gz" rel="nofollow">http://cran.r-project.org/src/contrib/rgdal_0.6-28.tar.gz</a><br />
- Fire up the Terminal<br />
&gt; cd ~/Downloads/<br />
&gt; sudo R CMD INSTALL –configure-args=’–with-proj-include=/usr/local/lib’ rgdal_0.6-28.tar.gz</p>
<p>After all of this mucking about I was able to say:</p>
<p>&gt; require(sp)<br />
&gt; require(rgdal)</p>
<p>And get a message indicating that GDAL was loaded successfully.</p>
<p>He also posted his solution on the <a href="http://www.compmath.com/blog/2010/07/installing-package-on-mac-os-x/#comment-332" target="_blank">Computational Mathematics Blog</a>. If there is a better way I would be interested in hearing about it for future classes.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/11/installing-rgdal-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Surname Diversity in Great Britain</title>
		<link>http://spatialanalysis.co.uk/2010/08/surname-diversity-in-great-britain/</link>
		<comments>http://spatialanalysis.co.uk/2010/08/surname-diversity-in-great-britain/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 09:28:47 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Featured Maps]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Surnames]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[Cartogram]]></category>
		<category><![CDATA[Great Britain]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=1230</guid>
		<description><![CDATA[As part of my PhD research I recently produced the map below (high res. version) that shows the diversity of surnames in Great Britain. I wanted to demonstrate that surname diversity is not uniform across Great Britain. For example towns and cities (especially London) have relatively high surname diversities compared with rural areas because more ...]]></description>
			<content:encoded><![CDATA[<p>As part of my PhD research I recently produced the map below (<a href="http://spatialanalysis.co.uk/files/2010/08/names_per_head_carto.png" target="_blank">high res. version</a>) that shows the diversity of surnames in Great Britain. I wanted to demonstrate that surname diversity is not uniform across Great Britain. For example towns and cities (especially London) have relatively high surname diversities compared with rural areas because more migrants and single people live in them. Wales has a very low surname diversity due to its <a href="http://en.wikipedia.org/wiki/Welsh_surnames" target="_blank">past naming conventions</a>. The measure used is calculated by dividing the number of surnames by the total population of each Output Area (OA). There are over 200,000 OAs in Britain. Urban OAs are very small despite accounting for a large proportion of the total population, so I have scaled the size of each OA by their population (the map is therefore a <a href="http://spatialanalysis.co.uk/2009/10/06/cartograms/" target="_blank">cartogram</a>). This creates the somewhat bloated appearance of Great Britain, but serves to emphasise the increased surname diversity (due to more single people and migrants) in towns and cities. The correct shape of Great Britain is shown in the inset. For more technical info please see below.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/08/Screen-shot-2010-08-20-at-09.36.071.png"><img class="aligncenter size-full wp-image-1231" title="Surname Diversity" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/08/Screen-shot-2010-08-20-at-09.36.071.png" alt="" /></a></p>
<p style="text-align: left;">To create this map I used <a href="http://www.esri.com/software/arcgis/arcgis10/index.html" target="_blank">ArcGIS 10</a> and the <a href="http://arcscripts.esri.com/details.asp?dbid=15638" target="_blank">Cartogram Geoprocessing Tool</a>. The nice thing about the tool is that it is not dependent on VBA and therefore worked straight off in ArcGIS 10. There are over 220,000 spatial units in this map and the tool had no problems processing them. I have not found any alternatives that work for this volume of data.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/08/surname-diversity-in-great-britain/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ArcGIS for iPhone: Review</title>
		<link>http://spatialanalysis.co.uk/2010/07/arcgis-for-iphone-review/</link>
		<comments>http://spatialanalysis.co.uk/2010/07/arcgis-for-iphone-review/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 14:27:12 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[ArcGIS for iPhone]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=1058</guid>
		<description><![CDATA[ESRI have just launched their ArcGIS for iPhone Application. I have tested it out and thought I would share a my first impressions. I conducted the test on my iPhone 3GS running software version 4.0.1 and with 1 to 3 bars of 3G signal. Overall I found the app to be very impressive. You are ...]]></description>
			<content:encoded><![CDATA[<p>ESRI have just launched their <a href="http://itunes.apple.com/gb/app/arcgis/id379687930?mt=8" target="_blank">ArcGIS for iPhone </a>Application. I have tested it out and thought I would share a my first impressions. I conducted the test on my iPhone 3GS running software version 4.0.1 and with 1 to 3 bars of 3G signal.</p>
<p>Overall I found the app to be very impressive. You are greeted with a world map that you can instantly interact with by panning and zooming in the usual way.</p>
<p><img class="aligncenter size-full wp-image-1059" title="IMG_0270" src="http://spatialanalysis.co.uk/files/2010/07/IMG_0270.png" alt="" width="320" height="480" /></p>
<p>The map tiles loaded surprisingly quickly- it took approx 5 seconds to zoom from the above view to building level with only 1 bar of signal.</p>
<p><img class="aligncenter size-full wp-image-1061" title="IMG_0273" src="http://spatialanalysis.co.uk/files/2010/07/IMG_0273.png" alt="" width="320" height="480" /></p>
<p>Users can search for places of interest&#8230;</p>
<p><img class="aligncenter size-full wp-image-1062" title="IMG_0271" src="http://spatialanalysis.co.uk/files/2010/07/IMG_0271.png" alt="" width="320" height="480" /></p>
<p>&#8230;but this provided the only disappointment with the map appearing to lack the required data.</p>
<p><img class="aligncenter size-full wp-image-1063" title="IMG_0272" src="http://spatialanalysis.co.uk/files/2010/07/IMG_0272.png" alt="" width="320" height="480" /></p>
<p>Zooming out a little resolved this problem, but I am not sure how many people would think to do this. I suspect the problem is relatively easily  addressed and may well be in future updates. Offering standard maps is not particularly innovative and not what the app sets out to achieve. The real innovation is the ability to view layers available from the ArcGIS.com website. You can, for example, use <a href="http://www.openstreetmap.org/index.html" target="_blank">OpenStreetMap</a> as the base map</p>
<p><img class="aligncenter size-full wp-image-1067" title="IMG_0278" src="http://spatialanalysis.co.uk/files/2010/07/IMG_0278.png" alt="" width="320" height="480" /></p>
<p>or overlay additional information, in this case the Gulf Oil Spill Forecast:</p>
<p><img class="aligncenter size-full wp-image-1068" title="IMG_0275" src="http://spatialanalysis.co.uk/files/2010/07/IMG_0275.png" alt="" width="320" height="480" /></p>
<p>Navigation to layers is straightforward:</p>
<p><img class="aligncenter size-full wp-image-1072" title="IMG_0274" src="http://spatialanalysis.co.uk/files/2010/07/IMG_0274.png" alt="" width="320" height="480" /></p>
<p>I especially like the fact that users can add their own servers and also bookmark their favourite layers. On top of these features users can measure distances and calculate areas.</p>
<p><img class="aligncenter size-full wp-image-1074" title="IMG_0280" src="http://spatialanalysis.co.uk/files/2010/07/IMG_02801.png" alt="" width="320" height="480" /></p>
<p>I found these tools to be extremely intuitive and I expect they will become an integral part to many field based introductory GIS courses. In a recent talk I attended, Jack Dangermond said that GIS software in the past was made to be complicated. With this application ESRI have demonstrated that GIS can be made to be easy. I think all who use this app both from within and beyond GIS with be genuinely impressed.</p>
<p>**I have just discovered a more in depth review worth reading from <a href="http://www.spatiallyadjusted.com/2010/07/06/arcgis-for-ios-release/" target="_blank">James Fee&#8217;s GIS blog</a>.**</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/07/arcgis-for-iphone-review/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top 60 Chinese Cities</title>
		<link>http://spatialanalysis.co.uk/2010/06/top-60-chinese-cities/</link>
		<comments>http://spatialanalysis.co.uk/2010/06/top-60-chinese-cities/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 10:19:58 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Cities]]></category>
		<category><![CDATA[Long Tail]]></category>
		<category><![CDATA[Population]]></category>
		<category><![CDATA[Wordle]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=942</guid>
		<description><![CDATA[Cities are one of the many phenomena that follow a long-tailed distribution. In simple terms there are a few big cities and lots of small ones. The classic way of showing a long tailed distribution (and the method from which the name is taken) is to produce as plot such as that below: The infographic ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://chinfographics.com/wp-content/uploads/2010/05/China-population-60-chinese-cities.gif"><img title="China-population-60-chinese-cities" src="http://chinfographics.com/wp-content/uploads/2010/05/China-population-60-chinese-cities.gif" alt="60 Cities with more than 1 Million inhabitants" width="421" height="525" /></a></p>
<p>Cities are one of the many phenomena that follow a long-tailed distribution. In simple terms there are a few big cities and lots of small ones. The classic way of showing a long tailed distribution (and the method from which the name is taken) is to produce as plot such as that below:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-945" title="chinese_cities_graph" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/chinese_cities_graph1.png" alt="" width="489" height="257" /></p>
<p>The<a href="http://en.wikipedia.org/wiki/Information_graphics" target="_blank"> infographic </a>at the top of the post by<a href="http://chinfographics.com/2010/05/20/the-long-tail-%E2%80%93-60-chinese-cities-with-a-population-of-over-1-million/" target="_blank"> chinfographics.com</a> demonstrates the distribution in a more engaging and constructive way.</p>
<p>One method I have <a href="http://spatialanalysis.co.uk/2010/02/09/a-global-surname-cloud/" target="_blank">used in the past</a> to demonstrate data with a long tailed distribution is the excellent <a href="http://www.wordle.net/" target="_blank">Wordle tool</a>. I have created a Wordle (below) for the same data (downloaded from <a href="http://chinfographics.com/2010/05/20/the-long-tail-%E2%80%93-60-chinese-cities-with-a-population-of-over-1-million/" target="_blank">Chinfographics</a>). Whilst it does not compete with the Chinfographics infographic in terms of quality,  I still think Wordles provide a very simple, and effective, method of displaying data with a &#8220;long tail&#8221;.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/chinese_cities_wordle11.png"><img class="aligncenter size-medium wp-image-950" title="chinese_cities_wordle" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/chinese_cities_wordle11.png" alt="" width="630" height="381" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/06/top-60-chinese-cities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graduate Jobs with ESRI (UK)</title>
		<link>http://spatialanalysis.co.uk/2010/04/graduate-jobs-with-esri-uk/</link>
		<comments>http://spatialanalysis.co.uk/2010/04/graduate-jobs-with-esri-uk/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 10:43:18 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=804</guid>
		<description><![CDATA[ESRI (UK) have a couple of graduate vacancies with their Technical Solutions Group (TSG) for the following roles: GIS Developer: Reporting to the TSG Technology Manager, the role of the GIS Developer is to support the sales process through the development of bespoke demonstration applications, and to work with Customers and Business Partner organisations to ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.esriuk.com/" target="_blank">ESRI (UK) </a>have a couple of graduate vacancies with their Technical Solutions Group (TSG) for the following roles:</p>
<p><strong>GIS Developer:</strong></p>
<p><span style="font-family: Calibri;font-size: small">Reporting to the TSG Technology  Manager,  the role of the GIS Developer is to support the sales process through  the development of bespoke demonstration applications, and to work with  Customers and Business Partner organisations to provide  technical  advice  and guidance. The role requires the individual to be both analytical  and Customer facing, therefore experience of working in a Customer  facing  environment and confidence at presenting to an audience is essential.  Ideally the individual will be educated to degree level or above in  a Computer Science, Software Engineering or an IT related subject</span></p>
<p><span style="font-family: Calibri;font-size: small">Ideally the individual will be educated   to degree level or above in GIS or an IT related subject.</span></p>
<p><span style="font-family: Calibri;font-size: small">This role would suit a graduate with  at least 1 years post graduate experience. </span></p>
<p><span style="font-family: Calibri;font-size: small">If you are interested in exploring  the above opportunity in more depth, please email (preferably) or write  to us, enclosing your CV and details of your availability (both for  interview and for job commencement, if successful) and your current  and expected salary.</span></p>
<p><span style="font-family: Calibri;font-size: small"><strong>GIS Consultant</strong><br />
</span></p>
<p><span style="font-family: Calibri;font-size: small">Reporting to the TSG Industry Manager,  the GIS Consultant is responsible for providing Technical Input  (including  demonstrations and presentations) to support Customer meetings and other   sales / marketing activities. The role requires the individual to be  both analytical and Customer facing, therefore experience of working  in a Customer facing environment and confidence at presenting to an  audience is essential.</span></p>
<p><span style="font-family: Calibri;font-size: small"> Ideally the individual will be  educated  to degree level or above in GIS or an IT related subject.</span></p>
<p><span style="font-family: Calibri;font-size: small">This role would suit a graduate with  at least 1 years post graduate experience. </span></p>
<p><span style="font-family: Calibri;font-size: small">If you are interested in exploring  the above opportunity in more depth, please email (preferably) or write  to us, enclosing your CV and details of your availability (both for  interview and for job commencement, if successful) and your current  and expected salary. </span></p>
<p><span style="font-family: Calibri;font-size: small">Applications should be marked ‘Private  and confidential’ and submitted to: </span></p>
<p><span style="font-family: Calibri;font-size: small">HR Department (<a href="mailto:Email%3Ahrteam@esriuk.com" target="_blank">Email:hrteam@esriuk.com</a>) </span></p>
<p><span style="font-family: Calibri;font-size: small"> ESRI (UK) Ltd, Millennium House, 65 Walton Street, Aylesbury HP21 7QG<br />
Telephone: 01296 745 500</span></p>
<p><span style="font-family: Calibri;font-size: small">Closing date: 7th May 2010</span></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/04/graduate-jobs-with-esri-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jack Dangermond at Where 2.0: GIS on the Web–A Big Step</title>
		<link>http://spatialanalysis.co.uk/2010/04/jack-dangermond-at-where-2-0-gis-on-the-web%e2%80%93a-big-step/</link>
		<comments>http://spatialanalysis.co.uk/2010/04/jack-dangermond-at-where-2-0-gis-on-the-web%e2%80%93a-big-step/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 07:43:34 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Dangermond]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=781</guid>
		<description><![CDATA[I have embedded below Jack Dangermond&#8217;s recent talk at Where 2.0. It introduces the exciting opportunities provided by what Dangermond calls &#8220;GIS in the Sky&#8221;. Thanks to Alex Singleton for sending me the link to the video posted on GIS and Science.]]></description>
			<content:encoded><![CDATA[<p>I have embedded below Jack Dangermond&#8217;s recent talk at Where 2.0. It introduces the exciting opportunities provided by what Dangermond calls &#8220;GIS in the Sky&#8221;. Thanks to <a href="http://www.alex-singleton.com/" target="_blank">Alex Singleton</a> for sending me the link to the video posted on <a href="http://gisandscience.com/2010/04/02/jack-dangermond-at-where-2-0-2010-gis-on-the-web-a-big-step/" target="_blank">GIS and Science.</a></p>
<p><object width="480" height="300"><param name="src" value="http://blip.tv/play/AYHS2D8C" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="300" src="http://blip.tv/play/AYHS2D8C" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/04/jack-dangermond-at-where-2-0-gis-on-the-web%e2%80%93a-big-step/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapping and Colour blindness</title>
		<link>http://spatialanalysis.co.uk/2010/03/mapping-and-colour-blindness/</link>
		<comments>http://spatialanalysis.co.uk/2010/03/mapping-and-colour-blindness/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:28:18 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[Colour blindess]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[Vischeck]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=704</guid>
		<description><![CDATA[The explosion in spatial data availability and dissemination through online visualisation has produced many interesting maps. A friend of mine, however, recently commented that not enough is done for those with colour blindess.  To see the impact of this I was recommended a great website developed by Stanford University that enables users to check  how ...]]></description>
			<content:encoded><![CDATA[<p>The explosion in spatial data availability and dissemination through online visualisation has produced many interesting maps. A friend of mine, however, recently commented that not enough is done for those with <a href="http://en.wikipedia.org/wiki/Color_blindness#External_links" target="_blank">colour blindess</a>.  To see the impact of this I was recommended a great <a href="http://www.vischeck.com/daltonize/" target="_blank">website</a> developed by <a href="//www.vischeck.com/people/" target="_blank">Stanford University</a> that enables users to check  how clear their images are to colour blind people. I have run this test for a number of maps below.  The top three maps are amongst the most popular maps on <a href="http://www.maptube.org/" target="_blank">CASA&#8217;s Maptube Website</a> whilst the fourth map is one of <a href="http://spatialanalysis.co.uk/2010/02/04/mapping-free-data-londons-working-week/" target="_self">my own</a>. The top two are have undergone the test for<a href="http://colorvisiontesting.com/color2.htm" target="_blank"> Deuteranope</a> colour blindness and the bottom two for <a href="http://colorvisiontesting.com/color2.htm" target="_blank">Protanope</a> colour blindness.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/deuteranope_bigmac11.png"><br />
<img class="aligncenter" title="deuteranope_bigmac" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/deuteranope_bigmac11.png" alt="" width="494" height="190" /></a></p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/deuteranope_imd1.png"><img class="aligncenter" title="deuteranope_imd" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/deuteranope_imd1.png" alt="" width="496" height="185" /></a></p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/protsanope_anitsocial1.png"><img class="aligncenter" title="protsanope_anitsocial" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/protsanope_anitsocial1.png" alt="" width="496" height="179" /></a></p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/protsanope_hours.png"><img class="aligncenter" title="protsanope_hours" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/03/protsanope_hours.png" alt="" width="497" height="233" /></a></p>
<p>I was amazed at how indistinguishable seemingly contrasting colours can be. The final map fares best and I think this is because it is simply differing shades of the same colour. If I am honest colour blindness is not something I have seriously considered in my own maps until now so I cannot claim to be a good example. From now on, however, I intend to make a real effort in colour selection for my maps. You can&#8217;t go far wrong with the <a href="http://colorbrewer2.org/" target="_blank">Colorbrewer</a> palettes so I will make the effort to use these as much as possible in the future.</p>
<p>Thanks to Jess Wardlaw for telling me about <a href="http://www.vischeck.com/vischeck/" target="_blank">Vischeck.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/03/mapping-and-colour-blindness/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

