├── .gitignore ├── LICENSE ├── README.md ├── dist ├── tracc-0.0.1-py3-none-any.whl └── tracc-0.0.1.tar.gz ├── examples ├── .ipynb_checkpoints │ └── basic_accessibility_example-checkpoint.ipynb ├── basic_accessibility_example.ipynb ├── intrazonal_times_and_spatial_smoothing.ipynb ├── test_data │ ├── boston │ │ ├── block_group_poly.geojson │ │ ├── block_group_pts.csv │ │ ├── county_boundaries.geojson │ │ ├── demographics.csv │ │ ├── destination_employment_lehd.csv │ │ ├── destination_groceries_snap.csv │ │ ├── region_boundary.geojson │ │ ├── transit_time_matrix_8am_29_02_2020.zip │ │ └── transit_time_matrix_8am_30_06_2020.zip │ └── simple_data │ │ ├── test_data_1_costs.csv │ │ ├── test_data_1_demand.csv │ │ ├── test_data_1_supply.csv │ │ └── test_data_2_costs.csv ├── test_example.py └── test_sample.py ├── figures └── example_boston_map.png ├── requirements.txt ├── setup.py ├── tracc.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt └── tracc ├── __init__.py ├── functions.py ├── spatial.py └── tracc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/README.md -------------------------------------------------------------------------------- /dist/tracc-0.0.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/dist/tracc-0.0.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/tracc-0.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/dist/tracc-0.0.1.tar.gz -------------------------------------------------------------------------------- /examples/.ipynb_checkpoints/basic_accessibility_example-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/.ipynb_checkpoints/basic_accessibility_example-checkpoint.ipynb -------------------------------------------------------------------------------- /examples/basic_accessibility_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/basic_accessibility_example.ipynb -------------------------------------------------------------------------------- /examples/intrazonal_times_and_spatial_smoothing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/intrazonal_times_and_spatial_smoothing.ipynb -------------------------------------------------------------------------------- /examples/test_data/boston/block_group_poly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/block_group_poly.geojson -------------------------------------------------------------------------------- /examples/test_data/boston/block_group_pts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/block_group_pts.csv -------------------------------------------------------------------------------- /examples/test_data/boston/county_boundaries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/county_boundaries.geojson -------------------------------------------------------------------------------- /examples/test_data/boston/demographics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/demographics.csv -------------------------------------------------------------------------------- /examples/test_data/boston/destination_employment_lehd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/destination_employment_lehd.csv -------------------------------------------------------------------------------- /examples/test_data/boston/destination_groceries_snap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/destination_groceries_snap.csv -------------------------------------------------------------------------------- /examples/test_data/boston/region_boundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/region_boundary.geojson -------------------------------------------------------------------------------- /examples/test_data/boston/transit_time_matrix_8am_29_02_2020.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/transit_time_matrix_8am_29_02_2020.zip -------------------------------------------------------------------------------- /examples/test_data/boston/transit_time_matrix_8am_30_06_2020.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/boston/transit_time_matrix_8am_30_06_2020.zip -------------------------------------------------------------------------------- /examples/test_data/simple_data/test_data_1_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/simple_data/test_data_1_costs.csv -------------------------------------------------------------------------------- /examples/test_data/simple_data/test_data_1_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/simple_data/test_data_1_demand.csv -------------------------------------------------------------------------------- /examples/test_data/simple_data/test_data_1_supply.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/simple_data/test_data_1_supply.csv -------------------------------------------------------------------------------- /examples/test_data/simple_data/test_data_2_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_data/simple_data/test_data_2_costs.csv -------------------------------------------------------------------------------- /examples/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_example.py -------------------------------------------------------------------------------- /examples/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/examples/test_sample.py -------------------------------------------------------------------------------- /figures/example_boston_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/figures/example_boston_map.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/setup.py -------------------------------------------------------------------------------- /tracc.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/tracc.egg-info/PKG-INFO -------------------------------------------------------------------------------- /tracc.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/tracc.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /tracc.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tracc.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/tracc.egg-info/requires.txt -------------------------------------------------------------------------------- /tracc.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tracc 2 | -------------------------------------------------------------------------------- /tracc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/tracc/__init__.py -------------------------------------------------------------------------------- /tracc/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/tracc/functions.py -------------------------------------------------------------------------------- /tracc/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/tracc/spatial.py -------------------------------------------------------------------------------- /tracc/tracc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaps/tracc/HEAD/tracc/tracc.py --------------------------------------------------------------------------------