| Net-NationalRail-LiveDepartureBoards documentation | view source | Contained in the Net-NationalRail-LiveDepartureBoards distribution. |
Net::NationalRail::LiveDepartureBoards - Live Departure Boards information
Version 0.02
Provides an interface to the National Rail Enquiries Live Departure Boards SOAP API, as documented at http://www.livedepartureboards.co.uk/ldbws/.
use Net::NationalRail::LiveDepartureBoards;
my $ldb = Net::NationalRail::LiveDepartureBoards->new();
my $hashref = $ldb->departures(rows => 10, crs => 'RUG');
# Or filter by trains going to another place
my $hashref = $ldb->departures(rows => 10, crs => 'RUG', filtercrs => 'SOU');
# Or get trains arriving from another place
my $hashref = $ldb->departures(rows => 10, crs => 'SOU',
filtercrs => 'RUG', filtertype => 'from');
Tim Retout, <diocles at cpan.org>
This is version 0.02. The API is probably not stable yet. There are probably bugs. The module could break at any time at the whim of ATOC.
Please report any bugs or feature requests to bug-net-nationalrail-livedepartureboards at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-NationalRail-LiveDepartureBoards. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Net::NationalRail::LiveDepartureBoards
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-NationalRail-LiveDepartureBoards
http://annocpan.org/dist/Net-NationalRail-LiveDepartureBoards
http://cpanratings.perl.org/d/Net-NationalRail-LiveDepartureBoards
http://search.cpan.org/dist/Net-NationalRail-LiveDepartureBoards
Copyright (C) 2009, 2010 Tim Retout, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
WWW::NationalRail, WWW::LiveDepartureBoards
| Net-NationalRail-LiveDepartureBoards documentation | view source | Contained in the Net-NationalRail-LiveDepartureBoards distribution. |