Skip to content

Commit 8a9c7b5

Browse files
committed
Tidy description
1 parent 3484c4c commit 8a9c7b5

File tree

1 file changed

+50
-47
lines changed

1 file changed

+50
-47
lines changed

DESCRIPTION

Lines changed: 50 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,74 @@
1-
Package: stplanr
21
Type: Package
2+
Package: stplanr
33
Title: Sustainable Transport Planning
44
Version: 1.0.0.9000
55
Authors@R: c(
6-
person("Robin", "Lovelace", email = "rob00x@gmail.com", role = c("aut", "cre"),
7-
comment = c(ORCID = "0000-0001-5679-6536")),
8-
person("Richard", "Ellison", role = c("aut")),
9-
person("Malcolm", "Morgan", role = c("aut"),
10-
comment = c(ORCID = "0000-0002-9488-9183")),
11-
person("Barry", "Rowlingson", role = c("ctb")),
12-
person("Nick", "Bearman", role = c("ctb")),
13-
person("Nikolai", "Berkoff", role = c("ctb")),
14-
person("Scott ", "Chamberlain", role = c("rev"), comment = "Scott reviewed the package for rOpenSci, see https://github.com/ropensci/onboarding/issues/10"),
15-
person("Mark", "Padgham", email="mark.padgham@email.com", role=c("ctb")),
16-
person("Andrea", "Gilardi", role=c("ctb"),
17-
comment = c(ORCID = "0000-0002-9424-7439"))
18-
)
6+
person("Robin", "Lovelace", , "rob00x@gmail.com", role = c("aut", "cre"),
7+
comment = c(ORCID = "0000-0001-5679-6536")),
8+
person("Richard", "Ellison", role = "aut"),
9+
person("Malcolm", "Morgan", role = "aut",
10+
comment = c(ORCID = "0000-0002-9488-9183")),
11+
person("Barry", "Rowlingson", role = "ctb"),
12+
person("Nick", "Bearman", role = "ctb"),
13+
person("Nikolai", "Berkoff", role = "ctb"),
14+
person("Scott ", "Chamberlain", role = "rev",
15+
comment = "Scott reviewed the package for rOpenSci, see https://github.com/ropensci/onboarding/issues/10"),
16+
person("Mark", "Padgham", , "mark.padgham@email.com", role = "ctb"),
17+
person("Andrea", "Gilardi", role = "ctb",
18+
comment = c(ORCID = "0000-0002-9424-7439"))
19+
)
1920
Maintainer: Robin Lovelace <rob00x@gmail.com>
20-
Description: Tools for transport planning with an emphasis on spatial transport
21-
data and non-motorized modes. Create geographic "desire lines"
22-
from origin-destination (OD) data (building on the 'od' package);
23-
calculate routes on the transport network locally and via
21+
Description: Tools for transport planning with an emphasis on spatial
22+
transport data and non-motorized modes. Create geographic "desire
23+
lines" from origin-destination (OD) data (building on the 'od'
24+
package); calculate routes on the transport network locally and via
2425
interfaces to routing services such as <https://cyclestreets.net/>;
25-
calculate route segment attributes such as bearing.
26-
The package implements the 'travel flow aggregration' method
27-
described in Morgan and Lovelace (2020) <doi:10.1177/2399808320942779>.
28-
Further information on the package's aim and scope can be found
29-
in the vignettes and in a paper in the R Journal
30-
(Lovelace and Ellison 2018) <doi:10.32614/RJ-2018-053>.
26+
calculate route segment attributes such as bearing. The package
27+
implements the 'travel flow aggregration' method described in Morgan
28+
and Lovelace (2020) <doi:10.1177/2399808320942779>. Further
29+
information on the package's aim and scope can be found in the
30+
vignettes and in a paper in the R Journal (Lovelace and Ellison 2018)
31+
<doi:10.32614/RJ-2018-053>.
3132
License: MIT + file LICENSE
33+
URL: https://github.com/ropensci/stplanr,
34+
https://docs.ropensci.org/stplanr/
3235
BugReports: https://github.com/ropensci/stplanr/issues
33-
LazyData: yes
3436
Depends:
3537
R (>= 3.5.0)
3638
Imports:
3739
curl (>= 3.2),
40+
data.table,
3841
dplyr (>= 0.7.6),
3942
httr (>= 1.3.1),
4043
jsonlite (>= 1.5),
44+
lwgeom (>= 0.1.4),
45+
magrittr,
4146
methods,
42-
Rcpp (>= 0.12.1),
4347
nabor (>= 0.5.0),
48+
od,
49+
pbapply,
50+
Rcpp (>= 0.12.1),
4451
rlang (>= 0.2.2),
45-
lwgeom (>= 0.1.4),
4652
sf (>= 0.6.3),
47-
magrittr,
48-
sfheaders,
49-
data.table,
50-
pbapply,
51-
od
53+
sfheaders
5254
Suggests:
53-
testthat (>= 2.0.0),
54-
knitr (>= 1.20),
55-
igraph (>= 1.2.2),
56-
rmarkdown (>= 1.10),
57-
dodgr (>= 0.0.3),
5855
cyclestreets,
59-
leaflet,
60-
pct,
61-
tmap,
62-
osrm,
56+
dodgr (>= 0.0.3),
6357
geodist,
58+
igraph (>= 1.2.2),
59+
knitr (>= 1.20),
60+
leaflet,
6461
mapsapi,
65-
opentripplanner
66-
VignetteBuilder: knitr
67-
URL: https://github.com/ropensci/stplanr, https://docs.ropensci.org/stplanr/
68-
SystemRequirements: GNU make
69-
RoxygenNote: 7.2.0
70-
Roxygen: list(markdown = TRUE)
62+
opentripplanner,
63+
osrm,
64+
pct,
65+
rmarkdown (>= 1.10),
66+
testthat (>= 2.0.0),
67+
tmap
68+
VignetteBuilder:
69+
knitr
7170
Encoding: UTF-8
71+
LazyData: yes
72+
Roxygen: list(markdown = TRUE)
73+
RoxygenNote: 7.2.0
74+
SystemRequirements: GNU make

0 commit comments

Comments
 (0)