gtfs-router
An R package for routing with GTFS (General Transit Feed Specification) data.
https://github.com/UrbanAnalyst/gtfsrouter
Category: Consumption
Sub Category: Mobility and Transportation
Keywords
gtfs gtfsrouter public-transportation r-package router
Keywords from Contributors
public-transport routing transit-data public tidyverse transportation
Last synced: about 12 hours ago
JSON representation
Repository metadata
Routing and analysis engine for GTFS (General Transit Feed Specification) data
- Host: GitHub
- URL: https://github.com/UrbanAnalyst/gtfsrouter
- Owner: UrbanAnalyst
- Created: 2019-01-28T08:28:13.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-10-15T13:59:08.000Z (19 days ago)
- Last Synced: 2025-10-31T18:02:59.412Z (3 days ago)
- Topics: gtfs, gtfsrouter, public-transportation, r-package, router
- Language: R
- Homepage: https://urbananalyst.github.io/gtfsrouter/
- Size: 11.3 MB
- Stars: 95
- Watchers: 8
- Forks: 17
- Open Issues: 13
- Releases: 7
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- Contributing: CONTRIBUTING.md
- Codemeta: codemeta.json
README.Rmd
# gtfsrouter
[](https://github.com/UrbanAnalyst/gtfsrouter/actions?query=workflow%3AR-CMD-check)
[](https://app.codecov.io/gh/UrbanAnalyst/gtfsrouter)
[](https://www.repostatus.org/#active)
[](https://cran.r-project.org/package=gtfsrouter)
[](https://cran.r-project.org/package=gtfsrouter)
**R** package for public transport routing with [GTFS (General Transit Feed
Specification)](https://developers.google.com/transit/gtfs/) data.
## Installation
You can install latest stable version of `gtfsrouter` from CRAN with:
```{r cran-installation, eval = FALSE}
install.packages ("gtfsrouter")
```
Alternatively, the current development version can be installed using any of
the following options:
```{r gh-installation, eval = FALSE}
# install.packages("remotes")
remotes::install_git ("https://git.sr.ht/~mpadge/gtfsrouter")
remotes::install_git ("https://codeberg.org/UrbanAnalyst/gtfsrouter")
remotes::install_bitbucket ("urbananalyst/gtfsrouter")
remotes::install_gitlab ("UrbanAnalyst/gtfsrouter")
remotes::install_github ("UrbanAnalyst/gtfsrouter")
```
To load the package and check the version:
```{r pkg-version, eval=TRUE}
library (gtfsrouter)
packageVersion ("gtfsrouter")
```
## Main functions
The main functions can be demonstrated with sample data included with the
package from Berlin (the "Verkehrverbund Berlin Brandenburg", or VBB). GTFS
data are always stored as `.zip` files, and these sample data can be written to
the temporary directory (`tempdir()`) of the current R session with the
function `berlin_gtfs_to_zip()`.
```{r create-zip, eval = TRUE}
filename <- berlin_gtfs_to_zip ()
print (filename)
```
For normal package use, `filename` will specify the name of a local GTFS `.zip`
file.
### gtfs_route
Given the name of a GTFS `.zip` file, `filename`, routing is as simple as the
following code:
```{r example-echo, echo = TRUE, eval = FALSE}
gtfs <- extract_gtfs (filename)
gtfs <- gtfs_timetable (gtfs, day = "Wed") # A pre-processing step to speed up queries
gtfs_route (gtfs,
from = "Tegel",
to = "Berlin Hauptbahnhof",
start_time = 12 * 3600 + 120
) # 12:02 in seconds
```
```{r example, echo = FALSE, message = FALSE}
gtfs <- extract_gtfs (filename)
gtfs <- gtfs_timetable (gtfs)
r <- gtfs_route (gtfs,
from = "Schonlein",
to = "Berlin Hauptbahnhof",
start_time = 12 * 3600 + 120
) # 12:02 in seconds
knitr::kable (r)
```
### gtfs_traveltimes
The [`gtfs_traveltimes()`
function`](https://UrbanAnalyst.github.io/gtfsrouter/reference/gtfs_traveltimes.html)
calculates minimal travel times from any nominated stop to all other stops
within a feed. It requires the two parameters of start station, and a vector of
two values specifying earliest and latest desired start times. The following
code returns the fastest travel times to all stations within the feed for
services which leave the nominated station ("Alexanderplatz") between 12:00 and
13:00 on a Monday:
```{r isochrone, eval = TRUE, message = FALSE}
gtfs <- extract_gtfs (filename)
gtfs <- gtfs_timetable (gtfs, day = "Monday")
x <- gtfs_traveltimes (gtfs,
from = "Alexanderplatz",
start_time_limits = c (12, 13) * 3600
)
```
The function returns a simple table detailing all stations reachable with
services departing from the nominated station and start times:
```{r iso-results1-fakey, eval = FALSE}
head (x)
```
```{r iso-results1, eval = TRUE, echo = FALSE}
knitr::kable (head (x))
```
Further details are provided in a [separate
vignette](https://UrbanAnalyst.github.io/gtfsrouter/articles/traveltimes.html).
### gtfs_transfer_table
Feeds should include a "transfers.txt" table detailing all possible transfers
between nearby stations, yet many feeds omit these tables, rendering them
unusable for routing because transfers between services can not be calculated.
The `gtfsrouter` package also includes a function,
[`gtfs_transfer_table()`](https://UrbanAnalyst.github.io/gtfsrouter/reference/gtfs_transfer_table.html),
which can calculate a transfer table for a given feed, with transfer times
calculated either using straight-line distances (the default), or using more
realistic pedestrian times routed through the underlying street network.
This function can also be used to enable routing through multiple adjacent or
overlapping GTFS feeds. The feeds need simply be merged through binding the
rows of all tables, and the resultant aggregate feed submitted to the
[`gtfs_transfer_table()`](https://UrbanAnalyst.github.io/gtfsrouter/reference/gtfs_transfer_table.html)
function. This transfer table will retain all transfers specified in the
original feeds, yet be augmented by all possible transfers between the multiple
systems up to a user-specified maximal distance. Further details of this
function are also provided in another [separate
vignette](https://UrbanAnalyst.github.io/gtfsrouter/articles/transfers.html).
## Additional Functionality
There are many ways to construct GTFS feeds. For background information, see
[`gtfs.org`](https://gtfs.org), and particularly their [GTFS
Examples](https://docs.google.com/document/d/16inL5BVcM1aU-_DcFJay_tC6Ni0wPa0nvQEstueG5k4/edit).
Feeds may include a "frequencies.txt" table which defines "service periods",
and overrides any schedule information during the specified times. The
`gtfsrouter` package includes a function,
[`frequencies_to_stop_times()`](https://UrbanAnalyst.github.io/gtfsrouter/reference/frequencies_to_stop_times.html),
to convert "frequencies.txt" tables to equivalent "stop_times.txt" entries, to
enable the feed to be used for routing.
## Contributors
All contributions to this project are gratefully acknowledged using the [`allcontributors` package](https://github.com/ropensci/allcontributors) following the [allcontributors](https://allcontributors.org) specification. Contributions of any kind are welcome!
### Code
|
mpadge |
stmarcin |
gmatosferreira |
dhersz |
polettif |
|
tbuckl |
tuesd4y |
Robinlovelace |
loanho23 |
abyrd |
hansmib |
Owner metadata
- Name: Urban Analyst
- Login: UrbanAnalyst
- Email:
- Kind: organization
- Description: Platform for analysis and visualation of social equitability of urban systems
- Website: https://UrbanAnalyst.city
- Location: Germany
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/110684109?v=4
- Repositories: 11
- Last ynced at: 2023-08-14T06:20:24.604Z
- Profile URL: https://github.com/UrbanAnalyst
GitHub Events
Total
- Create event: 10
- Release event: 1
- Issues event: 8
- Watch event: 11
- Delete event: 7
- Issue comment event: 15
- Push event: 27
- Pull request review comment event: 1
- Pull request review event: 3
- Pull request event: 18
Last Year
- Issues event: 4
- Watch event: 10
- Delete event: 5
- Issue comment event: 13
- Push event: 16
- Pull request review comment event: 1
- Pull request review event: 3
- Pull request event: 15
- Create event: 8
Committers metadata
Last synced: 5 days ago
Total Commits: 914
Total Committers: 6
Avg Commits per committer: 152.333
Development Distribution Score (DDS): 0.037
Commits in past year: 22
Committers in past year: 2
Avg Commits per committer in past year: 11.0
Development Distribution Score (DDS) in past year: 0.182
| Name | Commits | |
|---|---|---|
| mpadge | m****m@e****m | 880 |
| AlexandraKapp | a****2@g****m | 24 |
| Gonçalo Matos | g****s@t****t | 4 |
| Marcin Stepniak | s****n@g****l | 4 |
| Flavio Poletti | f****i@h****h | 1 |
| Daniel Herszenhut | d****z@g****m | 1 |
Committer domains:
- hotmail.ch: 1
- gazeta.pl: 1
- tecnico.ulisboa.pt: 1
- email.com: 1
Issue and Pull Request metadata
Last synced: 19 days ago
Total issues: 19
Total pull requests: 22
Average time to close issues: 4 months
Average time to close pull requests: 7 days
Total issue authors: 6
Total pull request authors: 2
Average comments per issue: 1.42
Average comments per pull request: 0.45
Merged pull request: 19
Bot issues: 3
Bot pull requests: 0
Past year issues: 5
Past year pull requests: 20
Past year average time to close issues: N/A
Past year average time to close pull requests: about 9 hours
Past year issue authors: 4
Past year pull request authors: 2
Past year average comments per issue: 0.6
Past year average comments per pull request: 0.5
Past year merged pull request: 17
Past year bot issues: 2
Past year bot pull requests: 0
Top Issue Authors
- mpadge (7)
- FlxPo (5)
- github-actions[bot] (3)
- Tom-NutsOne (2)
- gmatosferreira (1)
- pteridin (1)
Top Pull Request Authors
- mpadge (20)
- gmatosferreira (2)
Top Issue Labels
Top Pull Request Labels
Package metadata
- Total packages: 3
-
Total downloads:
- cran: 552 last-month
- Total docker downloads: 39
- Total dependent packages: 0 (may contain duplicates)
- Total dependent repositories: 1 (may contain duplicates)
- Total versions: 24
- Total maintainers: 1
proxy.golang.org: github.com/urbananalyst/gtfsrouter
- Homepage:
- Documentation: https://pkg.go.dev/github.com/urbananalyst/gtfsrouter#section-documentation
- Licenses:
- Latest release: v0.1.4 (published 5 months ago)
- Last Synced: 2025-10-30T17:33:40.995Z (4 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.515%
- Average: 6.733%
- Dependent repos count: 6.952%
proxy.golang.org: github.com/UrbanAnalyst/gtfsrouter
- Homepage:
- Documentation: https://pkg.go.dev/github.com/UrbanAnalyst/gtfsrouter#section-documentation
- Licenses:
- Latest release: v0.1.4 (published 5 months ago)
- Last Synced: 2025-10-30T17:33:39.139Z (4 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.515%
- Average: 6.733%
- Dependent repos count: 6.952%
cran.r-project.org: gtfsrouter
Routing with 'GTFS' (General Transit Feed Specification) Data
- Homepage: https://github.com/UrbanAnalyst/gtfsrouter
- Documentation: http://cran.r-project.org/web/packages/gtfsrouter/gtfsrouter.pdf
- Licenses: GPL-3
- Latest release: 0.1.4 (published 5 months ago)
- Last Synced: 2025-10-30T17:33:37.959Z (4 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 552 Last month
- Docker Downloads: 39
-
Rankings:
- Forks count: 4.585%
- Stargazers count: 4.723%
- Average: 18.926%
- Docker downloads count: 21.807%
- Dependent repos count: 23.802%
- Dependent packages count: 28.642%
- Downloads: 29.998%
- Maintainers (1)
Dependencies
- R >= 2.10 depends
- Rcpp >= 0.12.6 imports
- cli * imports
- data.table * imports
- geodist * imports
- methods * imports
- digest * suggests
- dodgr * suggests
- dplyr * suggests
- ggplot2 * suggests
- here * suggests
- hms * suggests
- knitr * suggests
- lubridate * suggests
- lwgeom * suggests
- markdown * suggests
- pbapply * suggests
- rmarkdown * suggests
- testthat * suggests
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- JamesIves/github-pages-deploy-action v4.4.1 composite
- actions/checkout v3 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- actions/checkout v3 composite
- actions/upload-artifact v3 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- ropensci-review-tools/pkgcheck-action main composite
Score: 12.86077001571492