SlideShare a Scribd company logo
1 of 3
Download to read offline
ยฉ 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 892
Development of Effective Crop Monitoring and Management System
with Weather Reporting
Gopinath B1, Naveen R S2, Bala Murugan M3, Neranjan B V4
1Associate Professor, Department of Electronics and Communication Engineering, Kumaraguru College of
Technology[autonomous], Coimbatore, Tamil Nadu, India
2,3,4 Department of Electronics and Communication Engineering, Kumaraguru College of Technology[autonomous],
Coimbatore, Tamil Nadu, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract โ€“ Hill station agriculture is a place where sudden
climatic changes and crop related issues happen. Since
farmers owning these hill-station farmlands are often located
in down-hills which makes them more inconvenient to reach
the farmland on time during a natural calamity resulting in
poor crop management and thus affecting production. This
paper focuses on developing a virtual environment integrated
with real-time components those serve as an input/output
devices and as processing device. This proposed method uses
machine learning algorithms tosolvetheinconveniencesfaced
mainly by the hill station farmers. This model also has a
weather prediction algorithm added to the crop
recommendation algorithm which is used for the precise
calculation of crop recommendation that is for the unskilled
new person to cultivation field. Agri rating is an additional
feature for better understanding of the land.
Key Words: Crop Recommendation, Weather Prediction,
Agri Rating, KNN algorithm, LSTM algorithm.
1. INTRODUCTION
In India, agriculture plays a crucial part in the economy. Of
about 330 million hectares of geographical land in India,
almost 33 percent of thelandsarepracticingagriculture.40+
percent of these agriculture lands are in hill stations. One of
the major issues facing by farmers of these hill station
farming is the lack of proper maintenance of crops due to
their farmlands and homes are separated by a longer
distance. This separation between farmlands and homes
makes farmers not easier to reach the farmland during a
heavy rain or other natural calamities that are constantly
changing over time in hill stations. The main motive of this
project is to eliminate the communication delay and thus
providing an efficient management system.
In this project, we proposed a machine learning model using
data mining that can help the farmer to know what happens
in the farmland periodically and keep them alert of the
changes happening up the hill. K-Nearest Neighbor (KNN),
Random Forest and Long Short-Term Memory (LSTM) are
the Machine Learning Algorithms used for different
purposes of the proposed model. These algorithms are
discussed in brief in the upcoming sections.
2. METHODS AND MATERIALS
2.1 Algorithms
A. K โ€“ Nearest Neighbor
A machine learning algorithm, that is the simplest and
supervised learning technique. It is the most efficient
algorithm that can process a very large dataset with
numerous classes (that are defined to output) and provides
the new data point or provide most similar class possible
from the variousclasses of the stored data. As KNNapproach
is a non-parametric algorithm, it accepts no assumptions
regarding data.
The dataset that is imported has various classes of crops
which are based on the respectiveparametersofthelandand
environment. If when a crop is seeded, this system gathers
the daily data of the land and keep the farmer advised by the
final report. This approach facilitates both crop maintenance
and crop prediction inside a single model.
B. Random Forest
This is a decision tree algorithm which is non-linear and
also non-parametric supervised classification type. It can be
used for comparing values between a largerdatasetexceptit
can only provide the output from onlytwoclasses.Asforthis
project, to predict the weather, the output is set to either
โ€œPossibility of Rainโ€ or โ€œNo possibility of Rainโ€, hence
Random Forest Algorithm is more effective as it performs
well for smaller classes of output.
C. Long Short-Term Memory
Long Short-Term Memory, a model of RNN (Recurrent
Neural Network) series that has the capacity of learning
long-term dependencies. RNN is useful for short-term
dependencies where as LSTM is more effective when comes
to long-term. Whatsoever, LSTM uses similar structure of
chains of neural network as RNN, it has its each part of the
chain that are multiple layer which can interact with the
other. This method is used for Agri-rating where the system
can compare the land parameters and provide how goodthe
land is, thru a rating scale.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
ยฉ 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 893
D. Datasets
For this model to achieve the goal, three datasets are
taken. The processes involved in this project are, Crop
Recommendation, Rainfall Prediction and Agri-rating. For
each of the model to provide best results, the amountofdata
given should be valid, higher in numbers and should be
comparative to one another.
For Crop Recommendation, a dataset with 8 columns
where 7 are parameters of the land and environment and 1
is crop that is appropriate to the values. These parameters
are nitrogen,potassium,phosphorus,temperature,humidity,
pH and rainfall. Totally there are 22 crops takenandforeach
crop, the parameter values are taken in number of 200
For Weather/Rainfall Prediction, parameters such as
month, date, average temperature, average humidity, sun
visibility, average wind speed and rainfall are taken. The
rainfall column is the target class that has either 0(no
possibility of rain) or 1(possibility of rain).
For Argi-rating, the dataset is created which holds the
values of land parameter. These parameters are helpful in
determining how well the land is performing according to
which the land is rated by the system and provides tips to
maintain the system. This dataset is more similar tothecrop
recommendation dataset, in addition to previous values, air
quality and moisture parameters are also added.
These datasets are fed into each of the respective models
and trained accordingly. For training the model, each model
is provided with the test size of 0.2 (20% from dataset)
respectively. The outcome accuracy is discussed later in this
paper.
3. METHODOLOGY
To solve the delayed communication issues facing by the
hill-station farmers, this model is designed in a way to forma
local area network wirelessly which can be achieved by
transmitting the data over LoRa. LoRa is a Long-Range
communication device that can create or form a network
around it without any internet connectivity. This approach
will eliminate the need of internet, whereas internet
infrastructure is very much lesser in the hill-station areas.
LoRa can cover up to 3 to 15 miles theoretically and can be
communicated without internet. This gives the advantage of
transmitting the real-time sensors data from the farmland to
a certain distance where the farmersmightabletoaccessand
process it even if there isnโ€™t no internet connectivity. The
general model forthe communication betweenfarmlandand
farmer accessible area is illustrated in the Fig -1.
Fig -1: General Model
Fig -2: Architecture of the proposed model
Client station is the farmland where sensors like pH sensor,
moisture sensor, temperatureorhumiditysensoranda LoRa
transmitter are present. Local stationis theplacewheredata
processing takes place for which the input is taken from the
client station thru LoRa receiver. The proposed system
architecture is shown in the Fig -2.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
ยฉ 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 894
4. RESULTS AND DISCUSSIONS
For Machine Learning, confusion matrix is the key
parameter to know how the model is performing. The
confusion matrix that is obtained should be NxN matrix(N is
the number of target classes). When themodel isperforming
well, the diagonal elements of the matrix will be filled with
integers whereas the other elements will be zero. If the
model is not performingasrequired,the elementsotherthan
diagonal elements will be havingsomeintegervalues,means
these are the errors/miscalculations thatareoccurredin the
model. Below are the figures that represent the confusion
matrix of each method.
Fig -3: Crop Prediction Confusion Matrix
Fig -4: Rainfall Prediction & Agri Rating Confusion Matrix
From the confusion matrix,wecancalculatetheaccuracy,
specificity and sensitivity by the formulas. The obtained
values are shown in table -1
Table -1: Results Obtained
Model Algorithm Accuracy Specificity Sensitivity
Crop
Recommendat
ion
KNN 97% - -
Rainfall
Prediction
Random
Forest
85% 75% 88%
Agri-rating LSTM 81% - -
The performance of the LoRa transmitter is quite
convincing. Data that are extracted from the sensors can be
sent through LoRa but with efficiency lesserthantheoretical
value. Also, while transmitting data, some data gets lost, this
issue can be solved by resending the data multipletimes and
making the receiver side system to wait for all the required
data to be received. This may slow down the process but the
outcome will be accurate.
5. CONCLUSIONS
The aim of this project is to solve the communication
delay that happens when the farmers are not nearer to the
farmlands and to provide a maintenance system that
monitors the farmlands and keeps the farmer updated.Even
though the communicationproblemneededtobetakencare,
the monitoring and weather prediction systems have done
their functions accurately. Crop recommendation system
provided the best results.
FUTURE SCOPE
1. Enhancing the communication system with a high-
level technology will help both open area and hill-
side farmers/farming not to worry about their
lands.
2. A sustainable development in the monitoring and
maintenance system will escalate the production of
crops to a newer level
REFERENCES
[1] Ashenafi Lambebo, Sasan Haghani, 2014, A Wireless
Sensor Network for Environmental Monitoring of
Greenhouse Gases, ASEE 2014 Zone I Conference,University
of Bridgeport, Bridgpeort, CT, USA.
[2] D. S. Arjun, A. Bala, V. Dwarakanath, K. S. Sampada, B. B.
Prahlada Rao and H. Pasupuleti , 2015, Integrating cloud-
WSN to analyze weather data and notify SaaS user alerts
during weather disasters, IEEE International Advance
Computing Conference (IACC), pp. 899-904.
[3] Srinivasa K.G. M.S.Ramaiah. Siddiqui.N. Kumar. A,
ParaSense - A Sensor Integrated Cloud Based Internet of
Things Prototype for Real Time Monitoring Applications, in
region10 IEEE Symposium (TENSYMP), 2015,
[4] S.P.KALSI, 2008, Satellite Based Weather
ForecastingIndia, in Wireless Communications and
Networking Conference, WCNC-2008.
[5] Gopal G, Harith B, Ritwik Raj Savyasachi ChetanUmadi,
May 2016, WeatherMonitoringUsingParachuteSatelliteCan
Sat, International Journal of Engineering Science and
Computing, Volume 6 Issue .

