<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml"
>

<channel>
	<title>chrisfleming.org &#187; OpenStreetMap</title>
	<atom:link href="http://www.chrisfleming.org/category/osm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrisfleming.org</link>
	<description>musings on photography, mapping and life in general.</description>
	<lastBuildDate>Sun, 11 Apr 2010 23:02:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Edinburgh mapping party &#8211; Penicuik</title>
		<link>http://www.chrisfleming.org/osm/edinburgh-mapping-party-penicuik/</link>
		<comments>http://www.chrisfleming.org/osm/edinburgh-mapping-party-penicuik/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 23:02:18 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[OpenStreetMap]]></category>

		<guid isPermaLink="false">http://www.chrisfleming.org/?p=276</guid>
		<description><![CDATA[﻿ So we had the first of what will hopefully be a series of many Scottish mapping parties on Saturday, the idea is to pick somewhere which is reasonably accessible and still in need of mapping and get together and spend some time filling in some of the big gaps outside of the city. There was enough [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-289" href="http://www.chrisfleming.org/osm/edinburgh-mapping-party-penicuik/attachment/screenshot_016/"></a><a title="View to the Pentlands." href="http://www.flickr.com/photos/61663261@N00/4512365680/"><img src="http://farm3.static.flickr.com/2272/4512365680_c76b496195_b.jpg" alt="View to the Pentlands." width="660" /></a>﻿</p>
<p>So we had the first of what will hopefully be a series of many Scottish mapping parties on Saturday, the idea is to pick somewhere which is reasonably accessible and still in need of mapping and get together and spend some time filling in some of the big gaps outside of the city.</p>
<p>There was enough of an outline of the roads to divide the town up into sectors and we headed off on bicycles and in cars to cover the town.</p>
<p>We meet back for lunch at the <a href="http://www.openstreetmap.org/browse/node/693525734">Peni Deli</a> where we were able to compare our tracks on my eeePC, although my gpsbabel kung-fu failed me and I only managed to pull waypoints and not the full tracks from the Garmin. However it was still a valuable tool to see who had managed to cover what area&#8217;s, and importantly what was left to be covered.</p>
<p><a rel="attachment wp-att-289" href="http://www.chrisfleming.org/osm/edinburgh-mapping-party-penicuik/attachment/screenshot_016/"><img title="Penicuik Mapping - state at Lunchtime" src="http://www.chrisfleming.org/wp/wp-content/uploads/2010/04/screenshot_016.png" alt="" width="660" height="688" /></a>﻿</p>
<p>We then split up to cover some of the area&#8217;s left, to map in the afternoon. I think that we may have got things slightly wrong here as we ended up with some duplication in terms of the area&#8217;s covered; however this isn&#8217;t necessary a bad thing as it has meant that some area&#8217;s have ended up much better than if a single person would have covered them.</p>
<p>But, there is a lesson for the future, especially when we have lots of people trying to map a small area is that we all would be better carrying paper maps with the area&#8217;s each person is covering written on them or possibly working much closer as a team through an area and dividing up to cover various road, paths, building etc.</p>
<p>Overall the day was a huge success, we managed to elevate Penicuik largely to the &#8220;mapped&#8221; status although I have no doubt that we will have missed some roads and certainly haven&#8217;t covered all the myriad of various footways around the estates.</p>
<style type="text/css">#map_1 {padding: 0; margin: 0;}#map_1 img{padding: 0; margin: 0;border:none}</style><div id="map_1" style="width:660px; height:450px; overflow:hidden; padding:0px;"><script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script><script type="text/javascript" src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script><script type="text/javascript">/* <![CDATA[ */(function($) { map = new OpenLayers.Map ("map_1", {            controls:[              new OpenLayers.Control.Navigation(),              new OpenLayers.Control.PanZoom(),              new OpenLayers.Control.Attribution()              ],          maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),          maxResolution: 156543.0399,          numZoomLevels: 19,          units: "m",          projection: new OpenLayers.Projection("EPSG:900913"),           displayProjection: new OpenLayers.Projection("EPSG:4326")      } );var layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik");var layerTah    = new OpenLayers.Layer.OSM.Osmarender("Osmarender");var layerCycle  = new OpenLayers.Layer.OSM.CycleMap("CycleMap");map.addLayers([layerMapnik, layerTah, layerCycle]);map.addControl(new OpenLayers.Control.LayerSwitcher());    function osm_getTileURL(bounds) {        var res = this.map.getResolution();        var x = Math.round((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));        var y = Math.round((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));        var z = this.map.getZoom();        var limit = Math.pow(2, z);        if (y < 0 || y >= limit) {            return OpenLayers.Util.getImagesLocation() + "404.png";        } else {            x = ((x % limit) + limit) % limit;            return this.url + z + "/" + x + "/" + y + "." + this.type;        }    }var lonLat = new OpenLayers.LonLat(-3.222,55.832).transform(map.displayProjection,  map.projection);map.setCenter (lonLat,14);  var lgml = new OpenLayers.Layer.GML("GPX_1", "http://www.chrisfleming.org/osm/penicuik.gpx", {    format: OpenLayers.Format.GPX,    style: {strokeColor: "blue", strokeWidth: 5, strokeOpacity: 0.5},    projection: new OpenLayers.Projection("EPSG:4326")  });  map.addLayer(lgml);})(jQuery)/* ]]&gt; */ </script></div>
<p>Overall, I covered 25 miles on my bike on my bike as shown by the blue line on the map above.</p>
<div class="wp-caption alignnone" style="width: 670px"><a title="OpenStreetMap Team meet at the end of the day in Tesco's car park" href="http://www.flickr.com/photos/61663261@N00/4512094195/"><img src="http://farm3.static.flickr.com/2391/4512094195_4b1397bc3c_b.jpg" alt="OpenStreetMap Team meet at the end of the day in Tesco's car park" width="660" height="495" /></a><p class="wp-caption-text">The Team at the end of the day.</p></div>
<p>It&#8217;s also worth putting out a big cheers to <a href="http://www.openstreetmap.org/user/Central%20America">Bob</a> for doing the hard work in organising this, and hopefully see some of you ﻿at the <a href="http://wiki.openstreetmap.org/wiki/Mapping_Party/Glasgow#Mapping_party">Glasgow mapping party</a> on the 22nd May.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisfleming.org/osm/edinburgh-mapping-party-penicuik/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<georss:point featurename="[55.832, -3.222]">55.832 -3.222</georss:point>
	</item>
		<item>
		<title>Weekend Away in the Peaks</title>
		<link>http://www.chrisfleming.org/photos/weekend-away-peaks/</link>
		<comments>http://www.chrisfleming.org/photos/weekend-away-peaks/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 23:04:58 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.chrisfleming.org/?p=266</guid>
		<description><![CDATA[We just got back from our annual weekend away with friends. As usual I took the GPS down with me do do some OpenStreetMapping,  however the map is so good these days that apart from the odd postbox and having to reclassify a track to a road there was not a huge amount to add. [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 670px"><a href="http://www.flickr.com/photos/chrisfleming/4385214459/"><img class=" " src="http://farm5.static.flickr.com/4031/4385214459_b58f6e0842_b.jpg" alt="" width="660" /></a><p class="wp-caption-text">Finding the Way</p></div>
<p>We just got back from our <a href="http://www.chrisfleming.org/gallery2/v/friends/04Feb_Edmundbyers_0/">annual</a> <a href="http://www.chrisfleming.org/gallery2/v/friends/Wales2007/">weekend</a> <a href="http://www.chrisfleming.org/gallery2/v/friends/Lakes2009/">away</a> with friends.</p>
<p>As usual I took the GPS down with me do do some <a href="http://www.openstreetmap.org/">OpenStreetMapping</a>,  however the map is so good these days that apart from the<a href="http://www.openstreetmap.org/browse/node/652878753"> odd postbox</a> and having to reclassify a <a href="http://www.openstreetmap.org/browse/way/39990472">track to a road</a> there was not a huge amount to add. I was even able to use the garmin files to successfully navigate a small walk.</p>
<p>This left plenty of time to drink a few beers and take lots of <a href="http://www.flickr.com/photos/chrisfleming/sets/72157623378448985/detail/">pictures</a> <img src='http://www.chrisfleming.org/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisfleming.org/photos/weekend-away-peaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point featurename="53.27253,-1.82324">53.270463 -1.8204192</georss:point>
	</item>
		<item>
		<title>Long time no update&#8230;</title>
		<link>http://www.chrisfleming.org/photos/long-time-no-update/</link>
		<comments>http://www.chrisfleming.org/photos/long-time-no-update/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 00:39:22 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[kent]]></category>
		<category><![CDATA[state of the map]]></category>
		<category><![CDATA[tour de france]]></category>

		<guid isPermaLink="false">http://blog.chrisfleming.org/wp/?p=176</guid>
		<description><![CDATA[It&#8217;s been a long crazy summer and I&#8217;ve not had time to update this for a while. Hopefully I&#8217;ll get all my photos&#8217;s uploaded this week though. Here are July&#8217;s highlights: Watching the Tour De France fly past. Group photo at the end of the OpenStreetMap Conference in July 2007. More picture on my flickr [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long crazy summer and I&#8217;ve not had time to update this for a while. Hopefully I&#8217;ll get all my photos&#8217;s uploaded this week though. Here are July&#8217;s highlights:<br />
<a href="/gallery2/d/6285-2/img_1942.jpg"><img src="http://www.chrisfleming.org/gallery2/d/6289-1/img_1938.jpg" alt="" /></a><br />
Watching the Tour De France fly past.<br />
<a href="/gallery2/d/6094-2/Everyone.jpg"><img src="http://www.chrisfleming.org/gallery2/d/6290-2/Everyone.jpg" alt="" /></a><br />
Group photo at the end of the <a href="http://www.openstreetmap.com">OpenStreetMap</a> Conference in July 2007.<br />
More picture on <a>my flickr page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisfleming.org/photos/long-time-no-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point featurename="Hartly, Cranbrook, Kent">51.084094 0.509854</georss:point>
	</item>
	</channel>
</rss>
