<?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; Uncategorized</title>
	<atom:link href="http://spatialanalysis.co.uk/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://spatialanalysis.co.uk</link>
	<description>Spatial data visualisation, analysis and resources</description>
	<lastBuildDate>Tue, 15 May 2012 13:21:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</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>20</slash:comments>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://spatialanalysis.co.uk/2011/08/welcome/</link>
		<comments>http://spatialanalysis.co.uk/2011/08/welcome/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 15:38:01 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[spatial analysis]]></category>
		<category><![CDATA[Welcome]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=2806</guid>
		<description><![CDATA[Welcome to the the new look Spatial Analysis blog. My last post was way back in March so I have a lot of catching up to do! The prolonged absence was due to all my energy being spent on completing my PhD thesis in order that I could get it out of the way before ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ilijin.com/index.php?/maps/hellomap/"><img class="alignnone size-full wp-image-2809" title="Copyright Yellow Studio" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/08/hello.jpg" alt="" width="600" height="400" /></a></p>
<p>Welcome to the the new look Spatial Analysis blog. My last post was way back in March so I have a lot of catching up to do! The prolonged absence was due to all my energy being spent on completing my PhD thesis in order that I could get it out of the way before starting my new job at the <a href="http://casa.ucl.ac.uk">UCL Centre for Advanced Spatial Analysis</a> in London. I will be teaching a module on GI Systems and Science so may share some resources here or be on the lookout for ideas. In addition to the odd teaching resource to add to the growing list of <a href="http://spatialanalysis.co.uk/r/">R Spatial resources</a> I hope to continue to upload visualisations of some of the latest freely available datasets and also scour the internet for great work that others have done.</p>
<p>I have put a lot of effort into transferring my previous posts and material to the new look blog. If you spot any missing images please let me know. In addition I have added a whole new <a href="http://spatialanalysis.co.uk/map-gallery/">Map Gallery</a> section. This in part is to help fill the gap left by the <a href="http://www.maproomblog.com/">Map Room blog</a> no longer being updated but mainly to help readers quickly navigate my favourite maps as I upload them. So to kick things off I have uploaded a couple of fresh posts that I hope you enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/08/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mappinglondon.co.uk: Another Blog about Maps!</title>
		<link>http://spatialanalysis.co.uk/2011/02/londonmapping-co-uk-another-blog-about-maps/</link>
		<comments>http://spatialanalysis.co.uk/2011/02/londonmapping-co-uk-another-blog-about-maps/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 13:18:41 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mappinglondon.co.uk]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=2252</guid>
		<description><![CDATA[Followers of spatialanalysis.co.uk will know that a lot of maps I feature are about London. Many of these maps have caught the eye of those outside of the geography, GIS/ spatial analysis community who don&#8217;t really have an interest in the technicalities of making the maps etc. Oliver O&#8217;Brien and I have decided to team ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://mappinglondon.co.uk/"><img class="aligncenter size-full wp-image-2253" title="Mapping London" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/02/Screen-shot-2011-02-25-at-11.26.421.png" alt="" width="494" height="328" /></a></p>
<p>Followers of spatialanalysis.co.uk will know that a lot of maps I feature are about London. Many of these maps have caught the eye of those outside of the geography, GIS/ spatial analysis community who don&#8217;t really have an interest in the technicalities of making the maps etc. <a href="http://oliverobrien.co.uk/" target="_blank">Oliver O&#8217;Brien</a> and I have decided to team up to launch the <a href="http://mappinglondon.co.uk/" target="_blank">mappinglondon.co.uk blog</a> for people who like to see maps of London without the techie blurb/ code you often see here. This is timely as there are some fantastic London mapping events in the pipeline (stay tuned) that I know will spread the good word about the geography and cartography of this great city.</p>
<p>The plan is to post little and often so that we can share with you the maps that have been catching our attention. I don&#8217;t expect things to change much here, but you may find some lighter cartographic relief over at mappinglondon.co.uk.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/02/londonmapping-co-uk-another-blog-about-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Carto-Junk?</title>
		<link>http://spatialanalysis.co.uk/2011/01/carto-junk/</link>
		<comments>http://spatialanalysis.co.uk/2011/01/carto-junk/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 12:14:02 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=2142</guid>
		<description><![CDATA[The National Geographic Surname Map has generated a lot of discussion both online and via email. The response has been overwhelmingly positive but some people, unsurprisingly, have suggested improvements. A recent post on the great Junk Charts blog acts as a good summary of the comments I have received. For the purpose of this post I have ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/NG_Surnames1.jpg"><img class="aligncenter size-full wp-image-2008" title="NG_Surnames" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/NG_Surnames1.jpg" alt="" width="620" height="451" /></a></p>
<p>The <a href="http://spatialanalysis.co.uk/2011/01/21/whats-in-a-surname/" target="_blank">National Geographic Surname Map</a> has generated a lot of discussion both online and via email. The response has been overwhelmingly positive but some people, unsurprisingly, have suggested improvements. A recent post on the great <a href="http://junkcharts.typepad.com/junk_charts/2011/01/a-smarter-word-cloud-likes-and-not-likes.html" target="_blank">Junk Charts blog</a> acts as a good summary of the comments I have received. For the purpose of this post I have left out the positives in order that I can address some of the suggested limitations of the map. There is always room for improvement but I thought it would be good to outline some of the logic behind relaxing a couple of <a href="http://www.edwardtufte.com/tufte/" target="_blank">Tufte</a>’s classic rules on data visualisation.  I have pasted each suggested improvements from <a href="http://junkcharts.typepad.com/junk_charts/2011/01/a-smarter-word-cloud-likes-and-not-likes.html" target="_blank">Junk Charts</a> below and added my responses beneath.</p>
<p><span style="color: #008000;"><em><span style="color: #000000;">“They really ought to have used relative popularity rather than absolute popularity. This is another area of improvement for all word clouds. Today, word clouds plot the number of times a specific word appears in a piece of text. We often try to <a href="http://junkcharts.typepad.com/junk_charts/comparability">compare </a>several word clouds against each other; and when we do that, the only sensible measure is the proportion (relative frequency) of time a specific word appear. Say, one compares Obama and McCain speeches by comparing two word clouds. If these two speeches differ significantly in length, then comparing the number of times each candidate use &#8220;education&#8221; words is silly &#8212; we have to compare the number of times per length of the speech.”</span></em></span></p>
<p>The use of relative popularity is something I would agree with in most circumstances. The surname map, however, is designed to give a national impression (rather than state by state) impression of the general distribution of surnames. Had we used a relative measure (such as freq. per million) where would the million come from, the state or the entire US population? If it were the former we would compound the second criticism below.  If we wanted a comparison (such as changes over time)  we would, of course, have used relative frequencies.</p>
<p><em> “The cutoff of top 25 names in each state suffers a similar problem. The 26th most popular name in California, a populous state, is of more interest than say the 15th most popular name in Montana (or insert your favorite small state). Instead, a more sensible cutoff would be including names that account for at least 2 percent (say) of a state&#8217;s population. By doing this, the more populated states would have more entries than the less populated states.”</em></p>
<p>As another commenter remarked, the long-tailed nature of the surname distribution would mean there is very little difference between the popularity rank and an equally arbitrary cutoff percentage. I also don’t understand why more populated states would have more surnames at the top of their distribution. It is not necessarily the case that population size correlates with surname frequency.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/nat_geo_surnames1.png"><img class="aligncenter" title="nat_geo_surnames" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/nat_geo_surnames1.png" alt="" width="484" height="361" /></a></p>
<p><em>“Given the above bullets, it is not surprising that the word-size <a href="http://junkcharts.typepad.com/junk_charts/scale">scale</a> has serious problems. Because it is an absolute number and not relative to each state&#8217;s population, the big words can only show up in populous states. In other words, the size of the words tells us about the geographical distribution of the U.S. population. As I mentioned before (<a href="http://junkcharts.typepad.com/junk_charts/2009/03/the-trouble-with-maps.html">such as here</a>), this insight is available on pretty much every <a href="http://junkcharts.typepad.com/junk_charts/map">map </a>used to plot data that has ever been produced. The one thing that all these maps never fail to tell us is the fact that most of the U.S. population is bi-coastal. Unfortunately, the real message of the map &#8212; in this case, the geography of surnames &#8212; is subsumed.”</em></p>
<p>The message of the map is that surnames are not randomly distributed across the US. Each wave of migrants moving to the US has a clear preference (or necessity) to where they live(d) and this has creates the diverse patchwork of surnames shown in the map. I cannot see how this message has been subsumed by not standardising for population. If this was a map of car theft then it would be nonsense to not account for population density (or car density) but in the context of surnames (due to the nature of their distribution throughout the population) the patterns (and message) would have been similar.</p>
<p><em>“And then, the map invents false data. Notice that there are 1,250 geographic sites on the map (25 names times 50 states). This is a visually prominent feature of the map, and yet there is no rhyme or reason as to where the names are placed, with the exception of respecting state boundaries. The casual reader may think that the appearance of the Chinese name &#8220;Lee&#8221; in the inner, central part of California implies that Lee-named Chinese-Americans aggregate in those parts of California. Far from the truth!”</em></p>
<p>This is the biggest limitation of the map- and one I had tried to address in the <a href="http://spatialanalysis.co.uk/2011/01/24/mapping-londons-surnames/" target="_blank">London Surnames</a> map. We were constrained by the fact that the map was being designed for print. Had it been designed as an interactive map (and not simply a static image) we would not have gone about it this way.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/lon_surname_small1.png"><img class="size-full wp-image-2107  aligncenter" title="lon_surname_small" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/lon_surname_small1.png" alt="" width="465" height="326" /></a></p>
<p style="text-align: left;">As with all visualisations you can&#8217;t please everyone, but I hope I have provided some insight into why the map developed the way that it did.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/01/carto-junk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Handling Spatial Data with R</title>
		<link>http://spatialanalysis.co.uk/2011/01/handling-spatial-data-with-r/</link>
		<comments>http://spatialanalysis.co.uk/2011/01/handling-spatial-data-with-r/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 23:01:42 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=1784</guid>
		<description><![CDATA[Spatial data are becoming increasingly common, as are the tools available in R to process it. It takes a little time to understand how R handles spatial data; this tutorial is designed to help get people started. It outlines how to create a simple spatial points object from as csv file, load and export a ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/spatial_data_thumb.png"><img class="aligncenter size-full wp-image-1785" title="Handling Spatial Data with R" src="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/spatial_data_thumb.png" alt="" width="619" height="251" /></a></p>
<p>Spatial data are becoming increasingly common, as are the tools available in R to process it. It takes a little time to understand how R handles spatial data; this tutorial is designed to help get people started. It outlines how to create a simple spatial points object from as csv file, load and export a shapefile and alter or add spatial projection information.</p>
<p><strong> Data and Package Requirements:</strong></p>
<p>London Sport Participation Shapefile. <a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/09/London_Sport1.zip">Download </a>(requires unzipping).</p>
<p>London Cycle Hire Locations: <a href="http://dl.dropbox.com/u/10640416/London_cycle_hire_locs.csv">Download.</a></p>
<p>Install the following packages (if you haven’t already done so):</p>
<p><a href="http://cran.r-project.org/web/packages/maptools/index.html">maptools</a>, <a href="http://cran.r-project.org/web/packages/rgdal/index.html" target="_blank">rgdal</a> (Mac users may wish to <a href="http://spatialanalysis.co.uk/2010/11/02/installing-rgdal-on-mac-os-x/" target="_blank">see here first</a>).</p>
<h3><a href="http://spatialanalysis.co.uk/wp-content/uploads/2011/01/intro_to_spatial_data.txt" target="_blank">Click here to view the tutorial code.</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2011/01/handling-spatial-data-with-r/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Gawker Passwords Wordle</title>
		<link>http://spatialanalysis.co.uk/2010/12/gawker-passwords-wordle/</link>
		<comments>http://spatialanalysis.co.uk/2010/12/gawker-passwords-wordle/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 10:53:29 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gawker]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[Wordle]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=1707</guid>
		<description><![CDATA[href=&#8221;http://wordle.net&#8221;&#62;Wordleof recently compromised Gawker user passwords illustrates. The top 200 passwords from the 180,000 or so released are shown.]]></description>
			<content:encoded><![CDATA[<p>href=&#8221;http://wordle.net&#8221;&gt;Wordleof recently compromised <a href="http://gawker.com/" target="_blank">Gawker</a> user passwords illustrates. The top 200 passwords from the 180,000 or so released are shown.</p>
<p style="text-align: center;"><a href="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/gawk_wordle.png"><img class="aligncenter size-full wp-image-1708" title="gawk_wordle" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/12/gawk_wordle.png" alt="" width="598" height="390" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/12/gawker-passwords-wordle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jökulsárlón Timelapse</title>
		<link>http://spatialanalysis.co.uk/2010/09/jokulsarlon-timelapse/</link>
		<comments>http://spatialanalysis.co.uk/2010/09/jokulsarlon-timelapse/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 22:45:23 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[glacier lagoon]]></category>
		<category><![CDATA[ice berg]]></category>
		<category><![CDATA[Iceland]]></category>
		<category><![CDATA[inspired by iceland]]></category>
		<category><![CDATA[Jökulsárlón]]></category>
		<category><![CDATA[tilt shift]]></category>
		<category><![CDATA[time lapse]]></category>
		<category><![CDATA[timelapse]]></category>
		<category><![CDATA[william cheshire]]></category>

		<guid isPermaLink="false">http://jamescheshire.co.uk.blogs.splintdev.geog.ucl.ac.uk/?p=1318</guid>
		<description><![CDATA[As I have mentioned before I have really enjoyed my trips to Iceland andInspired by Iceland is a great project to promote the wonders of the country. It has a great website with excellent quality webcams that enable full screen viewing of three of Iceland&#8217;s landmarks: Reykjavik, Gullfoss and Jökulsárlón. My favourite is Jökulsárlón, often known ...]]></description>
			<content:encoded><![CDATA[<p>As I have mentioned <a href="http://spatialanalysis.co.uk/2010/07/19/iceland-trip/" target="_blank">before</a> I have really enjoyed my trips to Iceland and<a href="http://www.inspiredbyiceland.com/?site_locale=en" target="_blank">Inspired by Iceland</a> is a great project to promote the wonders of the country. It has a great website with excellent quality <a href="http://www.inspiredbyiceland.com/icelandlive/#jokulsarlon" target="_blank">webcams</a> that enable full screen viewing of three of Iceland&#8217;s landmarks: Reykjavik, Gullfoss and Jökulsárlón. My favourite is <strong></strong>Jökulsárlón, often known as Iceland&#8217;s glacier lagoon. Just for fun I set about creating a time-lapse using screen shots from the webcam. The video below is the outcome of this (best viewed full-screen or on <a href="http://vimeo.com/14646265" target="_blank">Vimeo</a>). I took a screen shot of the webcam image every minute for 24hours (starting at 1900 hours). The images were then processed to convert them from colour to black and white and I also added some blurring around the top and bottom of each frame to create a <a href="http://en.wikipedia.org/wiki/Tilt-shift_photography" target="_blank">tilt-shift</a> effect. <a href="http://williamcheshire.co.uk/" target="_blank">William Cheshire</a> kindly provided the music.</p>
<p><iframe src="http://player.vimeo.com/video/14646265" width="500" height="331" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/09/jokulsarlon-timelapse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RGS-IBG Annual Conference 2010: Recommended Sessions</title>
		<link>http://spatialanalysis.co.uk/2010/08/rgs-annual-conference-2010-recommended-sessions/</link>
		<comments>http://spatialanalysis.co.uk/2010/08/rgs-annual-conference-2010-recommended-sessions/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 12:42:48 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GIScience]]></category>
		<category><![CDATA[RGS Annual Conference]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=1156</guid>
		<description><![CDATA[I have had a look through this year&#8217;s Royal Geographical Society Annual Conference programme to pick out my recommendations for those with interests in GIS and Spatial Analysis. I have included the session titles (in no particular order), their days and locations and also links to who is presenting and what they are talking about. ...]]></description>
			<content:encoded><![CDATA[<p>I have had a look through this year&#8217;s Royal Geographical Society Annual Conference<a href="http://www.rgs.org/WhatsOn/ConferencesAndSeminars/Annual+International+Conference/Online+Programme.htm" target="_blank"> programme</a> to pick out my recommendations for those with interests in GIS and Spatial Analysis. I have included the session titles (in no particular order), their days and locations and also links to who is presenting and what they are talking about.</p>
<h3>2011 GB Census: Planning Ahead.</h3>
<p>Friday; Session 2231; RGS-IBG Drayson Room; <a href="http://docs.google.com/View?id=dzs44v7_1331fvd388gt" target="_blank">Link to speakers</a>.</p>
<h3>Analysing and Visualising Social Change: Postgraduate research in GIScience.*</h3>
<p>Thursday; Session 2143; Electrical Engineering, Room 509a; <a href="http://docs.google.com/Doc?docid=0AaZh0YTEak1VZHpzNDR2N185MjJmODR3em5neg&amp;hl=en_GB" target="_blank">Link to speakers</a>.</p>
<h3>Distance, Speed and Time: The Fundamentals of Transport Geography.</h3>
<p>Wednesday; Session 354; RGS-IBG Pavilion; <a href="http://docs.google.com/View?id=dzs44v7_1194hgx6bcdz" target="_blank">Link to Speakers.</a></p>
<h3>Enhancing Complex Social Simulations with Automata Systems.*</h3>
<p>Thursday; Session 3175; Electrical Engineering, Room 509a; <a href="http://docs.google.com/Doc?docid=0AaZh0YTEak1VZHpzNDR2N18xMTgyZDU4M3RuZHg&amp;hl=en_GB" target="_blank">Link to speakers</a>.</p>
<h3>GIS for Environmental Modelling.*</h3>
<p>Thursday; Session 4200; Electrical Engineering, Room 509a; <a href="http://docs.google.com/Doc?docid=0AaZh0YTEak1VZHpzNDR2N185NDBjeHRyajdjbQ&amp;hl=en_GB" target="_blank">Link to speakers.</a></p>
<h3>Governance and the Geoweb.*</h3>
<p>Friday; Session 1226; Sherfield Building, Room 7; <a href="http://docs.google.com/Doc?docid=0AaZh0YTEak1VZHpzNDR2N18xMTE4bWsyaGRoZjU&amp;hl=en_GB" target="_blank">Link to Speakers.</a></p>
<h3>Postgraduate Research in Transport (1): Mobility, sustainability and behaviour of individuals.</h3>
<p>Friday; Session 1219; Sir Alexander Fleming Building, Room 121; <a href="http://docs.google.com/Doc?docid=0AaZh0YTEak1VZHpzNDR2N18xMDU4aGpmZjN3Y2s&amp;hl=en_GB" target="_blank">Link to Speakers</a>.</p>
<h3>Postgraduate Research in Transport (2): Infrastructure, development and urban form.</h3>
<p>Friday; Session 2235; Sir Alexander Fleming Building, Room 121; <a href="http://docs.google.com/Doc?docid=0AaZh0YTEak1VZHpzNDR2N18xMDU4aGpmZjN3Y2s&amp;hl=en_GB" target="_blank">Link to Speakers</a>.</p>
<h3>The Spatial Dimensions of Health.</h3>
<p>Wednesday; Session 123; Sherfield Building, Room 7; <a href="http://docs.google.com/Doc?docid=0AaZh0YTEak1VZHpzNDR2N18xMDEwZDk4ZHRtZDM&amp;hl=en_GB" target="_blank">Link to Speakers.</a></p>
<h3>There is no place like home! – Why historians would want to use GIS.</h3>
<p>Friday; Session 3252; RGS-IBG Lowther Room; <a href="http://docs.google.com/View?id=dzs44v7_1283cmzjsgft" target="_blank">Link to Speakers.</a></p>
<p>*GIScience Research Group organised session.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/08/rgs-annual-conference-2010-recommended-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhD Studentship Available</title>
		<link>http://spatialanalysis.co.uk/2010/07/phd-studentship-available/</link>
		<comments>http://spatialanalysis.co.uk/2010/07/phd-studentship-available/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 14:55:04 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PhD]]></category>
		<category><![CDATA[studentship]]></category>
		<category><![CDATA[UCL]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=1114</guid>
		<description><![CDATA[Here is a great opportunity to join our research group: Summary: Creating better Area Classification for the 2011 Census of the Population A Ph.D. studentship is available commencing end September 2010 for three years to create an updated methodology for the creation of a new area classification that will be employed on the 2011 Census ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1121" title="oac_im" src="http://spatialanalysis.co.uk/wp-content/uploads/2010/07/oac_im11.png" alt="" /></p>
<p>Here is a great opportunity to join our research group:</p>
<p><strong>Summary: Creating better Area Classification for the 2011 Census of the Population</strong></p>
<p>A Ph.D. studentship<strong> </strong>is available commencing end September 2010 for three years to create an updated methodology for the creation of a new area classification that will be employed on the 2011 Census of the Population, when the output data are made available. The current classification can be viewed as the ‘OAC interactive map’ at <a href="http://www.areaclassification.org.uk/">www.areaclassification.org.uk</a>.</p>
<p>This provides an excellent opportunity to address a range of important methodological issues with geodemographic classifications, and to build better visualisation methods for dissemination that will maximise engagement and create more opportunities for public feedback. As such, the key research deliverables of this award will be: to evaluate alternate clustering methodologies that create more stable assignments of areas into clusters; to design new geographically sensitive methods of measurement that inform the underlying indicator variables used to create the classification; to develop and evaluate new modes of dissemination which better utilise web based technology and new advances in GIS.</p>
<p>The successful candidate is likely to have a background in GIS or computer science, and will have as a minimum an upper second or first class degree. S/he must also be a home/EU student for fee-paying purposes. Applicants should email a curriculum vitae and supporting statement to <a href="http://paul-longley.com/" target="_blank">Professor Paul Longley</a> at the Department of Geography, University College London: <a href="mailto:plongley@geog.ucl.ac.uk">plongley@geog.ucl.ac.uk</a>. The closing date for applications is <strong>Friday 27 August 2010</strong>, with interviews planned for the following week.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/07/phd-studentship-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iceland Trip</title>
		<link>http://spatialanalysis.co.uk/2010/07/iceland-trip/</link>
		<comments>http://spatialanalysis.co.uk/2010/07/iceland-trip/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 12:37:19 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Gulfoss]]></category>
		<category><![CDATA[Hornstrandir]]></category>
		<category><![CDATA[Iceland]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Vik]]></category>

		<guid isPermaLink="false">http://spatialanalysis.co.uk/?p=1048</guid>
		<description><![CDATA[I have recently returned from a trip to Iceland. Myself and two friends camped and hiked for four days (3 nights) on the Hornstrandir Peninsular before a couple of us hired a car and explored the south of Iceland. It was an amazing trip and I would recommend people visit Iceland at least once. I ...]]></description>
			<content:encoded><![CDATA[<p>I have recently returned from a trip to Iceland. Myself and two friends camped and hiked for four days (3 nights) on the<a href="http://english.ust.is/National-Parks/Protectedareas/Hornstrandir/" target="_blank"> Hornstrandir</a> Peninsular before a couple of us hired a car and explored the south of Iceland. It was an amazing trip and I would recommend people visit Iceland at least once. I have embedded a few of my favourite pictures from the trip below.<br />
<object width="400" height="267"><param name="flashvars" value="host=picasaweb.google.com&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FJACheshire%2Falbumid%2F5495590057944414337%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" /><param name="src" value="http://picasaweb.google.com/s/c/bin/slideshow.swf" /><embed type="application/x-shockwave-flash" width="400" height="267" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" flashvars="host=picasaweb.google.com&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FJACheshire%2Falbumid%2F5495590057944414337%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US"></embed></object></p>
<p>For those yet to be <a href="http://www.inspiredbyiceland.com/">Inspired by Iceland</a>, this video should help:<br />
<object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=12236680&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="225" src="http://vimeo.com/moogaloop.swf?clip_id=12236680&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/12236680">Inspired by Iceland Video</a> from <a href="http://vimeo.com/icelandinspired">Inspired By Iceland</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://spatialanalysis.co.uk/2010/07/iceland-trip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