More Related Content

Similar to Development of Effective Crop Monitoring and Management System with Weather Reporting

Similar to Development of Effective Crop Monitoring and Management System with Weather Reporting (20)

IRJET- Iot Based Intelligent Management for Agricultural Process using Ra...
IRJET-  	  Iot Based Intelligent Management for Agricultural Process using Ra...IRJET-  	  Iot Based Intelligent Management for Agricultural Process using Ra...
IRJET- Iot Based Intelligent Management for Agricultural Process using Ra...
ย 
IRJET- Survey on Flood Management System
IRJET- Survey on Flood Management SystemIRJET- Survey on Flood Management System
IRJET- Survey on Flood Management System
ย 
IRJET- Study the Fundamental Survey of Solar based Water Management System An...
IRJET- Study the Fundamental Survey of Solar based Water Management System An...IRJET- Study the Fundamental Survey of Solar based Water Management System An...
IRJET- Study the Fundamental Survey of Solar based Water Management System An...
ย 
IRJET- Different Data Mining Techniques for Weather Prediction
IRJET-  	  Different Data Mining Techniques for Weather PredictionIRJET-  	  Different Data Mining Techniques for Weather Prediction
IRJET- Different Data Mining Techniques for Weather Prediction
ย 
IRJET- Smart Agriculture Solution using Lora and IoT
IRJET- Smart Agriculture Solution using Lora and IoTIRJET- Smart Agriculture Solution using Lora and IoT
IRJET- Smart Agriculture Solution using Lora and IoT
ย 
IRJET - Agricultural Analysis using Data Mining Techniques
IRJET - Agricultural Analysis using Data Mining TechniquesIRJET - Agricultural Analysis using Data Mining Techniques
IRJET - Agricultural Analysis using Data Mining Techniques
ย 
IRJET- Offline Location Detection and Accident Indication using Mobile Sensors
IRJET- Offline Location Detection and Accident Indication using Mobile SensorsIRJET- Offline Location Detection and Accident Indication using Mobile Sensors
IRJET- Offline Location Detection and Accident Indication using Mobile Sensors
ย 
Ijariie1172
Ijariie1172Ijariie1172
Ijariie1172
ย 
Operation of Sensor Nodes for Smart Farming and Data Networking using Wireles...
Operation of Sensor Nodes for Smart Farming and Data Networking using Wireles...Operation of Sensor Nodes for Smart Farming and Data Networking using Wireles...
Operation of Sensor Nodes for Smart Farming and Data Networking using Wireles...
ย 
IRJET- Vanet Connection Performance Analysis using GPSR Protocol
IRJET- Vanet Connection Performance Analysis using GPSR ProtocolIRJET- Vanet Connection Performance Analysis using GPSR Protocol
IRJET- Vanet Connection Performance Analysis using GPSR Protocol
ย 
How to do accurate RE forecasting & scheduling
How to do accurate RE forecasting & scheduling How to do accurate RE forecasting & scheduling
How to do accurate RE forecasting & scheduling
ย 
Load_Forecastinglfviuguuyihonrekgdbgr.pptx
Load_Forecastinglfviuguuyihonrekgdbgr.pptxLoad_Forecastinglfviuguuyihonrekgdbgr.pptx
Load_Forecastinglfviuguuyihonrekgdbgr.pptx
ย 
IRJET- IoT based Smart Irrigation System for Precision Agriculture
IRJET- IoT based Smart Irrigation System for Precision AgricultureIRJET- IoT based Smart Irrigation System for Precision Agriculture
IRJET- IoT based Smart Irrigation System for Precision Agriculture
ย 
CASE STUDY: ADMISSION PREDICTION IN ENGINEERING AND TECHNOLOGY COLLEGES
CASE STUDY: ADMISSION PREDICTION IN ENGINEERING AND TECHNOLOGY COLLEGESCASE STUDY: ADMISSION PREDICTION IN ENGINEERING AND TECHNOLOGY COLLEGES
CASE STUDY: ADMISSION PREDICTION IN ENGINEERING AND TECHNOLOGY COLLEGES
ย 
IRJET- Smart Management of Crop Cultivation using IoT and Machine Learning
IRJET- Smart Management of Crop Cultivation using IoT and Machine LearningIRJET- Smart Management of Crop Cultivation using IoT and Machine Learning
IRJET- Smart Management of Crop Cultivation using IoT and Machine Learning
ย 
Precision Agriculture Based on Wireless Sensor Network
Precision Agriculture Based on Wireless Sensor NetworkPrecision Agriculture Based on Wireless Sensor Network
Precision Agriculture Based on Wireless Sensor Network
ย 
Target Response Electrical usage Profile Clustering using Big Data
Target Response Electrical usage Profile Clustering using Big DataTarget Response Electrical usage Profile Clustering using Big Data
Target Response Electrical usage Profile Clustering using Big Data
ย 
IoT Based Smart Farming using ML.pptx
IoT Based Smart Farming using ML.pptxIoT Based Smart Farming using ML.pptx
IoT Based Smart Farming using ML.pptx
ย 
IRJET- A Fruit Quality Inspection Sytem using Faster Region Convolutional...
IRJET-  	  A Fruit Quality Inspection Sytem using Faster Region Convolutional...IRJET-  	  A Fruit Quality Inspection Sytem using Faster Region Convolutional...
IRJET- A Fruit Quality Inspection Sytem using Faster Region Convolutional...
ย 
A Survey on Smart DRIP Irrigation System
A Survey on Smart DRIP Irrigation SystemA Survey on Smart DRIP Irrigation System
A Survey on Smart DRIP Irrigation System
ย 

