| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Implementation of Hannah Bast's transfer pattern journey planner. This repository does not generate transfer patterns, they need to be created in a pre-processing step.
In addition to the algorithm described in the paper this implementation:
It will work with any well formed GTFS data set.
Node +12 is required for all examples.
npm install --save transfer-pattern-planner
The algorithm expects transfer patterns to be stored in a MySQL compatible table:
CREATE TABLE `transfer_patterns` ( `journey` char(6) NOT NULL, `pattern` varchar(255) NOT NULL, PRIMARY KEY (`journey`,`pattern`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1
Where the journey is the origin and destination concatenated and the pattern are comma separated stops, excluding the origin and destination.
The following environment variables can set the database credentials and gtfs file location:
DATABASE_HOST=localhost DATABASE_USER=root DATABASE_NAME=jp DATABASE_PASS= GTFS=/path/to/gtfs.zip
Find the first results that depart after a specific time
const { Container } = require("transfer-pattern-planner");
const container = new Container();
const query = await container.getQuery();
const results = await query.plan(
["BHM", "BMO", "BSW", "BHI"],
["NRW"],
new Date(),
3600 * 10 // time of day in seconds
);
await container.end(); // database connection must be closedIssues and PRs are very welcome. To get the project set up run:
git clone git@github.com:planarnetwork/transfer-pattern-planner npm install --dev npm test
If you would like to send a pull request please write your contribution in TypeScript and if possible, add a test.
This software is licensed under GNU GPLv3.
| Back | FazBrowse Home | New Git URL |