├── .gitignore ├── img ├── favicon.ico ├── pic01.jpg ├── pic07.jpg ├── repo-org.jpg ├── san-diego.jpg ├── git-workflow.jpg ├── logo-small.png ├── conv-center-bikes.jpg └── license-wordcloud.jpg ├── _projects ├── .DS_Store ├── popsyn2.md ├── envision-tomorrow.md ├── tlumip.md ├── pt-idaho.md ├── dta-lite.md ├── vision-eval.md ├── dta-anyway.md ├── winfred.md ├── aequilibrae.md ├── networkx.md ├── openmatrix.md ├── urban-footprint.md ├── cleveland-tn-model.md ├── plannerjs.md ├── prospector.md ├── soabm.md ├── ipfr.md ├── tranus.md ├── larch.md ├── matsim.md ├── python-tdm.md ├── simpsynz.md ├── tncs-today.md ├── abm-viz.md ├── censusr.md ├── psrc-abm.md ├── activitysim.md ├── gtfs-ride.md ├── scikit-learn.md ├── doppelganger.md ├── gtfs-route-server.md ├── cmap-freight.md ├── data-synthesizer.md ├── partridge.md ├── cmap-abm.md ├── gtfs-plus.md ├── linked-connections.md ├── ncstm-truck.md ├── task.md ├── fast-trips.md ├── populationsim.md ├── synthpop.md ├── pylogit.md ├── osmnx ├── travel-model-two.md ├── sandag-abm.md ├── travel-model-one.md └── summarize-nhts.md ├── _project-groups ├── libraries.md ├── components.md ├── statistical-tools.md ├── full-models.md ├── visualization-tools.md ├── abm-platforms.md ├── data-standards.md ├── data-wrangling.md ├── network-models.md ├── sketch-planning-tools.md ├── population-synthesis.md ├── daysim.md ├── ctramp.md └── activitysim.md ├── _layouts ├── front.html ├── article.html ├── project.html └── group.html ├── _articles ├── github-workflow.md ├── adding-a-project.md ├── open-source-licensing.md └── repository-setup.md ├── _includes ├── js.html ├── contact.html ├── nav.html ├── head.html └── footer.html ├── articles.html ├── projects.html ├── license ├── README.md ├── _config.yml ├── index.html └── css ├── directory.css └── font-awesome.min.css /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/pic01.jpg -------------------------------------------------------------------------------- /img/pic07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/pic07.jpg -------------------------------------------------------------------------------- /img/repo-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/repo-org.jpg -------------------------------------------------------------------------------- /img/san-diego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/san-diego.jpg -------------------------------------------------------------------------------- /_projects/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/_projects/.DS_Store -------------------------------------------------------------------------------- /img/git-workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/git-workflow.jpg -------------------------------------------------------------------------------- /img/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/logo-small.png -------------------------------------------------------------------------------- /img/conv-center-bikes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/conv-center-bikes.jpg -------------------------------------------------------------------------------- /img/license-wordcloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephyrTransport/zephyr-directory/HEAD/img/license-wordcloud.jpg -------------------------------------------------------------------------------- /_project-groups/libraries.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Useful Libraries 4 | category: libraries 5 | front: false 6 | --- 7 | -------------------------------------------------------------------------------- /_project-groups/components.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Travel Analysis Components 4 | category: components 5 | front: true 6 | --- 7 | -------------------------------------------------------------------------------- /_project-groups/statistical-tools.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Statistical Tools 4 | category: statistics 5 | front: true 6 | --- 7 | 8 | -------------------------------------------------------------------------------- /_project-groups/full-models.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Full Travel Model Systems 4 | category: full-model-system 5 | front: true 6 | --- 7 | -------------------------------------------------------------------------------- /_project-groups/visualization-tools.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Visualization Tools 4 | category: visualization 5 | front: true 6 | --- 7 | 8 | -------------------------------------------------------------------------------- /_project-groups/abm-platforms.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Activity-Modeling Platforms 4 | category: abm-platform 5 | front: true 6 | --- 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /_project-groups/data-standards.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Data Standards 4 | category: data-standards 5 | front: true 6 | --- 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /_project-groups/data-wrangling.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Data Wrangling 4 | category: data-wrangling 5 | front: true 6 | --- 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /_project-groups/network-models.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Network Assignment Models 4 | category: network-model 5 | front: true 6 | --- 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /_projects/popsyn2.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ population-synthesis, implementation, java ] 4 | title: POPSYN2 5 | github: https://github.com/SANDAG/POPSYN 6 | short-description: 7 | --- 8 | -------------------------------------------------------------------------------- /_project-groups/sketch-planning-tools.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Sketch Planning Tools 4 | category: sketch 5 | front: true 6 | --- 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /_projects/envision-tomorrow.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ sketch, vb ] 4 | title: Envision Tomorrow 5 | github: https://github.com/fregoneseassociates/EnvisionTomorrow 6 | short-description: 7 | --- 8 | -------------------------------------------------------------------------------- /_project-groups/population-synthesis.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Population Synthesis 4 | category: population-synthesis 5 | front: true 6 | --- 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /_projects/tlumip.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ full-model-system, statewide, production ] 4 | title: TLUMIP 5 | github: https://github.com/tlumip 6 | short-description: Oregon's Statewide Model 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/pt-idaho.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ full-model-system, java ] 4 | title: pt-idaho 5 | github: https://github.com/wsp-sag/pt_idaho 6 | short-description: Person Transport Model for Idaho 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/dta-lite.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ network-model, dta, c++] 4 | title: DTA-LITE 5 | github: 'http://github.com/xzhou99/dtalite_software_release' 6 | short-description: Lightweight DTA Tools 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/vision-eval.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ sketch, framework, r ] 4 | title: VisionEval 5 | github: https://github.com/gregorbj/VisionEval 6 | short-description: System for strategic planning models 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/dta-anyway.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ data-wrangling, production ] 4 | title: DTA-Anyway 5 | github: https://github.com/sfcta/dta 6 | short-description: DTA Scenario builder for San Francisco 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /_projects/winfred.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ full-model-system, R ] 4 | title: Winfred 5 | github: https://github.com/wsp-sag/winfred 6 | short-description: Travel model for Winchester-Fredricksburg, Virginia 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/aequilibrae.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ framework, python ] 4 | title: AequilibraE 5 | github: https://github.com/AequilibraE/AequilibraE 6 | short-description: Add-on to Q-GIS for transportation modeling. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/networkx.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ network-model, python, libraries] 4 | title: network-x 5 | github: 'https://github.com/networkx/networkx' 6 | short-description: Python package for network analysis. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/openmatrix.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ data-standards ] 4 | title: Open Matrix Format 5 | github: http://github.com/osPlanning/omx 6 | short-description: A data standard for matrices built on HDF5. 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /_projects/urban-footprint.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ sketch, framework, python, django, javascript ] 4 | title: UrbanFootprint 5 | github: https://github.com/CalthorpeAnalytics/urbanfootprint 6 | short-description: 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/cleveland-tn-model.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ full-model-system ] 4 | title: Cleveland TN Model 5 | github: https://github.com/wsp-sag/ClevelandTNModel 6 | short-description: Travel model for Cleveland TN MPO 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/plannerjs.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ js, route-planner, routing ] 4 | title: Planner.js 5 | github: https://github.com/openplannerteam/planner.js 6 | short-description: JavaScript library for route planning 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/prospector.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ data-wrangling, javascript, vue, visualization ] 4 | title: Prospector 5 | github: https://github.com/sfcta/prospector 6 | short-description: Data visualization platform. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/soabm.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ full-model-system, ct-ramp, implementation, java ] 4 | title: Southern Oregon ABM 5 | github: https://github.com/RSGInc/SOABM 6 | short-description: Southern-Oregon's ABM Model 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/ipfr.md: -------------------------------------------------------------------------------- 1 | 2 | layout: project 3 | tags: [ components, R ] 4 | title: ipfr 5 | github: https://github.com/wsp-sag/ipfr 6 | short-description: A generic implementation of the iterative proportional fitting (IPF) algorithm in R. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/tranus.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ fortran, landuse ] 4 | title: Tranus 5 | github: https://bitbucket.org/modelistica/tranus/overview 6 | short-description: Simulates activities, land-use, and real-estate market 7 | --- 8 | -------------------------------------------------------------------------------- /_project-groups/daysim.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: Daysim 4 | category: daysim 5 | tags: [daysim, abm-platform, c# ] 6 | github: https://github.com/RSGInc/daysim 7 | short-description: Daysim is a C#-based activity-modeling platform 8 | --- 9 | -------------------------------------------------------------------------------- /_projects/larch.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ statistics ] 4 | title: Larch 5 | github: https://github.com/jpn--/larch 6 | short-description: Python tool to estimate and apply of linear logit-based discrete choice models. 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /_projects/matsim.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ network-model, java ] 4 | title: Matsim 5 | github: http://www.matsim.org 6 | short-description: An open-source framework for implementing large-scale agent-based transport simulations. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/python-tdm.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ components, python ] 4 | title: python-tdm 5 | github: https://github.com/joshchea/python-tdm 6 | short-description: Python modeules for typical travel demand modeling calculations. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/simpsynz.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ population-synthesis ] 4 | title: Simpsynz 5 | github: https://github.com/billjee/simpsynz 6 | short-description: A synthesis of an agent population using data fusion techniques. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/tncs-today.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ visualization, implementation, javascript, vue.js ] 4 | title: TNCs Today 5 | github: https://github.com/sfcta/tncstoday 6 | short-description: Visualization Platform for TNC data 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/abm-viz.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ visualization, implementation, javascript, d3.js ] 4 | title: ABMVIZ 5 | github: https://github.com/atlregional/ABMVIZ 6 | short-description: Activity-Based Model Visualization Dashboard 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/censusr.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ data-wrangling, r ] 4 | title: censusr 5 | github: https://github.com/transportfoundry/censusr 6 | short-description: Helps R users access the Census API in a convenient and R-like way. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/psrc-abm.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ full-model-system, daysim, production ] 4 | title: Soundcast 5 | github: https://github.com/psrc/soundcast 6 | short-description: Puget Sound's regional activity-based travel demand model. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/activitysim.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ activitysim, framework, python ] 4 | title: ActivitySim 5 | github: https://github.com/ActivitySim 6 | short-description: Collaboratively-developed activity based travel modeling platform 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/gtfs-ride.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ data-standards ] 4 | title: GTFS-ride 5 | github: https://github.com/ODOT-PTS/GTFS-ride 6 | short-description: GTFS-ride is an open ridership data standard build as an extension to GTFS 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /_projects/scikit-learn.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ statistics ] 4 | title: scikit-Learn 5 | github: https://github.com/scikit-learn/scikit-learn 6 | short-description: Python tool for machine learning. Includes logistic regression. 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /_projects/doppelganger.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ population-synthesis, python ] 4 | title: Doppelganger 5 | github: https://github.com/replicahq/doppelganger 6 | short-description: A python package of tools to support population synthesizers. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/gtfs-route-server.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ components, python, gtfs ] 4 | title: gtfs-route-server 5 | github: https://github.com/joshchea/gtfs-route-server 6 | short-description: Build time-expanded search graphs using GTFS data. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/cmap-freight.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ freight, implementation ] 4 | title: Chicagoland Freight Model 5 | github: https://github.com/CMAP-REPOS/cmap_freight_model 6 | short-description: CMAP's tour-based and supply chain freight model. 7 | --- 8 | -------------------------------------------------------------------------------- /_project-groups/ctramp.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: CTRAMP 4 | category: ct-ramp 5 | tags: [ct-ramp, abm-platform, java] 6 | short-description: CT-RAMP (Coordinated Travel - Regional Activity Modeling Platform) is a Java-based activity-modeling framework 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/data-synthesizer.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ python, data-wrangling ] 4 | title: Data Synthesizer 5 | github: https://github.com/DataResponsibly/DataSynthesizer 6 | short-description: Turns your dataset into synthetic data to preserve privacy 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/partridge.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ python, pandas, gtfs, network-models, transit ] 4 | title: Partridge 5 | github: https://github.com/remix/partridge 6 | short-description: Forgiving and customizable GTFS reader built on pandas DataFrames. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/cmap-abm.md: -------------------------------------------------------------------------------- 1 | 2 | layout: project 3 | tags: [ full-model-system, ct-ramp, implementation, java ] 4 | title: Chicago ABM 5 | github: https://github.com/CMAP-REPOS/cmap_abm 6 | short-description: Chicago Metropolitan Planning Organization's Activity-Based Travel Model 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/gtfs-plus.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ data-standards, dps ] 4 | title: GTFS-PLUS 5 | github: https://github.com/osplanning-data-standards/GTFS-PLUS 6 | short-description: Extension of GTFS transit network standard to enable dynamic passenger assignment. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/linked-connections.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ js, routing, route-planning ] 4 | title: Linked Connections 5 | github: https://github.com/linkedconnections 6 | short-description: Framework to publish transport data to the Web for route planning user agents 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/ncstm-truck.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ implementation, statewide, freight ] 4 | title: NC Statewide Truck Model 5 | github: https://github.com/wsp-sag/ncstm_truck 6 | short-description: Long and short-distance truck model used in North Carolina's Statewide Model. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/task.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ network-model, c++] 4 | title: Traffic Assignment frameworK (TAsK) 5 | github: 'https://github.com/olga-perederieieva/TAsK' 6 | short-description: Deterministic static traffic assignment and non-additive traffic assignment software. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/fast-trips.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ network-model, dpa, python, c++ ] 4 | title: Fast-Trips 5 | github: https://github.com/bayareametro/fast-trips 6 | gh-repo: fast-trips 7 | gh-owner: bayareametro 8 | short-description: Dynamic transit passenger assignment 9 | --- 10 | -------------------------------------------------------------------------------- /_projects/populationsim.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ population-synthesis, python, activity-sim ] 4 | title: PopulationSim 5 | github: https://github.com/RSGInc/populationsim 6 | short-description: A python-based platform for population synthesis built on the ActivitySim platform. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/synthpop.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ population-synthesis ] 4 | title: Synthpop 5 | github: https://github.com/UDST/synthpop 6 | short-description: A reimplementation of PopGen using the modern scientific Python stack, with a focus on performance and code reusability. 7 | --- 8 | -------------------------------------------------------------------------------- /_projects/pylogit.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: project 3 | tags: [ statistics ] 4 | title: PyLogit 5 | github: https://github.com/timothyb0912/pylogit 6 | short-description: A Python package for performing maximum likelihood estimation of conditional logit models and similar discrete choice models. 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /_project-groups/activitysim.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: group 3 | title: activitysim 4 | category: activitysim 5 | tags: [activitysim, abm-platform ] 6 | short-description: ActivitySim is a python-based activity-modeling framework coordinated by five public agencies. 7 | github: https://github.com/ActivitySim 8 | --- 9 | -------------------------------------------------------------------------------- /_layouts/front.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% include head.html %} 4 | 5 |
6 | {% include nav.html %} 7 |