author: Jeffrey Meyers ([email protected])
Copyright © 2015 Jeffrey Meyers. This program is released under the "MIT License". Please see the file COPYING in this distribution for license terms.
The TransitSurvey Organization contains repositories required to build a surveying system that can be used to collect the boarding and alighting locations of passengers using public transit. This project was initially built for use in an Origin-Destination survey conducted by TriMet in 2015. The code is split into four repositories as follows:
- MobileSurvey
- Android client for field collection
- written in Java, preloaded with sample data from TriMet
- API
- server API for receiving data from clients
- written in Python using Flask
- uses PostgreSQL
- deployed using NginX and uWSGI
- Data
- contains sample source data required to build data dependencies
- a simple python script that generates the data inputs required by API and MobileSurveyor from the source data
- Dashboard
- web app for viewing data (in progress)
- [Deploy] (https://github.com/TransitSurveyor/Deploy)
- Vagrant + Puppet project for deploying API with Postgres database
- Follow the build instructions in the
README
inside the MobileSurveyor repo. This will build an android app that provides the user interface for collecting boarding and alighting locations. - To setup the backend database and web services you will want to follow the
README
inside the API repo. You will need to set up a VPS and run the setup shell script to build the database and deploy that application. - Both repositories are loaded with sample data, but to generate your own follow the
README
instructions in the Data repo. You will construct your source inputs and run the build script. After that the outputs will need to be copied into thedata_inputs
folder in both theMobileSurveyor
andAPI
repos.