Download the PHP package gtfs/csa-php without Composer

On this page you can find all versions of the php package gtfs/csa-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package csa-php

Connection Scan Algorithm in PHP

Simple library to compute public transport routes directly based on timetable data.

Overview

This library provides a basic implementation of the CSA (Connection Scan Algorithm) introduced 2013. To use this algorithm with data from public transport agencies, there's no need to build a graph out of them like this would be using the Dijkstra or the A* algorithm.

Sadly there're only a few little projects using this algorithm in practice. The intent to develop this library is not to re-invent the wheel but learn about the issues when using 'real data' and how to fix them as well as keeping a simple and extendable PHP implementation of CSA which can be used in other projects.

Installation

To use this library, add it to your composer dependencies by typing

or when beginning from the scratch, simply clone this repo and type

in your command line environment.

Usage

For usage there're two main classes called Scanner (for computing the connections) and Journey for back-routing and computing your route.

This snipped for e.g. calculates a route from Pforzheim Hbf (8000299) to Hamburg Hbf (8002549). The output is shown in the following section. You can see there're two legs: The first one from Pforzheim Hbf (8000299) to Karlsruhe Hbf (8000191) and the second one from Karlsruhe Hbf (8000191) to Hamburg Hbf (8002549) with a start time of 06:15:00.

Input Data Structure

The input connections must be an array of type \CSA\Data\Connection or a subclass of them. You can obtain these connections directly from the stop_times.txt file in GTFS. Of course you can use any other arbitrary timetable data format.

Each connection consists of an departure stop id and a matching departure time as well as a arrival stop id and a matching arrival time. Additionally connections of type \CSA\Data\TimetableConnection contain a field named tripID, which is used to determine whether an interchange between two connections is required or not. This is especially important for the back-routing to ensure that a consistent trip is returned correctly.

Important Note: The connections in the input list must be sorted by their arrival time to ensure the algorithm is working properly! To avoid issues with consistent trips, they also should be sorted by their trip ID afterwards.

Performance

As we know, PHP is not the first choice when we speak about performance for large upcoming data streams and possible long-running algorithms. There're also limitations like the memory limit and the max. execution time.

For experimental purposes, we took two different datasets, called dataset A & B. Dataset A consists of one operational day of all long-distance trains in Germany with about ~8,500 connections. Dataset B consists of also one operational day of a German local transport authority with about ~180,000 connections.

Memory

Due to the object-oriented implementation of this library it is very memory-friendly. (See this gist: https://gist.github.com/nikic/5015323) The maxmimum memory consumption ran about 4 MB by using dataset A, and about 55 MB by using dataset B.

Runtime

The runtime of this implementation is lower than expected: A average route computation for dataset A took around 60ms in maxiumum, for dataset B we talk about 200ms in maximum. Compared to the runtime mentioned in the original paper this is very slow, but still enough for a practical use in web environments.

Improvements & Notes

There're some possibility which you can apply to improve the performance a little bit.

Contributing

Feel free to contribute this project! Please format your code similar to the code written by the origin author and document what you're doing in. This is not only an improvement for you, but for all other contributors, too :-)

If you found any issue or want to inform about some enhancements, please create an issue in this repository. You'll also find known issues and planned extensions there. If you fixed a bug or created a new feature, feel free to create a pull request.

License

This project is licensed under the MIT License. See LICENSE for more information.


All versions of csa-php with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package gtfs/csa-php contains the following files

Loading the files please wait ....