My RSS Feed https://www.childs.be/plugins/gs-blog/rss.php Welcome to my blog!! Fri, 02 May 2025 12:21:17 +0000 en-gb Automated batch conversion of Garmin FIT files to GPX in Windows Sun, 22 Dec 2024 00:00:00 +0000 https://www.childs.be/articles/post/automated-batch-conversion-of-garmin-fit-files-to-gpx-in-windows https://www.childs.be/articles/post/automated-batch-conversion-of-garmin-fit-files-to-gpx-in-windows Whilst working on a project to output the elevation chart of a GPX track I came across some code to produce your own heatmap from a bunch of gps tracks. I thought that'd be pretty cool to visualized my own as I've been using Strava's global heatmap since it was released in 2017 to plot mountain bike routes. I was pretty bummed that when they <p><a href="https://www.childs.be/data/uploads/batch-convert-fit.png" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/batch-convert-fit.png" style="float: left; width: 300px; height: 165px; margin: 10px;" /></a>Whilst working on a project to <a href="https://www.childs.be/articles/post/create-an-elevation-profile-from-a-gpx-file">output the elevation chart of a GPX track</a> I came across some code to produce your own heatmap from a bunch of gps tracks. I thought that'd be pretty cool to visualized my own as I've been using <a href="https://www.strava.com/maps/global-heatmap?hl=en-GB">Strava's global heatmap</a> since it was released in 2017 to plot mountain bike routes. I&nbsp;was pretty bummed that when they were released, personal heatmaps were a premium feature so it got me thinking I may have a tinker at that.</p> <p>Anyway, side-tracked as ever I embarked on seeing if I could download all my routes from Garmin Connect (<a href="https://www.garmin.com/account/datamanagement/">which you can here</a>). It didn't take long for them to arrive, but on inspecting them realised they were all in .fit format (of course they were proprietary Garmin!).</p> <p>I knew <a href="https://www.gpsbabel.org/">GPS Babel</a> was probably going to be the answer for converting the files as I'd used it waay back in the day but wasn't sure if it could natively batch process files, a quick bit of research said no, but no matter should be easily be able to knock a simple command together.</p> <p>I was on my Linux box at the time so I wasn't so wasn't looking for a windows solution but I did note that there wasn't really any tutorials out there for it only this method which seems way too manual for my liking, so I thought in the spirit of giving back (and a bit if site traffic!) if dig out my windows batch fu from the recesses of my brain and post one:</p> <p>You'll need to have <a href="https://www.gpsbabel.org/download.html">GPS Babel already installed</a> then just simply&nbsp;open the command prompt in the folder where the .fit files are and fire out this line of script:</p> <h3>Windows command line code</h3> <pre>for %i in (*.fit) do "C:&bsol;Program Files&bsol;GPSBabel&bsol;gpsbabel.exe" -rt -i garmin_fit -f %i -x track,course,speed -o gpx -F %~ni.gpx</pre> <p>should be good to go and it quickly chewed through the 37,652 files I downloaded from Garmin!</p> <h3>Windows batch code</h3> <p>For an easier method which doesn't use the command line at all, just right-click in the folder where the files are located, fire out a New \ Text Document, open it and paste the following code:</p> <pre>@echo off Title Batch convert fit to gpx for %%i in (*.fit) do "C:&bsol;Program Files&bsol;GPSBabel&bsol;gpsbabel.exe" -rt -i garmin_fit -f %%i -x track,course,speed -o gpx -F %%~ni.gpx &amp;&amp; echo %%i converted to %%~ni.gpx pause</pre> <p>then just save the file as <code>convert.bat</code> then double click on it :-). Note there's an extra % used in the batch command to escape the other %.</p> <h3>Extra credit</h3> <p>There's a bit of extra credit in there as it turns the prompt off and lists the converted files. If you want some double extra credit you can hop on over to my Github page and the code the will colour the output as well:</p> <script src="https://gist.github.com/mc3k/acb624815826208fff6c46f71e79b820.js"></script> <p>If you are feeling brave you can append <code>&amp;&amp; del %%i</code> onto the end and it will delete the converted files as well.</p> Cycle garmin,fit,gpsbabel,convert,batch,windows How to easily & perfectly align your Stem Sun, 17 Sep 2023 23:53:31 +0000 https://www.childs.be/articles/post/how-to-easily-andperfectly-align-your-stem https://www.childs.be/articles/post/how-to-easily-andperfectly-align-your-stem I don't know about your but I've always had trouble aligning my stem perfectly parallel to my front wheel. It's even more infuriating when out on the road or tail sensing even the tiniest misalignment which niggles you for weeks or even months. The trouble is that it's really hard to quantify if it is actually out of kilter or just in your head! <p>I don&#39;t know about your but I&#39;ve always had trouble aligning my stem perfectly parallel to my front wheel. It&#39;s even more infuriating when out on the road or tail sensing even the tiniest misalignment which niggles you for weeks or even months.<a href="https://www.childs.be/data/uploads/bmx_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/bmx_800.jpg" style="width: 267px; height: 200px; float: right; margin: 10px;" /></a></p> <p>The trouble is that it&#39;s really hard to quantify if it is actually out of kilter or just in your head! In the past I&#39;ve tried many whacky solutions of either triangulating a measurement between the grips and a point on the tyre or using a straight edge between the saddle headset and tyre.</p> <p>There are two issues at play here, the margin of error that you can detect is so small that it&#39;s virtually impossible to measure accurately.<cite> You also can&#39;t make tiny adjustments to the stem as you have to nip up the bolts a little to stop it moving whilst trying to align it and it&#39;s </cite>pretty grippy so it takes quite a nudge to move it meaning you pretty much have to fluke it with a bit of trial and error.</p> <p>Well it turns out that it&#39;s actually very easy when you know how and it doesn&#39;t even need any tools other than your eyes!</p> <blockquote><big>Just drop out your front wheel and eyeball the angle of your axle dropouts with the stem faceplate.</big></blockquote> <p><a href="https://www.childs.be/data/uploads/Stem_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/Stem_800.jpg" style="width: 400px; height: 300px; margin:10px" /></a><a href="https://www.childs.be/data/uploads/Stem2_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/Stem2_800.jpg" style="width: 186px; height: 300px; margin:10px" /></a></p> <p>Easy. Only issues you might have is if you&#39;ve got a chunky front mudguard and you&#39;ll come up against not being how to focus on both your dropouts and faceplate at the same time but the effect is no worse than you can see from my photos but it is super quick to get dialled in. Should work with any bike and you can get the alignment perfect!</p> <p>&nbsp;</p> Cycle wheel,stem,bicycle,align,how-to How to remove bicycle tyre marks from painted walls Thu, 23 Nov 2017 20:00:00 +0000 https://www.childs.be/articles/post/how-to-remove-bicycle-tyre-marks-from-painted-walls https://www.childs.be/articles/post/how-to-remove-bicycle-tyre-marks-from-painted-walls This is probably the bain of a lot of cyclist's lives, well the ones that keep their bikes indoors anyhow, despite how careful you are it is just a matter of time before you inadvertantly catch a tyre on the wall as you wheel your bike around. No probs you would think, bit of Cif and the mark'd come right off. No such luck here, for some reason <p><b>This is probably the bain of a lot of cyclist&#39;s lives, well the ones that keep their bikes indoors anyhow, despite how careful you are it is just a matter of time before you inadvertantly catch a tyre on the wall as you wheel your bike around.</b></p> <p><a href="https://www.childs.be/data/uploads/DSC07517_LR_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/DSC07517_LR_800.jpg" style="width: 267px; height: 400px; margin:10px" /></a></p> <p>No probs you would think, bit of Cif and the mark&#39;d come right off. No such luck here, for some reason the stain refuses to shift. Sure you can rub at it hard but all that acheives is the removal of the paint.</p> <h2>Magic sponges</h2> <p><a href="https://www.childs.be/data/uploads/710PY4adxbL._SX355_.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/710PY4adxbL._SX355_.jpg" style="width: 300px; height: 270px;;" /></a></p> <p>After pondering the situation for a couple of years and in conjunction with another household cleaning problem that I decided to buy some magic sponges. Pretty cheap really when you buy them off ebay - a 10 pack was less than a couple of quid delivered first class</p> <p><a href="https://www.childs.be/data/uploads/DSC07518_LR_800.jpg"><img alt="" src="https://www.childs.be/data/uploads/DSC07518_LR_800.jpg" style="width: 267px; height: 400px;" /></a></p> <p>Dampen them up and a bit of rubbing later - hey presto, marks gone, and when it&#39;s dry it is like they were never there.</p> Cycle magicsponge,type,stain,bicycle How to clean the lid and nozzle of your Camelbak Podium bottle Tue, 07 Nov 2017 22:08:00 +0000 https://www.childs.be/articles/post/how-to-clean-the-lid-and-nozzle-of-your-camelbak-podium-bottle https://www.childs.be/articles/post/how-to-clean-the-lid-and-nozzle-of-your-camelbak-podium-bottle My first encounters with Camelbak Podium bidons were not great, I borrowed a bottle from Ali for use on quick ride but but I was soon struggling with it! What I hadn't experienced before in my two decades of cycling was an increase in nozzle length, every time I wen't for a sip I ended up punching myself in the face - I'd have to relearn how to <p><strong>My first encounters with Camelbak Podium bidons were not great, I borrowed a bottle from Ali for use on quick ride but but I was soon struggling with it!</strong></p> <p>What I hadn&#39;t experienced before in my two decades of cycling was an increase in nozzle length, every time I wen&#39;t for a sip I ended up punching myself in the face - I&#39;d have to relearn how to drink my go-juice on the go though as a couple of days later I received a gift from Ali of two brank spanking new GCN bidons.</p> <p><a href="https://www.childs.be/data/uploads/DSC_3319_LR_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/DSC_3319_LR_800.jpg" style="width: 300px; height: 199px; float: right; margin: 10px" /></a>I was a bit reluctant to margin:10px; use them initially as my experience had shown me that the aforemoentioned drinking outlet had the habit of skaning up quite readily so much so that I&#39;d caught Ali a short while later stooping on her bike, uscrewing the lid and drinking out of the opening in preference to the water having to pass through the bacterial infestation.</p> <p>I had a go at rmoving it but was getting no-where just with the use of my hands. We&#39;d considered asking someone with a dishwasher to have a go in that for us but didn&#39;t get round to it.</p> <p>It wasn&#39;t till I bought her an new one in advance of our Girona training camp that I could up the braveness without worrying if I busted it.</p> <p>So brave pills taken and the first attempt I wanted was with something blunt. I was in the kitchen so I reached for a teaspoon and proceeded to jam it up the spout as far as it would go, it was then just a case of levering it a bit and the fella popped off.</p> <p><a href="https://www.childs.be/data/uploads/DSC_3320_LR_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/DSC_3320_LR_800.jpg" style="width: 300px; height: 198px;" /></a></p> <p>The worringing thin here is that once you get it open you really see how grimed up it is - the translucent nozzle manages to hide the worst of it, eergh!</p> <p><a href="https://www.childs.be/data/uploads/DSC_3321_LR_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/DSC_3321_LR_800.jpg" style="width: 300px; height: 199px;" /></a></p> <p>It actually comes apart into three pieces with a bit of tug.</p> <p><a href="https://www.childs.be/data/uploads/DSC_3322_LR_800.jpg" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/DSC_3322_LR_800.jpg" style="width: 300px; height: 300px;" /></a></p> <p>You&#39;ll be glad to know that from this point it is a super easy to get spangly clean then just pops back together and you are ready to go.</p> <p>Happy riding and enjoy your good-s-new bottle.</p> Cycle camelbak,bidon,clean,spoon,gcn Rivington MTB ride Wed, 18 May 2016 08:00:00 +0000 https://www.childs.be/articles/post/rivington-mtb-ride https://www.childs.be/articles/post/rivington-mtb-ride I'd been itching to ride Rivvy ever since I realised that it was here that they held the Manchester Commonwealth games. I'd had a couple of attempts which ended up not being that great but it is when I happened across this route that the trails really hotted up. This route takes in the (obligatory for me) broken road descent and a lap around <p><a href="https://www.childs.be/data/uploads/20130721_102256_LR_800.jpg" id="fb" rel="fb"><img alt="" src="https://www.childs.be/data/uploads/20130721_102256_LR_800.jpg" style="width: 401px; height: 221px; float: right; margin: 10px;" /></a><strong>I&#39;d been itching to ride Rivvy ever since I realised that it was here that they held the Manchester Commonwealth games.</strong></p> <p>I&#39;d had a couple of attempts which ended up not being that great but it is when I happened across <a href="http://flattyres-mtb.co.uk/route-guides/lancashire-mtb-routes/rivington-pike/">this</a>&nbsp;route that the trails really hotted up.</p> <p>This route takes in the (obligatory for me) broken road descent and a lap around the Pike followed by the climb to the top of Winter Hill and the San Marino descent (as ever, please check legal rights of way before cycling).</p> <p>Next a bit of road work up to Belmont then over Rivington Road followed by a loop around the north of the Reservoir and a loop of Healey Nab.</p> <div class="row"> <div class="col-sm-6"> <div class="list-group"><a class="list-group-item active">Ride details</a> <div class="list-group-item">Distance 31km</div> <div class="list-group-item">Elevation gain 820m</div> <div class="list-group-item">Start: <a href="https://www.google.co.uk/maps/@53.621306,-2.5617328,3a,75y,35.98h,67.48t/data=!3m6!1e1!3m4!1sSZL5DaQftKWDi8gPeJHEdw!2e0!7i13312!8i6656">Road to Rivington Hall Barn</a>&nbsp;| &pound;Free</div> <div class="list-group-item">Toilet: Next to Lower Barn</div> <div class="list-group-item">Coffee stop: <a href="https://www.google.co.uk/maps/@53.6200908,-2.562371,3a,60y,295.59h,84.33t/data=!3m6!1e1!3m4!1snmKGI89D2WOx1rGeDntsZw!2e0!7i13312!8i6656">Rivington Lower Barn</a></div> </div> </div> </div> <div id="osmap"><script>init('/data/uploads/gpx/rivy_cheeky.gpx',364000,416000)</script></div> <iframe frameborder="0" height="679px" id="mapmyfitness_route" src="https://www.mapmyride.com/routes/view/embedded/5738541514?width=600&amp;height=401&amp;elevation=true&amp;line_color=E61900DC&amp;rgbhex=DC0019&amp;distance_markers=0&amp;unit_type=imperial&amp;map_mode=ROADMAP&amp;show_marker_every=1&amp;last_updated=2023-09-18T11:43:04+00:00" width="100%"> <div class="jss1854" id="embed-frame-footer"> <p class="MuiTypography-root jss1856 MuiTypography-body1" string="View Route Details"><a class="jss1855" href="https://www.mapmyride.com/routes/view/5738541514" rel="noopener noreferrer" target="_blank">View Route Details</a></p> <div class="jss1857"> <p class="MuiTypography-root jss1858 jss1879 MuiTypography-body1">Create routes or search for a route at&nbsp;<span><a class="jss1856" href="https://www.mapmyride.com/" rel="noopener noreferrer" string="MapMyRide." target="_blank">MapMyRide.</a></span></p> </div> </div> </iframe> Cycle rivington,rivy,mtb,gpx,route,xc TF2 Extreme Wet Lubricant Wed, 11 Nov 2015 08:00:00 +0000 https://www.childs.be/articles/post/tf2-extreme-wet-lubricant-review https://www.childs.be/articles/post/tf2-extreme-wet-lubricant-review TF2 Extreme Wet Lubricant Reviewed by Martin Childs Weldite, 75ml £3.49/ 125ml £5.79 (£46 per litre) Seriously sticky, but too much goop? I thought I was on a winner here, an extreme wet lube with TF2 for extra slipperiness at an OK price. Well I was just plain wrong! This stuff does live up to it's extreme moniker but it <div itemscope="" itemtype="http://data-vocabulary.org/Review"> <h3><img alt="" src="https://www.childs.be/data/uploads/IMG_1202_LR_400.jpg" style="width: 188px; height: 250px; float: right; padding: 12px;" /><span itemprop="itemreviewed"><span itemprop="itemreviewed">TF2 Extreme Wet</span> Lubricant</span></h3> <h3><small>Reviewed by <span itemprop="reviewer">Martin Childs</span></small></h3> <p><a href="http://weldtite.co.uk/products/detail/tf2-extreme-wet-lubricant-125ml">Weldite</a>, 75ml &pound;3.49/ 125ml &pound;5.79 (&pound;46 per litre)</p> <p><strong><span itemprop="summary">Seriously sticky, but too much goop?</span></strong></p> <p><span itemprop="description">I thought I was on a winner here, an extreme wet lube with TF2 for extra slipperiness at an OK price.</span></p> <p><span itemprop="description">Well I was just plain wrong! This stuff does live up to it&#39;s extreme moniker but it was just too extreme for my liking.</span></p> <p><span itemprop="description">The problem with it is that it sticks to itself to easily and as you rotate teh chain to apply it a whole load of stringy cobweb like threads of lube appear as the chain rolls off the jockey wheels/cassette/chainrings.</span></p> <p><span itemprop="description">That in itself isn&#39;t a killer but it has the tendency to then splatter all over you rims and tyres - not the best.</span></p> <p><span itemprop="description">Not wanting to let my money go to waste I&#39;ve taken to mixing it with my previously <a href="https://www.childs.be/blog/post/wilko-performance-lubricant-cycle-oil-review">reviewed Wilko Performance Lube</a>. Doing so knocks back the stringiness and thickens the Wilko lube up a bit and after about a year and a half now I&#39;ve managed to use it all up!</span></p> <p><span itemprop="description">One point in its favour is that the spout unscrews so I&#39;m planning to reuse the empty bottle if I can source some cheap lube in bulk.</span></p> <h4><strong>Rating: 1 out of 5</strong></h4> </div> <p>&nbsp;</p> Cycle TF2ExtremeWetLubricant,lubricant,cycleoil,review Custom sprocket ratios for 9 speed Campagnolo 12-26 Thu, 08 Oct 2015 08:00:00 +0000 https://www.childs.be/articles/post/custom-sprocket-ratios-for-9-speed-campagnolo https://www.childs.be/articles/post/custom-sprocket-ratios-for-9-speed-campagnolo One of the great thing Campagnolo pays particular attention to that other manufacturers often overlook is gear ratios. A regular rider might only notice jumps between sprockets when they are excessive such as on super wide blocks, the reason for this is that we automatically compensate for a non optimal cadence by slowing down or speeding up. The <p><b><img alt="" src="https://www.childs.be/data/uploads/campy-cassette.jpg" style="width: 300px; height: 267px; float: right;margin: 10px;" />One of the great thing Campagnolo pays particular attention to that other manufacturers often overlook is gear ratios. </b></p> <p>A regular rider might only notice jumps between sprockets when they are excessive such as on super wide blocks, the reason for this is that we automatically compensate for a non optimal cadence by slowing down or speeding up. The racers among us will note that in a&nbsp;</p> <p>The compromise Campy makes in retaining minimal jumps between ratios is that they sometimes sacrifice top and bottom end gears. It&#39;s an acceptable trade off, keeping the most used middle gears in preference to the rarely used extremities.</p> <p>You particularly notice this phenomenon the fewer numbers of gears you have. In a modern 11 speed setup Shimano now offers an 11-28 block which is now the default choice for even pro riders. If you convert this spread into a 9 speed cassette you&#39;d lop off the top and bottom gears leaving you with a 12-28 spread. Unfortunately for Campagnolo users this is deemed to have too many jumps still and the widest they will supply you with is a 13-28.</p> <p>Luckily for us old skool Campy users we can easily knock our own ratios up using Veloce level components. If you consult the Campy spare parts catalogues and tech specs you will note that the ramp patterns &nbsp;mean you can mix and match most of the ratios and preseve the finely tuned shifting characteristics.</p> <p><img alt="" src="https://www.childs.be/data/uploads/Campagnolo_9_Speed_Ratios.jpg" style="width: 500px; height: 353px; margin:10px;" /></p> <p>If you take a look at the chart (full pdf <a href="http://www.campagnolo.com/media/files/035_173_Catalogue_spare%20parts_tools_Campagnolo_2005.pdf">here</a>) we can see in order to get a 12-26 block all we is to lose the 13 and 16 sprockets from a 13-26 and slot on a 12 and 13 from a 12-23.</p> <p>The genius of it is that if you study the sprockets model numbers you will see that the ramps betweens the ratios stay perfectly synced as Campy intended them to be.</p> <p>As an additional bonus it needn&#39;t be an overly expensive procedure - nearly new 12-23 cassettes can be pocked up uber-cheaply from ebay as nobody really uses them today.&nbsp;</p> <p>Head over to the <a href="http://www.campagnolo.com/UK/en/Support/download?td=3">support section of the Campagnolo website</a> and indulge youself in all the spare parts catalogues and technical manuals you could ever dream of!</p> <p>&nbsp;</p> Cycle campy,campagnolo,cassette,ratios The secrets of Alex Dowsett's hour record bike Sat, 02 May 2015 17:19:00 +0000 https://www.childs.be/articles/post/the-secrets-of-alex-dowsetts-hour-record-bike https://www.childs.be/articles/post/the-secrets-of-alex-dowsetts-hour-record-bike Had an awesome time watching Alex Dowsett's excellent showing at todays world hour record attempt. First off some stats about the bike: Canyon Speedmax WHR custom built with track drop outs; 114inch gearing (55x11) Continental Tempo 22mm tubulars (13-15bar pressure) Campagnolo Pista disc wheels Weight 7.71kg He had a total of four frames <p><a href="http://cdn.velonews.competitor.com/files/2015/04/127.jpg" id="fb"><img alt="" src="http://cdn.velonews.competitor.com/files/2015/04/127.jpg" style="width: 400px; height: 267px; float: right;" /></a></p> <p><strong>Had an awesome time watching Alex Dowsett&#39;s excellent showing at todays world hour record attempt.</strong></p> <p>First off some stats about the bike:</p> <ul> <li><a href="http://www.cyclingnews.com/news/pro-bike-alex-dowsetts-canyon-speedmax-whr">Canyon Speedmax WHR</a> custom built with track drop outs;</li> <li>114inch gearing (55x11)</li> <li>Continental Tempo 22mm tubulars (13-15bar pressure)</li> <li>Campagnolo Pista disc wheels</li> <li>Weight 7.71kg</li> </ul> <p>He had a total of four frames made and had them all built ready so he had threee spares on the day.</p> <p>During his post effort interview he was answering a question about how far he could go he gave aways a couple of interesting snippets. He was saying that he wasn&#39;t sure of how he would do as as the developement of the bike was evolving he was getting faster.</p> <p>One of the developements to his custom he didn&#39;t name but eluded to:</p> <blockquote>Some of the modifications will only last a hour</blockquote> <p>This interesting comment got me thinking, what kind of tweak would only be temporary? I immediately&nbsp; was thinking that it may be some kind of&nbsp; spray on / liquid based enhancement? I&#39;ll have to look into this one further...</p> <p><a href="https://www.childs.be/data/uploads/dowsett-hour-record.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/dowsett-hour-record.jpg" style="width: 600px; height: 450px;" /></a></p> Cycle How to make a Shimano disc brake bleed spacer block Wed, 04 Mar 2015 08:00:00 +0000 https://www.childs.be/articles/post/how-to-make-a-shimano-disc-brake-bleed-spacer-block https://www.childs.be/articles/post/how-to-make-a-shimano-disc-brake-bleed-spacer-block The official bleed spacer is both really expensive to buy for what it is and hard to come by. Have a look at Shimano tech docs site, here you can see the official tech sheet detailing bleeding spacer you need. You may get lucky at your local bike shop, if you ask nicely they may have one to spare. If you want to save a few pounds and make one <h4>The official bleed spacer is both really expensive to buy for what it is and hard to come by.</h4> <p><img alt="" src="https://www.childs.be/data/uploads/Bleed_Spacer.jpg" style="width: 150px; height: 123px; float: right;" />Have a look at <a href="http://si.shimano.com/#categories/8">Shimano tech docs site</a>, here you can see the official tech sheet detailing bleeding spacer you need. You may get lucky at your local bike shop, if you ask nicely they may have one to spare. If you want to save a few pounds and make one yourself I&#39;ll take you through what you need.</p> <p>The <a href="http://www.parktool.com/blog/repair-help/shimano-r-hydraulic-brake-service-and-adjustment">Park Tool site</a> details the thickness of the spacer required - 10mm should do it, now all we need to do is to find something we can use which is the appropriate width. I racked my brain for a while trying to come up with something.</p> <p>Having spent many an hour inspecting and measuring bits and bobs I came up with using one pence coins - they are the correct diameter and stacking them comes to the required thickness.</p> <p><img alt="" src="https://www.childs.be/data/uploads/New_1p_2008.jpg" style="width: 150px; height: 150px; float: left; margin: 10px" />It is best to have a selection of ages of 1 pences available as they tend to loose thickness as they wear out. According to the <a href="http://www.royalmint.com/discover/uk-coins/coin-design-and-specifications/one-penny-coin">Royal Mint</a>, brand new pennies come in two different sizes, either 1.52mm or 1.65mm thick dependant on the material used.</p> <p>Be aware though this is not an exact science as I tested six older looking coins against 6 newer ones - the result was 9.20mm vs 10.20mm so there must be another element in there also a bit of dirt and a bit of wearing thin.</p> <p><img alt="" src="https://www.childs.be/data/uploads/IMG_2421_LR_400.jpg" style="float: right; width: 300px; height: 169px; margin: 10px" />This is great, we can use it to tune the tickness of bleed block you want. People rave about Shimano brakes as they aren&#39;t draggy. Whilst I admit all of my Avid brakes have a little bit if disc rub most of the time they have an excellent automatic bite point adjustment.</p> <p>Shimano on the other hand do not have such a feature and as the pad wears you have to keep winding the reach of the lever outwards so the lever doesn&#39;t bottom out on the bars so you can actually stop (some higher end Shimano levers do have a manual bite point tweak but this still doesn&#39;t give enough adjustment). This isn&#39;t a problem initially but it soon makes the levers so far out that I have ungrip the bars to <em>fetch</em> them back in preperation to use them! I&#39;m glad I only have them on XC bike.</p> <p>I&#39;ve read somewhere on the internet (I&#39;ll supply a linky when I find it again) that as the pad wears down you can use a thinner bleed block to keep on top of the reach issues.</p> <p><strong>What you&#39;ll need:</strong></p> <ul> <li>a selection of pennies</li> <li>some glue</li> <li><a href="http://www.ebay.co.uk/sch/i.html?_from=R40|R40&amp;_sacat=0&amp;_nkw=vernier+caliper&amp;rt=nc&amp;LH_BIN=1">vernier caliper</a></li> </ul> <p><strong>Glue it together</strong></p> <p>Then all you need to do is to select the combination of coins you require to make up your disired thickness (I went with 9.80mm) as measured by your vernier guage, glue them together (I used some <a href="http://www.ebay.co.uk/sch/i.html?_from=R40&amp;_sacat=0&amp;_nkw=e6000&amp;rt=nc&amp;LH_BIN=1">E6000 </a>I had lying about after I was gluing my shoe back togetther). Once the glue has set you are away.</p> <p><strong>In use</strong></p> <p>I found in use that the spacer did fall out a couple of times, not during critical points of the bleed process though. Other than this it performed admirably and despite it&#39;s slight drawback it is great to be able to slightly tweak the exact bleed you are getting out of your calipers - I found that 9.80mm was spot on for my current amount of pad wear.</p> <div class="alert alert-warning"><strong>Disclaimer:</strong> This blog post is just an explanation of what I did, do not follow my instructions. I will not be liable in any way, or in any circumstances for any damage, injury or loss to any individual that may occur during, in connection with, or as a result of reading this article. You should always keep your equipment maintained in full working order by a qualified mechanic.</div> Cycle shimano,disc,bleed,block,spacer Decathlon / B'Twin tyre lever review Fri, 31 Oct 2014 08:00:00 +0000 https://www.childs.be/articles/post/decathlon-btwin-tyre-lever-review https://www.childs.be/articles/post/decathlon-btwin-tyre-lever-review Decathlon / B'Twin tyre lever Reviewed by Martin Childs Decathlon, £2.50 for three Thin enough to get under the tightest bead but strong and cheap. This is definately one product that bucks the old saying of: Light, strong and cheap: choose two These little strokes of genius from Decathlon are where tyre levers are at. My previous <div itemscope="" itemtype="http://data-vocabulary.org/Review"> <h3><a href="https://www.childs.be/data/uploads/IMG_1204_LR_400.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/IMG_1204_LR_400.jpg" style="width: 300px; height: 225px; float: right; margin: 10px;" /></a><span itemprop="itemreviewed"><span itemprop="itemreviewed">Decathlon / B&#39;Twin tyre lever</span></span></h3> <h3><small>Reviewed by <span itemprop="reviewer">Martin Childs</span></small></h3> <p><a href="http://www.decathlon.co.uk/3-tyre-levers-for-bike-id_8047839.html">Decathlon</a>, &pound;2.50 for three</p> <p><strong><span itemprop="summary">Thin enough to get under the tightest bead but strong and cheap.</span></strong></p> <p><span itemprop="description">This is definately one product that bucks the old saying of:</span></p> <blockquote><em><span itemprop="description">Light, strong and cheap: choose two</span></em></blockquote> <p><span itemprop="description">These little strokes of genius from Decathlon are where tyre levers are at. My previous favourite tyre lever was these <a href="http://pedros.com/products/tools/wheel-and-tire/tire-levers/">Pedros jobbies</a>. They come in funky colours, are super chunky strong and have a nice large but slim bead hook great for getting deep into rims and tight tyres.</span></p> <p><span itemprop="description">However times are a changing, today low bead hooks are commonplace and rims with <a href="http://www.bikeradar.com/mtb/gear/article/trail-tech-off-the-hook-40749/">no bead hook at all</a> are here. Following the trend of more recent designs this design from Decathlon has a short stubby flat &#39;hook&#39; with a slim body that takes up minimal space. Extra design features include a nifty schraeder valve nubbin for deflating mtb tyres. Given Decathlon&#39;s renowned price/quality ratio you&#39;d be thinking that for &pound;2.50 these would fall into the budget category, but after several years of testing I can safely say that these fellas are tough enough for even the tightest beaded road tyres.</span></p> <p><span itemprop="description">As a further bonus in the VFM stakes you get three levers - buy two packs for a fiver and you are set for life with three sets to use.</span></p> <p><strong>Rating: <span class="rating">5</span> out of 5</strong></p> </div> <p>&nbsp;</p> Cycle review,decathlon,tyrelever Lake Vyrnwy Kingfisher Spotting! Sun, 03 Aug 2014 22:08:00 +0000 https://www.childs.be/articles/post/lake-vyrnwy-kingfisher-spotting https://www.childs.be/articles/post/lake-vyrnwy-kingfisher-spotting Spent a second fantastic weekend camping in Shropshire in mid June, having previously visited in 2011. Marty opted for a day mountain biking around the Long Mynd area which I did enjoy thanks to the spectacular views of the Shropshire Hills.   But the highlight of my weekend was a trip to RSPB Lake Vyrnwy on the Sunday.  We packed <p><a href="https://www.childs.be/data/uploads/lake-vyrnwy_LR_800.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/lake-vyrnwy_LR_800.jpg" style="width: 400px; height: 225px; float: right; padding: 10px" /></a><strong>Spent a second fantastic weekend camping in Shropshire in mid June, having previously visited in 2011.</strong></p> <p>Marty opted for a day mountain biking around the Long Mynd area which I did enjoy thanks to the spectacular views of the Shropshire Hills.&nbsp;&nbsp; But the highlight of my weekend was a trip to <a href="http://www.rspb.org.uk/reserves/guide/l/lakevyrnwy/index.aspx">RSPB Lake Vyrnwy</a> on the Sunday.&nbsp; We packed up the tent and headed off into Wales with plans to cycle around the lake.&nbsp; On arrival we headed to the main Coed Y Capel hide by the car park.&nbsp; I was disappointed to see that there were no bird feeders out, previously these have given great views of small birds, however we got chatting to the RSPB volunteers who informed us that the absence of feeders was an attempt to protect the bird population from a devastating infection, trichomoniasis.</p> <p>We then set off around the lake towards the centenary and lakeside hides.&nbsp; I wasn&#39;t hoping to see much when we arrived at the centenary hide, on our previous visit all the action had been at Coed Y Capel.&nbsp; We had just made our way into the hide when out of the corner of my eye I saw a flash of blue streak past! I instantly knew I had seen a<a href="http://www.rspb.org.uk/wildlife/birdguide/name/k/kingfisher/index.aspx"> kingfisher</a>, and was so excited as this was my first ever sighting!&nbsp; My luck continued when the bird flew back into sight and perched on top of a post amid the reeds, giving us perfect views, but sadly did not stay long enough for a photo opportunity!</p> <p>After all the excitement we decided to have a pit stop and opted for the Lake View tea room, a short climb up from the main road around the lake.&nbsp; The tea room is well located, with excellent views over the lake from the front terrace.&nbsp; We had a pot of tea and Marty had a scone, but sadly for me there were no gluten free cakes!&nbsp; However the fantastic bird spotting continued from our table with sightings of siskins, housemartins, chaffinches, jays, a mistle thrush, pheasant and a great spotted woodpecker!</p> <p>Fully fuelled we set off out our &quot;flying lap&quot; - an attempt to get the all important <a href="http://www.strava.com/activities/156892636">Strava</a> segment!&nbsp; Considering we were on our mountain bikes we flew around, clearly boosted by a fantastic few days!</p> Cycle lakevyrnwy,kingfisher Continental GP4000S - correct install orientation/rotation direction Sun, 06 Jul 2014 08:00:00 +0000 https://www.childs.be/articles/post/continental-gp4000s-correct-install-orientation-rotation-direction https://www.childs.be/articles/post/continental-gp4000s-correct-install-orientation-rotation-direction Want to know in which direction to install yor new Continental GP4000S tyres? read on.... Not that the sipings have any effect on performace (I did read an article somewhere in which the representative from Continental said that customers expect them so thats why they are on there), but it is nice to know you've installed them in the correct <p><a href="https://www.childs.be/data/uploads/GP4000S-rotation_LR_800.jpg" id="fb"><img alt="Correct install rotation of Continental GP4000S" src="https://www.childs.be/data/uploads/GP4000S-rotation_LR_800.jpg" style="width: 400px; height: 300px; float: right; padding: 10px" /></a><strong>Want to know in which direction to install yor new Continental GP4000S tyres? read on....</strong></p> <p>Not that the sipings have any effect on performace (I did read an article somewhere in which the representative from Continental said that customers expect them so thats why they are on there), but it is nice to know you&#39;ve installed them in the correct orientation.</p> <p>I was in a rush installing my first tyre as I had a split in the carcass of my <a href="https://www.childs.be/blog/post/giant-p-r3-tyre-review">Giant P-R3 tyre</a> and in artificial light I couldn&#39;t find any markings or rotation travel at all so I made a judgement call and, as it turns out, put them on the wrong way.</p> <p>When it came to installing the other tyre the sun was shining brightly and I could just make it out (and I mean very just) so I thought I&#39;d share it with the world and post a picture up. It may seem unclear in the picture - it is worse than this in real life! I&#39;ve put some post-processing on the image to bring the markings up better. You can&#39;t actually make out the point of the arrow but the end of the shaft is just about visible. If you look very hard you can just determine the shoulders of the arrows as well.</p> <p>Good riding.</p> <p>&nbsp;</p> Cycle ContinentalGP4000S,gp4000s,cycle,tyres,gimp How to shift the time in your GPX file Mon, 30 Jun 2014 08:00:00 +0000 https://www.childs.be/articles/post/how-to-shift-the-time-in-your-gpx-file https://www.childs.be/articles/post/how-to-shift-the-time-in-your-gpx-file Here are the intructions to shift the time of you GPX file, especially useful if you have just bought an Aldi GPS watch: Step one Download and install GPS Babel. Step two In the folder where you store your gpx files create a new text document and rename it GPX minus 1hr.bat making sure you change the whole file name including the file <p><a href="https://www.childs.be/data/uploads/gpx.png" id="fb"><img alt="" src="https://www.childs.be/data/uploads/gpx.png" style="width: 444px; height: 284px; float: right; padding: 10px;" /></a><strong>Here are the intructions to shift the time of you GPX file, especially useful if you have just bought an <a href="https://www.childs.be/blog/post/aldi-gps-watch-review">Aldi GPS watch</a>:</strong></p> <p><strong>Step one</strong></p> <p>Download and install <a href="http://www.gpsbabel.org/download.html">GPS Babel</a>.</p> <p><strong>Step two</strong></p> <p>In the folder where you store your gpx files create a new text document and rename it</p> <pre>GPX minus 1hr.bat</pre> <p>making sure you change the whole file name including the file extension</p> <p><strong>Step three</strong></p> <p>Edit the file by opening it in notepad</p> <p><strong>Step four</strong></p> <p>Paste this code in and save:</p> <pre>SET file=%1.old IF NOT EXIST %file% copy %1 %1.old &quot;C:\\Program Files (x86)\\GPSBabel\\gpsbabel.exe&quot; -t -r -w -i gpx -f %file% -x track,move=-1h -o gpx -F %1 pause</pre> <p>This is for Windows Vista/7 installations</p> <p><strong>Step five</strong></p> <p>Drag and drop the file you want to change the time on. It will create a backup of your file and shift the time for you.</p> <p>&nbsp;</p> <p>Alternatively you can <a href="https://www.childs.be/data/uploads/BST%20-1hr%20GPX.bat">download the file here</a>.</p> <p>&nbsp;</p> Cycle gpx,gpsbabel Aldi GPS watch review Sun, 29 Jun 2014 21:50:37 +0000 https://www.childs.be/articles/post/aldi-gps-watch-review https://www.childs.be/articles/post/aldi-gps-watch-review Aldi GPS Watch Reviewed by Martin Childs Aldi, £64.99 Awesomly bargainous. What can I say, picked one of these fellas up today, its really great for only £65. I'll get a more thorough reveiw once I had it a while but heres some initial notes. Features which set it apart from anything in its up to more than double its <div itemscope="" itemtype="http://data-vocabulary.org/Review"> <h3><img alt="" src="https://www.childs.be/data/uploads/aldi-gps-watch.jpg" style="width: 300px; height: 254px; float: right; margin: 10px;" /><span itemprop="itemreviewed"><span itemprop="itemreviewed">Aldi GPS Watch</span></span></h3> <h3><small>Reviewed by <span itemprop="reviewer">Martin Childs</span></small></h3> <p><a href="https://www.aldi.co.uk/en/specialbuys/sunday-29th-june/product-detail/ps/p/gps-unisex-watch/">Aldi</a>, &pound;64.99</p> <p><strong><span itemprop="summary">Awesomly bargainous.</span></strong></p> <p>What can I say, picked one of these fellas up today, its really great for only &pound;65.</p> <p>I&#39;ll get a more thorough reveiw once I had it a while but heres some initial notes.</p> <p>Features which set it apart from anything in its up to more than double its price:</p> <ul> <li>Four different sport profiles, each one has a customisable screens.</li> <li>You have three screens each with three lines of info, all are totally configurable by profile!</li> <li>Battery life of 16hours in GPS recording mode &amp; 1 year as a watch!</li> <li>Records altitude in data file;</li> <li>Has an included heart rate belt and records data in log;</li> <li>Charges really quickly (should have put a timer on it, about an hour).</li> </ul> <p><span itemprop="description">If you want to read the manuals and check out the software, youcan download them from&nbsp;<a href="https://www.produktservice.info/20014414/ba.html">here</a>. </span></p> <p>What it can&#39;t do:</p> <ul> <li>It is only rain proof - can&#39;t be used for swimming.</li> </ul> <p>Slight irritation:</p> <ul> <li>Data file contains your local time - not UTC, this confuses Strava and in British summer time will show you ride 1 hour later. Don&#39;t panic though, I have a fix <a href="https://www.childs.be/blog/post/how-to-shift-the-time-in-your-gpx-file">here</a>.</li> </ul> <p>Verdict: snap one up now before they&#39;ve gone!</p> <p><strong>Rating: 4.5 out of 5</strong></p> </div> <p>&nbsp;</p> Cycle Giant P-R3 Tyre Review Sun, 22 Jun 2014 08:00:00 +0000 https://www.childs.be/articles/post/giant-p-r3-tyre-review https://www.childs.be/articles/post/giant-p-r3-tyre-review Giant P-R3 Tyre Reviewed by Martin Childs Front weight 285g, £20 Rear weight 287g, £20 A solid performer, decent enough quality for a stock tyre. These tyres originally came from Ali's 2012 Giant Defy 1. The bike arrived with a slow puncture which eventually gave way a couple of rides into ownership. I had bought some <div itemscope="" itemtype="http://data-vocabulary.org/Review"> <h3><a href="https://www.childs.be/data/uploads/IMG_1194_LR_400.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/IMG_1194_LR_400.jpg" style="width: 300px; height: 225px; float: right; margin: 10px;" /></a><span itemprop="itemreviewed"><span itemprop="itemreviewed">Giant P-R3 Tyre</span></span></h3> <h3><small>Reviewed by <span itemprop="reviewer">Martin Childs</span></small></h3> <p><a href="http://www.giant-bicycles.com/en-gb/gear/product/giant.p.r3.road.cycling.tyre.front/590/39162/">Front</a>&nbsp;weight 285g, &pound;20</p> <p><a href="http://www.giant-bicycles.com/en-gb/gear/product/giant.p.r3.road.cycling.tyre.rear/590/44835/">Rear</a> weight 287g, &pound;20</p> <p><strong><span itemprop="summary">A solid performer, decent enough quality for a stock tyre.</span></strong></p> <p><span itemprop="description">These tyres originally came from Ali&#39;s <a href="http://www.giant-bicycles.com/en-gb/bikes/model/defy.1/9317/49821/">2012 Giant Defy 1</a>. The bike arrived with a slow puncture which eventually gave way a couple of rides into ownership. </span></p> <p><span itemprop="description">I had bought some retro clincher wheels (<a href="http://velobase.com/ViewComponent.aspx?ID=8238A164-4B88-4969-96C9-73251AA5ED85&amp;Enum=107&amp;AbsPos=5">Campagnolo Mexico &#39;68 rims</a> on Veloce hubs) to replace my very fashionable at the time but not very practical in the real world tubular wheels (Mavic CXP 30 rims on Veloce hubs) wheels for my trusty 853 steed along with some heavily discounted blue coloured <a href="http://www.vittoria.com/product/rubino/">Vittoria Rubino Pro</a> rubber. It turned out that the blue shade was slightly different in real life compared to pictures on the internet and I was not particularly pleased with the match to my frame. It was at this point Alison jumped in to relieve me of them as they looked great on her bike and in the process of fixing the aforementioned puncture that she decided the bead was far too tight for her liking on the basis that if she got a puncture during a triathlon it&#39;d take way too much time to repair.</span></p> <p>In use the tyres were good, not overly slow (obviously opinion only as I&#39;ve no way of testing this!), never lacking of grip and not one puncture during my ownership. There was one occasion when I was really pushing their limits - it was on a <a href="http://app.strava.com/segments/755064">descent from the Cat &amp; Fiddle</a>, the roads were damp and there was a 25mph crosswind. It was a couple of the sharp hairpin type corners, as I was turning towards the apex at speed where the crosswinds struck - so strong that I quickly ran out of grip and was literally being blown across the road. The tyres performed admirably and I was able to hold and control the two wheel drift. So much fun in fact that I repeated the stunt a couple of times along the way!</p> <p>In terms of mileage they were doing well until one day travelling along cycle route 60 I was dismayed to find out they&#39;d freshly chip&#39;n&#39;sealed the whole damned thing. This made progress very slow and on my return I&#39;d noticed that they&#39;d suddenly almost reached their wear indicators on the rear. So less than 2,500km to reach max wear then switched front/back and I got another 700km before a side-wall tear (the inner tube was poking through but not punctured 4mm rip) ended the front. I must admit though the mountain biker in me means I do like to take them off road through some rough stuff. I didn&#39;t really notice any difference between the rubber compound on the front and rears despite what the specs say. Other than the tear there was only a couple minor nicks in rubber.</p> <p>You&#39;d hope to get more distance out of them really</p> <p><strong>Rating: 3&nbsp;out of 5</strong></p> </div> <p>&nbsp;</p> Cycle Giant,P-R3,Tyre,Review,cycle,tires Wilko Performance Lubricant cycle oil review Mon, 16 Jun 2014 08:00:00 +0000 https://www.childs.be/articles/post/wilko-performance-lubricant-cycle-oil-review https://www.childs.be/articles/post/wilko-performance-lubricant-cycle-oil-review Wilko Performance Lubricant Reviewed by Martin Childs Wilko, £2.49 (£25 per litre) All the lubing you need at a lower price. One thing that really winds me up is the commercialisation of cycling. This includes when companies take some generic product stick a label on it with the picture of a bike and charge many times the price. <div itemscope="" itemtype="http://data-vocabulary.org/Review"> <h3><a href="https://www.childs.be/data/uploads/IMG_1200_LR_400.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/IMG_1200_LR_400.jpg" style="width: 250px; height: 333px; float: right; padding: 12px;" /></a><span itemprop="itemreviewed">Wilko Performance Lubricant</span></h3> <h3><small>Reviewed by <span itemprop="reviewer">Martin Childs</span></small></h3> <p><a href="http://www.wilko.com/bike-accessories/wilko-performance-lubricant-100ml/invt/0344046">Wilko</a>, &pound;2.49 (&pound;25 per litre)</p> <p><strong><span itemprop="summary">All the lubing you need at a lower price.</span></strong></p> <p><span itemprop="description">One thing that really winds me up is the commercialisation of cycling. This includes when companies take some generic product stick a label on it with the picture of a bike and charge many times the price. Bicycle oil is a prime example; all we need is a bit of something to splash on our chains which will keep it lubed.</span></p> <p><span itemprop="description">I&#39;m sure that I could actually use pretty much anything so long as it doesn&#39;t wash off or attract insect life but it needs to be in a convenient dropper bottle so you can get a good application. The oil makes have though of this one - they all come in un-reusable bottles!</span></p> <p><span itemprop="description">So on to my review, it certainly ticks all the right boxes, dropper bottle (which is re-useable by the way), all weather and has a dose of Telfon to boot. In application it is quite thin compared to the likes of <a href="http://www.finishlineusa.com/products/chain-lubricants/wet-lube">Finish Line wet lube</a> (which comes in at a whopping &pound;60 per litre) - so much so that on my first attempt is squirted it straight through the chain and onto the carpet, but a more deft touch it goes on like another other product.</span></p> <p><span itemprop="description">My other main concern with lubes is how long they last, the type of MTB&#39;ing I seem to be doing lately strips my chain completely clean - both dirt and lube so anything which will last more than a really wet ride has my blessing. There&#39;s nothing more annoying that a premature squeak from the chain when you are not even half way round the ride - something so far Wilko&#39;s offering can beat.</span></p> <p><span itemprop="description">It actually looks suspiciously like a rebadged <a href="http://weldtite.co.uk/products/detail/tf2-performance-lubricant-with-teflonreg-100ml">Weldite TF2 performance lubricant</a> (ignore the green-ness they&#39;ve photoshopped it) except they&#39;ve made it cheaper (Weldite&#39;s runs at &pound;40 per litre) and it&#39;s just handy that you can pop into a Wilko to pick some up when needed. Wilko also seem to sell a <a href="http://www.wilko.com/bike-accessories/max-c-cycle-oil-100ml/invt/0199457">rebadged version</a> of their <a href="http://weldtite.co.uk/products/detail/cycle-oil-125ml">regular cycle oil</a> as well, its just a shame they don&#39;t do <a href="http://weldtite.co.uk/products/detail/tf2-extreme-wet-lubricant-125ml">Weldite&#39;s Extreme Wet</a> as well.</span></p> <p><span itemprop="description">In summary this stuff is cheap and lasts well.</span></p> <h4><strong>Rating: <span itemprop="rating">4</span> out of 5</strong></h4> </div> <p><strong>Update 24-Jul-2014:</strong> I&#39;ve been using this for a couple of months now and apart from the thin-ness all I can report is the smell - its a bit like engine oil, but you can&#39;t really complain at that.</p> Cycle cycle,oil,review,tf2,teflon,lube Chilterns Red Kite road ride Tue, 27 May 2014 08:00:00 +0000 https://www.childs.be/articles/post/chilterns-red-kite-ride https://www.childs.be/articles/post/chilterns-red-kite-ride Following a visit to Windsor castle we stopped off for a road ride in the Chilterns. We had read that you can see red kites in the area so I was particularly excited to combine a bicycle ride with wildlife watching! I had hoped to see at least one red kite and I was not disappointed! We spied many red kites on the drive to Watlington and upon <h4>Following a visit to Windsor castle we stopped off for a road ride in the Chilterns. We had read that you can see red kites in the area so I was particularly excited to combine a bicycle ride with wildlife watching!</h4> <p>I had hoped to see at least one red kite and I was not disappointed! We spied many <a href="https://www.rspb.org.uk/wildlife/birdguide/name/r/redkite/">red kites</a> on the drive to Watlington and upon arrival at the car park 4 were circling overhead! A great opportunity to get the binoculars out and get a closer look at these beautiful birds.</p> <p>I eventually managed to tear myself away and we begun the ride, straight away we were onto the first of five climbs of the day.&nbsp; The first hill of the day is always a struggle and today was no exception but once we reached Christmas Common we began the main loop and the countryside opened up and we could really appreciate the views.</p> <p>We saw red kites all around the route, it was amazing to see such a healthy population of a bird whose numbers had been reduced to a handful of pairs at the start of the 20th century. A real conservation success story!</p> <p>Around the halfway point we came across a nice pub, The Prince Albert, and had a pit stop. Mugs of tea whilst we enjoyed watching more red kites circling over nearby fields.</p> <p>This was a wonderful ride and I hope that we will be able to further explore the Chilterns soon!</p> <div class="row"> <div class="col-sm-6"> <div class="list-group"><a class="list-group-item active">Ride details</a> <div class="list-group-item">Distance: 67km</div> <div class="list-group-item">Elevation gain: 950m</div> <div class="list-group-item">Start: Car park in <a href="https://www.google.co.uk/maps/@51.644499,-1.003035,3a,75y,183.81h,74.69t/data=!3m4!1e1!3m2!1sk98JZqp6M663i-55HKS5-Q!2e0">Watlington</a> | &pound;<a href="http://www.watlington-oxon-pc.gov.uk/Core/Watlington_Parish_Council/Pages/Travel_and_Maps_4.aspx">free</a></div> <div class="list-group-item">Toilets: <a href="https://www.google.co.uk/maps/@51.645755,-1.007232,3a,75y,33.36h,70.97t/data=!3m4!1e1!3m2!1sK8bxAbCY4rnKCbaKkoPeUw!2e0">Watlington</a></div> <div class="list-group-item">Coffee stop: <a href="https://www.google.co.uk/maps/place/The+Prince+Albert/@51.608971,-0.848232,2a,90y,90t/data=!3m5!1e2!3m3!1s88413033!2e1!3e10!4m2!3m1!1s0x0:0xc2e19a202176c019!6m1!1e1">The Prince Albert</a></div> </div> </div> </div> <p>It&#39;s probably best to leave your super fast race tyres at home for this - some of the roads are a bit agricultural so you are best off using a more robust piece item.</p> <div id="osmap"><img hidden="" onload="init('/data/uploads/gpx/chilterns_road.gpx',471410,193425)" src="/data/uploads/1x1.gif" /></div> <p>There are plenty of different routes to choose from, if you want to plan your own route here is a compilation of a load of sportive routes I found:</p> <p><a class="btn btn-default btn-sm" href="/os-map/?gpx=/data/uploads/gpx/chilterns_all.gpx"><span class="glyphicon glyphicon-fullscreen">&nbsp;</span>See all routes</a></p> Cycle cycle,ride,route,chilterns,redkites,road,bike Gower Peninsula Circular road ride Mon, 19 May 2014 08:00:00 +0000 https://www.childs.be/articles/post/gower-peninsula-circular-road-ride https://www.childs.be/articles/post/gower-peninsula-circular-road-ride This was a landmark ride in a way for me as usually when we go camping I leap upon the opportunity to take the MTB somewhere new, but somehow I persuaded myself into taking the road bikes instead. Maybe it was the lack of some really decent trails or the fact as we'd be in my sister's tent there'd be enough room to bring my retro roadie indoors to <p><a href="https://www.childs.be/data/uploads/20130819_161644_LR_800.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/20130819_161644_LR_800.jpg" style="width: 350px; height: 167px; float: right; margin: 10px;" /></a><strong>This was a landmark ride in a way for me as usually when we go camping I leap upon the opportunity to take the MTB somewhere new, but somehow I persuaded myself into taking the road bikes instead.</strong></p> <p>Maybe it was the lack of some really decent trails or the fact as we&#39;d be in my sister&#39;s tent there&#39;d be enough room to bring my retro roadie indoors to protect it from rust should the heavens open.</p> <p>Well it turns out I shouldn&#39;t have worried, the weather was great and we headed out for the first ride of the long weekend on Saturday morning. Unfortunately for me as we approached Llanmadoc to soak up the views of Broughton Bay the missing-link from my chain decided to go missing!</p> <p>As a matter of strict protocol I always have a pretty comprehensive tool kit upon my person at all times when MTBing, however this does not extend when on my road bike as I&#39;m never really going to be very far from civilisation should the worst happen. So after some time of futile search for it I headed to a shop I&#39;d passed and scrounged a plastic bag to put my chain in to continue back.</p> <p>It wasn&#39;t too much of a bind I was in as it was only 15km into the ride from our start point at Horton and I&#39;d sent Alison on ahead to go and fetch the car to meet me on the way back. I&#39;m so grateful that I use my MTB shoes and SPDs on the road bike as the scoot home was quite fun.</p> <p>As I said we had scheduled two rides for the weekend so we dicided to give it another crack on the Monday. So glad we did, the route is a cracker - it covers all the bases of terrain - from the beach front from Swansea to the mumbles, cliffs &amp; coasts, country lanes and tops of moors. For good measure you even take in some traffic free tree lined disused railways and the Marshes of Llanrhidian Sands,</p> <div class="row"> <div class="col-sm-6"> <div class="list-group"><a class="list-group-item active">Ride details</a> <div class="list-group-item">Distance 71km</div> <div class="list-group-item">Elevation gain 850m</div> <div class="list-group-item">Start: <a href="http://www.swansea.gov.uk/carparks#beach">somewhere along beach front?</a></div> <div class="list-group-item">Toilets: plenty along seafront, <a href="https://www.google.co.uk/maps/@51.642801,-4.106335,3a,22.6y,119.71h,82.4t/data=!3m4!1e1!3m2!1sg4p2jZIyKauzprZrxHlYjQ!2e0">Pen Clawdd</a></div> <div class="list-group-item">Coffee stop:</div> </div> </div> <div class="col-sm-6">&nbsp;</div> </div> <p>&nbsp;</p> <div id="osmap"><img hidden="" onload="init('/data/uploads/gpx/gower-circular.gpx',261300,188400)" src="/data/uploads/1x1.gif" /></div> <p>&nbsp;</p> Cycle cycle,ride,route,gower,wales,road,bike Hayfield figure of eight route - MTB ride Fri, 25 Apr 2014 08:00:00 +0000 https://www.childs.be/articles/post/hayfield-figure-of-eight-route-mtb-ride https://www.childs.be/articles/post/hayfield-figure-of-eight-route-mtb-ride This route is a goto classic of mine, the north loop ridden clockwise, the climbing is pretty easy but there are some cracking descents. The south section is ridden anti-clockwise - it is not so imperveous to being wet and sloppy in the winter months, but give it a bit of frost and it'll be good to go. The highlight of the ride is the decent from <p><a href="https://www.childs.be/data/uploads/hayfield-imgp3408_lr_800.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/hayfield-imgp3408_lr_800.jpg" style="width: 300px; height: 174px; float: right; margin: 10px;" /></a><strong>This route is a goto classic of mine, the north loop ridden clockwise, the climbing is pretty easy but there are some cracking descents.</strong></p> <p>The south section is ridden anti-clockwise - it is not so imperveous to being wet and sloppy in the winter months, but give it a bit of frost and it&#39;ll be good to go.</p> <p>The highlight of the ride is the decent from Lantern Pike, its a cracker.</p> <p>It finishes off with the &#39;legendary&#39; campsite descent but to be honest its pretty rubbish as descents in the Peaks go. The ride uses the very pleasant Sett Valley Trail to link the sections which enables you to ride either loop first.</p> <div class="row"> <div class="col-sm-6"> <div class="list-group"><a class="list-group-item active">Ride details</a> <div class="list-group-item">Distance 21km</div> <div class="list-group-item">Elevation gain 600m</div> <div class="list-group-item">Start: <a href="https://www.google.co.uk/maps/@53.379017,-1.946787,3a,75y,281.73h,78.46t/data=!3m4!1e1!3m2!1spjluppZ8qlevLlcl32RdlA!2e0">Sett Valley Trail car park</a> in Birch Vale | &pound;4</div> <div class="list-group-item">Toilet: behind visitor centre</div> <div class="list-group-item">Coffee stop: <a href="https://www.google.co.uk/maps/@53.378555,-1.969977,3a,75y,227.63h,64.32t/data=!3m4!1e1!3m2!1sOlwZRd9yC3p2p7GLHRSWKA!2e0">The Special Touch Cafe</a></div> </div> </div> </div> <p>There&#39;s a little detour you can make to extend the south loop - carry on past Shedyard Fm towards Cloughhead then take the &#39;next left&#39; back up towards New Allotments.</p> <div id="osmap"><script>init('/data/uploads/gpx/hayfield-fig-8.gpx',403415,386415)</script></div> Cycle MTB,cycle,route,ride,peakdistrict,peaks,gpx Moel Famau Double - MTB route Fri, 11 Apr 2014 08:00:00 +0000 https://www.childs.be/articles/post/moel-famau-double https://www.childs.be/articles/post/moel-famau-double The Clwydian Mountain range is and Area of Outstanding natural beauty. Once you gain a bit of height anywhere the views are stunning and on a clear day you can see over to Merseyside and Snowdon. I seem to ride here a lot in winter as most of the going is on well engineered paths and fireroad so is enjoyable even through the roughest of <p><a href="https://www.childs.be/data/uploads/moel-famau-imgp4038_lr_800.jpg" id="fb" rel="fb1"><img alt="" src="https://www.childs.be/data/uploads/moel-famau-imgp4038_lr_800.jpg" style="width: 133px; height: 200px; float: right; margin:10px;" /></a><strong>The Clwydian Mountain range is and Area of Outstanding natural beauty. Once you gain a bit of height anywhere the views are stunning and on a clear day you can see over to Merseyside and Snowdon. </strong></p> <p>I seem to ride here a lot in winter as most of the going is on well engineered paths and fireroad so is enjoyable even through the roughest of winters.</p> <p>This route climbs to the top of Moel Famau on the first loop, the climb is do-able, although a little steep in places but the path I take is the longest possible lessen the slope. The folly which caps the hill makes for a great 360 degree view point and theres often a smattering snow in winter which makes it all the more picturesque.</p> <p>The second lap takes follows the Coed Moel Famau Loop - on its own a great blue route for the beginner, I originally saw it on Ride the Clywds website which is no longer in existance, but you can see the route on <a href="http://www.mbwales.com/en/content/cms/bases/clwyds/coed_moel_famau_loop/coed_moel_famau_loop.aspx">mbwales.com</a>.</p> <div class="row"> <div class="col-sm-6"> <div class="list-group"><a class="list-group-item active">Ride details</a> <div class="list-group-item">Distance 22.3km</div> <div class="list-group-item">Elevation gain 730m</div> <div class="list-group-item">Start: <a href="https://www.google.co.uk/maps/@53.140228,-3.240054,3a,75y,328.5h,89.05t/data=!3m4!1e1!3m2!1sWtNSIbwHfVibK0lso2NANg!2e0">Coed Moel Famau car park</a> | &pound;2</div> <div class="list-group-item">Toilet: at bus stop by entrance</div> <div class="list-group-item">Coffee stop: there&#39;s usually a van in the car park serving brews and food</div> </div> </div> <div class="col-sm-6"><a href="https://www.childs.be/data/uploads/moel-famau-imgp4031_lr_800.jpg" id="fb" rel="fb1"><img alt="" src="https://www.childs.be/data/uploads/moel-famau-imgp4031_lr_800.jpg" style="width: 350px; height: 233px; float: right; margin:10px;" /></a></div> </div> <p>&nbsp;</p> <div id="osmap"><img hidden="" onload="init('/data/uploads/gpx/moel-famau-double.gpx',317000,362000)" src="/data/uploads/1x1.gif" /></div> <p>As another bonus, the car park barrier seems to be always broken saving you the &pound;1 fee!</p> <p><strong>Edit 8-Feb-2015</strong>: The barrier has been fixed for a while now and they&#39;ve put the charge up to &pound;2.</p> <p>You can view a <a href="http://moelfammau.mine.nu/">webcam here</a> to check for snow!</p> Cycle MTB,cycle,route,ride,clywds,gpx Peaks road quicky (aka the Sarah Storey ride) Mon, 24 Mar 2014 11:13:15 +0000 https://www.childs.be/articles/post/peaks-road-quicky-aka-the-sarah-storey-ride https://www.childs.be/articles/post/peaks-road-quicky-aka-the-sarah-storey-ride For some reason given that I ride offroad way more than I do my road bike, my first ride post is fully on-road... This route developed from the want of a ride encompassing some great climbs of the peaks without the boredom of the 30km journey there and 30km back! So the hunt was on for a place to park up - as usual for me it needed to be <p><a href="https://www.childs.be/data/uploads/brickworks-20120922_114115_lr.jpg" id="fb"><img alt="" src="https://www.childs.be/data/uploads/brickworks-20120922_114115_lr.jpg" style="width: 301px; height: 142px; float: right; margin: 10px;" /></a></p> <p><strong>For some reason given that I ride offroad way more than I do my road bike, my first ride post is fully on-road...</strong></p> <p>This route developed from the want of a ride encompassing some great climbs of the peaks without the boredom of the 30km journey there and 30km back! So the hunt was on for a place to park up - as usual for me it needed to be preferably free and have a toilet for the inevitable pit-stop after the large brew downed in the on the way there!</p> <p>The search was concluded with the discovery that the lovely village of Prestbury I&#39;d cycled through many times has both <a href="https://www.google.co.uk/maps/@53.287931,-2.149624,3a,75y,303.53h,59.31t/data=!3m4!1e1!3m2!1s5z4RYaMNLWe7UmRq9Vq1Bg!2e0">free parking</a> and a <a href="https://www.google.co.uk/maps/@53.290131,-2.150114,3a,47y,129.59h,78.93t/data=!3m4!1e1!3m2!1sHObDUGlNRmq6AuzSIzt4Jg!2e0">toilet </a>so capacious that you can take your bike in with you! Its also only 20-30mins drive from my house.</p> <p>Using Prestbury as a base meant the first leg of the ride was a no-brainer, up the classics Brickworks climb. Next I&#39;d always fancied riding through Errwood reservoirs and up the singletrack valley climb to the Cat &amp; Fiddle ever since I&#39;d had a day out walking around there. What finally sealed the deal was that Alison forwarded me a tweet from Dame Sarah Storey of her favourite ride which included most of my prospective roads.</p> <p>From there is a another easy choice to make - the descent down the Cat &amp; Fiddle to Macclesfield. All in, a great ride especially when the sun is shining, the views and the countryside are excellent. I&#39;ve included another variant, it swaps Long Hill for Windgather Rocks and descends down the A54.</p> <div class="row"> <div class="col-md-6"> <div class="list-group"><a class="list-group-item active">Ride details</a> <div class="list-group-item">Distance 40 - 60km</div> <div class="list-group-item">Elevation gain 850 - 1100m</div> <div class="list-group-item">Start: <a href="https://www.google.co.uk/maps/@53.287931,-2.149624,3a,75y,303.53h,59.31t/data=!3m4!1e1!3m2!1s5z4RYaMNLWe7UmRq9Vq1Bg!2e0">Shirely&#39;s Drive, Prestbury</a></div> <div class="list-group-item">Coffee stop: <a href="https://www.google.co.uk/maps/place/The+Cat+and+Fiddle+Inn/@53.243986,-1.999893,3a,75y,46.12h,90t/data=!3m4!1e1!3m2!1s6Kjpq6ITy1log0SgcAPDPg!2e0!4m2!3m1!1s0x487a37b2b5cd5d55:0x86d4828b3d80b43e!6m1!1e1">Cat &amp; Fiddle Inn</a></div> </div> </div> </div> <p>There&#39;s many other options too which can be considered - past Lamaload Reservoir, through Macc Forest past Trentabank Reservoir or around Macc Forest on cycle route 70 going through Wildboarclough. As for cafe stops, the Cat &amp; Fiddle in does a reasonably priced mug of tea with a nice selection of snacks; another bonus is that you can usually pick up a free motorcycle newspaper to stuff inside your jersey to take the edge off the wind chill on the way down,</p> <p><a class="btn btn-primary btn-sm" href="#" onclick="init('/data/uploads/gpx/prestbury-48k.gpx',392400,376000)" role="button">Route 1 &raquo;</a> <a class="btn btn-primary btn-sm" href="#" onclick="init('/data/uploads/gpx/prestbury-51k.gpx',392400,376000)" role="button">Route 2 &raquo;</a> <a class="btn btn-primary btn-sm" href="#" onclick="init('/data/uploads/gpx/prestbury-61k.gpx',392000,377000)" role="button">Route 3 &raquo;</a></p> <div id="osmap"><img hidden="" onload="init('/data/uploads/gpx/prestbury-48k.gpx',392400,376000)" src="/data/uploads/1x1.gif" /></div> Cycle road,ride,gpx,cycle,peaks,sarahstorey