├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── docs ├── Makefile ├── api_reference.rst ├── conf.py ├── data_analysis_demo.rst ├── data_analysis_demo_files │ ├── data_analysis_demo_11_1.png │ ├── data_analysis_demo_13_1.png │ ├── data_analysis_demo_15_1.png │ ├── data_analysis_demo_19_0.png │ ├── data_analysis_demo_21_0.png │ ├── data_analysis_demo_3_1.png │ ├── data_analysis_demo_5_1.png │ └── data_analysis_demo_9_1.png ├── further_reading.rst ├── index.rst ├── installation.rst ├── make.bat ├── parse_errors.rst ├── quickstart.rst └── tutorial.rst ├── gtfs_tripify ├── __init__.py ├── cli.py ├── ops.py ├── tripify.py └── utils.py ├── imgs └── example.png ├── notebooks └── data_analysis_demo.ipynb ├── requirements.txt ├── setup.py └── tests ├── cli_tests.py ├── core_tests.py ├── fixtures ├── gtfs-20160512T0400Z ├── gtfs-20160512T0401Z ├── test_group_1 │ ├── gtfs_7_20190601_112825.gtfs │ └── gtfs_7_20190601_112955.gtfs └── test_group_2 │ ├── gtfs_7_20190601_112855.gtfs │ └── gtfs_7_20190601_112925.gtfs ├── io_tests.py └── util_tests.py /.gitattributes: -------------------------------------------------------------------------------- 1 | notebooks/* linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/api_reference.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/data_analysis_demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo.rst -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_11_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_11_1.png -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_13_1.png -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_15_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_15_1.png -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_19_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_19_0.png -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_21_0.png -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_3_1.png -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_5_1.png -------------------------------------------------------------------------------- /docs/data_analysis_demo_files/data_analysis_demo_9_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/data_analysis_demo_files/data_analysis_demo_9_1.png -------------------------------------------------------------------------------- /docs/further_reading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/further_reading.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/parse_errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/parse_errors.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /gtfs_tripify/__init__.py: -------------------------------------------------------------------------------- 1 | from .tripify import logify 2 | -------------------------------------------------------------------------------- /gtfs_tripify/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/gtfs_tripify/cli.py -------------------------------------------------------------------------------- /gtfs_tripify/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/gtfs_tripify/ops.py -------------------------------------------------------------------------------- /gtfs_tripify/tripify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/gtfs_tripify/tripify.py -------------------------------------------------------------------------------- /gtfs_tripify/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/gtfs_tripify/utils.py -------------------------------------------------------------------------------- /imgs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/imgs/example.png -------------------------------------------------------------------------------- /notebooks/data_analysis_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/notebooks/data_analysis_demo.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/setup.py -------------------------------------------------------------------------------- /tests/cli_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/cli_tests.py -------------------------------------------------------------------------------- /tests/core_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/core_tests.py -------------------------------------------------------------------------------- /tests/fixtures/gtfs-20160512T0400Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/fixtures/gtfs-20160512T0400Z -------------------------------------------------------------------------------- /tests/fixtures/gtfs-20160512T0401Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/fixtures/gtfs-20160512T0401Z -------------------------------------------------------------------------------- /tests/fixtures/test_group_1/gtfs_7_20190601_112825.gtfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/fixtures/test_group_1/gtfs_7_20190601_112825.gtfs -------------------------------------------------------------------------------- /tests/fixtures/test_group_1/gtfs_7_20190601_112955.gtfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/fixtures/test_group_1/gtfs_7_20190601_112955.gtfs -------------------------------------------------------------------------------- /tests/fixtures/test_group_2/gtfs_7_20190601_112855.gtfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/fixtures/test_group_2/gtfs_7_20190601_112855.gtfs -------------------------------------------------------------------------------- /tests/fixtures/test_group_2/gtfs_7_20190601_112925.gtfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/fixtures/test_group_2/gtfs_7_20190601_112925.gtfs -------------------------------------------------------------------------------- /tests/io_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/io_tests.py -------------------------------------------------------------------------------- /tests/util_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResidentMario/gtfs-tripify/HEAD/tests/util_tests.py --------------------------------------------------------------------------------