-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
9 changed files
with
65 additions
and
20 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 |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
^README\.Rmd$ | ||
^codecov\.yml$ | ||
^cran-comments\.md$ | ||
^_pkgdown\.yml$ |
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
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,11 +1,3 @@ | ||
# gtfsio (development version) | ||
# gtfsio 0.1.0 | ||
|
||
## New features | ||
|
||
### Functions | ||
|
||
- `get_gtfs_standards()` - returns the standards for reading and writing GTFS feeds with R as a named list. Each element (also a list) represents a distinct GTFS text file, and describes: whether this file is required, optional or conditionally required; the fields that compose each file, including which R data type is best suited to represent it, whether the field is required, optional or conditionally required, and which values it can assume (most relevant to GTFS `ENUM`s. | ||
- `import_gtfs()` - imports GTFS transit feeds from either a local `.zip` file or an URL. Columns are parsed according to the standards specified in `get_gtfs_standards()`. | ||
- `new_gtfs()` - `gtfs` objects constructor, mostly useful for package authors who may want to either create `gtfs` objects in their packages or create subclasses of the main `gtfs` class. | ||
|
||
## Notes | ||
- First CRAN release! |
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
reference: | ||
- title: GTFS standards | ||
- contents: | ||
- get_gtfs_standards | ||
- title: Input/output | ||
- contents: | ||
- import_gtfs | ||
- export_gtfs | ||
- title: Checking | ||
- contents: | ||
- check_files_exist | ||
- check_fields_exist | ||
- check_fields_types | ||
- title: Constructor/validator | ||
- contents: | ||
- new_gtfs | ||
- assert_gtfs | ||
- title: Methods | ||
- contents: | ||
- print.gtfs | ||
- "[.gtfs" |
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Test environments | ||
|
||
- Local Ubuntu 20.04 installation (R 4.0.5) | ||
- GitHub Actions: | ||
- Windows (release, oldrel) | ||
- MacOS (release, oldrel) | ||
- Ubuntu 20.04 (devel, release, oldrel) | ||
- win-builder (devel, release, oldrel) | ||
- r-hub: | ||
- Windows Server 2008 R2 SP1, R-devel, 32/64 bit | ||
- Ubuntu Linux 20.04.1 LTS, R-release, GCC | ||
- Fedora Linux, R-devel, clang, gfortran | ||
|
||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 1 note | ||
|
||
* checking CRAN incoming feasibility ... NOTE | ||
Maintainer: ‘Daniel Herszenhut <[email protected]>’ | ||
New submission | ||
Possibly mis-spelled words in DESCRIPTION: | ||
GTFS (3:59, 31:33, 32:18, 33:33, 36:39) | ||
|
||
This is gtfsio first submission. GTFS is an acronym for General Transit Feed Specification. The full specification name is provided both in the package title and description. |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.