SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3268
ARIMA Based Weather Prediction Model using IoT and Open
Source Data
Gunjan Rawat1, Dhruv Patel2, Prajwal Khapare3, Prof Sandhya Deshpande4
1Department of Electronics and Telecommunication Engineering, KJ Somaiya Institute of Engineering and
Information Technology(Autonomous),
(Affiliated to University of Mumbai),Mumbai,India)
2Professor, Department of Electronics and Telecommunication Engineering, KJ Somaiya Institute of Engineering
and Information Technology(Autonomous),
(Affiliated to University of Mumbai),Mumbai,India)
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract -The main objective of our research is to
integrate weather parameters data collected from
IMD(Indian Meteorological Department) and
AccuWeather.com and combine it with our own data
collected from sensors to create a database. This database
is then used to predict and monitor the weather of our
area. The prediction done in this manner will lead to a
more accurate result of the area where the sensors are
located and therefore results in better accuracy and is
more suitable. As it is with respect to an area, it will be
more precise than other Web applications which predict
weather of a whole region compared to a specific area.
This could find it’s application in a variety of fields such as
it can be used by farmers for better prediction, schools,
universities and industries/offices where exist extreme
weather conditions. IMD data is extracted using Python
and a python library created specifically for this purpose
called imdlib. This data constitutes the whole of India so
QGIS can be used for mapping it to a certain area and the
resultant can be stored in the form of a CSV file. The
second part of the database is gathered from sensors
which are connected to a microcontroller which in turn
transfers this data to a wifi module and stores it in the
form of CSV file.The database can then be used to work
with the ARIMA model to predict the data. ARIMA model is
one of the most accurate and easy to implement linear
regression model.
KeyWords: Machine- Learning, IoT, Python ,Arduino,
ARIMA, Linear Regression, Time Series Forcasting
1. INTRODUCTION
Climate change and environmental monitoring have
received much attention recently. With our project we are
proposing a Weather Prediction Model which uses data
from our own sensors(IoT)[1][4] and data available from
IMD(Indian Meteorological Department) as it’s dataset.
IoT-Internet of things is basically a network of physical
objects(sensors) embedded with software and other
technologies. QGIS is a free and open source geographic
information system which allows to analyze and edit
spatial information. Machine learning allows applications
to become more accurate at predicting outcomes. With our
project we are hoping to create a system which will be
able to monitor the weather conditions over controlled
areas like house, industry, agricultural area. Capture
weather parameters like temperature, humidity and rain
using sensors and finally predict the rainfall, temperature
and humidity by implementing Machine learning
Algorithms on the data received from sensors and from
IMD.
1.1 Block Diagram
Figure 1- Sensor Flowchart
Figure 1 is the block diagram which explains the
extraction of data using sensors. The DHT22 sensor senses
the Temperature and humidity while the YL83 is a rain
sensor. This information is then fed to Node MCU .This
information is forwarded further by interfacing the
NodeMCU with its inbuilt ESP8266 Wifi module which
then transfers this data to Thing Speak. The data is then
downloaded in CSV format.[3][4]This is then fed as one of
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3269
the inputs for our dataset. The second input will come in
the form of data which is extracted from IMD.
For the second dataset we will be using an inbuilt python
library called imdlib which is specifically used to extract
data from IMD. Using that we will receive the data in CSV
format. Thus the second input for our dataset will be ready
Figure 2- Algorithm Testing Flowchart
After the dataset is ready, the second part comprises
testing the machine learning algorithm. A supervised
machine learning model will be used for this prediction
and after testing a number of different algorithms,
choosing the one with the best accuracy. This will all be
done using Python and its libraries.
2. Methodology
Data will be collected from two streams[2] : sensors and
IMD free available data.
DATA COLLECTION-SENSORS[1][3][4]:
For temperature and humidity we will be using DHT22
sensor, Rain sensor YL 83. These sensors will in turn be
connected to a microcontroller- Arduino UNO. We will use
Arduino IDE for programming this. The arduino will be
connected to a ESP8266 WiFi Module which will transfer
the data to a google sheet/excel as a CSV file using
ThingSpeak. This data will be one of our datasets.
DATA COLLECTION-IMD[2]:
For collecting the IMD data we will be extracting the data
from the .GRD format. An inbuilt python library will be
used to extract the data called ‘imdlib’. This will help us to
get the entire data of a single year . This dataset will then
be mapped to our area using QGIS. This will be our second
dataset.
DATA CLEANING:
All the data has to then be formatted and integrated into
one database.
PREDICTION MODEL:
The final step will be integrating both these datasets and
training our model. We will be using ARIMA time series
forecasting for this which is a type of linear regression
model. This will all be done using Python and its libraries.
3. ARIMA Model
Auto Regressive Integrated Moving Average, abbreviated
as ARIMA, is an Algorithm for forecasting that is centered
on the concept that the data in the previous values of the
time series can alone be utilized in order to predict the
future values.
The primary step is to make the time series stationary in
order to build an ARIMA model. This is because the term
'Auto Regressive' in ARIMA implies a Linear Regression
Model using its lags as predictors. And as we already
know, Linear Regression Models work well for
independent and non-correlated predictors.
In order to make a series stationary, we will utilize the
most common approach that is to subtract the past value
from the present value. Sometimes, depending on the
series complexity, multiple subtractions may be required.
4. Practical Implementation
As the methodology suggests , the flow is followed and the
database is created using the sensor and IMD data. The
connections of the system are as shown in figure 3. The
dht22 is on the breadboard and yl83 independent , both
connected to ESP8266. This is then connected to the
Arduino IDE using a micro USB cable.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3270
Figure 3- Sensor Connections
This sensor data is displayed on ThingSpeak
Figure 4 - ThingSpeak Visualization
After following the methodology and completing the entire
process, the prediction for the maximum temperature for
the month of april is displayed in figure 4. In a similar way
the prediction for the other parameters can be carried out
which are minimum temperature, rainfall and relative
humidity. Jupyter Notebook along with libraries such as
pandas ,numpy, statsmodels, matplotlib were used.
Figure 4 - Maximum temperature prediction
5. Conclusions
Weather of the coming days is correctly predicted(85-90%
accuracy expected) with the help of the entire setup. Data
is successfully collected from the sensors and successfully
extracted from IMD. The resultant datasets are then
formatted, all null/not required values are removed. Both
the datasets are then integrated to form a database which
will serve as input to the algorithm. All this will be
processed in python and using its vast amount of libraries
for machine learning to train the ARIMA model.
6. References
[1] Development of IoT Based Weather Reporting
System”-A F Pauzi1 and M Z Hasan , International
Conference on Technology, Engineering and Sciences
(ICTES) 2020,18 April 2020.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3271
[2] “Smart Weather Forecasting Using Machine
Learning:A Case Study in Tennessee”- A H M Jakaria,Md
Mosharaf Hossain,Mohammad Ashiqur Rahman,arXiv-
Cornell University,25 August 2020.
[3] “Internet of Things (IOT) based Weather
Monitoring System”-Girija C,Harshalatha H,International
Journal of Engineering Research & Technology
(IJERT),2018.
[4] “IOT Based Weather Monitoring and Reporting
System Project”=Anita M. Bhagat, Ashwini G. Thakare,
Kajal A. Molke, Neha S. Muneshwar, Prof. V.
Choudhary,International Journal of Trend in Scientific
Research and Development (IJTSRD),March 2019.

More Related Content

Similar to ARIMA Based Weather Prediction Model using IoT and Open Source Data

Face Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock SystemFace Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock SystemIRJET Journal
 
IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City
IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart CityIRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City
IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart CityIRJET Journal
 
Intelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded systemIntelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded systemIRJET Journal
 
IOT Personal Weather Station
IOT Personal Weather StationIOT Personal Weather Station
IOT Personal Weather StationIRJET Journal
 
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET Journal
 
IRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in IndustriesIRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in IndustriesIRJET Journal
 
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET Journal
 
Industrial Automation using IoT
Industrial Automation using IoTIndustrial Automation using IoT
Industrial Automation using IoTIRJET Journal
 
IRJET-E-Waste Management using Robotics
IRJET-E-Waste Management using RoboticsIRJET-E-Waste Management using Robotics
IRJET-E-Waste Management using RoboticsIRJET Journal
 
IRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller CounterIRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller CounterIRJET Journal
 
IRJET - Smart Home with Power Consumed Statistics using Android Application
IRJET - Smart Home with Power Consumed Statistics using Android ApplicationIRJET - Smart Home with Power Consumed Statistics using Android Application
IRJET - Smart Home with Power Consumed Statistics using Android ApplicationIRJET Journal
 
IRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement TrailerIRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement TrailerIRJET Journal
 
Industrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOTIndustrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOTAyush Chhangani
 
SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTIRJET Journal
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoTIRJET Journal
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoTIRJET Journal
 
IRJET - IoT based Vehicle Tracking System
IRJET -  	  IoT based Vehicle Tracking SystemIRJET -  	  IoT based Vehicle Tracking System
IRJET - IoT based Vehicle Tracking SystemIRJET Journal
 
IRJET- Labour Work Monitoring System
IRJET- Labour Work Monitoring SystemIRJET- Labour Work Monitoring System
IRJET- Labour Work Monitoring SystemIRJET Journal
 
IRJET- Automated Smart Greenhouse Environment using IoT
IRJET- Automated Smart Greenhouse Environment using IoTIRJET- Automated Smart Greenhouse Environment using IoT
IRJET- Automated Smart Greenhouse Environment using IoTIRJET Journal
 
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONA SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONIRJET Journal
 

Similar to ARIMA Based Weather Prediction Model using IoT and Open Source Data (20)

Face Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock SystemFace Recognition using Raspberry PI for Door Lock System
Face Recognition using Raspberry PI for Door Lock System
 
IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City
IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart CityIRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City
IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City
 
Intelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded systemIntelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded system
 
IOT Personal Weather Station
IOT Personal Weather StationIOT Personal Weather Station
IOT Personal Weather Station
 
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
 
IRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in IndustriesIRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in Industries
 
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
 
Industrial Automation using IoT
Industrial Automation using IoTIndustrial Automation using IoT
Industrial Automation using IoT
 
IRJET-E-Waste Management using Robotics
IRJET-E-Waste Management using RoboticsIRJET-E-Waste Management using Robotics
IRJET-E-Waste Management using Robotics
 
IRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller CounterIRJET- Design and Development of IoT based Geiger Muller Counter
IRJET- Design and Development of IoT based Geiger Muller Counter
 
IRJET - Smart Home with Power Consumed Statistics using Android Application
IRJET - Smart Home with Power Consumed Statistics using Android ApplicationIRJET - Smart Home with Power Consumed Statistics using Android Application
IRJET - Smart Home with Power Consumed Statistics using Android Application
 
IRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement TrailerIRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement Trailer
 
Industrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOTIndustrial Hazard Monitoring using IOT
Industrial Hazard Monitoring using IOT
 
SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOT
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoT
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoT
 
IRJET - IoT based Vehicle Tracking System
IRJET -  	  IoT based Vehicle Tracking SystemIRJET -  	  IoT based Vehicle Tracking System
IRJET - IoT based Vehicle Tracking System
 
IRJET- Labour Work Monitoring System
IRJET- Labour Work Monitoring SystemIRJET- Labour Work Monitoring System
IRJET- Labour Work Monitoring System
 
IRJET- Automated Smart Greenhouse Environment using IoT
IRJET- Automated Smart Greenhouse Environment using IoTIRJET- Automated Smart Greenhouse Environment using IoT
IRJET- Automated Smart Greenhouse Environment using IoT
 
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONA SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 

Recently uploaded (20)

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 

ARIMA Based Weather Prediction Model using IoT and Open Source Data

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3268 ARIMA Based Weather Prediction Model using IoT and Open Source Data Gunjan Rawat1, Dhruv Patel2, Prajwal Khapare3, Prof Sandhya Deshpande4 1Department of Electronics and Telecommunication Engineering, KJ Somaiya Institute of Engineering and Information Technology(Autonomous), (Affiliated to University of Mumbai),Mumbai,India) 2Professor, Department of Electronics and Telecommunication Engineering, KJ Somaiya Institute of Engineering and Information Technology(Autonomous), (Affiliated to University of Mumbai),Mumbai,India) ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract -The main objective of our research is to integrate weather parameters data collected from IMD(Indian Meteorological Department) and AccuWeather.com and combine it with our own data collected from sensors to create a database. This database is then used to predict and monitor the weather of our area. The prediction done in this manner will lead to a more accurate result of the area where the sensors are located and therefore results in better accuracy and is more suitable. As it is with respect to an area, it will be more precise than other Web applications which predict weather of a whole region compared to a specific area. This could find it’s application in a variety of fields such as it can be used by farmers for better prediction, schools, universities and industries/offices where exist extreme weather conditions. IMD data is extracted using Python and a python library created specifically for this purpose called imdlib. This data constitutes the whole of India so QGIS can be used for mapping it to a certain area and the resultant can be stored in the form of a CSV file. The second part of the database is gathered from sensors which are connected to a microcontroller which in turn transfers this data to a wifi module and stores it in the form of CSV file.The database can then be used to work with the ARIMA model to predict the data. ARIMA model is one of the most accurate and easy to implement linear regression model. KeyWords: Machine- Learning, IoT, Python ,Arduino, ARIMA, Linear Regression, Time Series Forcasting 1. INTRODUCTION Climate change and environmental monitoring have received much attention recently. With our project we are proposing a Weather Prediction Model which uses data from our own sensors(IoT)[1][4] and data available from IMD(Indian Meteorological Department) as it’s dataset. IoT-Internet of things is basically a network of physical objects(sensors) embedded with software and other technologies. QGIS is a free and open source geographic information system which allows to analyze and edit spatial information. Machine learning allows applications to become more accurate at predicting outcomes. With our project we are hoping to create a system which will be able to monitor the weather conditions over controlled areas like house, industry, agricultural area. Capture weather parameters like temperature, humidity and rain using sensors and finally predict the rainfall, temperature and humidity by implementing Machine learning Algorithms on the data received from sensors and from IMD. 1.1 Block Diagram Figure 1- Sensor Flowchart Figure 1 is the block diagram which explains the extraction of data using sensors. The DHT22 sensor senses the Temperature and humidity while the YL83 is a rain sensor. This information is then fed to Node MCU .This information is forwarded further by interfacing the NodeMCU with its inbuilt ESP8266 Wifi module which then transfers this data to Thing Speak. The data is then downloaded in CSV format.[3][4]This is then fed as one of
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3269 the inputs for our dataset. The second input will come in the form of data which is extracted from IMD. For the second dataset we will be using an inbuilt python library called imdlib which is specifically used to extract data from IMD. Using that we will receive the data in CSV format. Thus the second input for our dataset will be ready Figure 2- Algorithm Testing Flowchart After the dataset is ready, the second part comprises testing the machine learning algorithm. A supervised machine learning model will be used for this prediction and after testing a number of different algorithms, choosing the one with the best accuracy. This will all be done using Python and its libraries. 2. Methodology Data will be collected from two streams[2] : sensors and IMD free available data. DATA COLLECTION-SENSORS[1][3][4]: For temperature and humidity we will be using DHT22 sensor, Rain sensor YL 83. These sensors will in turn be connected to a microcontroller- Arduino UNO. We will use Arduino IDE for programming this. The arduino will be connected to a ESP8266 WiFi Module which will transfer the data to a google sheet/excel as a CSV file using ThingSpeak. This data will be one of our datasets. DATA COLLECTION-IMD[2]: For collecting the IMD data we will be extracting the data from the .GRD format. An inbuilt python library will be used to extract the data called ‘imdlib’. This will help us to get the entire data of a single year . This dataset will then be mapped to our area using QGIS. This will be our second dataset. DATA CLEANING: All the data has to then be formatted and integrated into one database. PREDICTION MODEL: The final step will be integrating both these datasets and training our model. We will be using ARIMA time series forecasting for this which is a type of linear regression model. This will all be done using Python and its libraries. 3. ARIMA Model Auto Regressive Integrated Moving Average, abbreviated as ARIMA, is an Algorithm for forecasting that is centered on the concept that the data in the previous values of the time series can alone be utilized in order to predict the future values. The primary step is to make the time series stationary in order to build an ARIMA model. This is because the term 'Auto Regressive' in ARIMA implies a Linear Regression Model using its lags as predictors. And as we already know, Linear Regression Models work well for independent and non-correlated predictors. In order to make a series stationary, we will utilize the most common approach that is to subtract the past value from the present value. Sometimes, depending on the series complexity, multiple subtractions may be required. 4. Practical Implementation As the methodology suggests , the flow is followed and the database is created using the sensor and IMD data. The connections of the system are as shown in figure 3. The dht22 is on the breadboard and yl83 independent , both connected to ESP8266. This is then connected to the Arduino IDE using a micro USB cable.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3270 Figure 3- Sensor Connections This sensor data is displayed on ThingSpeak Figure 4 - ThingSpeak Visualization After following the methodology and completing the entire process, the prediction for the maximum temperature for the month of april is displayed in figure 4. In a similar way the prediction for the other parameters can be carried out which are minimum temperature, rainfall and relative humidity. Jupyter Notebook along with libraries such as pandas ,numpy, statsmodels, matplotlib were used. Figure 4 - Maximum temperature prediction 5. Conclusions Weather of the coming days is correctly predicted(85-90% accuracy expected) with the help of the entire setup. Data is successfully collected from the sensors and successfully extracted from IMD. The resultant datasets are then formatted, all null/not required values are removed. Both the datasets are then integrated to form a database which will serve as input to the algorithm. All this will be processed in python and using its vast amount of libraries for machine learning to train the ARIMA model. 6. References [1] Development of IoT Based Weather Reporting System”-A F Pauzi1 and M Z Hasan , International Conference on Technology, Engineering and Sciences (ICTES) 2020,18 April 2020.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3271 [2] “Smart Weather Forecasting Using Machine Learning:A Case Study in Tennessee”- A H M Jakaria,Md Mosharaf Hossain,Mohammad Ashiqur Rahman,arXiv- Cornell University,25 August 2020. [3] “Internet of Things (IOT) based Weather Monitoring System”-Girija C,Harshalatha H,International Journal of Engineering Research & Technology (IJERT),2018. [4] “IOT Based Weather Monitoring and Reporting System Project”=Anita M. Bhagat, Ashwini G. Thakare, Kajal A. Molke, Neha S. Muneshwar, Prof. V. Choudhary,International Journal of Trend in Scientific Research and Development (IJTSRD),March 2019.