Scroll to navigation

EFA(1p) User Contributed Perl Documentation EFA(1p)

NAME

efa - Command line client for EFA-based public transit routing services

SYNOPSIS

VERSION

version 2.19

DESCRIPTION

efa is a command line client for EFA-based public transit routing interfaces, e.g. <http://efa.vrr.de>. efa requests connections between two points and displays the results.

By default, the EFA service at <http://efa.vrr.de> (operated by Verkehrsverbund Rhein-Ruhr) is used, which supports most places in Germany. A list of all supported EFA instances can be retrieved with -l and a custom instance can be selected using -s service or -u url. It is also possible to probe all known EFA services for a specific connection using the -A and -D options.

OPTIONS

Departure place
Arrival place
Travel via this place

In all cases, if you want stop to be an address or "point of interest", you can set it to 'addr:something' or 'poi:something'.

Journey end time (overrides --time/--depart)
Probe all known EFA entry points for the specified connection. Print the first result which was not an error.

Note that this may take a while and will not necessarily return the best result. Also, using this option by default is not recommended, as it puts EFA services under considerable additional load.

Request connections allowing the passenger to take a bike with them. Note that this may cause efa to display no routes at all -- In that case, the backend was unable to find such connections or didn't know about their bike-support.
Show information about bike support, but do not select routes based on it. In essence, this option simply changes the --ignore-info default. It is useful when --bike did not return any routes even though most of the route has bike support.
Journey date. Also accepts the shortcut tomorrow.
Probe all known EFA entry points for the specified connection. No routes are returned in this case. Instead, efa will print the URLs and names of all entry points which did not return an error.
URL to the EFA entry point, defaults to <http://efa.vrr.de/vrr/XSLT_TRIP_REQUEST2>. Depending on your location, some urls may contain more specific data than others. See Travel::Routing::DE::EFA(3pm) and the -l option for alternatives.
Exclude transports (comma separated list).

Possible transports: zug, s-bahn, u-bahn, stadtbahn, tram, stadtbus, regionalbus, schnellbus, seilbahn, schiff, ast, sonstige

Display more than just the basic route information. At the moment, the following is displayed (if available):
  • Route duration
  • Ticket fare
  • transfer duration and elevation changes (via stairs / escalators) at each stop
Display intermediate stops (with time and platform) of each train. Note that these are not always available.
Ignore additional information matching regex (default: /Fahrradmitnahme|Einstiegshilfe/)

If regex is not supplied, removes the default regex (-> nothing will be ignored)

Include connections using trains of type type, where type may be:
  • local (default)

    only take local trains ("Verbund-/Nahverkehrslinien"). Slow, but the cheapest method if you're not traveling long distance

  • ic

    Local trains + IC

  • ice

    All trains (local + IC + ICE)

List supported EFA services with their URLs (see -u) and abbreviations (see -s).
Output links to maps of transfer paths and transfer stations where available.
Print connections with at most number interchanges
Return up to number connections. If unset, the default of the respective EFA server is used (usually 4 or 5).
Prefer connections of type:
  • speed (default)

    The faster, the better

  • nowait

    Prefer connections with less interchanges

  • nowalk

    Prefer connections with less walking (at interchanges)

Take stops close to the stop/start into account. By default, up to 10 minutes of walking to/from the route's first/last stop is considered acceptable. You can specify minutes to use a custom value.
Shortname of the EFA entry point. See Travel::Routing::DE::EFA(3pm) and the -l option for a list of services.
Journey start time
Set timeout for HTTP requests. Default: 60 seconds.
Print version information
Set your walking speed to speed. Accepted values: normal (default), fast, slow
Request connections satisfying all of the specified accessibility types (comma-separated list, option may be repeated). Please note that this may cause the backend to return no results at all, either because no such connection exists or because the required lines do not have the correct accessibility attributes set.

The following types are supported:

Transfers must be possible without taking an escalator.
Transfers must be possible without using an elevator.
Does not restrict the requested connections. However, this option causes efa to display additional accessibility information for each route part (where available). When -x w or -x l do not return any connections, using -x i might be more helpful (though it cannot guarantee that any of the results satisfy the respective type).
All vehicles must be low-platform ("Niederflur").
Transfers must be possible without stairs (e.g. via escalators/elevators or ramps).
All vehicles must be wheelchair accessible.

EXIT STATUS

    0    Everything went well
    1    Invalid arguments, see error message
    2    Network error, unable to send request
    3    efa.vrr.de did not return any parsable data
    4    efa.vrr.de error: ambiguous input
    5    efa.vrr.de error: no connections found
    10   Unknown Travel::Routing::DE::EFA error
    255  Other internal error

CONFIGURATION

None.

EXAMPLES

Look up a connection from Dortmund (Do) Hbf to Muelheim (MH) Hbf
Look up a connection with long-distance trains
Look up a connection from Essen Wickenburgstr to Duesseldorf Oststr. Do not use any trains, make sure to arrive around 18:00 and print links to maps of all interchange stations.
Use the VVS (Verkehrsverbund Stuttgart) EFA service to look up a connection.

DEPENDENCIES

This script requires perl 5.10 (or higher) with the following modules:

  • Class::Accessor
  • Exception::Class
  • LWP::UserAgent
  • XML::LibXML

BUGS AND LIMITATIONS

The EFA backend is not able to calculate "two-way" routes, i.e. from -> via -> to routes with from == to. If from and to are the same stop, it doesn't even try to calculate a route ("we recommend walking instead"), if they are close to each other it may or may not work. Workaround: Request from -> via using the normal four-argument efa invocation, read the time, use efa -t time via via to to to request via -> to.

AUTHOR

Copyright (C) 2009-2020 by Daniel Friesel <derf@finalrewind.org>

LICENSE

This program is licensed under the same terms as Perl itself.

2020-05-03 perl v5.30.0