Charlotte-metro traffic analysis helper including predictions, travel paths, and more
Project description
CMPD Traffic Helper (Traffic Analysis for Charlotte, NC)
CMPD Traffic Alerts service for persistence data and also any predictions/model analysis. Updater service as well as traditional ML model utilities.
Goals of Project
- Identify areas of improvement in Charlotte traffic flow
- Identify problems areas, specific roads needing attention
- Identify least likelihood route from point A to point B of having an accident
- Provide a web based area to allow suggested routing to minimize likelihood of an accident
APIs used:
- Charlotte Mecklenburg Near-real time accident feeds http://maps.cmpd.org/trafficaccidents/default.aspx
- OpenWeatherAPI weather location information https://openweathermap.org/api
Data used:
- CMPD Traffic Accidents (Accident information)
- NC-DOT ARC GIS (Road features)
- Charlotte Open Data Portal (Traffic volumes, population, traffic signals, spatial features)
- Live weather stats (OpenWeatherAPI)
Install Instructions
This project has 2 Python projects traffic_analyzer and cmpd_accidents:
- cmpd_accidents is for persistence and storing accidents either as a callable script or through PyPI
- traffic_analyzer is for model creation/generation
Install locally:
pip install .
Install via PyPI:
pip install charlotte-traffic-analysis
How to Use
Current usage:
- Setup persistence for storing data (MongoDB or MySQL currently supported)
- Setup database or collections as "accidents"
- Setup OpenWeatherAPI account and API key That's it! All other data is stored as reference data from the latest census information via Charlotte NC
To check for current accidents and store them in your persistence:
import cmpd_accidents as cmpd
cmpd.update_traffic_data(<MongoDB host>, <MongoDB port>, <OpenWeather api key>)
or
python main.py <MongoDB host> <MongoDB port> <OpenWeather api key>
It is preferable to setup a job-type service to run the API incrementally over time. Using cron via -nix type systems: Clone the current repo:
git clone https://github.com/dillonmabry/cmpd-traffic-helper
Setup cron job to run every 5 minutes:
crontab -e
*/5 * * * * cd <your-repo-location>/cmpd_accidents && sudo python3 main.py mongodb://<user>:<password>@<host>/<databasename> <port> <OpenWeather api key>
Note on Persistence
If you would rather use a relational persistence such as MySQL, the interface is already available for SQLAlchemy connect via the database module. Simply replace the "collection" argument with "table" for relational persistence. Seed scripts are available in resources/db feel free to replace with what table columns you prefer.
Persistence swap example:
Relational
from cmpd_accidents import SQLAlchemyConnect
db = SQLAlchemyConnect(connection_string='mysql+pymysql://<user>:<password>@<host>/<database>')
with self.database as db:
exist_events = db.find_ids(table="accidents", ids=current_ids, cursor_limit=500)
with self.database as db:
db.insert_bulk(table="accidents", items=final_data) # persist data
MongoDB
from cmpd_accidents import MongoDBConnect
db = MongoDBConnect(host='mongodb://<user>:<password>@<host>/<database>', port=27017)
with self.database as db:
exist_events = db.find_ids(collection="accidents", ids=current_ids, cursor_limit=500)
with self.database as db:
db.insert_bulk(collection="accidents", items=final_data) # persist data
Tests
python setup.py test
To-Do
- Create API to use CMPD SOAP Service for latest traffic accident data
- Setup generic persistence for use of different databases (MySQL, etc.)
- Add integration tests
- Setup Travis CI integration
- Exploratory Data Analysis
- Analyze existing traffic prediction models and develop mock model
- Test mock model and provide detailed transparency
- Utilize created model to provide insight for current traffic patterns and information
- Create Python web service via hosting solution to call mock model and integrate with web portal
- Finalize and push Python package to PyPI
- Fix any new bugs
- Create web based portal with interactivity
Related R Notebook
This project was initially created via R and converted as best as possible to Python/Sklearn after decision to use Python to support model calling would be easier via web
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file charlotte_traffic_analysis-0.1.3.tar.gz
.
File metadata
- Download URL: charlotte_traffic_analysis-0.1.3.tar.gz
- Upload date:
- Size: 5.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a41f56cff4aee73bd1040c6732c0aef52e62fb578249382544c117dce2934129 |
|
MD5 | 1dfeb315e5ca36fb428dc17297318ac1 |
|
BLAKE2b-256 | 4e1d1bed5955fd8b21b93a6d71c1a54d5933487512628b02d8849a56aa7888d1 |