-
Notifications
You must be signed in to change notification settings - Fork 4
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
7400f50
commit afa3d68
Showing
1 changed file
with
32 additions
and
28 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 |
---|---|---|
|
@@ -2,42 +2,46 @@ Package: od | |
Title: Manipulate and Map Origin-Destination Data | ||
Version: 0.5.1 | ||
Authors@R: c( | ||
person("Robin", "Lovelace", email = "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-5679-6536")), | ||
person("Malcolm", "Morgan", role = "aut", | ||
person("Robin", "Lovelace", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-5679-6536")), | ||
person("Malcolm", "Morgan", role = "aut", | ||
comment = c(ORCID = "0000-0002-9488-9183")), | ||
person("David", "Cooley", role = c("ctb")) | ||
) | ||
Description: The aim of 'od' is to provide tools and example datasets for working with | ||
origin-destination ('OD') datasets of the type used to describe aggregate | ||
urban mobility patterns (Carey et al. 1981) <doi:10.1287/trsc.15.1.32>. | ||
The package builds on functions for working with 'OD' data in the package 'stplanr', | ||
(Lovelace and Ellison 2018) <doi:10.32614/RJ-2018-053> with a focus on computational | ||
efficiency and support for the 'sf' class system (Pebesma 2018) <doi:10.32614/RJ-2018-009>. | ||
With few dependencies and a simple class system based on data frames, | ||
the package is intended to facilitate efficient analysis of 'OD' datasets | ||
and to provide a place for developing new functions. | ||
The package enables the creation and analysis of geographic entities | ||
representing large scale mobility patterns, | ||
from daily travel between zones in cities to migration between countries. | ||
person("David", "Cooley", role = "ctb") | ||
) | ||
Description: The aim of 'od' is to provide tools and example datasets for | ||
working with origin-destination ('OD') datasets of the type used to | ||
describe aggregate urban mobility patterns (Carey et al. 1981) | ||
<doi:10.1287/trsc.15.1.32>. The package builds on functions for | ||
working with 'OD' data in the package 'stplanr', (Lovelace and Ellison | ||
2018) <doi:10.32614/RJ-2018-053> with a focus on computational | ||
efficiency and support for the 'sf' class system (Pebesma 2018) | ||
<doi:10.32614/RJ-2018-009>. With few dependencies and a simple class | ||
system based on data frames, the package is intended to facilitate | ||
efficient analysis of 'OD' datasets and to provide a place for | ||
developing new functions. The package enables the creation and | ||
analysis of geographic entities representing large scale mobility | ||
patterns, from daily travel between zones in cities to migration | ||
between countries. | ||
License: GPL-3 | ||
URL: https://github.com/itsleeds/od, https://itsleeds.github.io/od/ | ||
BugReports: https://github.com/itsleeds/od/issues | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Depends: R (>= 3.4.0) | ||
Depends: | ||
R (>= 3.4.0) | ||
Imports: | ||
sfheaders, | ||
methods, | ||
sfheaders, | ||
vctrs | ||
Suggests: | ||
sf, | ||
knitr, | ||
rmarkdown, | ||
tinytest, | ||
covr, | ||
knitr, | ||
lwgeom, | ||
nngeo | ||
RoxygenNote: 7.3.2 | ||
VignetteBuilder: knitr | ||
nngeo, | ||
rmarkdown, | ||
sf, | ||
tinytest | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.2 |