summaryrefslogtreecommitdiff
path: root/lib/Travel/Status/GB/TFL.pm
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-09-07 11:31:28 +0200
committerDaniel Friesel <derf@finalrewind.org>2016-09-07 11:31:28 +0200
commit11f8c8b8cf75a2624af7c28f829d1068bcb8f3f7 (patch)
treee73b64377b297b5aa16be7b78a8254b413cf1367 /lib/Travel/Status/GB/TFL.pm
parent9a31bad5b2a21cdd54e4196573c799aebdbf17ee (diff)
rename: Travel::Status::{DE -> GB}::TfL (London is in UK/GB after all)
Diffstat (limited to 'lib/Travel/Status/GB/TFL.pm')
-rw-r--r--lib/Travel/Status/GB/TFL.pm96
1 files changed, 96 insertions, 0 deletions
diff --git a/lib/Travel/Status/GB/TFL.pm b/lib/Travel/Status/GB/TFL.pm
new file mode 100644
index 0000000..5aaeebe
--- /dev/null
+++ b/lib/Travel/Status/GB/TFL.pm
@@ -0,0 +1,96 @@
+package Travel::Status::GB::TFL;
+
+use strict;
+use warnings;
+use 5.010;
+
+no if $] >= 5.018, warnings => 'experimental::smartmatch';
+
+our $VERSION = '1.02';
+
+use parent 'Travel::Status::DE::URA';
+
+sub new {
+ my ( $class, %opt ) = @_;
+
+ $opt{ura_base} = 'http://countdown.api.tfl.gov.uk/interfaces/ura';
+ $opt{ura_version} = '1';
+
+ return $class->SUPER::new(%opt);
+}
+
+1;
+
+__END__
+
+=head1 NAME
+
+Travel::Status::GB::TFL - unofficial TFL departure monitor.
+
+=head1 SYNOPSIS
+
+ use Travel::Status::GB::TFL;
+
+ my $status = Travel::Status::GB::TFL->new(
+ stop => 'Aachen Bushof'
+ );
+
+ for my $d ($status->results) {
+ printf(
+ "%s %-5s %25s (in %d min)\n",
+ $d->time, $d->line, $d->destination, $d->countdown
+ );
+ }
+
+=head1 VERSION
+
+version 1.02
+
+=head1 DESCRIPTION
+
+Travel::Status::GB::TFL is an unofficial interface to the Transport for London
+(TfL) realtime departure monitor.
+
+=head1 METHODS
+
+=over
+
+=item my $status = Travel::Status::GB::TFL->new(I<%opt>)
+
+Requests the departures as specified by I<opts> and returns a new
+Travel::Status::GB::TFL object.
+
+Calls Travel::Status::DE::URA->new with the appropriate B<ura_base> and
+B<ura_version> parameters. All I<opts> are passed on.
+
+See Travel::Status::DE::URA(3pm) for the other methods.
+
+=back
+
+=head1 DIAGNOSTICS
+
+None.
+
+=head1 DEPENDENCIES
+
+=over
+
+=item * Travel::Status::DE::URA(3pm)
+
+=back
+
+=head1 BUGS AND LIMITATIONS
+
+Many.
+
+=head1 SEE ALSO
+
+tfl-m(1), Travel::Status::DE::URA(3pm).
+
+=head1 AUTHOR
+
+Copyright (C) 2013-2015 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>
+
+=head1 LICENSE
+
+This module is licensed under the same terms as Perl itself.