I’ve had a few railway project ideas knocking around for ages now, but have had a couple of blockers which have meant they have not progressed. Mainly lack of time and lack of data! I’m therefore clearing the decks for July and August to spend some decent time working on these ideas, which also co-incides with Network Rail giving access to a new platform providing live data feeds. You may have heard about the launch, I believe the platform was developed in conjunction with Rockshore, well, it’s what this tweet says anyway.
Where do you start?
If you are interested in using the datafeeds yourself, you can read all about it on Network Rail’s site which also has a link to download the developer’s guide in PDF format.
First, you need to create an account - I believe there are limited numbers of accounts going at the moment, so the sooner you do that, the better.
There are two types of feeds available, pub/sub using the stomp protocol for real-ish time data & downloads of huge files from Amazon S3 for timetables etc.
Once your account is active, you can subscribe to any of the pub/sub datafeeds you like and away you go.
Receiving Messages
I decided that I was going to try accessing the pub/sub datafeeds using Ruby (not my usual language) and put my experimental code on to my git hub account. Feel free to have a look and check it out, I’ll be using it for my initial experiments, so it should get updated beyond this basic example!
I’ve also included a sample, no error checking, very straightforward listener below. If you wish to try and run it, then you will of course need Ruby and Ruby gems installed, plus the stomp ruby gem.
Then, you just need to ensure your username and password are set as the relevant environment variables and away you go.
All being well, you should slowly receive updates from the topic you have selected. The example below uses Train positioning data for the East Midlands (TD_MC_EM_SIG_AREA) and assumes that you have subscribed to that feed using the network rail control panel
The updates you receive from this program are not formatted at all, it’s just sending the message straight to string. Of course, this is just helping you know you’re set up correctly. So you would get something like:
1
| |
Ultimately of course, you’d process the JSON from the body and do something with it.
Example Ruby Listener
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |