Safest Path to walk from one point to another in New York
Tasks:
- load data and filter
- NYU's range for lat, long => create the zone table {big data}
- calculate risk score for each zone => {big data}
- user types source and destination on front end
- GET API -> backend => {routes with risk score, distance and time}
- front end part
- architecture diagram
Step to run project- Run Flask App:
- cd backend
- python -m venv venv
- source venv/bin/activate
- Install Flask, flask_restful, flask_cors, googlemaps libraries using pip install
- run the command: "flask run" to run the flask app.
Run React-JS App:
- open another terminal and cd to frontend
- npm install
- npm start