Net::NationalRail::LiveDepartureBoards - Live Departure Boards information


Net-NationalRail-LiveDepartureBoards documentation  | view source Contained in the Net-NationalRail-LiveDepartureBoards distribution.

Index


NAME

Top

Net::NationalRail::LiveDepartureBoards - Live Departure Boards information

VERSION

Top

Version 0.02

SYNOPSIS

Top

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');

METHODS

Top

new

departures

arrivals

arrivals_and_departures

AUTHOR

Top

Tim Retout, <diocles at cpan.org>

BUGS

Top

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.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Net::NationalRail::LiveDepartureBoards




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-NationalRail-LiveDepartureBoards

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Net-NationalRail-LiveDepartureBoards

* CPAN Ratings

http://cpanratings.perl.org/d/Net-NationalRail-LiveDepartureBoards

* Search CPAN

http://search.cpan.org/dist/Net-NationalRail-LiveDepartureBoards

COPYRIGHT & LICENSE

Top

SEE ALSO

Top

WWW::NationalRail, WWW::LiveDepartureBoards


Net-NationalRail-LiveDepartureBoards documentation  | view source Contained in the Net-NationalRail-LiveDepartureBoards distribution.