NAME
Travel::Status::DE::HAFAS::StopFinder - Interface to HAFAS-based online stop finder services
SYNOPSIS
use Travel::Status::DE::HAFAS::StopFinder;
my $sf = Travel::Status::DE::HAFAS::StopFinder->new(
url => 'https://reiseauskunft.bahn.de/bin/ajax-getstop.exe',
input => 'Borbeck',
);
if (my $err = $sf->errstr) {
die("Request error: ${err}\n");
}
for my $candidate ($sf->results) {
printf("%s (%s)\n", $candidate->{name}, $candidate->{id});
}
VERSION
version 4.03
DESCRIPTION
Travel::Status::DE::HAFAS::StopFinder is an interface to the stop finder service of HAFAS based arrival/departure monitors, for instance the one available at https://reiseauskunft.bahn.de/bin/ajax-getstop.exe/dn.
It takes a string (usually a location or station name) and reports all stations and stops which are lexically similar to it.
METHODS
- my $stopfinder = Travel::Status::DE::HAFAS::StopFinder->new(%opts)
-
Looks up stops as specified by opts and teruns a new Travel::Status::DE::HAFAS::StopFinder element with the results. Dies if the wrong opts were passed.
Supported opts are:
- input => string
-
string to look up, e.g. "Borbeck" or "Koeln Bonn Flughafen". Mandatory.
- url => url
-
Base url of the stop finder service, without the language and mode suffix ("/dn" and similar). Mandatory. See Travel::Status::DE::HAFAS(3pm)'s get_services method for a list of URLs.
- language => language
-
Set language. Accepted arguments are deutsch, english, italian and n (dutch), depending on the used service.
It is unknown if this option has any effect.
- lwp_options => \%hashref
-
Passed on to
LWP::UserAgent->new
. Defaults to{ timeout => 10 }
, you can use an empty hashref to override it.
- $status->errstr
-
In case of an error in the HTTP request, returns a string describing it. If no error occurred, returns undef.
- $status->results
-
Returns a list of stop candidates. Each list element is a hash reference. The hash keys are id (IBNR / UIC station code) and name (stop name). Both can be used as input for the Travel::Status::DE::HAFAS(3pm) constructor.
If no matching results were found or the parser / http request failed, returns the empty list.
DIAGNOSTICS
None.
DEPENDENCIES
LWP::UserAgent(3pm)
JSON(3pm)
BUGS AND LIMITATIONS
Unknown.
SEE ALSO
Travel::Status::DE::HAFAS(3pm).
AUTHOR
Copyright (C) 2015-2017 by Daniel Friesel <derf@finalrewind.org>
LICENSE
This module is licensed under the same terms as Perl itself.