<?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>Pezholio &#187; Council Stuff</title>
	<atom:link href="http://www.pezholio.co.uk/category/council-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pezholio.co.uk</link>
	<description>Musings on local government, web development, music and tings</description>
	<lastBuildDate>Mon, 25 Jul 2011 14:08:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Generating QR codes using PHP and the Goo.gl API</title>
		<link>http://www.pezholio.co.uk/2011/07/generating-qr-codes-using-php-and-the-googl-ap/</link>
		<comments>http://www.pezholio.co.uk/2011/07/generating-qr-codes-using-php-and-the-googl-ap/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 13:33:48 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[goo.gl]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[qr codes]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=463</guid>
		<description><![CDATA[QR codes are all the rage at the mo, after a bit of a slow start, they&#8217;re popping up everywhere, even appearing in cookery programmes. I&#8217;ve decided to take advantage of this, and have started a project to get QR codes on planning notices, so if someone is out and about and they see a [...]]]></description>
			<content:encoded><![CDATA[<p>QR codes are all the rage at the mo, after a bit of a slow start, they&#8217;re popping up everywhere, <a href="http://www.customqrcodes.com/story/31/Home">even appearing in cookery programmes</a>.</p>
<p>I&#8217;ve decided to take advantage of this, and have started a project to get QR codes on planning notices, so if someone is out and about and they see a planning notice attached to a lampost, they can scan the code with their phone and immediately find out more about the application.</p>
<p>I&#8217;ve still not finished this, but the first hurdle was actually generating the QR codes themselves. There are plenty of APIs out there, but, the more information you put in a QR code, the more complex it is, making it more difficult it is to scan and more prone to errors.</p>
<p>What I really wanted to do was shorten a URL and then create a QR code from that. If this is going to be automated, I&#8217;d need a little script to do the legwork for me.</p>
<p>I chose Google&#8217;s goo.gl url shortener, as it provides an easy option for creating a QR code, just by putting .qr at the end. Here&#8217;s the code, with comments along the way:</p>
<p><code><br />
// We're going to be outputting this as an image, rather than as plaintext, to make it easier to include in, for example a webpage<br />
header("Content-Type: image/png");</p>
<p>// We put the long URL in an array, as we're going to encode our data as JSON for the Goo.gl API<br />
$request = array(<br />
	'longUrl' => $_GET['url']<br />
);</p>
<p>// As we need to POST the data, we're using cURL<br />
$ch = curl_init(); </p>
<p>// This tells cURL to output the result of the request<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);</p>
<p>// This is the URL of the Goo.gl API<br />
curl_setopt($ch, CURLOPT_URL, "https://www.googleapis.com/urlshortener/v1/url"); </p>
<p>// We're setting the content type of our request as JSON<br />
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: application/json"));</p>
<p>// It's a POST request<br />
curl_setopt($ch, CURLOPT_POST, true);</p>
<p>// And here is the contents of the request we set earlier, encoded as JSON<br />
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($request));</p>
<p>// Now we're getting our data, again, as per the request, it's JSON, so we're using json_decode() to convert to JSON to a PHP object<br />
$data = json_decode(curl_exec($ch));</p>
<p>// Closing the cURL request<br />
curl_close($ch);</p>
<p>/*<br />
The response is in this format:</p>
<p>{<br />
 "kind": "urlshortener#url",<br />
 "id": "http://goo.gl/fbsS",<br />
 "longUrl": "http://www.google.com/"<br />
}</p>
<p>and it's 'id' we're intested so:<br />
*/<br />
$shorturl = $data->id;</p>
<p>// We now add .qr to the end of the URL and get the raw contents of the resulting QR code<br />
$image = file_get_contents($shorturl.".qr");</p>
<p>// Now echo the result out! As we've set the header of the document to be a PNG image, the browser (or whatever) knows to display an image, rather than a meaningless string of characters<br />
echo $image;<br />
</code></p>
<p>And there you have it! Any questions, give me a yell in the comments. Next step is getting the codes on the notices, which I&#8217;m nearly there with &#8211; will let you know how I get on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2011/07/generating-qr-codes-using-php-and-the-googl-ap/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Using Foursquare in Local Government</title>
		<link>http://www.pezholio.co.uk/2011/02/using-foursquare-in-local-government/</link>
		<comments>http://www.pezholio.co.uk/2011/02/using-foursquare-in-local-government/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 13:56:25 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[social-media]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[location]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=455</guid>
		<description><![CDATA[Foursquare. It&#8217;s just a vanity publishing tool that takes over your Twitter stream and Facebook feed right? OK, I&#8217;m as guilty as the next Foursquare user for checking in to the pub at lunchtime and telling all my Twitter followers, but Foursquare can actually be a pretty useful tool for giving visitors and residents useful [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.pezholio.co.uk/wp-content/uploads/2011/02/foursquare.png" alt="" title="foursquare" width="280" height="148" class="alignright size-full wp-image-457" />Foursquare. It&#8217;s just a vanity publishing tool that takes over your Twitter stream and Facebook feed right? OK, I&#8217;m as guilty as the next Foursquare user for checking in to the pub at lunchtime and telling all my Twitter followers, but Foursquare can actually be a pretty useful tool for giving visitors and residents useful information about their surroundings.</p>
<p>As well as being able to check into places and see where your friends are, Foursquare also allows you to leave &#8216;tips&#8217; about venues for your friends and followers, so when they check into that venue (or one nearby), they&#8217;ll see this tip. I&#8217;ve left a couple of tips on my personal Foursquare account (mainly plugging nights I play at, or calling out bad service at restaurants), but I&#8217;ve always thought Foursquare tips could be really useful for our tourism team, highlighting special offers and also giving historical titbits of information about places in the district.</p>
<p>I never really knew how to get started with a Foursquare page until I read <a href="http://josephstashko.com/media/using-foursquare-with-hyperlocal/">Joseph Stashko&#8217;s post</a> on how he added a <a href="http://foursquare.com/blogpreston">Foursquare page for Blog Preston</a>. I&#8217;ll leave you to read Joseph&#8217;s explanation on how he got set up, but needless to say, the sign up process is a little bit convoluted (To be fair, Foursquare say they will be changing this soon).</p>
<p>That said, once I&#8217;d filled everything out, got our designer to design a header and sent it all off to Foursquare, I was up and running within a few hours (together with a nice personal response from a Foursquare staffer). </p>
<p>You can now see the results on the <a href="http://foursquare.com/visitlichfield">Visit Lichfield Foursquare page</a>. I&#8217;ve added a few tips in and around Lichfield City with historical information that I know about personally, together with a few special offers, and I&#8217;m looking at getting a few more tips added after talking to our Green Badge guides (who know much more about Lichfield&#8217;s history than me) before launching the page officially (bizarrely, we already seem to have 600+ followers without doing any promotion, mainly people from Indonesia and New York).</p>
<p>However, it&#8217;s not just tourism that Foursquare can help with, I&#8217;d love to develop something like <a href="http://donteat.at/">donteat.at</a>, which uses public data on food safety inspections in New York to warn you if you&#8217;re about to eat at a place with a poor hygiene report, and if you&#8217;re a council with a lot of venues, you could leave tips about upcoming events or special offers. The only limit, as they say, is your imagination! </p>
<p>If anyone else has any useful tips on local gov using Foursquare, I&#8217;d love to hear them &#8211; drop me a line in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2011/02/using-foursquare-in-local-government/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Spending data &#8211; beyond the CSV</title>
		<link>http://www.pezholio.co.uk/2011/01/spending-data-beyond-the-csv/</link>
		<comments>http://www.pezholio.co.uk/2011/01/spending-data-beyond-the-csv/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 10:00:51 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Open Data]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[openly local]]></category>
		<category><![CDATA[spending]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=408</guid>
		<description><![CDATA[It&#8217;s been a while since my last post about local spending data, and, since then, our finance team have been busy beavering away behind the scenes to get our own spending data out of the council&#8217;s finance systems. However, from the outset, I was really pleased that both our finance people and our chief exec [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.pezholio.co.uk/wp-content/uploads/2011/01/csv.png" alt="" title="csv" width="170" height="170" class="alignright size-full wp-image-439" />It&#8217;s been a while since my <a href="http://www.pezholio.co.uk/2010/08/local-spending-data-a-few-ideas/">last post about local spending data</a>, and, since then, our finance team have been busy beavering away behind the scenes to get our own spending data out of the council&#8217;s finance systems.</p>
<p>However, from the outset, I was really pleased that both our finance people and our chief exec wanted to go beyond just whacking a CSV (or worse, a PDF) on the internet and show our commitment to transparency by putting the data on the web in an easy, human readable format.</p>
<p>Armed with a few CSVs, a Macbook Pro and some server space, I was put to task, and the <a href="http://spending.lichfielddc.gov.uk/">the results can be seen here</a>. Users can navigate by the various parts of the cost code (called &#8220;Department&#8221;, &#8220;Type&#8221; and &#8220;Subject&#8221;), as well as by month and supplier. </p>
<p>As well as human readable formats, almost every view of the data has an XML, JSON, CSV and RDF equivalent, achieved either by putting the relevant extension on the end, or through <a href="http://en.wikipedia.org/wiki/Content_negotiation">content negotiation</a>.</p>
<p>The user interface had been heavily influenced by <a href="http://openlylocal.com/councils/spending">OpenlyLocal</a> (after all, if it ain&#8217;t broke, why fix it?) and, as well as feeding our data in to OpenlyLocal, we also take a little bit away. When data is imported into OpenlyLocal, the system does some clever data matching to match company names to real life entities on <a href="http://opencorporates.com/">Open Corporates</a>. We have a batch job that takes that information and puts it on our spending system &#8211; <a href="http://spending.lichfielddc.gov.uk/supplier/p-casey-land-reclamation-ltd.html">you can see an example here</a>. This is an example of how open data cuts both ways, by sharing our data, we can improve it. </p>
<p>Also, thanks to the wonderful people at <a href="http://www.talis.com/">Talis</a>, we have our RDF data in a triple store, so it can be queried, both through SPARQL queries and a free text search, making the data even more useful from the off. I&#8217;m hoping to put together a tutorial in SPARQL soon, both here and on the Lichfield District Council website, which should hopefully demystify the process a bit more.</p>
<p>Finally, I&#8217;m hoping to open source the code (once it&#8217;s tidied up a bit), so of you&#8217;re from a local authority and want to make your spending data a little more clear to Joe Public, then you can benefit from my work too!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2011/01/spending-data-beyond-the-csv/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Grit bins &#8211; your help needed!</title>
		<link>http://www.pezholio.co.uk/2010/11/grit-bins-your-help-needed/</link>
		<comments>http://www.pezholio.co.uk/2010/11/grit-bins-your-help-needed/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 10:28:36 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[Open Data]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=402</guid>
		<description><![CDATA[During the Lichfield Hacks and Hackers day yesterday (bigger blog post to come on that later) &#8211; I was gifted a list of grit bins in Lichfield District, I got very excited about this, but my excitement was quickly dampened when I realised that there was no geographical data in the list, just road names [...]]]></description>
			<content:encoded><![CDATA[<p>During the <a href="http://lichhack.eventbrite.com/">Lichfield Hacks and Hackers day</a> yesterday (bigger blog post to come on that later) &#8211; I was gifted a list of <a href="https://spreadsheets.google.com/ccc?key=0As1cSxPJOFWldEpxNDZady1aUmhIVTFXUjdjZHJ1M1E&#038;hl=en">grit bins in Lichfield District</a>, I got very excited about this, but my excitement was quickly dampened when I realised that there was no geographical data in the list, just road names and a vague location.</p>
<p>However, I then thought &#8216;not to worry, I can just ask people who live nearby to geolocate them on their phones and add them to a Google Doc&#8217;, I asked a <a href="http://twitter.com/robthedog">@robthedog</a> (who lives in a village north of the district) if he could do a few when he got home, his reply was &#8216;I can do one now&#8217;:</p>
<p><img src="http://www.pezholio.co.uk/wp-content/uploads/2010/11/gritbin-300x158.png" alt="Grit Bin on Google Street View" title="Grit Bin on Google Street View" width="300" height="158" class="aligncenter size-medium wp-image-404" /></p>
<p>Of course! Google Street view! This is where you lot come in. I&#8217;m going to crowdsource the location of these grit bins (I&#8217;ve <a href="https://spreadsheets.google.com/ccc?key=0As1cSxPJOFWldEpxNDZady1aUmhIVTFXUjdjZHJ1M1E&#038;hl=en#gid=0">already done a few myself</a>) &#8211; to help, all you need to do is follow a few simple steps:</p>
<ol>
<li>Open up <a href="https://spreadsheets.google.com/ccc?key=0As1cSxPJOFWldEpxNDZady1aUmhIVTFXUjdjZHJ1M1E&#038;hl=en#gid=0">this Google document</a></li>
<li>Drag <a href="javascript:void(prompt('',gApplication.getMap().getCenter()));">this bookmarklet to your browser&#8217;s toolbar</a></li>
<li>Open up <a href="http://maps.google.co.uk">Google Maps</a> and search for a road name and town / village which doesn&#8217;t have a lat/lng yet</li>
<li>Drag the little yellow street view man (<a href="http://www.pezholio.co.uk/?attachment_id=405">this guy</a>) to the map and have a look round Street View for the grit bin</li>
<li>Once you&#8217;re right by it &#8211; zoom out of Street View and click the bookmarklet &#8211; a window will pop up with the lat/lng &#8211; you can then copy and paste it and enter it into the Google doc!</li>
</ol>
<p>It&#8217;s that simple! If you could do just a couple, I&#8217;ll be forever in your debt (I might buy you a pint if I see you in the flesh too!)</p>
<p>Once it&#8217;s done, I&#8217;ll be able to build a handy map of grit bins in the area and hopefully save a few slips and falls (as well as a few costly calls to our contact centre!). There&#8217;s 87of them, and, as I&#8217;ve already done 10, it should be long before I&#8217;ve got them all.</p>
<p>Thanks again, you lovely people you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2010/11/grit-bins-your-help-needed/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>First steps to councils publishing their own linked data</title>
		<link>http://www.pezholio.co.uk/2010/09/council-linked-data/</link>
		<comments>http://www.pezholio.co.uk/2010/09/council-linked-data/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 11:17:33 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[Open Data]]></category>
		<category><![CDATA[linked data]]></category>
		<category><![CDATA[ontologies]]></category>
		<category><![CDATA[uris]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=390</guid>
		<description><![CDATA[On Friday, I toddled along to London for a bit of a chat about local spending data, organised by LeGSB, the local government e-Standards body. In particular we looked at how councils can publish their spending data in a linked data format. It was an interesting day, and much of the work seems to have [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday, I toddled along to London for a bit of a chat about local spending data, organised by <a href="http://www.legsb.gov.uk/Home.aspx">LeGSB</a>, the local government e-Standards body. In particular we looked at how councils can publish their spending data in a linked data format. It was an interesting day, and much of the work seems to have already been done by folks much cleverer than myself.</p>
<p>However, at the end of the day, Paul Davidson (the Director of Standards at LeGSB) raised an interesting topic. At the moment, much of the <em>describing</em> of councils in the linked data world seems to be done by external bodies, such as <a href="http://statistics.data.gov.uk">The Office for National Statistics</a> and <a href="http://data.ordnancesurvey.co.uk">Ordnance Survey</a>, and often, this isn&#8217;t always the best fit, with the data referring to geographical regions, rather than councils themselves.</p>
<p>Paul then made the point that really, it should be the councils themselves that describe who they are, rather than some arbitrary body, after all, there is no one better placed to know about the council than the council themselves! We then talked very briefly about the possibility of councils minting their own URIs and publishing some RDF with some information about themselves (such as contact details etc). Other organisations and people can then use these URIs to refer to the councils in their data.</p>
<p>I&#8217;ve been mulling this over over the weekend, and I fired off an email this morning suggesting that, rather than publishing a page of RDF, people simply add data to their council homepages, either as RDFa or metadata (although I&#8217;m not sure how you&#8217;d do the latter!). People could then use their council homepage URLs as URIs (perhaps with #id at the end of the URI, to make the URI for the council different to the one for the page).</p>
<p>With this in mind I&#8217;ve knocked up a sample dataset for Lichfield District Council using various ontologies from around the linked data web (including FOAF, vCard, Chris Taggart&#8217;s Openly Local ontology and a bit of the <a href="http://www.epimorphics.com/public/vocabulary/org.html">Organizational (sic) Ontology</a>). I&#8217;ve also <a href="http://sameas.org/">sameAs</a>ed to the <a href="http://statistics.data.gov.uk/">National Statistics Dataset</a>, <a href="http://openlylocal.com/">Openly Local</a> and <a href="http://openlylocal.com/">DBpedia</a>:</p>
<p><code><br />
&lt;?xml version=&quot;1.0&quot;?&gt;<br />
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;<br />
  xmlns:skos=&quot;http://www.w3.org/2004/02/skos/core#&quot;<br />
  xmlns:rdfs=&quot;http://www.w3.org/2000/01/rdf-schema#&quot;<br />
  xmlns:owl=&quot;http://www.w3.org/2002/07/owl#&quot;<br />
  xmlns:foaf=&quot;http://xmlns.com/foaf/0.1/&quot;<br />
  xmlns:dct=&quot;http://purl.org/dc/terms/&quot;<br />
  xmlns:vcard=&quot;http://www.w3.org/2006/vcard/ns#&quot;<br />
  xmlns:administrative-geography=&quot;http://statistics.data.gov.uk/def/administrative-geography/&quot;<br />
  xmlns:openlylocal=&quot;http://openlylocal.com/info/vocab#&quot;<br />
  xmlns:org=&quot;http://www.w3.org/ns/org#&quot;&gt;<br />
&lt;rdf:Description rdf:about=&quot;http://www.lichfielddc.gov.uk/#id&quot;&gt;<br />
        &lt;rdfs:label&gt;Lichfield District Council&lt;/rdfs:label&gt;<br />
        &lt;vcard:organisation-name&gt;Lichfield District Council&lt;/vcard:organisation-name&gt;<br />
        &lt;rdf:type rdf:resource=&quot;http://openlylocal.com/info/vocab#DistrictAuthority&quot;/&gt;<br />
        &lt;rdf:type rdf:resource=&quot;http://www.w3.org/ns/org#FormalOrganization&quot;/&gt;<br />
        &lt;skos:notation rdf:datatype=&quot;http://statistics.data.gov.uk/def/administrative-geography//StandardCode&quot;&gt;41UD&lt;/skos:notation&gt;<br />
        &lt;foaf:mbox&gt;mailto:enquiries@lichfielddc.gov.uk&lt;/foaf:mbox&gt;<br />
        &lt;foaf:homepage rdf:resource=&quot;http://www.lichfielddc.gov.uk&quot;/&gt;<br />
        &lt;foaf:phone rdf:resource=&quot;tel:+44-1543-308999&quot;/&gt;<br />
    &lt;foaf:holdsAccount&gt;<br />
      &lt;foaf:OnlineAccount rdf:about=&quot;http://twitter.com/Lichfield_DC&quot;&gt;<br />
        &lt;foaf:accountServiceHomepage rdf:resource=&quot;http://twitter.com/&quot;/&gt;<br />
        &lt;foaf:accountName&gt;Lichfield_DC&lt;/foaf:accountName&gt;<br />
      &lt;/foaf:OnlineAccount&gt;<br />
    &lt;/foaf:holdsAccount&gt;<br />
    &lt;foaf:holdsAccount&gt;<br />
      &lt;foaf:OnlineAccount rdf:about=&quot;http://www.facebook.com/lichfielddc&quot;&gt;<br />
        &lt;foaf:accountServiceHomepage rdf:resource=&quot;http://www.facebook.com/&quot;/&gt;<br />
        &lt;foaf:accountName&gt;Lichfield District Council&lt;/foaf:accountName&gt;<br />
      &lt;/foaf:OnlineAccount&gt;<br />
    &lt;/foaf:holdsAccount&gt;<br />
    &lt;vcard:ADR rdf:parseType=&quot;Resource&quot;&gt;<br />
      &lt;vcard:Extadd&gt;District Council House, Frog Lane, Lichfield WS13 6YY&lt;/vcard:Extadd&gt;<br />
      &lt;vcard:Country&gt;England&lt;/vcard:Country&gt;<br />
      &lt;vcard:postal-code rdf:resource=&quot;http://www.uk-postcodes.com/postcode/WS136YY.rdf&quot; /&gt;<br />
    &lt;/vcard:ADR&gt;<br />
        &lt;administrative-geography:coverage rdf:resource=&quot;http://data.ordnancesurvey.co.uk/id/7000000000014797&quot;/&gt;<br />
        &lt;owl:sameAs rdf:resource=&quot;http://statistics.data.gov.uk/doc/local-authority/41UD&quot;/&gt;<br />
        &lt;owl:sameAs rdf:resource=&quot;http://openlylocal.com/councils/156.rdf&quot;/&gt;<br />
        &lt;owl:sameAs rdf:resource=&quot;http://dbpedia.org/resource/Lichfield_%28district%29&quot;/&gt;<br />
&lt;/rdf:Description&gt;<br />
&lt;/rdf:RDF&gt;<br />
</code></p>
<p>It&#8217;s not perfect, but it&#8217;s a start, there&#8217;s 24 triples there and I&#8217;m sure there could be more. Only problem is, I&#8217;m not a linked data expert, so I&#8217;m looking for a bit of feedback both on what I&#8217;ve done, but also what I could add &#8211; For example, I could add the chief executive and leader of the council &#8211; but I&#8217;m not sure how I&#8217;d do it!</p>
<p>Feedback from non-linked data experts is welcome too &#8211; especially those at the coal face of local gov &#8211; if there was a step by step guide to doing this, could you do it? (i.e. have you got access to add metadata to your homepage) and, more importantly, would you do it?</p>
<p><strong>UPDATE</strong> I&#8217;ve now published the final(ish) version at <a href="http://www.lichfielddc.gov.uk/lichfield.rdf">http://www.lichfielddc.gov.uk/lichfield.rdf</a>, with a rel=&#8217;alternate&#8217; meta link on the Lichfield homepage. I&#8217;ve also reused the reference.data.gov.uk ontology to show the councils CEO, leader etc, together with a bit of FOAF for their contact details. </p>
<p>Thanks to Jeni Tennison, Leigh Dodds and Dave Reynolds for helping me to get this far, and hopefully we can encourage more councils to do the same!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2010/09/council-linked-data/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>A Local Spending Data Brain Splurge</title>
		<link>http://www.pezholio.co.uk/2010/08/local-spending-data-a-few-ideas/</link>
		<comments>http://www.pezholio.co.uk/2010/08/local-spending-data-a-few-ideas/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 13:40:49 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[Open Data]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=384</guid>
		<description><![CDATA[Today I was at a &#8216;quick and dirty&#8217; local spending data workshop at Birmingham City Council&#8217;s newly refurbished offices on Lancaster Circus. There&#8217;ll be more detailed info to come on the Local Open Data Community (login required), but I just wanted to blog a few of my thoughts post the meeting. There was a lot [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was at a &#8216;quick and dirty&#8217; local spending data workshop at Birmingham City Council&#8217;s newly refurbished offices on Lancaster Circus. There&#8217;ll be more detailed info to come on the <a href="http://www.communities.idea.gov.uk/c/3916997/home.do">Local Open Data Community</a> (login required), but I just wanted to blog a few of my thoughts post the meeting.</p>
<p>There was a lot of talk about what other councils have done (such as Windsor and Maidenhead, Barnet, Islington etc), and it was agreed that there was a lot of difference in how the data was presented, Paul Davidson also talked about some of the work that the <a href="http://www.legsb.gov.uk/">Local eGovernment Standards Body</a> had done regarding getting spending data out there in a linked data format. There did seem to be a bit of resistance to the linked data approach, mainly because agreeing standards seems to be a long, drawn out process, which is counter to the JFDI approach of publishing local data.</p>
<p>However, while I am a fan of the possibilities of linked data, I also recognise that there are difficulties in both publishing the data and also working with it. For example, I think it&#8217;s unrealistic to expect every local authority to maintain a triple store to publish their spending data. As we learned from the local elections project, often local authorities don&#8217;t even have people who are competent in HTML, let alone RDF, SPARQL etc.</p>
<p>Therefore, I think the way forward is a centralised approach, with authorities publishing CSVs in a standard format on their website and some kind of system picking up these CSVs (say, on a monthly basis) and converting this data to a linked data format (as well as publishing in vanilla XML, JSON and CSV format). </p>
<p>The great thing about the linked data approach is it will mean that each item of spending can have its own URI &#8211; e.g.</p>
<p><code>http://localspending.data.gov.uk/41UD/12345</code></p>
<p>(The first part of the URI would be the SNAC code for the authority, and then the second part of the URI would be the internal reference number)</p>
<p>As well as having a human-readable summary of the data (together with links to the actual data in RDF, XML, CSV and JSON), there would be a comments box (similar to <a href="http://twitter.com/adrianshort">Adrian Short&#8217;s</a> fantastic <a href="http://armchairauditor.co.uk/">Armchair Auditor</a>), as well as the ability to ask any questions about an item of expenditure &#8211; the answers to these questions would then be automatically published next to the item of spend (hopefully helping to cut down on multiple FOI requests).</p>
<p>While this may be a bit of a pie in the sky idea, I do feel that there does need to be some kind of effort on the part of central government to help move this project along, as we&#8217;ve seen already (naming no names!) some authorities have got it drastically wrong, and while there is definitely mileage in the &#8216;just get it out there&#8217; approach, I think if we&#8217;re going to end up with something *really* useful (for both members of the public and local authorities), we need to get the data in one place.</p>
<p>Thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2010/08/local-spending-data-a-few-ideas/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>An iPhone app in 5 days?</title>
		<link>http://www.pezholio.co.uk/2009/12/an-iphone-app-in-5-days/</link>
		<comments>http://www.pezholio.co.uk/2009/12/an-iphone-app-in-5-days/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 12:13:55 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[appcelerator]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[phonegap]]></category>
		<category><![CDATA[ratemyplace]]></category>
		<category><![CDATA[titanium]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=326</guid>
		<description><![CDATA[iPhones are ace aren&#8217;t they? Despite howls of derision from some camps, in the space of a few years, it&#8217;s completely turned the mobile world on its head. I&#8217;ve wanted to build an iPhone app for Ratemyplace &#8211; the food safety ratings website I run at the council on behalf of 8 other councils in [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.pezholio.co.uk/wp-content/uploads/2009/12/ratemyplace-290x300.png" alt="Mockup of Ratemyplace app on an iPhone and iPod touch " title="Mockup of Ratemyplace app on an iPhone and iPod touch " width="170" height="175" class="alignright size-medium wp-image-327" />iPhones are ace aren&#8217;t they? Despite <a href="http://www.electronista.com/articles/07/04/30/ballmer.on.iphone/">howls of derision</a> from some camps, in the space of a few years, it&#8217;s completely turned the mobile world on its head.</p>
<p>I&#8217;ve wanted to build an iPhone app for <a href="http://www.ratemyplace.org.uk">Ratemyplace</a> &#8211; the food safety ratings website I run at the council on behalf of 8 other councils in Staffordshire for a while, but unfortunately just didn&#8217;t have time to learn Objective-C, the language that iPhone apps are built in &#8211; at the same time, I&#8217;m also aware that not everyone has an iPhone, so have been scouting around for ways to build apps that can be ported to other platforms quickly and easily.</p>
<p>About 6 months ago, I looked at <a href="http://phonegap.com/">Phonegap</a>, which promised to allow me to build apps quickly using only HTML and Javascript. I beavered away for a few weeks, and finally had an app I was (sort of) pleased with. It used native features such as geolocation, and I used <a href="http://code.google.com/p/iphone-universal/">the UiUi Kit CSS library</a> to make the app look as much like a native app as possible. I was all ready to submit it to the app store. Then the 3.0 firmware upgrade came.</p>
<p>My iPhone app was busted &#8211; native geolocation no longer worked, and a little hack I&#8217;d worked out to get a toolbar at the bottom and a navbar at the top was also kaputt. I tried to fix it for a bit, but other priorities took over, and the project went on hold.</p>
<p>Then, a few weeks ago, I came across <a href="http://www.appcelerator.com/">Appcelerator Titanium</a>, a platform that does pretty much everything Phonegap does, but (in my opinion) much better. While Phonegap uses a portion of the iPhone&#8217;s API called the webview to display webpages as though they were native apps, Titanium goes one better, it compiles your code into a mixture of web views and native Objective-C code. Like Phonegap, it also works with Android, and a promise of more platforms to come.</p>
<p>This means that you can not only take advantage of many more native iPhone features, your app is much less likely to be rejected (as <a href="http://www.readwriteweb.com/archives/why_is_apple_rejecting_phonegap-built_iphone_apps.php">a lot of phonegap apps were</a>) because of the use of what Apple calls &#8216;private APIs&#8217;.</p>
<p>I dusted down my old bits of code, bookmarked the <a href="http://www.codestrong.com/timobile/api/">API documentation</a>, and set to work. In the end, as well as doing my other duties, the app took me 5 days (and one beery evening) to complete. You can see a few screenshots below:</p>
<p><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?set_id=72157622918161445"  width="460" height="460" frameBorder="0" scrolling="no"></iframe></p>
<p>I submitted it to Apple yesterday, and I&#8217;m not expecting to hear anything for a good few weeks, if not months (Apple&#8217;s approvals processes to get an app into the app store are <a href="http://theappleblog.com/2008/09/13/why-apples-app-store-approval-process-is-broken/">notoriously strict</a>) but I&#8217;m reasonably hopeful. I&#8217;m now looking at porting my code to Android phones, with a view to looking at Blackberry and Nokia devices too.</p>
<p>Looking forward a few years, with the growing adoption by mobile phone browsers of HTML5 and CSS3, I can see that apps are going to become more browser based, and (hopefully), this will lead to standards being adopted across the industry, but, until then, it seems that platforms like Titanium are going to be the best way to get your apps to as many people as quickly as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2009/12/an-iphone-app-in-5-days/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fixmytweet!</title>
		<link>http://www.pezholio.co.uk/2009/12/fixmytweet/</link>
		<comments>http://www.pezholio.co.uk/2009/12/fixmytweet/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 12:24:07 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[fixmystreet]]></category>
		<category><![CDATA[fixmytweet]]></category>
		<category><![CDATA[mysociety]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=323</guid>
		<description><![CDATA[I love Fixmystreet &#8211; it&#8217;s the nearest thing we&#8217;ve got to a national problem reporting hub, while other council website bury their reporting facilities under pages and pages of navigation, Fixmystreet is simple, quick and direct. What I also love is its openness, as well as being able to pull out reports for problems in [...]]]></description>
			<content:encoded><![CDATA[<p>I love <a href="http://www.fixmystreet.com/">Fixmystreet</a> &#8211; it&#8217;s the nearest thing we&#8217;ve got to a national problem reporting hub, while other council website bury their reporting facilities under pages and pages of navigation, Fixmystreet is simple, quick and direct.</p>
<p>What I also love is its openness, as well as being able to <a href="http://www.fixmystreet.com/alert">pull out reports for problems in your area</a>, you can also <a href="http://www.fixmystreet.com/import">inject problem reports directly into the system</a>, meaning anyone can build their own front end for the system.</p>
<p>I&#8217;ve been thinking about Fixmystreet a lot recently, after building my own frontend for it via the <a href="http://www.lichfielddc.gov.uk/site/custom_scripts/map.php">Ubermap</a>, I&#8217;ve also been thinking about repurposing our existing streetscene reporting forms, and getting them to use Fixmystreet.</p>
<p>It was while fiddling about under the hood, that I thought &#8216;wouldn&#8217;t it be cool if people could report problems via Twitter?&#8217; </p>
<p>Twitter is a fast way of communicating, and crucially, it&#8217;s mobile. There&#8217;s a plethora of mobile apps and frontends for Twitter, and even if you&#8217;re only on an aged Nokia 3310, you can send tweets by text message. This means that when you spot a problem, you can report it straight away. You could even add a picture.</p>
<p>I got cracking on it, and, within the space of 24 hours I had a prototype &#8211; users sign up with their Twitter username and email address on the <a href="http://fixmytweet.com/">Fixmytweet website</a>, and whenever they spot a problem, they can send a tweet in this format:</p>
<p><code>@fixmytweet {postcode} {description of problem} {twitpic link (optional)}</code></p>
<p>(If you&#8217;ve got a smartphone with a Twitter app that supports the <a href="http://blog.twitter.com/2009/08/location-location-location.html">geolocation API</a> you don&#8217;t even need the postcode!)</p>
<p>The system then parses the tweet and sends the necessaries to Fixmystreet. Fixmystreet then sends an email to the user, with a link for them to add more detail and approve the report. It then gets sent directly to the council! (and, if the council is smart, they can even <a href="http://www.mysociety.org/2008/11/12/first-council-lets-fixmystreet-post-straight-to-the-crm/">integrate it with their CRM system</a>)</p>
<p>I&#8217;m currently testing this out on a test version of Fixmystreet, and it seems to be working well so far. If you&#8217;re interested in helping test me test it, please <a href="http://fixmytweet.com/">sign up on the Fixmytweet website</a> and send a test tweet.</p>
<p>I&#8217;ll keep everyone posted on developments on Twitter and this here blog!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2009/12/fixmytweet/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Twitter &#8211; to RSS or not RSS?</title>
		<link>http://www.pezholio.co.uk/2009/12/twitter-to-rss-or-not-rss/</link>
		<comments>http://www.pezholio.co.uk/2009/12/twitter-to-rss-or-not-rss/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 16:55:00 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[social-media]]></category>
		<category><![CDATA[local govenrment]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=317</guid>
		<description><![CDATA[It&#8217;s been a while since I first published my Beginners&#8217; Guide to Twitter in Local Government, and since then (although, obviously not as a direct result of my blog post!) there&#8217;s been a plethora of local authorities using Twitter. However, with a few notable exceptions, most councils seem to prefer the &#8216;fire and forget&#8217; method [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I first published my <a href="http://www.pezholio.co.uk/2009/03/a-beginners-guide-to-twitter-in-local-government/">Beginners&#8217; Guide to Twitter in Local Government</a>, and since then (although, obviously not as a direct result of my blog post!) there&#8217;s been a plethora of local authorities using Twitter.</p>
<p>However, with a few notable exceptions, most councils seem to prefer the &#8216;fire and forget&#8217; method of sticking an RSS feed into <a href="http://twitterfeed.com/">Twitterfeed</a> and leaving it to run. Hell, even I was guilty of it up until recently &#8211; even though I was making an effort to monitor and engage, I was still letting the news articles automatically publish via Twitterfeed. </p>
<p>There&#8217;s been a bit of a discussion recently via Twitter as to the rights and wrongs of this, and I&#8217;m definitely in the &#8216;wrong&#8217; camp now &#8211; A few months ago I turned off the RSS feed for <a href="http://www.twitter.com/lichfield_dc">@lichfield_dc</a> press releases and now do them manually. Why? Well, I shall tell you&#8230;</p>
<h3>You don&#8217;t talk to a robot</h3>
<p>Twitter is, by and large, a social medium &#8211; if all you&#8217;re doing is chucking out press releases, people will assume you&#8217;re not interested in engaging or are just going to generate boring content. This means you aren&#8217;t going to get followed by as many people who might otherwise be interested in you.</p>
<h3>Auto tweets look ugly</h3>
<p>Take <a href="http://www.lichfielddc.gov.uk/site/custom_scripts/newsblog.php?id=204">this press release for example</a>. If I were to use an auto tweeter, here&#8217;s what it would look like:</p>
<blockquote><p>News: Everyone is invited to get into the festive spirit at this year’s Christmas Fayre taking place in the city&#8230; <a href="http://is.gd/5eZUT">http://is.gd/5eZUT</a></p></blockquote>
<p>Pretty boring huh? Plus the content gets cut short and can often not make sense. However, if I conjour up a manual tweet, I can tailor it much more to the Twitter medium and come up with something a lot more friendly:</p>
<script type="text/javascript" src="http://tweetpaste.thingamaweb.com/js/102170/"></script><noscript><iframe name="tp102170" id="tp102170" width="400" height="250" frameborder="0" src="http://tweetpaste.thingamaweb.com/embed/102170/" style="overflow: hidden; display: block; width: 400px; height: 250px;"><p><a href="http://tweetpaste.thingamaweb.com/embed/102170/" target="_blank">View Lichfield_DC&rsquo;s tweet</a></p></iframe></noscript>
<p>This means you can get your message across much more easily and in a style that fits in with Twitter&#8217;s informal approach.</p>
<h3>Stopping information overload</h3>
<p>Sometimes you&#8217;ll have a press release which, while it might be relevant for the website, might not be suitbale for Twitter. If you&#8217;re blindly tweeting everything you put out, then people might be much more likely to be turned off by your content and reach for that big button marked &#8216;unfollow&#8217;.</p>
<h3>This is all well and good, but&#8230;</h3>
<p>&#8230;I can hear the objections already &#8211; &#8216;I don&#8217;t have time to write manual tweets&#8217; &#8211; but how difficult it it to write a 140 character tweet? If you&#8217;re going to take online engagement seriously, it&#8217;s definitely worth just taking 2 minutes to show your followers you care.</p>
<p>If you really must use automated tweets, then make sure you mark your account up as such &#8211; call it something like &#8216;councilx_news&#8217; and state very clearly that all you&#8217;re doing is publishing the latest news &#8211; then if further down the line you decide to engage a bit more, you can start another account for more human interaction.</p>
<h3>I&#8217;m a massive hypocrite</h3>
<p>However, after saying all this, I do agree that sometimes, automated tweets have their place. We do still tweet food safety inspections, and <a href="http://twitter.com/ldcplanning">@ldcplanning</a> has been happily tweeting planning applications for a while now. However, it&#8217;s not really practical to tweet large volume, samey tweets manually, and you don&#8217;t get the same advantages with tweeting press releases.</p>
<p>In fact, I recently did a straw poll amongst our followers about whether to get rid of the food safety tweets, especially as much of the content is replicated by <a href="http://twitter.com/ratemyplace">@ratemyplace</a>, but the majority seemed to like them. So maybe automated tweets isn&#8217;t as open and shut a case as I&#8217;d like it to be?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2009/12/twitter-to-rss-or-not-rss/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Simple(ish) routes to local authority open data?</title>
		<link>http://www.pezholio.co.uk/2009/12/simpleish-routes-to-local-authority-open-data/</link>
		<comments>http://www.pezholio.co.uk/2009/12/simpleish-routes-to-local-authority-open-data/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 12:17:13 +0000</pubDate>
		<dc:creator>Pez</dc:creator>
				<category><![CDATA[Council Stuff]]></category>
		<category><![CDATA[Open Data]]></category>
		<category><![CDATA[data.gov.uk]]></category>
		<category><![CDATA[linked data]]></category>
		<category><![CDATA[rdfa]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://www.pezholio.co.uk/?p=314</guid>
		<description><![CDATA[Now, I&#8217;ve been banging on about local government open data for a while, I&#8217;ve been opening up various datasets on the Lichfield District Council website and generally evangelising to anyone who will listen (and even to some who won&#8217;t!) This JFDI publish-everything-you&#8217;ve-got-in-a-database-just-because-you-can approach is all well and good if you&#8217;re a techy like me, but [...]]]></description>
			<content:encoded><![CDATA[<p>Now, I&#8217;ve been banging on about local government open data for a while, I&#8217;ve been <a href="http://www.lichfielddc.gov.uk/data">opening up various datasets on the Lichfield District Council website</a> and generally evangelising to anyone who will listen (and even to some who won&#8217;t!)</p>
<p>This JFDI publish-everything-you&#8217;ve-got-in-a-database-just-because-you-can approach is all well and good if you&#8217;re a techy like me, but there&#8217;s three wee problemettes:</p>
<ul>
<li><strong>Problemette Number 1</strong> You need to be a techy to get the data out there &#8211; a lot of local authorities don&#8217;t have the technical resource to do this stuff.</li>
<li><strong>Problemette Number 2</strong> It&#8217;s not sustainable &#8211; If I die (God fobid!) or leave the authority &#8211; whoever takes on my role might not have the skills or time to keep up my work.</li>
<li><strong>Problemette Number 3</strong> It&#8217;s not in a standard format &#8211; generally I&#8217;ve been making up XML schemas, or releasing in RSS or KML &#8211; which, while useful for local developers, doesn&#8217;t work semantically.</li>
</ul>
<p>These issues have been playing on my mind for a while now, especially with central government releasing a whole load of data on data.gov.uk &#8211; how can we local authorities, a disperate band of organisations spread across the country with different teams and different ways of doing things do something similar, particularly with the problemettes above in mind?</p>
<p>It was with this running through my head that I chanced up on the <a href="http://coi.gov.uk/guidance.php?page=312">Central Office of Information&#8217;s guidance on structuring information on the web for reusability</a> &#8211; this sets out how organisations (particularly central government) can edit their HTML pages using RDFa &#8211; a markup that allows information to be &#8216;sucked out&#8217; of web pages and re purposed as RDF data. A robot can then &#8216;see&#8217; the pages and republish them on a different site (in this case DirectGov).</p>
<p>Although this is still reasonably technical, anyone with a basic knowledge of HTML should be able to edit their templates and expose this data, much easier than slaving over SQL databases and messing around with XML. Suppliers could also easily modify their systems to add RDFa markup (although, suppliers being suppliers, they&#8217;ll probably charge an exorbitant fee for this work!).</p>
<p>At Lichfield, we&#8217;re currently putting together a consultation system, and, following the directions on the COI site, I managed to mark up our consultations in RDFa, and, other than a few issues with validation, <a href="http://www.lichfielddc.gov.uk/site/custom_scripts/voiceitdocs.php?id=146">I managed it pretty quickly</a> &#8211; <a href="http://www.w3.org/2007/08/pyRdfa/extract?uri=http%3A%2F%2Fwww.lichfielddc.gov.uk%2Fsite%2Fcustom_scripts%2Fvoiceitdocs.php%3Fid%3D146&#038;format=pretty-xml&#038;warnings=false&#038;parser=lax&#038;space-preserve=true&#038;submit=Go!&#038;text=">here&#8217;s the RDF in all it&#8217;s glory</a> (you&#8217;ll need to view the source to see it properly).</p>
<p>The COI are asking central government departments to implement this new format for all their consultations from 1 January 2010, which is no mean feat, but I&#8217;d like to see a similar dictact (albeit one with a slightly more realistic timeline!) come for local authorities too &#8211; we did it with IPSV, so why can&#8217;t we do this too?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pezholio.co.uk/2009/12/simpleish-routes-to-local-authority-open-data/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

