├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CONDUCT.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── convert-gtfs.R ├── get-gtfs-feeds.R ├── get-gtfs-meta.R ├── globals.R ├── import-gtfs.R ├── import-helpers.R ├── map-gtfs-helpers.R ├── map-gtfs-networks.R ├── map-gtfs-routes.R ├── map-gtfs-stop.R ├── map-gtfs.R ├── package.R ├── read-gtfs-files.R ├── utils.R └── validate-gtfs-structure.R ├── README-NOT.md ├── README.Rmd ├── README.md ├── README ├── README-readme-body-1.png └── README-readme-body-2.png ├── _pkgdown.yml ├── data-raw ├── create-feedlist_df.R ├── create-gtfs_obj.R ├── feedlist_df └── gtfs_obj ├── data ├── feedlist_df.rda └── gtfs_obj.rda ├── docs ├── CONDUCT.html ├── _config.yml ├── articles │ ├── gtfsr-vignette.html │ ├── gtfsr-vignette_files │ │ ├── Proj4Leaflet-0.7.2 │ │ │ ├── proj4-compressed.js │ │ │ ├── proj4.js │ │ │ └── proj4leaflet.js │ │ ├── htmlwidgets-0.8 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.0 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ ├── leaflet-0.7.7 │ │ │ ├── images │ │ │ │ ├── 1px.png │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── leaflet-binding-1.1.0.9000 │ │ │ └── leaflet.js │ │ ├── leaflet-label-0.2.2 │ │ │ ├── images │ │ │ │ └── death.png │ │ │ ├── leaflet.label-src.js │ │ │ ├── leaflet.label.css │ │ │ └── leaflet.label.js │ │ ├── leaflet-providers-1.0.27 │ │ │ ├── CONTRIBUTING.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ ├── gh-fork-ribbon.css │ │ │ │ └── gh-fork-ribbon.ie.css │ │ │ ├── leaflet-providers.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── providers.json │ │ ├── leaflet-providers-plugin-1.1.0.9000 │ │ │ └── leaflet-providers-plugin.js │ │ └── leafletfix-1.0.0 │ │ │ └── leafletfix.css │ └── index.html ├── authors.html ├── docsearch.css ├── docsearch.js ├── index.html ├── index_files │ ├── Proj4Leaflet-0.7.2 │ │ ├── proj4-compressed.js │ │ ├── proj4.js │ │ └── proj4leaflet.js │ ├── htmlwidgets-0.8 │ │ └── htmlwidgets.js │ ├── htmlwidgets-1.0 │ │ └── htmlwidgets.js │ ├── jquery-1.12.4 │ │ ├── jquery.js │ │ └── jquery.min.js │ ├── leaflet-0.7.7 │ │ ├── images │ │ │ ├── 1px.png │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.js │ │ ├── leaflet.css │ │ └── leaflet.js │ ├── leaflet-binding-1.1.0.9000 │ │ └── leaflet.js │ ├── leaflet-label-0.2.2 │ │ ├── images │ │ │ └── death.png │ │ ├── leaflet.label-src.js │ │ ├── leaflet.label.css │ │ └── leaflet.label.js │ ├── leaflet-providers-1.0.27 │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── gh-fork-ribbon.css │ │ │ └── gh-fork-ribbon.ie.css │ │ ├── leaflet-providers.js │ │ ├── license.md │ │ ├── package.json │ │ └── providers.json │ ├── leaflet-providers-plugin-1.1.0.9000 │ │ └── leaflet-providers-plugin.js │ └── leafletfix-1.0.0 │ │ └── leafletfix.css ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── clear_api_key.html │ ├── convert_gtfs_routes_to_sf.html │ ├── filter_feedlist.html │ ├── get_api_key.html │ ├── get_feed.html │ ├── get_feedlist.html │ ├── get_routes_sldf.html │ ├── gtfs_obj.html │ ├── gtfsr-package.html │ ├── has_api_key.html │ ├── import_gtfs.html │ ├── index.html │ ├── map_gtfs.html │ ├── map_gtfs_stop.html │ ├── routes_df_as_sf.html │ ├── set_api_key.html │ ├── shape_route_service.html │ ├── shapes_df_as_sfg.html │ ├── stops_df_as_sf.html │ ├── unzip_gtfs_files.html │ └── validate_gtfs_structure.html └── sitemap.xml ├── gtfsr.Rproj ├── man ├── clear_api_key.Rd ├── filter_feedlist.Rd ├── get_api_key.Rd ├── get_feed.Rd ├── get_feedlist.Rd ├── get_routes_sldf.Rd ├── gtfs_obj.Rd ├── gtfsr-package.Rd ├── has_api_key.Rd ├── import_gtfs.Rd ├── map_gtfs.Rd ├── map_gtfs_stop.Rd ├── routes_df_as_sf.Rd ├── set_api_key.Rd ├── shape_route_service.Rd ├── shapes_df_as_sfg.Rd ├── stops_df_as_sf.Rd ├── unzip_gtfs_files.Rd └── validate_gtfs_structure.Rd ├── tests ├── testthat.R └── testthat │ ├── test-get-gtfs-feeds.R │ ├── test-import-gtfs.R │ ├── test-map-gtfs.R │ ├── test-read-gtfs-files.R │ ├── test-spatial.R │ └── test-validate-gtfs-structure.R └── vignettes └── gtfsr-vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/convert-gtfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/convert-gtfs.R -------------------------------------------------------------------------------- /R/get-gtfs-feeds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/get-gtfs-feeds.R -------------------------------------------------------------------------------- /R/get-gtfs-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/get-gtfs-meta.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/import-gtfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/import-gtfs.R -------------------------------------------------------------------------------- /R/import-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/import-helpers.R -------------------------------------------------------------------------------- /R/map-gtfs-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/map-gtfs-helpers.R -------------------------------------------------------------------------------- /R/map-gtfs-networks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/map-gtfs-networks.R -------------------------------------------------------------------------------- /R/map-gtfs-routes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/map-gtfs-routes.R -------------------------------------------------------------------------------- /R/map-gtfs-stop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/map-gtfs-stop.R -------------------------------------------------------------------------------- /R/map-gtfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/map-gtfs.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/package.R -------------------------------------------------------------------------------- /R/read-gtfs-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/read-gtfs-files.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/validate-gtfs-structure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/R/validate-gtfs-structure.R -------------------------------------------------------------------------------- /README-NOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/README-NOT.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/README.md -------------------------------------------------------------------------------- /README/README-readme-body-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/README/README-readme-body-1.png -------------------------------------------------------------------------------- /README/README-readme-body-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/README/README-readme-body-2.png -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /data-raw/create-feedlist_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/data-raw/create-feedlist_df.R -------------------------------------------------------------------------------- /data-raw/create-gtfs_obj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/data-raw/create-gtfs_obj.R -------------------------------------------------------------------------------- /data-raw/feedlist_df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/data-raw/feedlist_df -------------------------------------------------------------------------------- /data-raw/gtfs_obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/data-raw/gtfs_obj -------------------------------------------------------------------------------- /data/feedlist_df.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/data/feedlist_df.rda -------------------------------------------------------------------------------- /data/gtfs_obj.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/data/gtfs_obj.rda -------------------------------------------------------------------------------- /docs/CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/CONDUCT.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | permalink: pretty -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette.html -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/Proj4Leaflet-0.7.2/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/Proj4Leaflet-0.7.2/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/Proj4Leaflet-0.7.2/proj4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/Proj4Leaflet-0.7.2/proj4.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/Proj4Leaflet-0.7.2/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/Proj4Leaflet-0.7.2/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/htmlwidgets-0.8/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/htmlwidgets-0.8/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/htmlwidgets-1.0/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/htmlwidgets-1.0/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/jquery-1.12.4/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/jquery-1.12.4/jquery.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/1px.png -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/layers.png -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/leaflet-src.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/leaflet.css -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-0.7.7/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-0.7.7/leaflet.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-binding-1.1.0.9000/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-binding-1.1.0.9000/leaflet.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/images/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/images/death.png -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/leaflet.label-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/leaflet.label-src.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/leaflet.label.css -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-label-0.2.2/leaflet.label.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/README.md -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/bower.json -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.css -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.ie.css -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/leaflet-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/leaflet-providers.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/license.md -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/package.json -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-1.0.27/providers.json -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leaflet-providers-plugin-1.1.0.9000/leaflet-providers-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leaflet-providers-plugin-1.1.0.9000/leaflet-providers-plugin.js -------------------------------------------------------------------------------- /docs/articles/gtfsr-vignette_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/gtfsr-vignette_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-0.7.2/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/Proj4Leaflet-0.7.2/proj4-compressed.js -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-0.7.2/proj4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/Proj4Leaflet-0.7.2/proj4.js -------------------------------------------------------------------------------- /docs/index_files/Proj4Leaflet-0.7.2/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/Proj4Leaflet-0.7.2/proj4leaflet.js -------------------------------------------------------------------------------- /docs/index_files/htmlwidgets-0.8/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/htmlwidgets-0.8/htmlwidgets.js -------------------------------------------------------------------------------- /docs/index_files/htmlwidgets-1.0/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/htmlwidgets-1.0/htmlwidgets.js -------------------------------------------------------------------------------- /docs/index_files/jquery-1.12.4/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/jquery-1.12.4/jquery.js -------------------------------------------------------------------------------- /docs/index_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/images/1px.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/images/layers-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/images/layers.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/images/marker-icon.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/leaflet-src.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/leaflet.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-0.7.7/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-0.7.7/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-binding-1.1.0.9000/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-binding-1.1.0.9000/leaflet.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/images/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-label-0.2.2/images/death.png -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/leaflet.label-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-label-0.2.2/leaflet.label-src.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-label-0.2.2/leaflet.label.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-label-0.2.2/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-label-0.2.2/leaflet.label.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/README.md -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/bower.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/css/gh-fork-ribbon.ie.css -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/leaflet-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/leaflet-providers.js -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/license.md -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/package.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-1.0.27/providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-1.0.27/providers.json -------------------------------------------------------------------------------- /docs/index_files/leaflet-providers-plugin-1.1.0.9000/leaflet-providers-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leaflet-providers-plugin-1.1.0.9000/leaflet-providers-plugin.js -------------------------------------------------------------------------------- /docs/index_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/index_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/clear_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/clear_api_key.html -------------------------------------------------------------------------------- /docs/reference/convert_gtfs_routes_to_sf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/convert_gtfs_routes_to_sf.html -------------------------------------------------------------------------------- /docs/reference/filter_feedlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/filter_feedlist.html -------------------------------------------------------------------------------- /docs/reference/get_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/get_api_key.html -------------------------------------------------------------------------------- /docs/reference/get_feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/get_feed.html -------------------------------------------------------------------------------- /docs/reference/get_feedlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/get_feedlist.html -------------------------------------------------------------------------------- /docs/reference/get_routes_sldf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/get_routes_sldf.html -------------------------------------------------------------------------------- /docs/reference/gtfs_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/gtfs_obj.html -------------------------------------------------------------------------------- /docs/reference/gtfsr-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/gtfsr-package.html -------------------------------------------------------------------------------- /docs/reference/has_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/has_api_key.html -------------------------------------------------------------------------------- /docs/reference/import_gtfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/import_gtfs.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/map_gtfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/map_gtfs.html -------------------------------------------------------------------------------- /docs/reference/map_gtfs_stop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/map_gtfs_stop.html -------------------------------------------------------------------------------- /docs/reference/routes_df_as_sf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/routes_df_as_sf.html -------------------------------------------------------------------------------- /docs/reference/set_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/set_api_key.html -------------------------------------------------------------------------------- /docs/reference/shape_route_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/shape_route_service.html -------------------------------------------------------------------------------- /docs/reference/shapes_df_as_sfg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/shapes_df_as_sfg.html -------------------------------------------------------------------------------- /docs/reference/stops_df_as_sf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/stops_df_as_sf.html -------------------------------------------------------------------------------- /docs/reference/unzip_gtfs_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/unzip_gtfs_files.html -------------------------------------------------------------------------------- /docs/reference/validate_gtfs_structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/reference/validate_gtfs_structure.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /gtfsr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/gtfsr.Rproj -------------------------------------------------------------------------------- /man/clear_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/clear_api_key.Rd -------------------------------------------------------------------------------- /man/filter_feedlist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/filter_feedlist.Rd -------------------------------------------------------------------------------- /man/get_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/get_api_key.Rd -------------------------------------------------------------------------------- /man/get_feed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/get_feed.Rd -------------------------------------------------------------------------------- /man/get_feedlist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/get_feedlist.Rd -------------------------------------------------------------------------------- /man/get_routes_sldf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/get_routes_sldf.Rd -------------------------------------------------------------------------------- /man/gtfs_obj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/gtfs_obj.Rd -------------------------------------------------------------------------------- /man/gtfsr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/gtfsr-package.Rd -------------------------------------------------------------------------------- /man/has_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/has_api_key.Rd -------------------------------------------------------------------------------- /man/import_gtfs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/import_gtfs.Rd -------------------------------------------------------------------------------- /man/map_gtfs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/map_gtfs.Rd -------------------------------------------------------------------------------- /man/map_gtfs_stop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/map_gtfs_stop.Rd -------------------------------------------------------------------------------- /man/routes_df_as_sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/routes_df_as_sf.Rd -------------------------------------------------------------------------------- /man/set_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/set_api_key.Rd -------------------------------------------------------------------------------- /man/shape_route_service.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/shape_route_service.Rd -------------------------------------------------------------------------------- /man/shapes_df_as_sfg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/shapes_df_as_sfg.Rd -------------------------------------------------------------------------------- /man/stops_df_as_sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/stops_df_as_sf.Rd -------------------------------------------------------------------------------- /man/unzip_gtfs_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/unzip_gtfs_files.Rd -------------------------------------------------------------------------------- /man/validate_gtfs_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/man/validate_gtfs_structure.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-get-gtfs-feeds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/tests/testthat/test-get-gtfs-feeds.R -------------------------------------------------------------------------------- /tests/testthat/test-import-gtfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/tests/testthat/test-import-gtfs.R -------------------------------------------------------------------------------- /tests/testthat/test-map-gtfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/tests/testthat/test-map-gtfs.R -------------------------------------------------------------------------------- /tests/testthat/test-read-gtfs-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/tests/testthat/test-read-gtfs-files.R -------------------------------------------------------------------------------- /tests/testthat/test-spatial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/tests/testthat/test-spatial.R -------------------------------------------------------------------------------- /tests/testthat/test-validate-gtfs-structure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/tests/testthat/test-validate-gtfs-structure.R -------------------------------------------------------------------------------- /vignettes/gtfsr-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/gtfsr/HEAD/vignettes/gtfsr-vignette.Rmd --------------------------------------------------------------------------------