More from 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

Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
amitlee9823
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
ย 
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
SUHANI PANDEY
ย 

Recently uploaded (20)

ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
ย 
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
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
ย 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
ย 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
ย 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
ย 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
ย 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
ย 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.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...
ย 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
ย 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
ย 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
ย 
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
ย 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
ย 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
ย 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
ย 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
ย 

Development of Effective Crop Monitoring and Management System with Weather Reporting

  • 1. ยฉ 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 892 Development of Effective Crop Monitoring and Management System with Weather Reporting Gopinath B1, Naveen R S2, Bala Murugan M3, Neranjan B V4 1Associate Professor, Department of Electronics and Communication Engineering, Kumaraguru College of Technology[autonomous], Coimbatore, Tamil Nadu, India 2,3,4 Department of Electronics and Communication Engineering, Kumaraguru College of Technology[autonomous], Coimbatore, Tamil Nadu, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract โ€“ Hill station agriculture is a place where sudden climatic changes and crop related issues happen. Since farmers owning these hill-station farmlands are often located in down-hills which makes them more inconvenient to reach the farmland on time during a natural calamity resulting in poor crop management and thus affecting production. This paper focuses on developing a virtual environment integrated with real-time components those serve as an input/output devices and as processing device. This proposed method uses machine learning algorithms tosolvetheinconveniencesfaced mainly by the hill station farmers. This model also has a weather prediction algorithm added to the crop recommendation algorithm which is used for the precise calculation of crop recommendation that is for the unskilled new person to cultivation field. Agri rating is an additional feature for better understanding of the land. Key Words: Crop Recommendation, Weather Prediction, Agri Rating, KNN algorithm, LSTM algorithm. 1. INTRODUCTION In India, agriculture plays a crucial part in the economy. Of about 330 million hectares of geographical land in India, almost 33 percent of thelandsarepracticingagriculture.40+ percent of these agriculture lands are in hill stations. One of the major issues facing by farmers of these hill station farming is the lack of proper maintenance of crops due to their farmlands and homes are separated by a longer distance. This separation between farmlands and homes makes farmers not easier to reach the farmland during a heavy rain or other natural calamities that are constantly changing over time in hill stations. The main motive of this project is to eliminate the communication delay and thus providing an efficient management system. In this project, we proposed a machine learning model using data mining that can help the farmer to know what happens in the farmland periodically and keep them alert of the changes happening up the hill. K-Nearest Neighbor (KNN), Random Forest and Long Short-Term Memory (LSTM) are the Machine Learning Algorithms used for different purposes of the proposed model. These algorithms are discussed in brief in the upcoming sections. 2. METHODS AND MATERIALS 2.1 Algorithms A. K โ€“ Nearest Neighbor A machine learning algorithm, that is the simplest and supervised learning technique. It is the most efficient algorithm that can process a very large dataset with numerous classes (that are defined to output) and provides the new data point or provide most similar class possible from the variousclasses of the stored data. As KNNapproach is a non-parametric algorithm, it accepts no assumptions regarding data. The dataset that is imported has various classes of crops which are based on the respectiveparametersofthelandand environment. If when a crop is seeded, this system gathers the daily data of the land and keep the farmer advised by the final report. This approach facilitates both crop maintenance and crop prediction inside a single model. B. Random Forest This is a decision tree algorithm which is non-linear and also non-parametric supervised classification type. It can be used for comparing values between a largerdatasetexceptit can only provide the output from onlytwoclasses.Asforthis project, to predict the weather, the output is set to either โ€œPossibility of Rainโ€ or โ€œNo possibility of Rainโ€, hence Random Forest Algorithm is more effective as it performs well for smaller classes of output. C. Long Short-Term Memory Long Short-Term Memory, a model of RNN (Recurrent Neural Network) series that has the capacity of learning long-term dependencies. RNN is useful for short-term dependencies where as LSTM is more effective when comes to long-term. Whatsoever, LSTM uses similar structure of chains of neural network as RNN, it has its each part of the chain that are multiple layer which can interact with the other. This method is used for Agri-rating where the system can compare the land parameters and provide how goodthe land is, thru a rating scale. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 ยฉ 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 893 D. Datasets For this model to achieve the goal, three datasets are taken. The processes involved in this project are, Crop Recommendation, Rainfall Prediction and Agri-rating. For each of the model to provide best results, the amountofdata given should be valid, higher in numbers and should be comparative to one another. For Crop Recommendation, a dataset with 8 columns where 7 are parameters of the land and environment and 1 is crop that is appropriate to the values. These parameters are nitrogen,potassium,phosphorus,temperature,humidity, pH and rainfall. Totally there are 22 crops takenandforeach crop, the parameter values are taken in number of 200 For Weather/Rainfall Prediction, parameters such as month, date, average temperature, average humidity, sun visibility, average wind speed and rainfall are taken. The rainfall column is the target class that has either 0(no possibility of rain) or 1(possibility of rain). For Argi-rating, the dataset is created which holds the values of land parameter. These parameters are helpful in determining how well the land is performing according to which the land is rated by the system and provides tips to maintain the system. This dataset is more similar tothecrop recommendation dataset, in addition to previous values, air quality and moisture parameters are also added. These datasets are fed into each of the respective models and trained accordingly. For training the model, each model is provided with the test size of 0.2 (20% from dataset) respectively. The outcome accuracy is discussed later in this paper. 3. METHODOLOGY To solve the delayed communication issues facing by the hill-station farmers, this model is designed in a way to forma local area network wirelessly which can be achieved by transmitting the data over LoRa. LoRa is a Long-Range communication device that can create or form a network around it without any internet connectivity. This approach will eliminate the need of internet, whereas internet infrastructure is very much lesser in the hill-station areas. LoRa can cover up to 3 to 15 miles theoretically and can be communicated without internet. This gives the advantage of transmitting the real-time sensors data from the farmland to a certain distance where the farmersmightabletoaccessand process it even if there isnโ€™t no internet connectivity. The general model forthe communication betweenfarmlandand farmer accessible area is illustrated in the Fig -1. Fig -1: General Model Fig -2: Architecture of the proposed model Client station is the farmland where sensors like pH sensor, moisture sensor, temperatureorhumiditysensoranda LoRa transmitter are present. Local stationis theplacewheredata processing takes place for which the input is taken from the client station thru LoRa receiver. The proposed system architecture is shown in the Fig -2.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 ยฉ 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 894 4. RESULTS AND DISCUSSIONS For Machine Learning, confusion matrix is the key parameter to know how the model is performing. The confusion matrix that is obtained should be NxN matrix(N is the number of target classes). When themodel isperforming well, the diagonal elements of the matrix will be filled with integers whereas the other elements will be zero. If the model is not performingasrequired,the elementsotherthan diagonal elements will be havingsomeintegervalues,means these are the errors/miscalculations thatareoccurredin the model. Below are the figures that represent the confusion matrix of each method. Fig -3: Crop Prediction Confusion Matrix Fig -4: Rainfall Prediction & Agri Rating Confusion Matrix From the confusion matrix,wecancalculatetheaccuracy, specificity and sensitivity by the formulas. The obtained values are shown in table -1 Table -1: Results Obtained Model Algorithm Accuracy Specificity Sensitivity Crop Recommendat ion KNN 97% - - Rainfall Prediction Random Forest 85% 75% 88% Agri-rating LSTM 81% - - The performance of the LoRa transmitter is quite convincing. Data that are extracted from the sensors can be sent through LoRa but with efficiency lesserthantheoretical value. Also, while transmitting data, some data gets lost, this issue can be solved by resending the data multipletimes and making the receiver side system to wait for all the required data to be received. This may slow down the process but the outcome will be accurate. 5. CONCLUSIONS The aim of this project is to solve the communication delay that happens when the farmers are not nearer to the farmlands and to provide a maintenance system that monitors the farmlands and keeps the farmer updated.Even though the communicationproblemneededtobetakencare, the monitoring and weather prediction systems have done their functions accurately. Crop recommendation system provided the best results. FUTURE SCOPE 1. Enhancing the communication system with a high- level technology will help both open area and hill- side farmers/farming not to worry about their lands. 2. A sustainable development in the monitoring and maintenance system will escalate the production of crops to a newer level REFERENCES [1] Ashenafi Lambebo, Sasan Haghani, 2014, A Wireless Sensor Network for Environmental Monitoring of Greenhouse Gases, ASEE 2014 Zone I Conference,University of Bridgeport, Bridgpeort, CT, USA. [2] D. S. Arjun, A. Bala, V. Dwarakanath, K. S. Sampada, B. B. Prahlada Rao and H. Pasupuleti , 2015, Integrating cloud- WSN to analyze weather data and notify SaaS user alerts during weather disasters, IEEE International Advance Computing Conference (IACC), pp. 899-904. [3] Srinivasa K.G. M.S.Ramaiah. Siddiqui.N. Kumar. A, ParaSense - A Sensor Integrated Cloud Based Internet of Things Prototype for Real Time Monitoring Applications, in region10 IEEE Symposium (TENSYMP), 2015, [4] S.P.KALSI, 2008, Satellite Based Weather ForecastingIndia, in Wireless Communications and Networking Conference, WCNC-2008. [5] Gopal G, Harith B, Ritwik Raj Savyasachi ChetanUmadi, May 2016, WeatherMonitoringUsingParachuteSatelliteCan Sat, International Journal of Engineering Science and Computing, Volume 6 Issue .