Take in data input (.csv), generate heatmaps based on speed condition with printed timestamps
Use the package manager pip to install all requirements
pip install -r /path/to/requirements.txt
pip install traveltimemap
- Package link: https://pypi.org/project/traveltimemap/
- Sample how it works: finaldemo.ipynb
- View sample online: https://colab.research.google.com/drive/15GCqZyHMS0idjBUPLVIplKTQc8U4MYdK?usp=sharing
- Email: huongmng@usc.edu
import timestamp
# returns heatmap with travel time statistics & direction
map_direction('path/to/data.csv')
# returns heatmap with travel time statistics
get_timestamp('path/to/data.csv')
# returns heatmap
get_map('path/to/data.csv')
# save to build directory
map = get_map('path/to/data.csv')
save_map(map, name='map-name')