Using TransXChange Train Timetables

For a project on transport data I needed access to the National Rail timetables to calculate passing points for trains at every station. The National Public Transport Data Repository (NPTDR) TransXChange data is available for download on the data.gov.uk site, but it’s easier to download from the Department for Transport site: http://data.dft.gov.uk/NPTDR/index.html TransXChange is an … Read more

Continue reading »

Force Directed Graphs for Visualisation of Search Results

I’ve been looking at the D3.js library for data visualisation in Javascript. This is the new evolution of Protovis from the Stanford Visualization group, and uses SVG to create dynamic visualisations from raw data. What interests me is how large archives of geospatial datasets can be searched for relevant information. On MapTube at the moment … Read more

Continue reading »

Trackernet: The Victoria Line

I’ve been meaning to look at TfL’s Trackernet API for a while now. It works through a REST based web service which gives access to all the London Underground running boards on a line by line basis. You issue an http request of the form: http://cloud.tfl.gov.uk/TrackerNet/PredictionSummary/V and the result is an XML file containing train information for […]

Continue reading »

Making Maps From Wikipedia

I’ve been looking at web-based sources of geographic data and Wikipedia links are something I’ve wanted to try out for a while. I found the following page containing Worldwide fossil sites: List of fossil sites This gives a list of sites, but with no locations: The “Site” column contains href links which can be followed to pages […]

Continue reading »

New MapTube Map Creation Feature

We released a new feature on the MapTube website today which will make it easier to create new maps from data in CSV files. The underlying technology is used on the SurveyMapper site and for other real-time visualisations like http://bigdatatoolkit.org/2011/07/26/1yeartogo/ which shows tweets using the #1yeartogo hashtag for the London 2012 Olympics. The new update to […]

Continue reading »

Two Line Elements

Prompted by the final space shuttle launch of Atlantis, I thought I would have another look at two line elements (TLEs). These are coded lines of data that describe the orbital dynamics of a space vehicle. The last time I looked at this was when I was working on a GPS tracking project and we wanted […]

Continue reading »

Contouring Data

It’s been a while since I did any Fortran. I’ve been looking into contouring algorithms and decided to have a look at Paul Bourke’s Conrec program that was originally published in Byte magazine in 1987: http://paulbourke.net/papers/conrec The graph above shows the underlying data values as a coloured square grid with the black contour lines on […]

Continue reading »

Weather Underground

I’ve been looking at the Weather Underground API (http://wiki.wunderground.com/index.php/API_-_XML) which gives access to the observation stations and the data they are collecting. The API uses simple commands to query for a list of stations, for example: http://api.wunderground.com/auto/wui/geo/GeoLookupXML/index.xml?query=london,united+kingdom Using C# and .net, this is accomplished as follows: WebRequest request = WebRequest.Create(string.Format(GeoLookupXML, @”london,united+kingdom”)); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); XmlDocument […]

Continue reading »

A Week in the Life of a Tile Server

Recently, BBC Look East have been running a “Broadband Speed Survey”, asking people to use an online tester to check their broadband speed, and then enter the value, along with their postcode, into SurveyMapper. This generated 16,311 responses to the survey, but for each response people get to view the map containing the latest data, […]

Continue reading »

Election 2010: Where Were All the Votes?

Using the General Election 2010 results spreadsheet from the Guardian Data Blog, we’ve produced three MapTube maps showing the distribution of votes for the three main parties:    The maps can be viewed on MapTube at the following link: http://www.maptube.org/election/map.aspx?s=DGxUpxGSnLKhUzLIOMHBwKeUwKZUyEDAwcCnksCjlMhBwMHAp5LAoTbd Use the red slider buttons to fade the distributions for the three parties up and down. […]

Continue reading »

Genesis: How to Build a Planet

John Conway’s “Game of Life” was one of the first things I ever wrote in Java, back in the days when we were using 1.1. This is a slight variation on the traditional 2D view, where the alife simulation is wrapped around a spinning globe. The results are shown below, along with the link to […]

Continue reading »

From Tile Pyramids to Population Pyramids

It’s actually a stacked bar chart rather than a traditional population pyramid, but the image below shows male/female population by age for all the output areas in England. The red thematic overlay is total population for every OA, which can be clicked to get the age group breakdown shown in the popup window. This map […]

Continue reading »
1 2