-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDESCRIPTION
72 lines (72 loc) · 2.15 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Type: Package
Package: gtfsio
Title: Read and Write General Transit Feed Specification (GTFS) Files
Version: 1.2.0.9000
Authors@R:
c(person(given = "Daniel",
family = "Herszenhut",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-8066-1105")),
person(given = "Flavio",
family = "Poletti",
role = "aut",
email = "[email protected]"),
person(given = "Mark",
family = "Padgham",
role = "aut",
email = "[email protected]"),
person(given = "Rafael H. M.",
family = "Pereira",
role = "rev",
email = "[email protected]",
comment = c(ORCID = "0000-0003-2125-7465")),
person(given = "Tom",
family = "Buckley",
role = "rev",
email = "[email protected]"),
person(given = "Ipea - Institute for Applied Economic Research",
role = c("cph", "fnd")))
Description: Tools for the development of packages related to General
Transit Feed Specification (GTFS) files. Establishes a standard for
representing GTFS feeds using R data types. Provides fast and flexible
functions to read and write GTFS feeds while sticking to this
standard. Defines a basic 'gtfs' class which is meant to be extended
by packages that depend on it. And offers utility functions that
support checking the structure of GTFS objects.
License: MIT + file LICENSE
URL: https://r-transit.github.io/gtfsio/,
https://github.com/r-transit/gtfsio
BugReports: https://github.com/r-transit/gtfsio/issues
Imports:
data.table,
fs,
utils,
zip,
jsonlite
Suggests:
knitr,
rmarkdown,
tinytest
VignetteBuilder:
knitr
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Collate:
'gtfsio_error.R'
'assert_gtfs.R'
'assert_inputs.R'
'checks.R'
'data.R'
'export_gtfs.R'
'get_gtfs_standards.R'
'gtfs_methods.R'
'gtfs_subset.R'
'gtfsio.R'
'import_gtfs.R'
'new_gtfs.R'
'utils.R'
LazyData: true
Depends:
R (>= 3.1.0)