psrth / e-autorickshaw-iot-stack

An Internet-of-Things enabled tech stack for Auto Rickshaws. Built on top of NodeMCU ESP8266.

Home Page:https://e-autorickshaw-iot-stack.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IOT-enabled Auto Rickshaw Solution for Public Transportation

cover

Overview

In multiple Indian cities, traffic is one of the biggest issues — in 2022, New Delhi ranked 11 in the World Congestion Index. One of the most infrastructarally inexpensive solutions is to optimize semi-public forms of transportation like auto-rickshaws in order to maximise vehicular efficiency and safety, while minimizing factors like pollution and congestion by optimizing routes.

In this project, we aim to equip auto-rickshaws with multiple Internet-of-Things enabled sensors and actuators in order to streamline and centralise auto-rickshaw transportation.

This project was built as a part of the course Internet of Things [EEE F411] at BITS Pilani, Pilani — taught by Professor Vinay Chamola. The team consisted of:

Project Demo (YouTube)

Functionality

While our final project only implements certain parts of the proposed functionality due to monetary and time limitations, the proposed solution includes the following features.

functionality

Safety and Security

  • Since GPS location is tracked and sent to a centralised entity (Indian Government) and control rooms, security and emergency response time can be streamlined to ensure that rider is always on the grid
  • Espescially in cities like New Delhi, where violent crime levels are high, female rider security is increased

ML Powered Heatmap Predictions

  • Currently, auto drivers efficiency is not maximised as they are localised to pockets of regions like auto stands
  • By using a neural network to predict the average demand for auto rickshaws at any given point in the day, auto drivers can be routed to high demand areas in order to prevent surplus in low-need areas and shortages in high-demand areas
  • Ensures faster resolution time for riders as well

Accelerometer

  • By connecting a sensor to monitor the angular rotation of the auto’s wheel axels, we can calculate the speed that the auto rickshaw is going at
  • In areas with explicit speed limits, drivers can be alerted (warnings) that they are exceeding the speed limit or even limit the angular rotation to the defined speed constraints for the region to ensure safe driving practices
  • We can also model artficial speed limits for areas without explicit limits based on analysing data of surrounding structures (schools, hospitals) or even modelling areas with high frequencies of crashes

Traffic Violations

  • Since GPS tracking is enabled, it allows for a standardised way of tracking traffic rule violations like incorrect way driving and traffic light violations
  • Also, can attach a RFID sensor on the top of the auto with the key information about the autos, that directional beams installed on traffic lights can be used to log any traffic violations

Crash Detections

  • By connecting a sensor to monitor the impact on different parts of the auto rickshaw body, we can calculate the average collision impact and act accordingly
  • In high impact collisions where driver is unresponsive, can instantly deploy ambulance services to the GPS tracked location with information regarding the collision impact
  • Drivers also have a “Report Accident” button that they witnessed on the app — confluence of such reports = deploying ambulance

Digital Meters

  • Accurately calculating the estimated cost of the ride in a manner equitable for both the rider and the driver
  • Lack of commission for enabling framework means more cut for the drivers and easier adoption
  • Standardization of cost rates means more efficient utlisation of the available auto rickshaw resources

CNG Ecosystem

  • Sensor monitoring the amount of CNG currently available and calculating whether it is enough CNG to succesfully complete upcoming rides
  • Sensors at CNG stations that helps model a map of all available CNG stations as well as the optimum destination based on distance and predicted wait at ETA in order to allow less queing at certain CNG stations

Suspension

  • Connecting sensors to suspension of the auto
  • Useful data in generating the road-level topology of the city
  • Useful data in allocating resources for fixing potholes and road damage — by computing maximum suspension wear and tear and also the traffic density around the point in question

Vehicular Exhaust

  • Accurately calculating the total vehicular exhaust and alerting a driver for a fix whenever exhaust crosses a threshold
  • Changes vehicular pollution tracking from a retrospective action to an ongoing and exact distribution tracking of total vehicular exhaust at any time

Architecture

arch

Frontend

The client application for the IoT E-Auto Rickshaw is built using React.js.

Local Installation

  1. Navigate to the client repository.
  cd e-autorickshaw-iot-stack/erickshaw-client
  1. Install Node dependencies using NPM.
  npm install
  1. Run the Development Server.
  npm run dev

Deployment

Live Client Application

Setup and Settings

  • The client app deploys using Vercel.

Backend & DevOps (Data Management, AWS IoT Core, MQTT and API)

Setting up AWS IOT Core

AWS Core Image

  1. Created an IOT Thing on AWS Core (ap-south-1)
  2. Generated root access policies iot.* and *
  3. Applied policies to device certificate
  4. Converted device certificates (.key) files to NodeMCU ESP8266 compatible (.der) files using OpenSSL.
> openssl x509 -in xxxxxxxxxx-certificate.pem.crt -out cert.der -outform DER
> openssl rsa -in xxxxxxxxxx-private.pem.key -out private.der -outform DER
> openssl x509 -in AmazonRootCA1.pem -out ca.der -outform DER
  1. Installed pubsubclient for MQTT connectivity
  2. Successfully connected to AWS IoT Core and subscribed to "outTopic" for data stream

Using a Flask Server as an API

  • MQTT architecture sends data to an AWS IoT Core livestream
  • Flask server (hosted on ide.goorm.io) acts as a validated endpoint for AWS IoT Core to stream data from the outTopic topic
  • AWS IOT Core uses the POST route to send data to the live Flask server
  • server then uses SQL to store values in a database
  • a GET request exists to return most recent value in the updated SQL database

Instructions for running Flask Server

  1. Initialise SQL Database
> python3 init_db.py
  1. Run Flask Application
> new run flask

Finally, we get the resulting API endpoint:

Machine Learning — Traffic Prediction

ml

  • Clusters 125 possible bases into 5 broad categories with dependent variable being time
  • Each minute in a day is encoded to a numerical value such that spikes in various regions are stored against structured data
  • Used Sci-kit Learn to train six different classification models on the data using K-Nearest Neighbours, Kernels in Support Vector Machine, Decision Tree Classification, Logistic Regression, Naive Bayes and Random Forest Classification
  • The results and accuracy of the models are compared using a confusion matrix, and the one with highest accuracy is used as a predictor for that minute
  • An automated email is sent out to the required email account conveying the ideal base to travel to (can be integrated with API)
  • Using the UBER New York Traffic Dataset from Kaggle

Hardware Implementation

hw

About

An Internet-of-Things enabled tech stack for Auto Rickshaws. Built on top of NodeMCU ESP8266.

https://e-autorickshaw-iot-stack.vercel.app


Languages

Language:C++ 75.4%Language:Jupyter Notebook 16.9%Language:Python 4.3%Language:JavaScript 2.2%Language:C 0.5%Language:HTML 0.3%Language:Makefile 0.2%Language:CSS 0.2%Language:CMake 0.1%