This is the format used by Derby & South Derbyshire (DE02) group for their booklet
Note this may change without notice, if you want to use this or similar then contact us.
<?php
//error_reporting(E_ALL);
//ini_set('display_errors', 1);
$rafeedurl ="http://www.ramblers.org.uk/api/lbs/walks?groups=de02";
$feed=new RJsonwalksFeed($rafeedurl); // standard software to read json feed and decode file
$display= new RJsonwalksDe02Programme(); // code to display the walks in a particular format
$feed->Display($display); // display walks information
?>
Code used above
$rafeedurl ="http://www.ramblers.org.uk/api/lbs/walks?groups=de02";
$feed=new RJsonwalksFeed($rafeedurl); // standard software to read json feed and decode file
$display= new RJsonwalksDe02Programme(); // code to display the walks in a particular format
$feed->Display($display); // display walks information
