<?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; Resources</title>
	<atom:link href="http://spatialanalysis.co.uk/category/resources/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>The Power of Comparison: Just How Big Is It?</title>
		<link>http://spatialanalysis.co.uk/2012/01/power-comparison/</link>
		<comments>http://spatialanalysis.co.uk/2012/01/power-comparison/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 14:40:26 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Featured Maps]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[how big is it]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[London]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[size of wales]]></category>
		<category><![CDATA[subway]]></category>
		<category><![CDATA[tokyo]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=3388</guid>
		<description><![CDATA[&#160; If I said a country was 1594719800 metres squared it would mean a lot less to you than if I said it was about the size of Greater London (so long as you know about how big Greater London is). For this reason the media tend to report the extent of a flood in ...]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2012/01/units_of_area.png"><img class="alignnone  wp-image-3415" title="units_of_area" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/01/units_of_area-922x1024.png" alt="" width="581" height="645" /></a></p>
<p>If I said a country was 1594719800 metres squared it would mean a lot less to you than if I said it was about the size of Greater London (so long as you know about how big Greater London is). For this reason the media tend to report the extent of a flood in relation to the size of the <a href="http://en.wikipedia.org/wiki/Isle_of_Wight">Isle of Wight</a> or Icebergs in relation to the size of Wales (or <a href="http://carbon-based-ghg.blogspot.com/2010/02/giant-antarctic-iceberg-could-affect.html">Luxembourg</a>) so that we can imagine the extent and scale of a disaster or news story. Despite plenty of <a href="http://www.guardian.co.uk/media/mind-your-language/2010/may/17/mind-your-language-david-marsh">comment</a> on how ridiculous such comparisons are, and a <a href="http://www.simonkelk.co.uk/index-frames.html">great website</a> that will convert standard measurements into the fractions or multiples of the size of Wales, I am yet to see a mapped representation of our increasingly standard units of area. The one I produced above is not meant to be definitive, just a starting point to what I hope will be a new system to replace the frankly inadequate* <a href="http://en.wikipedia.org/wiki/Metric_system">metric measures</a> we are used to.</p>
<p>A much more effective alternative to simply stating an area in terms of its relative size to another area is of course to produce a map.  Geographically correct maps contain most of this information in the first place but they aren&#8217;t much good if you want to compare two things at either ends of the World or even the <a href="http://sciencenetlinks.com/interactives/messenger/psc/PlanetSize.html">Solar System</a>. With loads of mapping data online it is now easy to start shifting things around and laying them on top of each other in the same way the BBC&#8217;s <a href="http://howbigreally.com/">How Big Really</a>? website does.</p>
<p><a href="http://howbigreally.com/"><img title="flood_comp" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/01/flood_comp.png" alt="" width="568" height="321" /></a></p>
<p>This is fine if you want to compare a couple of things, but the map gets messy if you want to do more than that. For more complex comparisons you need to start with a fresh map (be careful of the <a href="http://spatialanalysis.co.uk/2011/03/flattening-the-earth/">projection</a>) and shifitng everything around to fit on a single page. Doing this can have a big impact as Kai Krause did with his &#8220;<a href="http://flowingdata.com/2010/10/18/true-size-of-africa/" target="_blank">True Size of Africa</a>&#8221; map.</p>
<p><img title="image2" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/image21-1024x724.jpg" alt="" width="553" height="391" /></p>
<div> Such maps can be particularly effective when comparing the size and shape of cities to each other&#8230;</div>
<div><a href="http://oliverobrien.co.uk/2011/11/the-relative-urban-footprint-of-tokyo-and-london/"><img title="toky_london" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/01/toky_london.jpg" alt="" width="576" height="698" /></a></div>
<p>&#8230;sparsely populated areas (UK Cities on top of the Highland region of Scotland by <a href="http://undertheraedar.blogspot.com/2011/10/how-big-is-london.html">Alasdair Rae</a>)&#8230;</p>
<p><a href="http://undertheraedar.blogspot.com/2011/10/how-big-is-london.html"><img class="alignnone  wp-image-3433" title="uk_city_size_grey_highland" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/01/uk_city_size_grey_highland-1011x1024.png" alt="" width="546" height="553" /></a></p>
<p>&#8230;and their transport systems such as subways (by <a href="http://fakeisthenewreal.org/subway/" target="_blank">Neil Freeman</a>)</p>
<p><a href="http://fakeisthenewreal.org/subway/"><img title="subway_comp" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/01/subway_comp.png" alt="" width="563" height="366" /></a></p>
<p>and cycle hire schemes (by <a href="http://oliverobrien.co.uk/2012/01/a-glimpse-of-bike-share-geographies-around-with-world/" target="_blank">Oliver O&#8217;Brien</a>).</p>
<p><a href="http://oliverobrien.co.uk/2012/01/a-glimpse-of-bike-share-geographies-around-with-world/"><img class="alignnone  wp-image-3398" title="bikes_comp" src="http://spatialanalysis.co.uk/wp-content/uploads/2012/01/bikes_comp.png" alt="" width="576" height="815" /></a></p>
<p>I think they offer a new perspective on the world and use maps as more abstract forms of information visualisation, so lets hope we see them more often to accompany the usual descriptive &#8220;relative to Wales&#8221; statements.</p>
<p>*I don&#8217;t seriously mean this.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2012/01/power-comparison/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Coming of Age: R and Spatial Data Visualisation</title>
		<link>http://spatialanalysis.co.uk/2012/01/coming-age-spatial-data-visualisation/</link>
		<comments>http://spatialanalysis.co.uk/2012/01/coming-age-spatial-data-visualisation/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 14:45:57 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[R Spatial Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[dataviz]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[spatial data]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=3354</guid>
		<description><![CDATA[I have been using R (a free statistics and graphics software package) now for the past four years or so and I have seen it become an increasingly powerful method of both analysing and visualising spatial data. Crucially, more and more people are writing accessible tutorials (see here) for beginners and intermediate users and the development ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://spatialanalysis.co.uk/2011/03/global-migration-maps/"><img class="alignnone  wp-image-2317" title="global_migration_sm" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/03/global_migration_sm1-1024x430.png" alt="" width="553" height="232" /></a></p>
<p>I have been using <a href="http://www.r-project.org/" target="_blank">R </a>(a free statistics and graphics software package) now for the past four years or so and I have seen it become an increasingly powerful method of both analysing and visualising spatial data. Crucially, more and more people are writing accessible tutorials (<a href="http://spatialanalysis.co.uk/r/" target="_blank">see here</a>) for beginners and intermediate users and the development of packages such as <a href="http://had.co.nz/ggplot2/" target="_blank">ggplot2</a> have made it simpler than ever to produce fantastic graphics. You don&#8217;t get the interactivity you would with conventional GIS software such as ArcGIS when you produce the visualisation but you are much more flexible in terms of the combinations of plot types and the ease with which they can be combined. It is, for example, <a href="http://mappingcenter.esri.com/index.cfm?fa=ask.answers&amp;q=2199" target="_blank">time consuming</a> to produce multivariate symbols (such as those varying in size and colour) in <a href="http://www.esri.com/" target="_blank">ArcGIS</a> but with R it is as simple* as one line of code. I have, for example, been able to add subtle transitions in the lines of the migration map above.  Unless you have massive files, plotting happens quickly and can be easily saved to vector formats for tweaking in a graphics package.</p>
<p><a href="http://spatialanalysis.co.uk/2011/10/mapping-academic-tweets/"><img class="alignnone  wp-image-3075" title="journal_tweets_point" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/10/journal_tweets_point-1024x483.png" alt="" width="553" height="261" /></a></p>
<p>R&#8217;s utilisation has been tempered by its relatively sparse documentation and challenging usability. The R community is increasingly aware of this with packages such as <a href="http://blog.fellstat.com/?p=89" target="_blank">DeducerSpatial </a>providing a graphical user interface to some of R&#8217;s spatial data functionality. More and more tutorials are appearing and people have been inspired by some high profile maps made with R (<a href="http://www.facebook.com/note.php?note_id=469716398919" target="_blank">see here</a>) so I am confident that it will be increasingly seen as the engine for slightly glossier analysis and visualisation packages.</p>
<p><a href="http://spatialanalysis.co.uk/2011/02/mapping-londons-population-change-2011-2030/"><img class="alignnone  wp-image-2205" title="london_pop_change" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/02/london_pop_change1.png" alt="" width="541" height="371" /></a></p>
<p>R can&#8217;t do everything- I find handling map projections a bit tricky and its not possible to pan and zoom the maps as they are being created. In some circumstances I can&#8217;t do without these functions so I opt for a traditional GIS. Also, for the programmers out there used to the likes of <a href="http://python.org/" target="_blank">Python</a> and <a href="http://docs.oracle.com/javase/tutorial/" target="_blank">Java</a>, R can have quite a few quirks in its syntax so be patient. Despite it&#8217;s flaws, if you have a large data processing and visualisation task R is a great option. It offers a high degree of flexibility in terms of input data formats and with packages such as <a href="http://cran.r-project.org/web/packages/twitteR/" target="_blank">twitteR</a>, <a href="http://cran.r-project.org/web/packages/RCurl/index.html" target="_blank">RCurl</a>, and <a href="http://cran.r-project.org/web/packages/XML/index.html" target="_blank">XML</a> it is easier than ever to import online data sources from social media sites and data feeds.  Aside from traditional export formats for the visualisations it has become incredibly simple to export interactive and animated graphics using the <a href="http://spatialanalysis.co.uk/2011/01/r-interface-to-google-chart-tools/" target="_blank">googleVIS</a> package or <a href="http://igraph.sourceforge.net/" target="_blank">igraph</a> for network visualisations. Such flexibility is invaluable if you are seeking to create a variety of different graphics from a single datasource without having to format it for multiple software packages. The great thing with R is the sense that it still has masses of unrealised potential for  future spatial data visualizations. If you know of any good visualisations or tutorials please leave a comment!</p>
<p>I should also say that if you would like to learn how to do these sorts of visualisations (and more!) come and do our <a href="http://www.bartlett.ucl.ac.uk/casa/programmes/postgraduate/mres-advanced-spatial-analysis-visualisation">masters course</a>!</p>
<p><em>*simple might be a slightly optimistic way of thinking about it if you haven&#8217;t used R before, but with a <a href="http://spatialanalysis.co.uk/r/" target="_blank">bit of practice</a> you will ge there! </em></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2012/01/coming-age-spatial-data-visualisation/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>My Academic Research: What&#8217;s in a Name?</title>
		<link>http://spatialanalysis.co.uk/2011/12/name/</link>
		<comments>http://spatialanalysis.co.uk/2011/12/name/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 10:00:29 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Surnames]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[europe]]></category>
		<category><![CDATA[geodemographics]]></category>
		<category><![CDATA[Great Britain]]></category>
		<category><![CDATA[lasker]]></category>
		<category><![CDATA[nei]]></category>
		<category><![CDATA[population genetics]]></category>
		<category><![CDATA[Surname]]></category>
		<category><![CDATA[UCL]]></category>
		<category><![CDATA[worldnames]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=3309</guid>
		<description><![CDATA[I have spent the last few years investigating the geography of family names (also called surnames). I work with the team who assembled the UCL Department of Geography Worldnames Database that contains the names and geographic locations of over 300 million people in nearly 30 countries (a few of these are yet to be added to the website). My research has ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/12/europe_surnames.png"><img class="alignnone  wp-image-2351" title="euro_consensus_pam14_final" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/12/europe_surnames.png" alt="" width="576" height="399" /></a></p>
<p>I have spent the last few years investigating the geography of family names (also called surnames). I work with the team who assembled the UCL Department of Geography <a href="http://worldnames.publicprofiler.org/Main.aspx" target="_blank">Worldnames Database</a> that contains the names and geographic locations of over 300 million people in nearly 30 countries (a few of these are yet to be added to the website). My research has focussed on the 152 million or so people we have data for in Europe and they all come from publicly available telephone directories or electoral rolls. I also had access to a historical dataset for Great Britain in the form of the 1881 census.  I have tried to answer two questions:</p>
<p>1. Is it possible to approximately establish the origin of a surname based on its modern day geographic distribution?</p>
<p>2. Are particular surnames more likely to be found together and if so do they form distinct geographic regions?</p>
<p>In the past surname research has involved  lot of manual work to create a detailed history of a particular name. With so many surnames in the database I had to think of some automated ways to do this computationally. The patterns I produce are much more generalised than the manual work- I find broad patterns rather than specific genealogical facts- but they provide useful context for population genetics, migration, historical geography and demography. If you want to find out more about this research here are titles for the papers I have had published in academic journals:</p>
<p><a href="http://discovery.ucl.ac.uk/1319496/">The Surname Regions of Great Britain.</a></p>
<p><a href="http://discovery.ucl.ac.uk/1301100/">Creating a Regional Geography of Great Britain Through the Spatial Analysis of Surnames</a>.</p>
<p><a href="http://discovery.ucl.ac.uk/1326357/">Identifying Spatial Concentrations of Surnames.</a></p>
<p><a href="http://discovery.ucl.ac.uk/1319497/">People of the British Isles: A Preliminary Analysis of Genotypes and Surnames in a UK Control Population.</a></p>
<p><a href="http://muse.jhu.edu/journals/human_biology/v083/83.5.cheshire.pdf">Delineating Europe&#8217;s Cultural Regions: Population Structure and Surname Clustering.</a></p>
<p>For a full list see my UCL<a href="https://iris.ucl.ac.uk/research/personal?upi=JACHE16" target="_blank"> academic profile</a>. The left map at the top of the post is from the last paper I listed and shows how the surname regions vary across Europe. The map on the right shows how confident I am of the regions based on the number of times they emerge in the cluster analysis.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/12/name/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why do we need a census?</title>
		<link>http://spatialanalysis.co.uk/2011/10/why-do-we-need-a-census/</link>
		<comments>http://spatialanalysis.co.uk/2011/10/why-do-we-need-a-census/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 14:52:59 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Beyond 2011]]></category>
		<category><![CDATA[Big data]]></category>
		<category><![CDATA[Census]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=3175</guid>
		<description><![CDATA[Last week I attended a &#8220;Beyond 2011&#8221; Census event organised by the Prof. Dave Martin and the Office for National Statistics (ONS). The attendees came from central and local government, private companies that utlise census data, and a few universities. The majority there (based on an approximate straw poll) believed that there would not be a ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/10/2011-UK-Census.jpg"><img class="size-full wp-image-3176" title="2011-UK-Census" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/10/2011-UK-Census.jpg" alt="" width="260" height="274" /></a></p>
<p>Last week I attended a &#8220;<a href="http://www.ons.gov.uk/ons/rel/mro/news-release/beyond-2011/ons-takes-a-fresh-look--beyond-2011-.html" target="_blank">Beyond 2011</a>&#8221; Census event organised by the <a href="http://www.southampton.ac.uk/geography/about/staff/djm1.page">Prof. Dave Martin</a> and the <a href="http://www.statistics.gov.uk/hub/index.html">Office for National Statistics</a> (ONS). The attendees came from central and local government, private companies that utlise census data, and a few universities. The majority there (based on an approximate straw poll) believed that there would not be a census &#8220;in its current form&#8221; in 2021. This is because census data collection is a very costly exercise and its results are becoming more out of date more quickly as the pace of societal change (through migration, for example) increases.</p>
<p>So, we need to find an alternative but from where? Census data collection has been taking place for centuries and has, until relatively recently,  been our only source of &#8220;<a href="http://en.wikipedia.org/wiki/Big_data">Big Data</a>&#8221; concerning the population characteristics of the UK. Why then, when we have finally achieved the computational and analytical capabilities to efficiently analyse it are we prepared to throw it all away? The reason relates to the fact that we have hundreds of big data sources available now and, if used properly,  we can potentially generate the same levels of insight (and more!) as those provided by a traditional census form.</p>
<div id="attachment_3179" class="wp-caption aligncenter" style="width: 570px"><a href="http://techcrunch.com/2010/03/16/big-data-freedom/"><img class="size-full wp-image-3179 " title="binary_data" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/10/binary_data.jpg" alt="" width="560" height="420" /></a>
<p class="wp-caption-text">We live in an era of &quot;Big Data&quot; as Techcrunch (click image) explains</p>
</div>
<p>For example the 2011 Census only accurately recorded where people live, not where they work. What good is this for emergency planning in central London? Why not use Oyster Card trip data, or mobile phone usage instead to give daily updates on population movement? Another issue is the fact that we have a more mobile population and we miss a lot of change by only taking decennial snapshots. Other government datasets are updated more often, such as the NHS Patient Register or the Electoral Roll, and can provide an indication of where we are living this year, rather than where we lived 5-10 years ago (I moved house 4 times between censuses). We also, and perhaps controversially, hand over loads of personal data every-time we use a store-card or credit card, log into Facebook, use our mobile phone or surf the web. This has contributed, perhaps for the first time, to many private companies having a much better idea about aspects of the population of the UK than the government. The question is do we want companies to share it for the greater good (or evil depending on what you think of the &#8220;big brother&#8221; state), or should we let them keep the data and have the government spend more to source it itself? We also have to be sure to count those who don&#8217;t feature on private company databases (put crudely, often because they aren&#8217;t worth anything to that company) and it is these groups, often the most vulnerable in society, that we are most likely to miss with a non-census solution.</p>
<p>I think there is more than enough data to go around without having to fill in lengthy census forms, the issue is we haven&#8217;t worked out how to join it all together yet. Once we solve that problem we then need to work out who we have missed and that is much harder to do without a compulsory census!</p>
<p>If you want to contribute to this debate please fill in the <a href="http://www.ons.gov.uk/ons/about-ons/consultations/open-consultations/beyond-2011---public-consultation/index.html" target="_blank">consultation documents. </a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/10/why-do-we-need-a-census/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Improved Tree Maps with R</title>
		<link>http://spatialanalysis.co.uk/2011/08/improved-tree-maps-with-r/</link>
		<comments>http://spatialanalysis.co.uk/2011/08/improved-tree-maps-with-r/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 14:40:20 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[R Spatial Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[map.market]]></category>
		<category><![CDATA[RColorBrewer]]></category>
		<category><![CDATA[rstats. R]]></category>
		<category><![CDATA[treemap]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=2942</guid>
		<description><![CDATA[&#8220;Treemaps display hierarchical (tree-structured) data as a set of nested rectangles. Each branch of the tree is given a rectangle, which is then tiled with smaller rectangles representing sub-branches. A leaf node&#8217;s rectangle has an area proportional to a specified dimension on the data. Often the leaf nodes are colored to show a separate dimension of ...]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Treemaps display hierarchical (tree-structured) data as a set of nested rectangles. Each branch of the tree is given a rectangle, which is then tiled with smaller rectangles representing sub-branches. A leaf node&#8217;s rectangle has an area proportional to a specified dimension on the data. Often the leaf nodes are colored to show a separate <a title="Dimension (metadata)" href="http://en.wikipedia.org/wiki/Dimension_(metadata)">dimension of the data</a>.</em></p>
<p><em>When the color and size dimensions are correlated in some way with the tree structure, one can often easily see patterns that would be difficult to spot in other ways, for example, if a certain color is particularly relevant. A second advantage of treemaps is that, by construction, they make efficient use of space. As a result, they can legibly display thousands of items on the screen simultaneously.&#8221; </em>(source: <a href="http://en.wikipedia.org/wiki/Treemapping" target="_blank">Wikipedia</a>)</p>
<p>I think treemaps are becoming an increasingly popular method of visualising multidimensional datasets and there are many ways to create them. This tutorial is going to focus on the use of <a href="http://www.r-project.org/" target="_blank">R</a> and builds on the one published on <a href="http://flowingdata.com/2010/02/11/an-easy-way-to-make-a-treemap/" target="_blank">flowingdata</a>.</p>
<p>Open R and install the following packages</p>
<p><code> install.packages("portfolio")<br />
install.packages("RColorBrewer") </code></p>
<p>now load them.</p>
<p><code>library(RColorBrewer)<br />
library(portfolio)</code></p>
<p>The next step is to load in the data file we are using. This is an edited version of the <a href="http://data.london.gov.uk/datastore/package/london-borough-profiles">London Borough Profiles</a> csv taken from the London Datastore. There are five columns of data. The three we are interested in are &#8220;pop&#8221;, &#8220;earnings&#8221; and &#8220;party&#8221;.</p>
<p><code>input<-read.csv("http://spatialanalysis.co.uk/wp-content/uploads/2011/08/tree_eg_data.csv")<br />
attach(input)</code></p>
<p>A treemap generally requires 4 pieces of information:<br />
the item- in this case the London Borough&#8217;s or &#8220;id&#8221;- each will be assigned a rectangle,<br />
a value to scale the size of the rectangle by- in this case the population or &#8220;pop&#8221;,<br />
a value for assigning the colour- in this case the average earnings per person or &#8220;earnings&#8221;,<br />
and a broader group to which the item belongs- in this case the ruling political party or &#8220;party&#8221;.</p>
<p>Armed with this we can simply used the map.market function from the portfolio package (installed earlier) to produce a treemap.</p>
<p><code>map.market(id, pop, party, earnings, lab   = c(TRUE, TRUE), main="London Earnings, Population and Politics")</code></p>
<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/08/map.market.png"><img src="http://spatialanalysis.co.uk/wp-content/uploads/2011/08/map.market.png" alt="" title="map.market" width="521" height="519" class="alignnone size-full wp-image-2959" /></a></p>
<p>The output looks OK but I don&#8217;t really like the colours. I have therefore edited the code so that a selection of colours can be used using the <a href="http://colorbrewer2.org/" target="_blank">ColorBrewer</a> palettes. You can either <a href="http://dl.dropbox.com/u/10640416/treemapbrewer.r" target="_blank">download </a>the code or load it straight away with<br />
<code> source("http://dl.dropbox.com/u/10640416/treemapbrewer.r")</code></p>
<p>you have now loaded in a new function called &#8220;treemap&#8221; that does a very similar job to the one above but has a few other options that you can see used below</p>
<p><code> treemap(id, pop, party, earnings, lab = c(TRUE, TRUE), main="London Earnings, Population and Politics", pal="Oranges", linecol= "dark gray", textcol="white")</code></p>
<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/08/treemapeg.png"><img class="alignnone size-full wp-image-2965" title="treemapeg" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/08/treemapeg.png" alt="" width="490" height="476" /></a></p>
<p>The plot above used the &#8220;Oranges&#8221; palette but there are <a href="http://cran.r-project.org/web/packages/RColorBrewer/RColorBrewer.pdf" target="_blank">many more</a> such as &#8220;Blues&#8221;, &#8220;BuPu&#8221; and &#8220;Reds&#8221;. Try for example<br />
<code> treemap(id, pop, party, earnings, lab = c(TRUE, TRUE), main="London Earnings, Population and Politics", pal="Blues", linecol= "white", textcol="black")</code></p>
<p>When you are happy with the results save the plot as a pdf<br />
<code>pdf("my_tree_map2.pdf")<br />
treemap(id, pop, party, earnings, lab = c(TRUE, TRUE), main="London Earnings, Population and Politics", pal="Oranges", linecol= "dark gray")<br />
dev.off()</code></p>
<p>or PNG<br />
<code>png("my_tree_map2.png")<br />
treemap(id, pop, party, earnings, lab = c(TRUE, TRUE), main="London Earnings, Population and Politics", pal="Oranges", linecol= "dark gray")<br />
dev.off()</code></p>
<p>and then you can edit it using image/ vector editing software such as <a href="http://www.gimp.org/" target="_blank">GIMP</a> or<a href="http:// www.inkscape.org" target="_blank"> Inkscape</a> to get the following result:</p>
<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/08/final_tree.png"><img class="alignnone size-full wp-image-2966" title="final_tree" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/08/final_tree.png" alt="" width="521" height="519" /></a></p>
<p>I hope that the options to change colours makes for a more interesting treemaps than the standard red/green ones we are used to seeing. If anyone knows how to alter the scale bar so that it does not show values beyond the range of the data it would be great to see how it is done!</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/08/improved-tree-maps-with-r/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flattening the Earth</title>
		<link>http://spatialanalysis.co.uk/2011/03/flattening-the-earth/</link>
		<comments>http://spatialanalysis.co.uk/2011/03/flattening-the-earth/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 14:26:32 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Featured Maps]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[Cartogram]]></category>
		<category><![CDATA[Map projections]]></category>
		<category><![CDATA[true size of africa]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=1713</guid>
		<description><![CDATA[Flattening the Earth so that it can be easily drawn on a 2-dimensional surface is complicated. Over many years map projections have been developed to aid in this process, but they can only really estimate (albeit very accurately) the shape and dimensions of things on the Earth&#8217;s round surface. Whilst it is important to understand ...]]></description>
			<content:encoded><![CDATA[<p>Flattening the Earth so that it can be easily drawn on a 2-dimensional surface is complicated. Over many years map projections have been developed to aid in this process, but they can only really estimate (albeit very accurately) the shape and dimensions of things on the Earth&#8217;s round surface. Whilst it is important to understand the technical aspects of map projections, it is also worth considering the effects that such transformations can have on people&#8217;s view of the world.</p>
<p>The image below shows an assortment of map projections of the UK (and one of Great Britain). These have all been taken from Wikipedia so the level of detail along the coastline varies a little. They demonstrate nicely the effect that different map projections can have on the shape of a country.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/image1.png"><img class="size-full wp-image-1714 aligncenter" title="Different Projections" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/image1.png" alt="" width="338" height="519" /></a></p>
<p style="text-align: left;">As you can see, some of the projections have squashed the UK whilst others have stretched it or changed its orientation. The British National Grid is the best representation because it has been designed specifically for Britain. It is the projection you will see used on Ordnance Survey maps and therefore most printed maps of the UK (it is rarer to find it online). Whilst excellent for Britain, the National Grid projection does not work on a global scale because it would cause massive distortions to the other countries.  Instead, we should apply global projections, which need to be chosen carefully depending on their purpose and the scale of the map being produced. A poor choice of projection can have significant consequences because the relative size of a country on a map matters. Perception of country&#8217;s size is a delicate issue: in international politics, for example, countries which appear small on the map fear being overlooked. Indeed, this has long been the argument against the commonly-used Mercator projection, especially with reference to Africa, which appears relatively small on maps of this style. This effect is seen in Kai Krause&#8217;s “True Size of Africa”.</p>
<div style="margin: 0 auto; width: 491px;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/image2.jpg" class="img zoom" title="True Size of Africa"><img src="http://spatialanalysis.co.uk/wp-content/themes/theme-unite/includes/timthumb.php?src=/wp-content/uploads/2010/12/image2.jpg&amp;w=491&amp;h=347&amp;zc=1" width="491" height="347" alt="True Size of Africa" /></a></div>
<p>&nbsp;</p>
<p>However, even this map has been criticised for using an inappropriate projection. The Economist, for example, responded by producing a map that maintains the correct relative areal proportions between each of the countries included (with Gall&#8217;s Stereographic Cylindrical Projection). Nonetheless, both maps illustrate the way in which our perceptions of this vast continent have been altered by “mainstream” mapping practices.</p>
<div id="attachment_1718" class="wp-caption aligncenter" style="width: 486px"><a href="http://www.economist.com/blogs/dailychart/2010/11/cartography"><img class="size-full wp-image-1718 " title="image3" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/image3.gif" alt="" width="476" height="364" /></a>
<p class="wp-caption-text">The Economist</p>
</div>
<p>The most widely used projection (in the Western World at least) is the <a href="http://en.wikipedia.org/wiki/Mercator_projection" target="_blank">Mercator Projection,</a> but as the <a href="http://en.wikipedia.org/wiki/The_West_Wing" target="_blank">West Wing</a> explains this has a number of flaws that are often overlooked&#8230;<br />
<object width="620" height="450" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/n8zBC2dvERM?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="620" height="450" type="application/x-shockwave-flash" src="http://www.youtube.com/v/n8zBC2dvERM?fs=1&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>If you are interested in where people live, then the above picture may also be misleading. It is possible to alter projections so that the size of the country on the map is influenced by its total population.</p>
<div id="attachment_1719" class="wp-caption aligncenter" style="width: 526px"><a href="http://www-personal.umich.edu/~mejn/cartograms/population1024x512.png"><img class="size-full wp-image-1719   " title="image4" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/image4.png" alt="" width="516" height="258" /></a>
<p class="wp-caption-text">Mark Newman</p>
</div>
<p>It is clear that cartographers can produce different views of the world. We, as informed consumers of maps, need to be aware of this, to think twice about what we see and to consider how the information would look if projected differently. More importantly, by asking why the cartographer chose the projection they did, we may even be able to learn something beyond what we see on paper.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/03/flattening-the-earth/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>World Transport Links and US Climate from The National Geographic over a Century ago</title>
		<link>http://spatialanalysis.co.uk/2011/03/world-transport-links-and-us-climate-from-the-national-geographic-over-a-century-ago/</link>
		<comments>http://spatialanalysis.co.uk/2011/03/world-transport-links-and-us-climate-from-the-national-geographic-over-a-century-ago/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 14:26:10 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Featured Maps]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[Cartography]]></category>
		<category><![CDATA[Climate]]></category>
		<category><![CDATA[national geographic]]></category>
		<category><![CDATA[transport]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=1002</guid>
		<description><![CDATA[Following my previous post I have been digging around archive.org for interesting spatial/ geographical related resources. A search for &#8220;geographic&#8221; yielded a number of back issues of the National Geographic Magazine. They date back as far as 1888 and contain some great images and maps. There are some real gems to be had, such as ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/principle-transport-lines1.png"><img class="aligncenter size-large wp-image-1005" title="principle transport lines" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/principle-transport-lines1.png" alt="" width="478" height="304" /></a></p>
<p>Following my <a href="http://spatialanalysis.co.uk//wp-content/uploads/2010/06/the-look-of-maps-an-examination-of-cartographic-design/" target="_blank">previous post</a> I have been digging around archive.org for interesting spatial/ geographical related resources. A search for &#8220;geographic&#8221; yielded a number of back issues of the <a href="http://www.nationalgeographic.co.uk/" target="_blank">National Geographic Magazine</a>. They date back as far as 1888 and contain some great images and maps. There are some real gems to be had, such as the &#8220;Scenes from every land&#8221; series (link to <a href="http://www.archive.org/details/scenesfromeveryl00gros" target="_blank">one here</a>) that contain century-old photographs from every continent. I was also amused to see an article titled &#8220;<a href="http://www.archive.org/details/ants_10587" target="_blank">Notes about ants and their resemblance to man</a>&#8220;. I have shared a few of my highlights here.</p>
<p>The top map is taken from the <a href="http://www.archive.org/details/scenesfromevery01usgoog" target="_blank">1907 edition</a> of &#8220;Scenes from Every Land&#8221;. It shows a map of the world with its key trade routes. I suspect today&#8217;s equivalent would be much more complex such is the nature of contemporary global transport.</p>
<p>My final two favourites are taken from the <a href="http://www.archive.org/details/nationalgeograph6189495nati" target="_blank">1894 edition</a> of the National Geographic Magazine and illustrate climatic variables for the USA. The top shows the mean temperature for the hottest 6 weeks of the year, and the lower map shows the sum of daily mean temperatures above 6 degrees. Despite their age I really like the clarity and detail in these maps.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/NG_meantemp_us_hottest_6wks_of_the_year1.png"><img class="aligncenter size-full wp-image-1010" title="NG_meantemp_us_hottest_6wks_of_the_year" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/NG_meantemp_us_hottest_6wks_of_the_year1.png" alt="" width="478" height="304" /></a></p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/us_heat1.png"><img class="aligncenter size-full wp-image-1009" title="us_heat" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/06/us_heat1.png" alt="" width="478" height="304" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/03/world-transport-links-and-us-climate-from-the-national-geographic-over-a-century-ago/feed/</wfw:commentRss>
		<slash:comments>1</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>
	</channel>
</rss>

