-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3484c4c
commit 8a9c7b5
Showing
1 changed file
with
50 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,74 @@ | ||
Package: stplanr | ||
Type: Package | ||
Package: stplanr | ||
Title: Sustainable Transport Planning | ||
Version: 1.0.0.9000 | ||
Authors@R: c( | ||
person("Robin", "Lovelace", email = "rob00x@gmail.com", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-5679-6536")), | ||
person("Richard", "Ellison", role = c("aut")), | ||
person("Malcolm", "Morgan", role = c("aut"), | ||
comment = c(ORCID = "0000-0002-9488-9183")), | ||
person("Barry", "Rowlingson", role = c("ctb")), | ||
person("Nick", "Bearman", role = c("ctb")), | ||
person("Nikolai", "Berkoff", role = c("ctb")), | ||
person("Scott ", "Chamberlain", role = c("rev"), comment = "Scott reviewed the package for rOpenSci, see https://github.com/ropensci/onboarding/issues/10"), | ||
person("Mark", "Padgham", email="mark.padgham@email.com", role=c("ctb")), | ||
person("Andrea", "Gilardi", role=c("ctb"), | ||
comment = c(ORCID = "0000-0002-9424-7439")) | ||
) | ||
person("Robin", "Lovelace", , "rob00x@gmail.com", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-5679-6536")), | ||
person("Richard", "Ellison", role = "aut"), | ||
person("Malcolm", "Morgan", role = "aut", | ||
comment = c(ORCID = "0000-0002-9488-9183")), | ||
person("Barry", "Rowlingson", role = "ctb"), | ||
person("Nick", "Bearman", role = "ctb"), | ||
person("Nikolai", "Berkoff", role = "ctb"), | ||
person("Scott ", "Chamberlain", role = "rev", | ||
comment = "Scott reviewed the package for rOpenSci, see https://github.com/ropensci/onboarding/issues/10"), | ||
person("Mark", "Padgham", , "mark.padgham@email.com", role = "ctb"), | ||
person("Andrea", "Gilardi", role = "ctb", | ||
comment = c(ORCID = "0000-0002-9424-7439")) | ||
) | ||
Maintainer: Robin Lovelace <rob00x@gmail.com> | ||
Description: Tools for transport planning with an emphasis on spatial transport | ||
data and non-motorized modes. Create geographic "desire lines" | ||
from origin-destination (OD) data (building on the 'od' package); | ||
calculate routes on the transport network locally and via | ||
Description: Tools for transport planning with an emphasis on spatial | ||
transport data and non-motorized modes. Create geographic "desire | ||
lines" from origin-destination (OD) data (building on the 'od' | ||
package); calculate routes on the transport network locally and via | ||
interfaces to routing services such as <https://cyclestreets.net/>; | ||
calculate route segment attributes such as bearing. | ||
The package implements the 'travel flow aggregration' method | ||
described in Morgan and Lovelace (2020) <doi:10.1177/2399808320942779>. | ||
Further information on the package's aim and scope can be found | ||
in the vignettes and in a paper in the R Journal | ||
(Lovelace and Ellison 2018) <doi:10.32614/RJ-2018-053>. | ||
calculate route segment attributes such as bearing. The package | ||
implements the 'travel flow aggregration' method described in Morgan | ||
and Lovelace (2020) <doi:10.1177/2399808320942779>. Further | ||
information on the package's aim and scope can be found in the | ||
vignettes and in a paper in the R Journal (Lovelace and Ellison 2018) | ||
<doi:10.32614/RJ-2018-053>. | ||
License: MIT + file LICENSE | ||
URL: https://github.com/ropensci/stplanr, | ||
https://docs.ropensci.org/stplanr/ | ||
BugReports: https://github.com/ropensci/stplanr/issues | ||
LazyData: yes | ||
Depends: | ||
R (>= 3.5.0) | ||
Imports: | ||
curl (>= 3.2), | ||
data.table, | ||
dplyr (>= 0.7.6), | ||
httr (>= 1.3.1), | ||
jsonlite (>= 1.5), | ||
lwgeom (>= 0.1.4), | ||
magrittr, | ||
methods, | ||
Rcpp (>= 0.12.1), | ||
nabor (>= 0.5.0), | ||
od, | ||
pbapply, | ||
Rcpp (>= 0.12.1), | ||
rlang (>= 0.2.2), | ||
lwgeom (>= 0.1.4), | ||
sf (>= 0.6.3), | ||
magrittr, | ||
sfheaders, | ||
data.table, | ||
pbapply, | ||
od | ||
sfheaders | ||
Suggests: | ||
testthat (>= 2.0.0), | ||
knitr (>= 1.20), | ||
igraph (>= 1.2.2), | ||
rmarkdown (>= 1.10), | ||
dodgr (>= 0.0.3), | ||
cyclestreets, | ||
leaflet, | ||
pct, | ||
tmap, | ||
osrm, | ||
dodgr (>= 0.0.3), | ||
geodist, | ||
igraph (>= 1.2.2), | ||
knitr (>= 1.20), | ||
leaflet, | ||
mapsapi, | ||
opentripplanner | ||
VignetteBuilder: knitr | ||
URL: https://github.com/ropensci/stplanr, https://docs.ropensci.org/stplanr/ | ||
SystemRequirements: GNU make | ||
RoxygenNote: 7.2.0 | ||
Roxygen: list(markdown = TRUE) | ||
opentripplanner, | ||
osrm, | ||
pct, | ||
rmarkdown (>= 1.10), | ||
testthat (>= 2.0.0), | ||
tmap | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
LazyData: yes | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.0 | ||
SystemRequirements: GNU make |