<?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>Planetmarshall &#187; bing maps</title>
	<atom:link href="http://www.planetmarshall.co.uk/tag/bing-maps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.planetmarshall.co.uk</link>
	<description>Andrew Marshall&#039;s blog</description>
	<lastBuildDate>Thu, 10 Nov 2011 17:33:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Drawing geodesic curves using the Bing maps Silverlight control</title>
		<link>http://www.planetmarshall.co.uk/2010/06/drawing-geodesic-curves-using-the-bing-maps-silverlight-control/</link>
		<comments>http://www.planetmarshall.co.uk/2010/06/drawing-geodesic-curves-using-the-bing-maps-silverlight-control/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 14:52:05 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Mathematics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bing maps]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.planetmarshall.co.uk/?p=624</guid>
		<description><![CDATA[For an upcoming post I wanted to be able to plot the shortest routes between various positions on the Earth using the Bing Maps Silverlight control. Although since I started working on the problem Bing have provided a similar feature &#8230; <a href="http://www.planetmarshall.co.uk/2010/06/drawing-geodesic-curves-using-the-bing-maps-silverlight-control/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="pm_first">For an upcoming post I wanted to be able to plot the shortest routes between various positions on the Earth using the <a title="Bing Maps Silverlight Control" href="http://msdn.microsoft.com/en-us/library/ee681884.aspx" target="_blank">Bing Maps Silverlight control</a>. Although since I started working on the problem Bing have provided a similar feature with their <a title="New Bing Map Apps: Gas Prices, Distance Calculator and Parking Finder" href="http://www.bing.com/community/blogs/maps/archive/2010/05/19/new-bing-map-apps-gas-prices-distance-calculator-and-parking-finder.aspx" target="_blank">Distance Calculator App</a>, the functions are not available for reuse via the public API. Interested developers may just want to skip the maths and just download the code.</p>
<p><a title="Source code in zip file for Silverlight 4.0" href="http://www.planetmarshall.co.uk/code/geodesic.zip">Geodesic source code for Silverlight 4.0</a></p>
<h3>Geodesics</h3>

<a href="http://www.planetmarshall.co.uk/wp-content/gallery/geodesic/geo.png" title="Geodesic showing the shortest distance between Cambridge and New York" class="shutterset_singlepic118" >
	<img class="ngg-singlepic ngg-right" src="http://www.planetmarshall.co.uk/wp-content/gallery/cache/118__150x_geo.png" alt="Geodesic " title="Geodesic " />
</a>

<p>The shortest path between two points on an arbitrary surface is called a <a title="Geodesic from MathWorld" href="http://mathworld.wolfram.com/Geodesic.html" target="_blank">Geodesic</a>, and on a sphere, it is a <a title="Great Circle from MathWorld" href="http://mathworld.wolfram.com/GreatCircle.html" target="_blank">Great Circle</a>. Modelling the surface of the earth as a perfect sphere, the shortest distance between any two locations on the surface is then described by a section of a Great Circle, ie an arc that lies on the plane that is described by the vectors between its start and end points and the Earth&#8217;s centre ( see figure 1 ).</p>
<p>With this information, one way ( and the way I have adopted ) to plot such a curve is as follows:</p>
<ol>
<li>Generate the points of the curve in two dimensions using the parametric equation of a circle.</li>
<li>Transform the plane of the 2d curve into 3D space such that it intersects the end points on the sphere, and the sphere&#8217;s centre.</li>
<li>Project the transformed points back into 2D space using the Mercator projection equations.</li>
</ol>
<p><span id="more-624"></span><br />
[silverlight: Geodesic.xap,520,384,false]</p>
<h3>A Parametric Representation of a Great Circle</h3>
<p>The <a title="Mercator Projection from MathWorld" href="http://mathworld.wolfram.com/MercatorProjection.html">Mercator projection</a> gives the 2D rectilinear coordinates (x,y) as a function of the latitude and longitude of a point on a sphere.  However, it is easier to draw the point using a typical drawing API, if we have a representation that gives each point of the curve in terms of a single parameter. To derive such a function, we observe that the parametric equation for a circle is given by</p>
<p>$$!begin{pmatrix} x \ y end{pmatrix} = begin{pmatrix} r cos t \ r sin t end{pmatrix} $$</p>
<p>Since a great circle is a rigid transformation of a circle in 3D space, it can also be represented as a function of a single parameter</p>
<p>$$!begin{pmatrix} x \ y \ z end{pmatrix} = mathbf{R}cdotbegin{pmatrix} r cos t \ r sin t end{pmatrix} $$</p>
<p>where $$mathbf{R}$$ is a 2&#215;3 matrix that transforms the plane circle to a location on a sphere. Using <a title="Spherical Coordinates from MathWorld" href="http://mathworld.wolfram.com/SphericalCoordinates.html">spherical coordinates</a>, the Mercator projection of the curve specified above is then<br />
$$!mathbf{C}(t) =begin{pmatrix} lambda \ tanh^{-1} left(sin phi right)end{pmatrix} = begin{pmatrix} tan^{-1}left(y/xright)\ tanh^{-1}z end{pmatrix}$$<br />
Where $$lambda$$ and $$phi$$ are the longitude and latitude of the point to be projected, respectively. Writing the equation out in full gives,</p>
<p>$$!mathbf{C}(t) =begin{pmatrix}</p>
<p>tan^{-1}left(frac{R_{2,1}cos t + R_{2,2}sin t}{R_{1,1}cos t + R_{1,2}sin t}right)\<br />
tanh^{-1}(R_{3,1}cos t +R_{3,2}sin t)<br />
end{pmatrix}<br />
$$</p>
<p>Now that we have a suitable parametric equation, we can draw the geodesic with a series of connected line segments by varying the parameter, t.</p>
<blockquote><p>Mathematical note &#8211; the parameterization given by this expression is highly non-uniform, meaning that there are many more points generated in some parts of the curve than in others. The mathematics of generating uniform ( or natural ) parameterizations belongs to the field of differential curve geometry and is beyond the scope of this article ( and my brain ).</p></blockquote>
<h3>Implementation notes</h3>
<p>
<a href="http://www.planetmarshall.co.uk/wp-content/gallery/geodesic/maps.jpg" title="The upper image shows what happens when aa curve wraps around the map boundary. The lower image shows the effect of splitting the curve at the boundary." class="shutterset_singlepic141" >
	<img class="ngg-singlepic ngg-left" src="http://www.planetmarshall.co.uk/index.php?callback=image&amp;pid=141&amp;width=150&amp;height=&amp;mode=" alt="Geodesic with Split" title="Geodesic with Split" />
</a>
 Inevitably, the mathematics alone is not sufficient to produce an implementation of a reuseable class for the Bing Silverlight control. There are two main issues to resolve; firstly, it is not immediately obvious how to derive from the provided <a title="Documentation on MapShapeBase from MSDN" href="http://msdn.microsoft.com/en-us/library/microsoft.maps.mapcontrol.core.mapshapebase.aspx" target="_blank"><code>MapShapeBase</code></a> class to create new shape overlays and secondly, how to handle drawing the curves when they &#8216;wrap&#8217; beyond the map&#8217;s viewable area ( this is easier to illustrate than to describe &#8211; see the figure opposite ).</p>
<h4>Inheriting from <code>MapShapeBase</code></h4>
<p>I must confess that I cheated slightly in implementing the <code>MapGeodesicPath</code> class, in that I used <a title="Reflector from Red-Gate. Stop sending them hate mail!" href="http://www.red-gate.com/products/reflector/" target="_blank">Reflector</a> to peer into the implementation of the base class. The existing derivations of this class simply defer to <code>MapShapeBase</code> for most of the work, which they can do since for a <code>MapPolygon</code> and <code>MapPolyline</code> there is a one-to-one relationship between <code>Locations</code>, latitude and longitude points on the map and <code>Points</code>, the actual 2D cartesian coordinates used to draw the shape. For the Geodesic, this is not the case, because we only want to specify the start and ending points of the curve, not every point in between. A solution is to delegate the point generation code to a secondary class, one that can be independently tested.</p>
<h4>Splitting the curves at the map boundary</h4>
<p>When the curves wrap around the map projection, they need to be split at the boundary. This is done by finding the parameter t for the longitude value of the boundary. Where the longitude value is +/- 180, this is straightforward as the equation above reduces to,<br />
$$!t = -tan^{-1}frac{R_{1,2}}{R_{2,2}} $$<br />
For other longitude values, we simply offset the longitude values by the required amount, and calculate the value of t for the new matrix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.planetmarshall.co.uk/2010/06/drawing-geodesic-curves-using-the-bing-maps-silverlight-control/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Winter Camping</title>
		<link>http://www.planetmarshall.co.uk/2010/01/winter-camping/</link>
		<comments>http://www.planetmarshall.co.uk/2010/01/winter-camping/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 00:53:58 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bing maps]]></category>
		<category><![CDATA[Hiking]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Swimming]]></category>

		<guid isPermaLink="false">http://www.planetmarshall.co.uk/?p=513</guid>
		<description><![CDATA[Last week myself and a group of friends took a winter camping trip up to the Lake District. An odd decision, it could be argued, seen as the region has recently seen both some of its worst flooding and coldest &#8230; <a href="http://www.planetmarshall.co.uk/2010/01/winter-camping/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0310.JPG" title="Figured out the self timer" class="shutterset_singlepic102" >
	<img class="ngg-singlepic ngg-left" src="http://www.planetmarshall.co.uk/index.php?callback=image&amp;pid=102&amp;width=120&amp;height=&amp;mode=" alt="Figured out the self timer" title="Figured out the self timer" />
</a>

<p class="pm_first">Last week myself and a group of friends took a winter camping trip up to the <a title="The Lake District National Park" href="http://www.lakedistrict.gov.uk" target="_blank">Lake District</a>. An odd decision, it could be argued, seen as the region has recently seen both some of its worst flooding and coldest winters in recent years.  Nonethless, equipped with ice axe, crampons and a generous supply of Kendal Mint Cake we set out to climb Scafell.</p>
<p><span id="more-513"></span></p>
<h3 class="pm_first">Some of the things I learned</h3>
<ol>
<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0299.JPG" title="Not the north face of the Eiger" class="shutterset_singlepic98" >
	<img class="ngg-singlepic ngg-right" src="http://www.planetmarshall.co.uk/index.php?callback=image&amp;pid=98&amp;width=120&amp;height=&amp;mode=" alt="" title="" />
</a>
</p>
<li>Elephants, though clearly signposted, are not common in the lake district. I didn&#8217;t see a single one all weekend. Sheep, however, are plentiful.</li>
<li>It may be effective as a deterrent against the <a title="Ravenous Bugblatter Beast of Traal" href="http://www.bbc.co.uk/dna/h2g2/A387029" target="_blank">Ravenous Bugblatter Beast of Traal</a>, but a towel is no replacement for an insulating mattress.</li>
<li>Pop up tents, though useful on the beach, are less effective in torrential rain and gale force winds.</li>
<li>Retracing your steps back through the snow sounds easy, and it probably is for other people.</li>
<li>The <a title="The Wasdale Head Inn" href="http://www.wasdaleheadinn.co.uk/home.html">Wasdale Head Inn</a> serves an excellent selection of whiskeys, of which <a title="Wikipedia's entry on Lagavulin." href="http://en.wikipedia.org/wiki/Lagavulin_Single_Malt" target="_blank">Lagavulin </a>is the best. I should know, I tried all of them.</li>
<li>Swimming in Wastwater in January is almost exactly as cold as you&#8217;d expect.</li>
</ol>
<h3 class="pm_first">The Route</h3>
<p>The map below, which requires <a title="Microsoft Silverlight" href="http://www.microsoft.com/SILVERLIGHT/" target="_blank">Microsoft Silverlight</a>, was exported from my <a title="Garmin Forerunner 305" href="https://buy.garmin.com/shop/shop.do?cID=142&amp;pID=349" target="_blank">GPS wristwatch</a> and shows the route we took up Scafell before visibility made further progress a bit risky, and so we retraced our steps back through the snow. Or at least tried to before our steps mysteriously disappeared. There is also a <a title="Photosynth of Scafell" href="http://photosynth.net/view.aspx?cid=4b895bbc-3e41-4957-a35f-b3fab7155bfc" target="_blank">Photosynth </a>from part of our route available.</p>
<p>[silverlight: osmap.xap,520,350,show]</p>
<h3>Swimming in Wastwater</h3>
<p>Although as an amateur triathlete I&#8217;ve done many open water swims, I&#8217;ve never done one in winter and never without a wetsuit. So, in an attempt to kill both birds with one stone I decided to go for a swim in Wastwater in January. I lasted about two minutes. I&#8217;m no <a title="Ice Swimmer Lewis Gordon Pugh" href="http://www.lewispugh.com/" target="_blank">Lewis Gordon Pugh</a>. It was cold, but it really wasn&#8217;t as bad as you might think.  The water was beautifully clear but unfortunately sharp rocks do not a beach make.</p>
<h3>Gallery</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-9-513">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.planetmarshall.co.uk/2010/01/winter-camping/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-83" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0247.JPG" title="Dave and Lizzy on the way to the campsite
" class="shutterset_set_9" >
								<img title="Dave and Lizzy on the way to the campsite" alt="Dave and Lizzy on the way to the campsite" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0247.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-84" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0248.JPG" title="Jamie by Wastwater" class="shutterset_set_9" >
								<img title="Jamie by Wastwater" alt="Jamie by Wastwater" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0248.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-85" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0253.JPG" title="View from the campsite" class="shutterset_set_9" >
								<img title="View from the campsite" alt="View from the campsite" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0253.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-109" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0333.JPG" title="The campsite" class="shutterset_set_9" >
								<img title="The campsite" alt="The campsite" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0333.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-86" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0260.JPG" title="The Wasdale Head Inn" class="shutterset_set_9" >
								<img title="The Wasdale Head Inn" alt="The Wasdale Head Inn" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0260.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-87" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0261.JPG" title="Before the morning's walk" class="shutterset_set_9" >
								<img title="Before the morning's walk" alt="Before the morning's walk" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0261.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-88" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0264.JPG" title="Some water" class="shutterset_set_9" >
								<img title="Some water" alt="Some water" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0264.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-89" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0271.JPG" title="On the way up Scafell..." class="shutterset_set_9" >
								<img title="On the way up Scafell..." alt="On the way up Scafell..." src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0271.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-90" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0274.JPG" title="...still on the way up Scafell" class="shutterset_set_9" >
								<img title="...still on the way up Scafell" alt="...still on the way up Scafell" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0274.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-91" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0275.JPG" title="A look back over Wastwater" class="shutterset_set_9" >
								<img title="A look back over Wastwater" alt="A look back over Wastwater" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0275.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-92" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0278.JPG" title="First glimpses of snow up Scafell" class="shutterset_set_9" >
								<img title="First glimpses of snow up Scafell" alt="First glimpses of snow up Scafell" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0278.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-93" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0288.JPG" title="Starting to get serious" class="shutterset_set_9" >
								<img title="Starting to get serious" alt="Starting to get serious" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0288.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-94" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0293.JPG" title="Touching the void" class="shutterset_set_9" >
								<img title="Touching the void" alt="Touching the void" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0293.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-95" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0294.JPG" title=" " class="shutterset_set_9" >
								<img title=" " alt=" " src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0294.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-96" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0295.JPG" title=" " class="shutterset_set_9" >
								<img title=" " alt=" " src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0295.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-97" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0298.JPG" title="England, believe it or not." class="shutterset_set_9" >
								<img title="England, believe it or not." alt="England, believe it or not." src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0298.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-98" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0299.JPG" title="Not the north face of the Eiger" class="shutterset_set_9" >
								<img title=" " alt=" " src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0299.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-99" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0300.JPG" title=" " class="shutterset_set_9" >
								<img title=" " alt=" " src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0300.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-100" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0303.JPG" title=" " class="shutterset_set_9" >
								<img title=" " alt=" " src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0303.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-101" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0305.JPG" title="Getting to grips with the self timer." class="shutterset_set_9" >
								<img title="Getting to grips with the self timer." alt="Getting to grips with the self timer." src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0305.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-102" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0310.JPG" title="Figured out the self timer" class="shutterset_set_9" >
								<img title="Figured out the self timer" alt="Figured out the self timer" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0310.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-103" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0314.JPG" title="Stopping, briefly, for lunch." class="shutterset_set_9" >
								<img title="Stopping, briefly, for lunch." alt="Stopping, briefly, for lunch." src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0314.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-104" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0316.JPG" title="Axe and cake" class="shutterset_set_9" >
								<img title="Axe and cake" alt="Axe and cake" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0316.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-106" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0322.JPG" title="On the way down." class="shutterset_set_9" >
								<img title="On the way down." alt="On the way down." src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0322.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-105" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0318.JPG" title="Andy looking down over Wasdale" class="shutterset_set_9" >
								<img title="Andy looking down over Wasdale" alt="Andy looking down over Wasdale" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0318.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-115" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/img_0320.jpg" title="Dave surveys his domain" class="shutterset_set_9" >
								<img title="Dave surveys his domain" alt="Dave surveys his domain" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_img_0320.jpg" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-107" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0327.JPG" title="A night heron." class="shutterset_set_9" >
								<img title="A night heron." alt="A night heron." src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0327.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-108" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0329.JPG" title="Lakes wildlife" class="shutterset_set_9" >
								<img title="Lakes wildlife" alt="Lakes wildlife" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0329.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-111" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0342.JPG" title="Wastwater" class="shutterset_set_9" >
								<img title="Wastwater" alt="Wastwater" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0342.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-113" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/IMG_0345.JPG" title="Walking by Wastwater." class="shutterset_set_9" >
								<img title="Walking by Wastwater." alt="Walking by Wastwater." src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_IMG_0345.JPG" width="64" height="48" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-79" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/DSC_0278.JPG" title="Preparing for a swim in Wastwater" class="shutterset_set_9" >
								<img title="Preparing for a swim in Wastwater" alt="Preparing for a swim in Wastwater" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_DSC_0278.JPG" width="64" height="42" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-80" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/DSC_0279_1.JPG" title="Wastwater in winter" class="shutterset_set_9" >
								<img title="Wastwater in winter" alt="Wastwater in winter" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_DSC_0279_1.JPG" width="64" height="52" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-81" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/DSC_0283.JPG" title="Wading in Wastwater" class="shutterset_set_9" >
								<img title="Wading in Wastwater" alt="Wading in Wastwater" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_DSC_0283.JPG" width="64" height="42" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-82" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/DSC_0284.JPG" title="Swimming in Wastwater" class="shutterset_set_9" >
								<img title="Swimming in Wastwater" alt="Swimming in Wastwater" src="http://www.planetmarshall.co.uk/wp-content/gallery/winter_camp/thumbs/thumbs_DSC_0284.JPG" width="64" height="42" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.planetmarshall.co.uk/2010/01/winter-camping/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

