<?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>Volunteered Geographic Information &#187; GIS</title>
	<atom:link href="http://danieljlewis.org/tag/gis/feed/" rel="self" type="application/rss+xml" />
	<link>http://danieljlewis.org</link>
	<description>A Geography/GIS blog by Daniel J Lewis</description>
	<lastBuildDate>Tue, 20 Dec 2011 17:15:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ArcGIS 10 &#8211; Field Calculator and Python</title>
		<link>http://danieljlewis.org/2010/10/11/arcgis-10-field-calculator-and-python/</link>
		<comments>http://danieljlewis.org/2010/10/11/arcgis-10-field-calculator-and-python/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 17:10:57 +0000</pubDate>
		<dc:creator>Daniel Lewis</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arcgis]]></category>
		<category><![CDATA[esri]]></category>
		<category><![CDATA[field calculations]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://danieljlewis.org/?p=422</guid>
		<description><![CDATA[Python has been more tightly integrated in the new release of ArcGIS 10, allowing scripting to occur directly through a Python process without even opening up ArcMap. Admittedly this was available before, but now everything is more tightly coupled and a lot cleaner in it&#8217;s implementation. However, what has really interested, and indeed confused me [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdanieljlewis.org%2F2010%2F10%2F11%2Farcgis-10-field-calculator-and-python%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdanieljlewis.org%2F2010%2F10%2F11%2Farcgis-10-field-calculator-and-python%2F&amp;source=gisdjl&amp;style=normal&amp;service=bit.ly&amp;service_api=gisdjl%3AR_cbf864f1d7672c90a5d0e63770588605&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Python has been more tightly integrated in the new release of ArcGIS 10, allowing scripting to occur directly through a Python process without even opening up ArcMap. Admittedly this was available before, but now everything is more tightly coupled and a lot cleaner in it&#8217;s implementation. However, what has really interested, and indeed confused me of late is how to use Python in the &#8216;field calculator&#8217;.</p>
<p>Field Calculator is a really useful tool, when you are looking at an attribute table for a shapefile in ArcGIS and you want to derive a value for each object in the file based on a function you can input the function into the field calculator and it will work it out for you row by row. Sometimes the value you want to derive is a bit more complicated than simple arithmetic and you need to write a script. Previously you could do this in VBA, but I always found it limited and confusing, now however you can do it in Python &#8211; much simpler!</p>
<p>There are a few pitfalls to using Python in ArcGIS field calculator, and so I&#8217;m going to specify how to write simple field calculator python scripts in ArcGIS from my early experience.</p>
<p>Firstly, for Python in field calculator the way to do it seems to be in write a Python function, and then call it for each row. In addition to this, because you are writing a function you have to give it the relevant parameters (i.e fields) with which to do the computation. Finally, and annoyingly you have to write your function in a little box, and use a consistent indentation standard (1 space works best for reasons of space) as Python requires.</p>
<p>Here is a basic recipe for achieving field calculations in ArcGIS using Python. Obvious this is overly simplistic as you do not need a script to do this calculation, but it serves as an introductory example.</p>
<p style="text-align: center"><a href="http://danieljlewis.org/files/2010/10/FieldCalculator10.png"></a><a href="http://danieljlewis.org/files/2010/10/FieldCalculator101.png"><img class="aligncenter size-full wp-image-427" src="http://danieljlewis.org/files/2010/10/FieldCalculator101.png" alt="" width="493" height="472" /></a></p>
<p>1) Name a function and parameterise it with the fields to base the calculation on. Do this in the lower box.</p>
<p style="padding-left: 30px">In the image you can see I&#8217;ve input: density( !sum_pop!, !Area!) This means send the values in the fields called sum_pop and Area to the function called density.</p>
<p>2) Define the function you are calling in the larger upper box.</p>
<p style="padding-left: 30px">You define a function in python using the &#8220;def&#8221; command. In the image i have defined the &#8220;density&#8221; function by writing the line: def density( pop,area):</p>
<p style="padding-left: 30px">This function definition means: define a function called density which takes the parameters pop and area. The parameters could be called anything, but it is useful to call them something that makes sense for use in the function. These parameters are variable names that the function uses to identify the fields you have passed the function when you called it, as in 1).</p>
<p style="padding-left: 30px">Normally you&#8217;d do some sort of calculation within the function, however this example is so simple that all we need to do is &#8220;return&#8221; a value to the function call. This function is the density defined as population over area: pop/area.</p>
<p>Looking at the field calculator I have found that you are limited to the basic, math and datetime modules in python, without the ability to import other modules. You can however define several functions and call them from within your main function.</p>
<p>For details on the basic syntax of using python, this site is particularly good: http://www.tutorialspoint.com/python/index.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://danieljlewis.org/2010/10/11/arcgis-10-field-calculator-and-python/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Your Brain on GIS</title>
		<link>http://danieljlewis.org/2010/01/21/your-brain-on-gis/</link>
		<comments>http://danieljlewis.org/2010/01/21/your-brain-on-gis/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 14:42:11 +0000</pubDate>
		<dc:creator>Daniel Lewis</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Representation]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[field]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[neuroscience]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[raster]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://danieljlewis.org/?p=148</guid>
		<description><![CDATA[We all know that representation in GIS is achieved primarily in either of two ways: with objects or with fields. This classic dichotomy was discussed at length during the 1990s when it suddenly became apparent that it is important to consider how the mapped representation of geographical phenomena actually changes our experiences of these in [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdanieljlewis.org%2F2010%2F01%2F21%2Fyour-brain-on-gis%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdanieljlewis.org%2F2010%2F01%2F21%2Fyour-brain-on-gis%2F&amp;source=gisdjl&amp;style=normal&amp;service=bit.ly&amp;service_api=gisdjl%3AR_cbf864f1d7672c90a5d0e63770588605&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>We all know that representation in GIS is achieved primarily in either of two ways: with objects or with fields. This classic dichotomy was discussed at length during the 1990s when it suddenly became apparent that it is important to consider how the mapped representation of geographical phenomena actually changes our experiences of these in reality, or vice-versa.</p>
<p>If we look at a GI science text (the top of the pile being Longley et al, 2005) we learn quite simply that objects represent discrete entities that we might encounter such as cars, wheelbarrows, buildings, fences, roads or fruit. These discrete objects are best encoded as either a point, line or area (polygon). This gives the discrete object a kind of exacting presence in the GIS environment. On the other hand, things that aren&#8217;t discrete, i.e. they exist not as a single definable thing, but as a continuous &#8216;everywhere&#8217;, can be lumped into the &#8216;field&#8217; category, which we know as &#8216;raster images&#8217;. These rasters are grids of cells which cover a defined area entirely and hold a value for each cell giving a <em>defacto</em> continuous field. Obviously using cells means it isn&#8217;t continuous, but lets ignore that and pretend we&#8217;re happy; in the end a good resolution will fool you into thinking that a raster represents a continuous space.</p>
<p>Now, vectors have generally risen to dominate the discourse of how we see the world. The cutting-edge products are all vectors, OS mastermap for example, and rasters have fallen by the way side a bit, as a social researcher it is easy to look at rasters as &#8216;something environmental GIS&#8217;ers do&#8217;. Nonetheless it is all too easy to find impassioned reasonings for the use of raster, or field, representations in GIS &#8211; as Helen Couclelis (1992) wryly states: &#8220;People manipulate objects (but cultivate fields)&#8221;. Thus there exists a tension in how we ought to think about representing our world and thus how we actually see it.</p>
<div id="attachment_149" class="wp-caption alignleft" style="width: 302px"><a href="http://danieljlewis.org/files/2010/01/gridcell.jpg"><img class="size-full wp-image-149" title="gridcell" src="http://danieljlewis.org/files/2010/01/gridcell.jpg" alt="" width="292" height="300" /></a><p class="wp-caption-text">A Grid Cell with red flares representing the position of a subject when the neuron was &#39;on&#39;.</p></div>
<p>Which brings me onto the main point: it seems that scientists in UCL&#8217;s <a title="Institute of Cognitive Neuroscience" href="http://www.icn.ucl.ac.uk/" target="_blank">Institute of Cognitive Neuroscience</a> has established how the brain creates internal maps of new environments. The brain uses &#8216;Grid Cells&#8217;. The grid cells are actually special neurons which hold a sort of &#8216;spatial memory&#8217;, when you encounter a space these neurons fire in a sequence that, when mapped, show up as geometrically regular, triangular grids. Regarding this, <a title="Dr Caswell Barry" href="http://www.icn.ucl.ac.uk/Staff-Lists/MemberDetails.php?Title=Dr&amp;FirstName=Caswell&amp;LastName=Barry" target="_blank">Dr Caswell Barry</a> said:</p>
<p>“It is as if grid cells provide a <strong>cognitive map of space.</strong> In fact, these cells are very much like the <strong>longitude</strong> and <strong>latitude</strong> lines we’re all familiar with on normal maps, but instead of using square grid lines it seems the brain uses triangles.”</p>
<p>So perhaps Helen Couclelis was right, we do use fields and luckily within GIS we have implemented any number of geometric rasters, obviously a square raster is standard, but triangles are not uncommon and neither are hexagonal matrices. What is more, the triangulated irregular network (TIN) acts as a kind of go-between, part vector object and part continuous field. Therefore, your brain on GIS is actually very closely related to your brain anyway! Perhaps a more field-based view of the world is called for.</p>
<p>References</p>
<p>The original article on this discovery is<a title="UCL Grid Cells Research" href="http://www.ucl.ac.uk/news/news-articles/1001/10012001" target="_blank"> here.</a></p>
<p>Couclelis H (1992) &#8220;People manipulate objects (but cultivate fields): Beyond the raster-vector debate in GIS&#8221;, in Theories and methods of Spatio-Temporal Reasoning in Geographic Space, Lecture Notes in Computer Science, 639, Springer, Berlin.</p>
<p>Longley P, Goodchild M, Maguire D and Rhind D (2005) Geographic Information Systems and Science 2nd Edition, Wiley, London.</p>
]]></content:encoded>
			<wfw:commentRss>http://danieljlewis.org/2010/01/21/your-brain-on-gis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heterotopic GIS</title>
		<link>http://danieljlewis.org/2009/12/15/heterotopic-gis/</link>
		<comments>http://danieljlewis.org/2009/12/15/heterotopic-gis/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 19:40:23 +0000</pubDate>
		<dc:creator>Daniel Lewis</dc:creator>
				<category><![CDATA[Critical GIS]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Coupland]]></category>
		<category><![CDATA[foucault]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[heterotopia]]></category>
		<category><![CDATA[interpretation]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[place]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://danieljlewis.org/?p=120</guid>
		<description><![CDATA[Michel Foucault introduces the idea of &#8216;heterotopias&#8217; in his essay &#8216;of other spaces&#8216;. In this work he first establishes that the present epoch will be the epoch of space: of simultaneity, juxtaposition, near and far, side by side and dispersed. This pronouncement bodes well for geography as a discipline, but perhaps not for GIS. Foucault, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F12%2F15%2Fheterotopic-gis%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F12%2F15%2Fheterotopic-gis%2F&amp;source=gisdjl&amp;style=normal&amp;service=bit.ly&amp;service_api=gisdjl%3AR_cbf864f1d7672c90a5d0e63770588605&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Michel Foucault introduces the idea of &#8216;heterotopias&#8217; in his essay &#8216;<a title="Foucault: Of Other Spaces" href="http://foucault.info/documents/heteroTopia/foucault.heteroTopia.en.html" target="_blank">of other spaces</a>&#8216;. In this work he first establishes that the present epoch will be the epoch of space: of simultaneity, juxtaposition, near and far, side by side and dispersed.</p>
<p>This pronouncement bodes well for geography as a discipline, but perhaps not for GIS. Foucault, as with other authors who could be thought to be &#8216;poststructuralist&#8217;, is against a determistic views of time and space; a view most evident in GIS where order in space is established through data structures and explicit object hierarchies. However, he also notes that the current understanding of places as &#8216;sites&#8217; is linked to contemporary technologies.</p>
<p>Sites themselves don&#8217;t constitute space or place however, space and place are constructed by the relationships between sites. Thus GIS may have the capability to manage sites- which deal with the relationships and proximity between different objects as defined by structures (series, trees or grids) as well as the demographic issue of placing and attributing things within a site, i.e. siting- but not space and place itself.</p>
<p>Foucault defines heterotopias as sites which relate to all other sites, but suspect, neutralise and invert the relations that they have- basically a site which is linked ot all others but inherently contradict them. Foucault gives examples of heterotopias as sites such as hospitals, schools, cemetaries etc &#8211; sites in which societal norms are replaced by another norm which has the effect of challenging and inverting the societal norm and creates instead an &#8216;unreal space&#8217;. Another way of thinking of a heterotopia is as a reflection in a mirror- the image you see is a real place, but reflected to a virtual location and thus inverted.</p>
<p>From this, it is clear to see that we can think of GIS as heterotopias. Any given GIS, depending on the work that it is being used for, contains a set of sites that exist in the real world, but which, within the GIS, are reflections. These reflections are not real places, but abstractions and generalisations of real places projected in an absolute, virtual, space.</p>
<p>Foucault goes onto define some of the properties of heterotopias, most of which apply to GIS. Most heterotopias are heterotopias of deviation, this can be seen to be the case in GIS where norms of societies are replaced by mathematical and geometrical norms, similarly (as discussed in Pavlovskaya, 2006 and 2009 in a previous post) heterotopias are remade by societies as they change, as indeed are GIS. A heterotopia, like a GIS, is often linked to slices in time, taking everything up to a certain point, or simply taking a moment; it is this charactersitic in GIS that means that it has trouble handling temporal data. Heterotopias have rights of entry and are not freely accessible, perhaps this is also true of GIS which require a different way of conceptualising space to the norm. Perhaps the most important aspect though is the following: a heterotopia is a space which is &#8216;other&#8217;, it can be seen as the mirrored &#8216;perfect&#8217; space- as well ordered as our real space is disordered. Thus the GIS cements its position as a tool for interpreting the conceptual model of our world, in doing this it is the &#8216;heterotopia of compensation&#8217;.</p>
<p><em>postscript</em>: I&#8217;ve recently been reading Generation A by Douglas Coupland, the novel really dovetails together the ideas of unreality in things like maps and earth-observation images and the challenging of societal norms. The insight is similar and conguent with viewing GIS as a heterotopia.</p>
]]></content:encoded>
			<wfw:commentRss>http://danieljlewis.org/2009/12/15/heterotopic-gis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non-Quantitative GIS &#8211; A thought</title>
		<link>http://danieljlewis.org/2009/12/11/non-quantitative-gis-a-thought/</link>
		<comments>http://danieljlewis.org/2009/12/11/non-quantitative-gis-a-thought/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 14:29:40 +0000</pubDate>
		<dc:creator>Daniel Lewis</dc:creator>
				<category><![CDATA[Critical GIS]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mixed-methods]]></category>
		<category><![CDATA[non-quantitative]]></category>
		<category><![CDATA[Pavlovskaya]]></category>
		<category><![CDATA[qualitative]]></category>
		<category><![CDATA[quantitative]]></category>

		<guid isPermaLink="false">http://danieljlewis.org/?p=107</guid>
		<description><![CDATA[I&#8217;ve been reading through a recent book entitled &#8220;Qualitative GIS: A Mixed Methods Approach&#8221; by Meghan Cope and Sarah Elwood, hopefully I&#8217;ll post a full review it soon. In the meantime however, I want to think about one of the sections in it by Marianna Pavlovskaya, specifically her discussion of whether or not GIS is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F12%2F11%2Fnon-quantitative-gis-a-thought%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F12%2F11%2Fnon-quantitative-gis-a-thought%2F&amp;source=gisdjl&amp;style=normal&amp;service=bit.ly&amp;service_api=gisdjl%3AR_cbf864f1d7672c90a5d0e63770588605&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been reading through a recent book entitled &#8220;Qualitative GIS: A Mixed Methods Approach&#8221; by Meghan Cope and Sarah Elwood, hopefully I&#8217;ll post a full review it soon. In the meantime however, I want to think about one of the sections in it by Marianna Pavlovskaya, specifically her discussion of whether or not GIS is inherently a quantitative tool. I tend to agree with Marianna on one front &#8211; rarely do most GIS users directly engage with the quantitative aspects of GIS, use of GIS becomes about spatial reasoning with overlays and logical tesselations of geometry and the impact of visual depiction. On the other hand though I offer a photo of books currently on my desk:</p>
<div id="attachment_110" class="wp-caption aligncenter" style="width: 277px"><a href="http://danieljlewis.org/files/2009/12/DSC00322.JPG"><img class="size-medium wp-image-110" title="DSC00322" src="http://danieljlewis.org/files/2009/12/DSC00322-267x300.jpg" alt="Figure 1: Some books on my shelf" width="267" height="300" /></a><p class="wp-caption-text">Figure 1: Some books on my shelf</p></div>
<p>I think there is a serious point here; GIS is a tool- people are happy to use tools to get the jobs they need doing done, I trust an allen key to undo parts of my bicycle without breaking them, and tighten them to a safe level. I don&#8217;t however need to know exactly how the tool is made, I just trust I know how to use it. The same is true of GIS, functions such as overlays are tools (in fact this is the exact terminology that ESRI use in ArcGIS), you use tools to analyse maps in a non quantitative way, because you reason and understand their usage; I don&#8217;t specifically need to know how the overlay works in a mechanical sense, just that it does. It is generally that case that such tools, even simple tools have a basis in quantitative fields, often mathematics; an overlay is a topological operator deriving from that branch of mathematics.</p>
<p>Now, in a GIS such tools are formed from solving challenges in &#8216;computational geometry&#8217;, and I agree with Pavlovskaya again in that &#8216;computerisation is not quantification&#8217;, except that in this case; that is exactly what it is. There are numerous instances in GIS, shown through point pattern analyses, topological functions and distance decay in which it is clear that GIS is a quantitative tool with a quantitative development.</p>
<p>So is Pavlovskaya wrong then? Well, no. There are different kinds of users in GIS and for the most part users aren&#8217;t looking &#8216;under the bonnet&#8217;, to them a GIS is a set of tools, the use of which causes them to construct (make) GIS as a non-quantitative thing. What seems strange is that in looking for opening for non-quantitative GIS in this perspective, the current way of constructing GIS quantitatively had to be challenged, or seen to be wrong and somehow misguided. In my eyes the interesting thing that comes out of this discussion is the idea of abstraction.</p>
<p>In a sense quantitative, or technical, ways of seeing are increasingly being abstracted: bundled and enclosed into something you can think of as a &#8216;black box&#8217;. This encourages engagement as the most common user experience is a qualitative one, as qualitiative experiences for most are more intuitive &#8211; generally we have the appropriate skills to deal with such experiences, but may need to learn the skills to engage quantitatively in a complex system such as GIS. Software such as GIS packages have the effect of making previosuly difficult quantitative functions much more accessible, even a measure of straightline distance is a quantitiative function &#8211; the Pythagorean theorum, and this can be done in Google Earth and Google Maps which are probably the most accessed GIS in the world (if not also the most accessible). I think the question we have to ask is: what are the tradeoffs in making quantitative functions more accessible, in having them reconstructed as qualitative tools? The obvious answer to this is that when things are conceived as &#8216;black boxes&#8217; they are exactly that: we have no idea of what is going on inside them. Thus, qualitatively, we have to decide whether or not that is important; in fact for qualitative GIS is may not be that important, as the world is reseen with &#8216;fuzzy&#8217; characteristics.</p>
<p>References</p>
<p>Cope, M. and Elwood, S. (2009) Qualitative GIS: A Mixed Methods Approach. Sage, London</p>
<p>(much of Pavlovskaya&#8217;s chapter also appears in the following paper)</p>
<p>Pavlovskaya, M. (2006) &#8216;Theorizing with GIS: A Tool for Critical Geographies?&#8217; Environment and Planning A 38(11) 2003-20</p>
<p>Addendum</p>
<p>Muki Haklay often blogs about usability and critical GIS, amongst numerous other things of interest at his blog <a title="Muki Haklay's Blog" href="http://povesham.wordpress.com/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://danieljlewis.org/2009/12/11/non-quantitative-gis-a-thought/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soft Communities and Hard Neighbourhoods?</title>
		<link>http://danieljlewis.org/2009/07/08/soft-communities-and-hard-neighbourhoods/</link>
		<comments>http://danieljlewis.org/2009/07/08/soft-communities-and-hard-neighbourhoods/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 13:36:59 +0000</pubDate>
		<dc:creator>Daniel Lewis</dc:creator>
				<category><![CDATA[Critical GIS]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[communities]]></category>
		<category><![CDATA[GISci]]></category>
		<category><![CDATA[neighbourhoods]]></category>
		<category><![CDATA[PPGIS]]></category>

		<guid isPermaLink="false">http://danieljlewis.org/?p=37</guid>
		<description><![CDATA[I&#8217;ve been thinking about populations recently, perhaps unsurprisingly after the recent PopFest conference, nevertheless I tend to justify the presence of certain groups as characteristics of particular neighbourhoods or communities. In itself this seems entirely valid, certainly no population is perfectly homogeneous, they exist along a spectrum of heterogeneity. We can see simply from our [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F07%2F08%2Fsoft-communities-and-hard-neighbourhoods%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F07%2F08%2Fsoft-communities-and-hard-neighbourhoods%2F&amp;source=gisdjl&amp;style=normal&amp;service=bit.ly&amp;service_api=gisdjl%3AR_cbf864f1d7672c90a5d0e63770588605&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been thinking about populations recently, perhaps unsurprisingly after the recent PopFest conference, nevertheless I tend to justify the presence of certain groups as characteristics of particular neighbourhoods or communities. In itself this seems entirely valid, certainly no population is perfectly homogeneous, they exist along a spectrum of heterogeneity. We can see simply from our own experience of the world that some areas exhibit spectacular diversity of inhabitants, particularly urban areas, my case study area of Southwark, London springs to mind. Situated in central London, south of the River Thames it contains a population that spans the inequality divide from the wealthy, young, City workers resident along the redeveloping &#8216;Bankside&#8217; and the older, settled familied of the leafier southern part of Southwark, to the poorer, often non-white, communties in central Southwark living in social housing, to the poorer, older white residents historically attached to the docklands to the north-east of Southwark. Notably rural areas tend toward greater homogeneity, but still exhibit some diversity in some characteristics even if others, particularly ethnicity are constant.</p>
<p>This is, however, not the point, the real issue is the difference between neighbourhoods and communities. Both are very difficult to define clearly, my snap judgement is that communities realte to people and neighbourhoods to the territories that people inhabit. However some deeper research will show cracks in this simplistic approach, sure neighbourhood usually relates to a metric space, things that are near to, or contiguous to something else, however creating neighbourhoods for individuals seems like an approach to constructing communities for those individuals, likewise geodemographic classifications are increasingly being conflated with indicating something signifcant about the underlying communities. Similarly, communities occupy particular areas, the practice of mapping communities which come from government requirements seeks to territorialise community and new pratcices in public service causes further confusion: community policing for safer neighbourhoods?</p>
<p>The main rule that I have been able to extract from much of this is the propensity for communties to represent a &#8216;softer&#8217;, perhaps more public facing approach and conversely, by neighbourhoods a &#8216;harder&#8217;, more quantified method is often implied. There are notable splits within the disipline of geography between those who are willing to engage &#8216;communities&#8217;, which are intangible, temporally variable, socially realised relationships (perhaps) and come with the baggage of uncertainty and those that would rather deal with the geographically discrete entity of the neighbourhood, safe in the knowledge that the implied precision of areal units are not widely questioned. Even within GIS there has been a diversification of approach, from the mainstream GISci enforcing a &#8216;spatial science&#8217;-style approach that has persisted since the quantitative revolution (at least), to the public participation GIS discourse which actively engages communities and individuals, and by extension critical GIS which for a time has critiqued territorially bounded &#8216;descriptions&#8217; of community. Finally consider the governmental binary of &#8216;neighbourhood statistics&#8217; and &#8216;community cohesion&#8217;, many councils use neighbourhood statistics to &#8216;measure&#8217; community cohesion!</p>
]]></content:encoded>
			<wfw:commentRss>http://danieljlewis.org/2009/07/08/soft-communities-and-hard-neighbourhoods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LPSolve in R for Transportation Problems</title>
		<link>http://danieljlewis.org/2009/06/24/lpsolve-in-r-for-transportation-problems/</link>
		<comments>http://danieljlewis.org/2009/06/24/lpsolve-in-r-for-transportation-problems/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 13:30:52 +0000</pubDate>
		<dc:creator>Daniel Lewis</dc:creator>
				<category><![CDATA[PhD Work]]></category>
		<category><![CDATA[doctors]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Health GIS]]></category>
		<category><![CDATA[LPSolve]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Southwark]]></category>
		<category><![CDATA[transportation problem]]></category>

		<guid isPermaLink="false">http://danieljlewis.org/?p=20</guid>
		<description><![CDATA[Recently I&#8217;ve been doing some work involving the transportation problem. The Transportation Problem is an allocation optimisation problem that requires the optimal assignment of demand, in my case patients by Output Area, to known, fixed, supply points, in my case doctors surgeries (General Practices). Rather than use a euclidian or manhattan metric to model distance [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F06%2F24%2Flpsolve-in-r-for-transportation-problems%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F06%2F24%2Flpsolve-in-r-for-transportation-problems%2F&amp;source=gisdjl&amp;style=normal&amp;service=bit.ly&amp;service_api=gisdjl%3AR_cbf864f1d7672c90a5d0e63770588605&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Recently I&#8217;ve been doing some work involving the transportation problem. The Transportation Problem is an allocation optimisation problem that requires the optimal assignment of demand, in my case patients by Output Area, to known, fixed, supply points, in my case doctors surgeries (General Practices). Rather than use a euclidian or manhattan metric to model distance from the demand site to the supply site I have used public transport travel times from TfL.</p>
<p>Initially this seemed a difficult task, and early attempts only provided partial, or non-optimal, solutions. However, once I had found the linear programming functionality in R through the package LPSolve it became very easy to create a model with the constraints I wanted and get a solution very quickly. Key to the success of the R package was the ability to set the constraints I needed, crucially integer constraints so that people were not subdivided, and constraints on the number of patients doctors could take.</p>
<p>Mapping the outcomes in ArcGIS was straightforward due to R&#8217;s built in csv-export funtionality.</p>
<p>Here is an example of the output.</p>
<p><img class="size-large wp-image-21 alignnone" src="http://danieljlewis.org/files/2009/06/catchment06gpconstraint-724x1024.jpg" alt="catchment06gpconstraint" width="347" height="491" /></p>
<p>The legend denotes the 44 physical practices in the London borough of Southwark, some doctors exist on the same site and so these practices were agglomerated. The grey areas represent unallocated demand caused by capping the size of the General Practices. In another definition of the model I ran I set the GPs up as uncapacitated so that all the demand would be satisfied. This model uses data from 2006, I have data from 2009 for which I will also run the model.</p>
<p>Some earlier work I did on this is available in the Proceedings of GISRUK &#8217;09.</p>
]]></content:encoded>
			<wfw:commentRss>http://danieljlewis.org/2009/06/24/lpsolve-in-r-for-transportation-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;they are only cartesian imps. Or automata.&#8221;</title>
		<link>http://danieljlewis.org/2009/05/06/they-are-only-cartesian-imps-or-automata/</link>
		<comments>http://danieljlewis.org/2009/05/06/they-are-only-cartesian-imps-or-automata/#comments</comments>
		<pubDate>Wed, 06 May 2009 13:40:07 +0000</pubDate>
		<dc:creator>Daniel Lewis</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[generalisation]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[literature]]></category>
		<category><![CDATA[Modeling]]></category>
		<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://www.danieljlewis.org/?p=8</guid>
		<description><![CDATA[The above is a quotation from the book &#8220;Foucault&#8217;s Pendulum&#8221; by renowned author Umberto Eco, in the context of the book the phrase relates to a discussion that is had regarding homunculi (singular: homunculus), literally &#8216;little humans&#8217;, which are being kept in a garden in vessels of liquid. When conversation errs towards a human treatment [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F05%2F06%2Fthey-are-only-cartesian-imps-or-automata%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdanieljlewis.org%2F2009%2F05%2F06%2Fthey-are-only-cartesian-imps-or-automata%2F&amp;source=gisdjl&amp;style=normal&amp;service=bit.ly&amp;service_api=gisdjl%3AR_cbf864f1d7672c90a5d0e63770588605&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The above is a quotation from the book &#8220;Foucault&#8217;s Pendulum&#8221; by renowned author Umberto Eco, in the context of the book the phrase relates to a discussion that is had regarding homunculi (singular: <a title="Wikipedia article on Homunculus" href="http://en.wikipedia.org/wiki/Homunculus" target="_blank">homunculus</a>), literally &#8216;little humans&#8217;, which are being kept in a garden in vessels of liquid. When conversation errs towards a human treatment of these creatures, one member of the party remarks &#8220;they are only cartesian imps. Or automata&#8221;, essentially, it is not appropriate to feel responsibility for these creatures because they are not humans, merely representations of humans.</p>
<p>This led me to consider the position of Geographic Information Science, the ideas of cartesian imps (<a title="GIS and Agent Based Modelling" href="http://gisagents.blogspot.com/" target="_blank">agent based models</a>?) and automata (cellular automata?) seem to resonate some of the interpretation of Eco&#8217;s text, and it highlights some interesting debates. GISci relies on representations and models of reality, it cannot represent the true thing, it was made to generalise, and hence perhaps is a homunculus, the victim of a diminished status in the eyes of those seen to represent the true thing, the real world, in all its relational complexity.</p>
<p>In the Eco text the brief interlude of the homunculus is quickly forgotten with a return to a more established literary tradition: desire. However, it is less easy to turn our back on the same issue in GISci, can we conceivably endorse such a view, that GIS is just a system, a machine for geography? This is the perspective that led to the fiery debates in the 90s between human geographers or social theorists and the GIS community, the tool of GIS was divorced from a human nature, it had no ethic, no morality. This perspective is gradually changing, there is greater engagement with mapping through the naive geographies offered by google maps and co, likewise the GIS establishment have begun to embrace a humanising agenda, from VGI to reconceiving of GIS as media- communication is a powerfully humanising force- to the growth of a critical community that is seeking to rebuild and adapt GIS to a more social means from the inside, not from without. Increasingly GIS is moving away from its positivist roots to include a greater appreciation for human methodologies, one such being the ability of the public to challenge their geographic classification and feedback their experience into the system. Sure, people are still researching voronoi polygons and data structures, but increasingly it seems these projects are being realised in a form that in publically-readable, not merely expert-readable, or (god-forbid) only machine-readable.</p>
<p>I notice that there are stirrings within the GIS community of &#8220;the quantitative revolution 2&#8243; (see <a title="Critical Quantitative Geography" href="http://www.envplan.com/abstract.cgi?id=a41350" target="_blank">Mei-Po Kwan and Tim Schwanen</a>), which whilst sounding like a tacky sequel may herald something more than a large budget and meaningless special effects. The tag line of this revolution is: &#8220;The critical (re)turn&#8221;, I think this is essentially what is required in GIS, and it has been happening anyway, to me the &#8216;critical (re)turn&#8217; means the inclusion of mixed-methodologies, engaging with people and having a more open and involved discourse. Of course we shall have to wait for Mei-Po and Tim&#8217;s paper in a forthcoming Professional Geographer to see whether this is the case, or whether there is something fundamentally more important to say.</p>
<p>From all of this, I guess the question is: to what extent have we humanised the homunculus? or, will we ever get over the fact that it is a homuncuus rather than a human?</p>
]]></content:encoded>
			<wfw:commentRss>http://danieljlewis.org/2009/05/06/they-are-only-cartesian-imps-or-automata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

