SlideShare a Scribd company logo
1 of 6
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 845
Smart Management of Crop Cultivation using IOT and
Machine Learning
T Raghav Kumar1, Bhagavatula Aiswarya2, Aashish Suresh3, Drishti Jain4, Natesh Balaji5 ,
Varshini Sankaran6
1,2,3,4,5,6Student, School of Computing Science and Engineering, VIT University Chennai Campus, Tamil Nadu, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Agriculture is the basic and most important profession of our country as it balances the food requirement and also
the essential raw materials for several industries. The implementation of smart technology in agriculture practices needs to be
focused on for better land productivity. Internet of Things (IoT) technology has brought a revolution to each and every field of
common man’s life by making everything smart and intelligent. The development of Intelligent Smart Farming devices based
on IoT is day by day turning the face of agriculture production by not only enhancing it but also making it cost-effective and
reducing wastage. The aim of this paper is to propose a Novel Smart IoT based Agriculture system that can assist farmers in
crop management by getting Live Data (Temperature, Soil moisture content) for efficient environment monitoring which will
enable smart farming and increase their overall yield and quality of products. The Agriculture system proposed in this paper is
an integration of the concepts of Machine learning and IOT using an Arduino board and various sensors, through which live
data feed can be obtained and accessed online on Thingspeak.
Keywords: Agriculture, Smart farming, KNN Prediction, NodeMCU, IOT, Sensors, Machine Learning, Analytics.
1. INTRODUCTION
Internet of Things has marked its importance in all fields and the strength and adaptability of IoT has changed and
nowadays it is being used by a normal user. It has developed numerous methodologies to make our living easier and more
comfortable like smart living, e-health services, automation and even smart education. As the world is trending into new
technologies and implementations it is a necessary goal to trend up in agriculture also. The World Bank says we'll need to
produce 50% more food by 2050 if the global population continues to rise at its current pace. But the effects of climate
change could see crop yields falling by more than a quarter. So autonomous tractors, ground-based sensors, flying drones
and enclosed hydroponic farms could all help farmers produce more food, more sustainably at lower cost. Thus, the need
for smart agriculture is increasing exponentially.
To observe the growth of the crop under varying real-world conditions (e.g., soil quality, environmental conditions, etc.),
typical crop studies involve phenotyping to understand the key factors (e.g., the pH levels of soil, the rate of Nitrogen
depletion) affecting growth. Such studies are conducted in natural outdoor environmental conditions and locations where
plants are growing, by varying irrigation and the application of fertilizers/additives. Internet of Things (IoT) technologies
can lower the cost and increase the scale of such studies via the collection of related time series data from sensor
networks, spatial data from imaging sensors, and human observations recorded via mobile smart phone applications. For
example, IoT devices can help to capture the pH levels of soils and the rate of Nitrogen depletion as time-series data, and
share it among interested researchers and growers for further analysis.
The proposed model deals with predicting crop suitability by gathering information from sensors that present the
following values:
 Temperature of the environment
 Humidity of the environment
 Moisture content of soil
 Light Intensity
 Gas Presence
1.1 Existing Systems
A full fledged research was done and the following existing systems were found to show various implementations of
machine learning algorithms using IOT to retrieve accurate crop predictions.
A paper presented an approach with three recommendation systems based on past data. Since efficiency of random forest
algorithm is higher than naïve bayes and ID3, it uses random forest algorithm to predict appropriate crop based on current
NPK value of soil.[1]However random forest algorithm doesn’t deal with large number of categories in categorical variable.
Another crop rotation recommendation system is described in this paper which uses FP tree. It also provides
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 846
recommendation for appropriate fertilizers using sufficiency method.[2] However this method would put additional
pressure on soil to match its fertility with required conditions thus degrading the soil condition.
Another system proposes recommendation systems for predicting suitable crops based on NPK values of soil. [3]The
system provides the notification using SMS service which include the recommended crop. Naive bayes algorithm is used to
predict most suitable crop. However computation of naïve bayes is more complex when compared to KNN algorithm.
2. PROPOSED SYSTEM
The sensors to be used are:
 Temperature and Humidity Sensor (DHT11)
 Gas and Smoke Sensor (MQ2)
 Soil Moisture Sensor
 Light Intensity Sensor
The sensors mentioned above are added to the field for which the readings are needed to be calculated. The DHT11, MQ2,
Soil Moisture Sensor, Light Intensity Sensor sends the readings in real time to the cloud server which in which the
processing occurs. The data accumulated in the cloud is displayed to the user in a webpage. Machine Learning Algorithm(
KNN ) is used to calculate the crop which is best to grow in the particular field based on the values received at real time. A
standardized dataset containing the minimum requirements for a particular crop is maintained and is used for the
prediction of the crop. The data is also plotted in real time so that the user can get an idea as to how the current conditions
are and threshold for the crop which is predicted. The system also consists of a Virtualization Page where each data
collected from the field is plotted with respect to the time of arrival to the cloud server. The system will also send an email
informing about the condition of the crop.
2.1 ALGORITHM
KNN Clustering: k-NN is a type of instance-based learning, also called as lazy learning, where the function is only
approximated locally and all computation is put on hold until classification. The neighbours are taken from a set of objects
for which the class (for classification) or the object property value (for regression) is known. This can be thought of as the
training set for the algorithm, training step is not required as such. The training examples given as inputs are vectors in a
multidimensional feature space, each with a class label. The training phase of the algorithm consists only the feature
vectors and class labels of the training samples.
In the classification phase, k is a user-defined constant, and an unlabelled vector (a value) which is classified by assigning
the label which is most frequent among the k training samples nearest to that value point.
The reason for considering this algorithm for classification are its advantages:
 Implementation is simple.
 Classes do not have to be linearly separable in space.
 Classifier can be updated at that moment at very little cost as new instances with known classes.
 The parameter is few which are distance metric and number of k.
Fig. 1: kNN algorithm formula for calculation
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 847
Fig. 2: Cluster formation in kNN
2.2 HARDWARE COMPONENTS
NodeMCU
NodeMCU is an open source IoT platform primarily used as a mode of Internet communication. It includes firmware which
runs on the ESP8266 Wifi System on Chip, and hardware which is based on the ESP-12 module. The term "NodeMCU" is
used to refer the firmware rather than the development kits. The firmware uses the Lua or Arduino scripting language. It is
based on the eLua project, and built on the Non-OS SDK for ESP8266. It uses open source projects, such as lua-cjson, and
spiffs.
DHT11
The DHT11 is a low-cost digital temperature and humidity sensor used with Arduino products. It uses a capacitive
humidity sensor and a thermistor to measure the surrounding air, and sends a digital signal on the data pin to the Arduino
board. It is fairly simple to use, but requires careful timing to receive the data. The only downside of this sensor is that the
user can only get new data once every 2 seconds, so when using library, sensor readings can be up to 2 seconds old.
MQ2
MQ2 gas sensor can be used to detect the presence of LPG, Propane and Hydrogen, also could be used to detect Methane
and other combustible steam, with low cost and suitable for this said application. Sensor is sensitive to flammable gas and
smoke. The smoke sensors requires 5V power. Smoke sensor indicates the content of air by voltage. More smoke meaning
more voltage. A potentiometer is provided to adjust the sensitivity. Sn02 sensor is used, which is of low conductivity, when
the air is clean. But when smoke exists in air, an analog output is produced based on the concentration of smoke. The
circuit also carries a heater. Power is given to heater by the VCC and is grounded by GND from power supply. The circuit
has a variable resistor.
Soil Moisture Sensor
The Soil Moisture Sensor is a simple sensor for measuring the moisture in soil and similar plasmatic materials. The two
large exposed pads connected to chip function as probe for the sensor, acting as a variable resistor. The more water means
that is in the soil means the better the conductivity between the pads will be and will result in a lower resistance, and a
higher signal value will be out.
Light Intensity Sensor
A light sensor is a device used for measuring the intensity or brightness of light. One of the most common that can be used
when building a light sensor is a photoresistor. Photoresistors, which also called light detecting resistors are made from
cadmium sulfide cells that are sensitive to visible and near infrared light. The resistance of a cadmium sulfide cell varies
inversely with the amount of light incident upon it i.e, bright light causes a low resistance between the two leads of the cell
and low light creates a higher resistance. This module is mainly adjusted to calculate the intensity of the light from sun
falling on the field.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 848
2.3 DATASET USED
Government of Tamil Nadu under National Agricultural Development Project (NADP) have funded for establishing Tamil
Nadu Agricultural Weather Network (TAWN) by installing 385 AWS, 224 in the first phase and 161 in the second
phase.The Agro Climate Research Centre (ACRC), Directorate of Crop Management(DCM), Tamil Nadu Agricultural
University (TNAU), Coimbatore in collaboration with Department of Agriculture, Tamil Nadu established the TAWN. In the
network, numerous types of agricultural related weather parameters from 385 AWS are collected at hourly interval and
hosted in this website.
This data is taken as training set for the kNN machine which is setup, which would use this data to form the k-Neighbour
clusters. The real-time data points are then put in the kNN machine to determine the nearest neighbour which would yield
the result of crop that would be optimum to grow on that field during that period of time.
2.4 METHODOLOGY
The main aim of the suggested system is to take various sensor readings from the soil and predict the type of crop that is
the most suitable to grow for that particular type of soil. The project has three main components:
i) The Front End- A website, which is used to access the Dashboard displaying the values from the sensor, the
Visualization of the data that is accumulated and the Crop Prediction, where the user is suggested with the
suitable crop by the given parameters.
ii) Firebase Cloud- The data taken from the sensors are sent and stored in the Firebase cloud interface from which
the data is read and analyzed.
iii) The Hardware- The different sensors which are used to collect various data from the soil and its environment are
connected to the
NodeMCU module which sends the data to the Firebase cloud. The data is sent at fixed intervals to avoid overloading the
cloud.
Thus, the data is collected from the sensors and stored in the Firebase cloud. This data is accessed using a website, where
data can be analyzed using Visualizations and also crop suitables for that particular soil can be predicted. The real time
readings can also be viewed along with the average reading.
Fig. 3: Front end
3. CONCLUSIONS
The system was programmed to be trained from the given dataset by the Machine Learning algorithm from the dataset
given and the accuracies are listed below. The results were noted.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 849
Table 1. Values obtained from a soil instance(in real time).
Temperature Humidity Soil Moisture N-P-K
29 59 90 2-1-1
Table 2. The threshold value for the crop predicted.
Crop Temperature Humidity Soil Moisture N-P-K
Rice 27.5 70 75 2-1-1
Thus, by using the real time values obtained from the field and running the algorithm on them, the most suitable crop for a
particular land at a given time is predicted.
Fig. 4: Threshold vs actual crop value
The proposed system can be of immense use to farmers in the following ways:
 Through the web application, the farmer can easily send available soil N-P-K content as well as the crop and soil
variety in the web application portal.
 The website can be easily accessed by farmers from any location and at any time and allows end users to remotely
monitor and control their connected farm.
 Smart Agricultural practices have great potential to generate additional income. This model is particularly
profitable with low initial investments.
 Furthermore, since the system provides greater climate adaptation and mitigation, when considering these factors
the overall benefit of adopting the model is even greater.
REFERENCES
1) Shridhar Mhaiskar , Chinmay Patil , Piyush Wadhai , Aniket Patil , Vaishali Deshmukh, “A Survey on Predicting
Suitable Crops for Cultivation Using IoT”, International Journal of Innovative Research in Computer and
Communication Engineering.
2) Komal Bodake, Rutuja Ghate , Himanshi Doshi , Priyanka Jadhav and Balasaheb Tarle, “Soil based Fertilizer
Recommendation System using Internet of Things”, MVP Journal of Engineering Sciences, Vol 1(1).
3) Kiran Shinde, Jerrin Andrei, AmeyOke, “Web Based Recommendation System for Farmers”,
International Journal on Recent and Innovation Trends in Computing and Communication 2014 ISSN: 2321 -8169
,Volume: 3 Issue: 3,2014.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 850
4) Daryl H. Hepting, Timothy Maciag, Harvey Hill,”Web-Based Support of Crop Selection for Climate Adaptation”,
45th Hawaii International Conference on System Sciences, 2012.
5) Lokesh.K, Shakti.J , Sneha Wilson , Tharini.M.S, ”Automated crop prediction based on efficient soil
nutrient estimation using sensor network”, National Conference on Product Design (NCPD 2016), July 2016.
6) Patil, V. C., Al-Gaadi, K. A., Biradar, D. P., & Rangaswamy, M. (2012). Internet of things (Iot) and cloud computing
for agriculture: An overview.Proceedings of Agro-Informatics and Precision Agriculture (AIPA 2012), India, 292-
296.
7) http://www.ibef.org/industry/agricultur e-india.aspx
8) https://mkhari21.wordpress.com/2012/06/11/what-are-the-reasons-for-agricultural-gro wth-decline-in-indias-
gdp/
9) Patil, V. C., Al-Gaadi, K. A., Biradar, D. P., & Rangaswamy, M. (2012). Internet of things (Iot) and cloud computing
for agriculture: An overview.Proceedings of Agro-Informatics and Precision Agriculture (AIPA 2012), India, 292-
296.

More Related Content

What's hot

Real-time monitoring system for weather and air pollutant measurement with HT...
Real-time monitoring system for weather and air pollutant measurement with HT...Real-time monitoring system for weather and air pollutant measurement with HT...
Real-time monitoring system for weather and air pollutant measurement with HT...journalBEEI
 
Wireless Sensor Network for AgriTech Applications
Wireless Sensor Network for AgriTech Applications Wireless Sensor Network for AgriTech Applications
Wireless Sensor Network for AgriTech Applications IoTForum | TiE Bangalore
 
IRJET- Air Quality Monitoring System for City
IRJET-	 Air Quality Monitoring System for CityIRJET-	 Air Quality Monitoring System for City
IRJET- Air Quality Monitoring System for CityIRJET Journal
 
IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...
IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...
IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...IRJET Journal
 
IoT based temperature and humidity monitoring framework
IoT based temperature and humidity monitoring frameworkIoT based temperature and humidity monitoring framework
IoT based temperature and humidity monitoring frameworkjournalBEEI
 
IRJET- Raspberry-Pi Based Automated Greenhouse
IRJET- Raspberry-Pi Based Automated GreenhouseIRJET- Raspberry-Pi Based Automated Greenhouse
IRJET- Raspberry-Pi Based Automated GreenhouseIRJET Journal
 
IRJET- Warehouse Management using Iot
IRJET-  	  Warehouse Management using IotIRJET-  	  Warehouse Management using Iot
IRJET- Warehouse Management using IotIRJET Journal
 
IRJET- Advanced Guiding Tool for the Selection of Crops
IRJET- Advanced Guiding Tool for the Selection of CropsIRJET- Advanced Guiding Tool for the Selection of Crops
IRJET- Advanced Guiding Tool for the Selection of CropsIRJET Journal
 
IRJET- Smart Weather Monitoring and Real Time Alert System using IoT
IRJET- Smart Weather Monitoring and Real Time Alert System using IoTIRJET- Smart Weather Monitoring and Real Time Alert System using IoT
IRJET- Smart Weather Monitoring and Real Time Alert System using IoTIRJET Journal
 
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoTIRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoTIRJET Journal
 
SMART DUSTBINS FOR SMART CITIES
SMART DUSTBINS FOR SMART CITIESSMART DUSTBINS FOR SMART CITIES
SMART DUSTBINS FOR SMART CITIESvivatechijri
 
IRJET- Talking Plant using IoT and Machine Learning
IRJET-  	  Talking Plant using IoT and Machine LearningIRJET-  	  Talking Plant using IoT and Machine Learning
IRJET- Talking Plant using IoT and Machine LearningIRJET Journal
 
IRJET- Smart Recipe-An Innovative Way to Cook
IRJET-  	  Smart Recipe-An Innovative Way to CookIRJET-  	  Smart Recipe-An Innovative Way to Cook
IRJET- Smart Recipe-An Innovative Way to CookIRJET Journal
 
IRJET-Experimental Investigation on the Effect of TiO2 Particles on Mortars
IRJET-Experimental Investigation on the Effect of TiO2 Particles on MortarsIRJET-Experimental Investigation on the Effect of TiO2 Particles on Mortars
IRJET-Experimental Investigation on the Effect of TiO2 Particles on MortarsIRJET Journal
 
Smart Fire Detection System using Image Processing
Smart Fire Detection System using Image ProcessingSmart Fire Detection System using Image Processing
Smart Fire Detection System using Image ProcessingIJSRD
 
Smart Poly-House Surveillance using IOE
Smart Poly-House Surveillance using IOESmart Poly-House Surveillance using IOE
Smart Poly-House Surveillance using IOEIRJET Journal
 
The development of supervisory system for electricity control in smgg, guntur...
The development of supervisory system for electricity control in smgg, guntur...The development of supervisory system for electricity control in smgg, guntur...
The development of supervisory system for electricity control in smgg, guntur...eSAT Journals
 
IRJET- Smart Agriculture Monitoring System Based on Internet of Things
IRJET- Smart Agriculture Monitoring System Based on Internet of ThingsIRJET- Smart Agriculture Monitoring System Based on Internet of Things
IRJET- Smart Agriculture Monitoring System Based on Internet of ThingsIRJET Journal
 

What's hot (20)

Real-time monitoring system for weather and air pollutant measurement with HT...
Real-time monitoring system for weather and air pollutant measurement with HT...Real-time monitoring system for weather and air pollutant measurement with HT...
Real-time monitoring system for weather and air pollutant measurement with HT...
 
Wireless Sensor Network for AgriTech Applications
Wireless Sensor Network for AgriTech Applications Wireless Sensor Network for AgriTech Applications
Wireless Sensor Network for AgriTech Applications
 
IRJET- Air Quality Monitoring System for City
IRJET-	 Air Quality Monitoring System for CityIRJET-	 Air Quality Monitoring System for City
IRJET- Air Quality Monitoring System for City
 
IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...
IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...
IRJET-Automated Water Irrigation System using Arduino Uno and Raspberry Pi wi...
 
IoT based temperature and humidity monitoring framework
IoT based temperature and humidity monitoring frameworkIoT based temperature and humidity monitoring framework
IoT based temperature and humidity monitoring framework
 
IRJET- Raspberry-Pi Based Automated Greenhouse
IRJET- Raspberry-Pi Based Automated GreenhouseIRJET- Raspberry-Pi Based Automated Greenhouse
IRJET- Raspberry-Pi Based Automated Greenhouse
 
Data loggers
Data loggers Data loggers
Data loggers
 
IRJET- Warehouse Management using Iot
IRJET-  	  Warehouse Management using IotIRJET-  	  Warehouse Management using Iot
IRJET- Warehouse Management using Iot
 
Ijecce 4317 final
Ijecce 4317 finalIjecce 4317 final
Ijecce 4317 final
 
IRJET- Advanced Guiding Tool for the Selection of Crops
IRJET- Advanced Guiding Tool for the Selection of CropsIRJET- Advanced Guiding Tool for the Selection of Crops
IRJET- Advanced Guiding Tool for the Selection of Crops
 
IRJET- Smart Weather Monitoring and Real Time Alert System using IoT
IRJET- Smart Weather Monitoring and Real Time Alert System using IoTIRJET- Smart Weather Monitoring and Real Time Alert System using IoT
IRJET- Smart Weather Monitoring and Real Time Alert System using IoT
 
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoTIRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoT
 
SMART DUSTBINS FOR SMART CITIES
SMART DUSTBINS FOR SMART CITIESSMART DUSTBINS FOR SMART CITIES
SMART DUSTBINS FOR SMART CITIES
 
IRJET- Talking Plant using IoT and Machine Learning
IRJET-  	  Talking Plant using IoT and Machine LearningIRJET-  	  Talking Plant using IoT and Machine Learning
IRJET- Talking Plant using IoT and Machine Learning
 
IRJET- Smart Recipe-An Innovative Way to Cook
IRJET-  	  Smart Recipe-An Innovative Way to CookIRJET-  	  Smart Recipe-An Innovative Way to Cook
IRJET- Smart Recipe-An Innovative Way to Cook
 
IRJET-Experimental Investigation on the Effect of TiO2 Particles on Mortars
IRJET-Experimental Investigation on the Effect of TiO2 Particles on MortarsIRJET-Experimental Investigation on the Effect of TiO2 Particles on Mortars
IRJET-Experimental Investigation on the Effect of TiO2 Particles on Mortars
 
Smart Fire Detection System using Image Processing
Smart Fire Detection System using Image ProcessingSmart Fire Detection System using Image Processing
Smart Fire Detection System using Image Processing
 
Smart Poly-House Surveillance using IOE
Smart Poly-House Surveillance using IOESmart Poly-House Surveillance using IOE
Smart Poly-House Surveillance using IOE
 
The development of supervisory system for electricity control in smgg, guntur...
The development of supervisory system for electricity control in smgg, guntur...The development of supervisory system for electricity control in smgg, guntur...
The development of supervisory system for electricity control in smgg, guntur...
 
IRJET- Smart Agriculture Monitoring System Based on Internet of Things
IRJET- Smart Agriculture Monitoring System Based on Internet of ThingsIRJET- Smart Agriculture Monitoring System Based on Internet of Things
IRJET- Smart Agriculture Monitoring System Based on Internet of Things
 

Similar to IRJET- Smart Management of Crop Cultivation using IoT and Machine Learning

IRJET- Agricultural Parameters Monitoring System using IoT
IRJET- Agricultural Parameters Monitoring System using IoTIRJET- Agricultural Parameters Monitoring System using IoT
IRJET- Agricultural Parameters Monitoring System using IoTIRJET Journal
 
IoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry Pi
IoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry PiIoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry Pi
IoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry PiIRJET Journal
 
Crop Prediction using IoT & Machine Learning Algorithm
Crop Prediction using IoT & Machine Learning AlgorithmCrop Prediction using IoT & Machine Learning Algorithm
Crop Prediction using IoT & Machine Learning AlgorithmIRJET Journal
 
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 IoTIRJET 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
 
IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...
IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...
IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...IRJET Journal
 
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOTA RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOTIRJET Journal
 
Smart real time embedded arduino based data acquisition system
Smart real time embedded arduino based data acquisition systemSmart real time embedded arduino based data acquisition system
Smart real time embedded arduino based data acquisition systemeSAT Journals
 
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 Journal
 
Smart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningSmart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningIRJET Journal
 
Smart Farming: A Machine Learning and IoT Approach
Smart Farming: A Machine Learning and IoT ApproachSmart Farming: A Machine Learning and IoT Approach
Smart Farming: A Machine Learning and IoT ApproachIRJET Journal
 
AI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN Model
AI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN ModelAI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN Model
AI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN ModelIRJET Journal
 
IRJET- Soil, Water and Air Quality Monitoring System using IoT
IRJET- Soil, Water and Air Quality Monitoring System using IoTIRJET- Soil, Water and Air Quality Monitoring System using IoT
IRJET- Soil, Water and Air Quality Monitoring System using IoTIRJET Journal
 
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...ijtsrd
 
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 AgricultureIRJET Journal
 
IRJET- Cloud based Intelligent Plant Monitoring Device
IRJET- Cloud based Intelligent Plant Monitoring DeviceIRJET- Cloud based Intelligent Plant Monitoring Device
IRJET- Cloud based Intelligent Plant Monitoring DeviceIRJET Journal
 
IRJET - A Study on Smart Irrigation System using IoT & Machine Learning
IRJET -  	  A Study on Smart Irrigation System using IoT & Machine LearningIRJET -  	  A Study on Smart Irrigation System using IoT & Machine Learning
IRJET - A Study on Smart Irrigation System using IoT & Machine LearningIRJET Journal
 
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROIDAGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROIDIRJET Journal
 
Smart Farming Using Machine Learning Algorithms
Smart Farming Using Machine Learning AlgorithmsSmart Farming Using Machine Learning Algorithms
Smart Farming Using Machine Learning AlgorithmsIRJET Journal
 
Policing of the Environment by using an Integrated system
Policing of the Environment by using an Integrated systemPolicing of the Environment by using an Integrated system
Policing of the Environment by using an Integrated systemIRJET Journal
 

Similar to IRJET- Smart Management of Crop Cultivation using IoT and Machine Learning (20)

IRJET- Agricultural Parameters Monitoring System using IoT
IRJET- Agricultural Parameters Monitoring System using IoTIRJET- Agricultural Parameters Monitoring System using IoT
IRJET- Agricultural Parameters Monitoring System using IoT
 
IoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry Pi
IoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry PiIoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry Pi
IoT Based Agriculture Monitoring and Smart Irrigation System using Raspberry Pi
 
Crop Prediction using IoT & Machine Learning Algorithm
Crop Prediction using IoT & Machine Learning AlgorithmCrop Prediction using IoT & Machine Learning Algorithm
Crop Prediction using IoT & Machine Learning Algorithm
 
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- 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
 
IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...
IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...
IRJET- Design and Implementation of IoT based Greenhouse Environment Monitori...
 
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOTA RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
 
Smart real time embedded arduino based data acquisition system
Smart real time embedded arduino based data acquisition systemSmart real time embedded arduino based data acquisition system
Smart real time embedded arduino based data acquisition system
 
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...
 
Smart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningSmart Greenhouse using Machine Learning
Smart Greenhouse using Machine Learning
 
Smart Farming: A Machine Learning and IoT Approach
Smart Farming: A Machine Learning and IoT ApproachSmart Farming: A Machine Learning and IoT Approach
Smart Farming: A Machine Learning and IoT Approach
 
AI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN Model
AI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN ModelAI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN Model
AI Based Smart Agriculture – Leaf Disease Prediction Using Optimized CNN Model
 
IRJET- Soil, Water and Air Quality Monitoring System using IoT
IRJET- Soil, Water and Air Quality Monitoring System using IoTIRJET- Soil, Water and Air Quality Monitoring System using IoT
IRJET- Soil, Water and Air Quality Monitoring System using IoT
 
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
 
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
 
IRJET- Cloud based Intelligent Plant Monitoring Device
IRJET- Cloud based Intelligent Plant Monitoring DeviceIRJET- Cloud based Intelligent Plant Monitoring Device
IRJET- Cloud based Intelligent Plant Monitoring Device
 
IRJET - A Study on Smart Irrigation System using IoT & Machine Learning
IRJET -  	  A Study on Smart Irrigation System using IoT & Machine LearningIRJET -  	  A Study on Smart Irrigation System using IoT & Machine Learning
IRJET - A Study on Smart Irrigation System using IoT & Machine Learning
 
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROIDAGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
 
Smart Farming Using Machine Learning Algorithms
Smart Farming Using Machine Learning AlgorithmsSmart Farming Using Machine Learning Algorithms
Smart Farming Using Machine Learning Algorithms
 
Policing of the Environment by using an Integrated system
Policing of the Environment by using an Integrated systemPolicing of the Environment by using an Integrated system
Policing of the Environment by using an Integrated system
 

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

Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
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
 
(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
 
(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
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
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
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
(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
 
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
 
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
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 

Recently uploaded (20)

Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
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...
 
(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
 
(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...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
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
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
(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
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
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 )
 
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
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 

IRJET- Smart Management of Crop Cultivation using IoT and Machine Learning

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 845 Smart Management of Crop Cultivation using IOT and Machine Learning T Raghav Kumar1, Bhagavatula Aiswarya2, Aashish Suresh3, Drishti Jain4, Natesh Balaji5 , Varshini Sankaran6 1,2,3,4,5,6Student, School of Computing Science and Engineering, VIT University Chennai Campus, Tamil Nadu, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Agriculture is the basic and most important profession of our country as it balances the food requirement and also the essential raw materials for several industries. The implementation of smart technology in agriculture practices needs to be focused on for better land productivity. Internet of Things (IoT) technology has brought a revolution to each and every field of common man’s life by making everything smart and intelligent. The development of Intelligent Smart Farming devices based on IoT is day by day turning the face of agriculture production by not only enhancing it but also making it cost-effective and reducing wastage. The aim of this paper is to propose a Novel Smart IoT based Agriculture system that can assist farmers in crop management by getting Live Data (Temperature, Soil moisture content) for efficient environment monitoring which will enable smart farming and increase their overall yield and quality of products. The Agriculture system proposed in this paper is an integration of the concepts of Machine learning and IOT using an Arduino board and various sensors, through which live data feed can be obtained and accessed online on Thingspeak. Keywords: Agriculture, Smart farming, KNN Prediction, NodeMCU, IOT, Sensors, Machine Learning, Analytics. 1. INTRODUCTION Internet of Things has marked its importance in all fields and the strength and adaptability of IoT has changed and nowadays it is being used by a normal user. It has developed numerous methodologies to make our living easier and more comfortable like smart living, e-health services, automation and even smart education. As the world is trending into new technologies and implementations it is a necessary goal to trend up in agriculture also. The World Bank says we'll need to produce 50% more food by 2050 if the global population continues to rise at its current pace. But the effects of climate change could see crop yields falling by more than a quarter. So autonomous tractors, ground-based sensors, flying drones and enclosed hydroponic farms could all help farmers produce more food, more sustainably at lower cost. Thus, the need for smart agriculture is increasing exponentially. To observe the growth of the crop under varying real-world conditions (e.g., soil quality, environmental conditions, etc.), typical crop studies involve phenotyping to understand the key factors (e.g., the pH levels of soil, the rate of Nitrogen depletion) affecting growth. Such studies are conducted in natural outdoor environmental conditions and locations where plants are growing, by varying irrigation and the application of fertilizers/additives. Internet of Things (IoT) technologies can lower the cost and increase the scale of such studies via the collection of related time series data from sensor networks, spatial data from imaging sensors, and human observations recorded via mobile smart phone applications. For example, IoT devices can help to capture the pH levels of soils and the rate of Nitrogen depletion as time-series data, and share it among interested researchers and growers for further analysis. The proposed model deals with predicting crop suitability by gathering information from sensors that present the following values:  Temperature of the environment  Humidity of the environment  Moisture content of soil  Light Intensity  Gas Presence 1.1 Existing Systems A full fledged research was done and the following existing systems were found to show various implementations of machine learning algorithms using IOT to retrieve accurate crop predictions. A paper presented an approach with three recommendation systems based on past data. Since efficiency of random forest algorithm is higher than naïve bayes and ID3, it uses random forest algorithm to predict appropriate crop based on current NPK value of soil.[1]However random forest algorithm doesn’t deal with large number of categories in categorical variable. Another crop rotation recommendation system is described in this paper which uses FP tree. It also provides
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 846 recommendation for appropriate fertilizers using sufficiency method.[2] However this method would put additional pressure on soil to match its fertility with required conditions thus degrading the soil condition. Another system proposes recommendation systems for predicting suitable crops based on NPK values of soil. [3]The system provides the notification using SMS service which include the recommended crop. Naive bayes algorithm is used to predict most suitable crop. However computation of naïve bayes is more complex when compared to KNN algorithm. 2. PROPOSED SYSTEM The sensors to be used are:  Temperature and Humidity Sensor (DHT11)  Gas and Smoke Sensor (MQ2)  Soil Moisture Sensor  Light Intensity Sensor The sensors mentioned above are added to the field for which the readings are needed to be calculated. The DHT11, MQ2, Soil Moisture Sensor, Light Intensity Sensor sends the readings in real time to the cloud server which in which the processing occurs. The data accumulated in the cloud is displayed to the user in a webpage. Machine Learning Algorithm( KNN ) is used to calculate the crop which is best to grow in the particular field based on the values received at real time. A standardized dataset containing the minimum requirements for a particular crop is maintained and is used for the prediction of the crop. The data is also plotted in real time so that the user can get an idea as to how the current conditions are and threshold for the crop which is predicted. The system also consists of a Virtualization Page where each data collected from the field is plotted with respect to the time of arrival to the cloud server. The system will also send an email informing about the condition of the crop. 2.1 ALGORITHM KNN Clustering: k-NN is a type of instance-based learning, also called as lazy learning, where the function is only approximated locally and all computation is put on hold until classification. The neighbours are taken from a set of objects for which the class (for classification) or the object property value (for regression) is known. This can be thought of as the training set for the algorithm, training step is not required as such. The training examples given as inputs are vectors in a multidimensional feature space, each with a class label. The training phase of the algorithm consists only the feature vectors and class labels of the training samples. In the classification phase, k is a user-defined constant, and an unlabelled vector (a value) which is classified by assigning the label which is most frequent among the k training samples nearest to that value point. The reason for considering this algorithm for classification are its advantages:  Implementation is simple.  Classes do not have to be linearly separable in space.  Classifier can be updated at that moment at very little cost as new instances with known classes.  The parameter is few which are distance metric and number of k. Fig. 1: kNN algorithm formula for calculation
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 847 Fig. 2: Cluster formation in kNN 2.2 HARDWARE COMPONENTS NodeMCU NodeMCU is an open source IoT platform primarily used as a mode of Internet communication. It includes firmware which runs on the ESP8266 Wifi System on Chip, and hardware which is based on the ESP-12 module. The term "NodeMCU" is used to refer the firmware rather than the development kits. The firmware uses the Lua or Arduino scripting language. It is based on the eLua project, and built on the Non-OS SDK for ESP8266. It uses open source projects, such as lua-cjson, and spiffs. DHT11 The DHT11 is a low-cost digital temperature and humidity sensor used with Arduino products. It uses a capacitive humidity sensor and a thermistor to measure the surrounding air, and sends a digital signal on the data pin to the Arduino board. It is fairly simple to use, but requires careful timing to receive the data. The only downside of this sensor is that the user can only get new data once every 2 seconds, so when using library, sensor readings can be up to 2 seconds old. MQ2 MQ2 gas sensor can be used to detect the presence of LPG, Propane and Hydrogen, also could be used to detect Methane and other combustible steam, with low cost and suitable for this said application. Sensor is sensitive to flammable gas and smoke. The smoke sensors requires 5V power. Smoke sensor indicates the content of air by voltage. More smoke meaning more voltage. A potentiometer is provided to adjust the sensitivity. Sn02 sensor is used, which is of low conductivity, when the air is clean. But when smoke exists in air, an analog output is produced based on the concentration of smoke. The circuit also carries a heater. Power is given to heater by the VCC and is grounded by GND from power supply. The circuit has a variable resistor. Soil Moisture Sensor The Soil Moisture Sensor is a simple sensor for measuring the moisture in soil and similar plasmatic materials. The two large exposed pads connected to chip function as probe for the sensor, acting as a variable resistor. The more water means that is in the soil means the better the conductivity between the pads will be and will result in a lower resistance, and a higher signal value will be out. Light Intensity Sensor A light sensor is a device used for measuring the intensity or brightness of light. One of the most common that can be used when building a light sensor is a photoresistor. Photoresistors, which also called light detecting resistors are made from cadmium sulfide cells that are sensitive to visible and near infrared light. The resistance of a cadmium sulfide cell varies inversely with the amount of light incident upon it i.e, bright light causes a low resistance between the two leads of the cell and low light creates a higher resistance. This module is mainly adjusted to calculate the intensity of the light from sun falling on the field.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 848 2.3 DATASET USED Government of Tamil Nadu under National Agricultural Development Project (NADP) have funded for establishing Tamil Nadu Agricultural Weather Network (TAWN) by installing 385 AWS, 224 in the first phase and 161 in the second phase.The Agro Climate Research Centre (ACRC), Directorate of Crop Management(DCM), Tamil Nadu Agricultural University (TNAU), Coimbatore in collaboration with Department of Agriculture, Tamil Nadu established the TAWN. In the network, numerous types of agricultural related weather parameters from 385 AWS are collected at hourly interval and hosted in this website. This data is taken as training set for the kNN machine which is setup, which would use this data to form the k-Neighbour clusters. The real-time data points are then put in the kNN machine to determine the nearest neighbour which would yield the result of crop that would be optimum to grow on that field during that period of time. 2.4 METHODOLOGY The main aim of the suggested system is to take various sensor readings from the soil and predict the type of crop that is the most suitable to grow for that particular type of soil. The project has three main components: i) The Front End- A website, which is used to access the Dashboard displaying the values from the sensor, the Visualization of the data that is accumulated and the Crop Prediction, where the user is suggested with the suitable crop by the given parameters. ii) Firebase Cloud- The data taken from the sensors are sent and stored in the Firebase cloud interface from which the data is read and analyzed. iii) The Hardware- The different sensors which are used to collect various data from the soil and its environment are connected to the NodeMCU module which sends the data to the Firebase cloud. The data is sent at fixed intervals to avoid overloading the cloud. Thus, the data is collected from the sensors and stored in the Firebase cloud. This data is accessed using a website, where data can be analyzed using Visualizations and also crop suitables for that particular soil can be predicted. The real time readings can also be viewed along with the average reading. Fig. 3: Front end 3. CONCLUSIONS The system was programmed to be trained from the given dataset by the Machine Learning algorithm from the dataset given and the accuracies are listed below. The results were noted.
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 849 Table 1. Values obtained from a soil instance(in real time). Temperature Humidity Soil Moisture N-P-K 29 59 90 2-1-1 Table 2. The threshold value for the crop predicted. Crop Temperature Humidity Soil Moisture N-P-K Rice 27.5 70 75 2-1-1 Thus, by using the real time values obtained from the field and running the algorithm on them, the most suitable crop for a particular land at a given time is predicted. Fig. 4: Threshold vs actual crop value The proposed system can be of immense use to farmers in the following ways:  Through the web application, the farmer can easily send available soil N-P-K content as well as the crop and soil variety in the web application portal.  The website can be easily accessed by farmers from any location and at any time and allows end users to remotely monitor and control their connected farm.  Smart Agricultural practices have great potential to generate additional income. This model is particularly profitable with low initial investments.  Furthermore, since the system provides greater climate adaptation and mitigation, when considering these factors the overall benefit of adopting the model is even greater. REFERENCES 1) Shridhar Mhaiskar , Chinmay Patil , Piyush Wadhai , Aniket Patil , Vaishali Deshmukh, “A Survey on Predicting Suitable Crops for Cultivation Using IoT”, International Journal of Innovative Research in Computer and Communication Engineering. 2) Komal Bodake, Rutuja Ghate , Himanshi Doshi , Priyanka Jadhav and Balasaheb Tarle, “Soil based Fertilizer Recommendation System using Internet of Things”, MVP Journal of Engineering Sciences, Vol 1(1). 3) Kiran Shinde, Jerrin Andrei, AmeyOke, “Web Based Recommendation System for Farmers”, International Journal on Recent and Innovation Trends in Computing and Communication 2014 ISSN: 2321 -8169 ,Volume: 3 Issue: 3,2014.
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 850 4) Daryl H. Hepting, Timothy Maciag, Harvey Hill,”Web-Based Support of Crop Selection for Climate Adaptation”, 45th Hawaii International Conference on System Sciences, 2012. 5) Lokesh.K, Shakti.J , Sneha Wilson , Tharini.M.S, ”Automated crop prediction based on efficient soil nutrient estimation using sensor network”, National Conference on Product Design (NCPD 2016), July 2016. 6) Patil, V. C., Al-Gaadi, K. A., Biradar, D. P., & Rangaswamy, M. (2012). Internet of things (Iot) and cloud computing for agriculture: An overview.Proceedings of Agro-Informatics and Precision Agriculture (AIPA 2012), India, 292- 296. 7) http://www.ibef.org/industry/agricultur e-india.aspx 8) https://mkhari21.wordpress.com/2012/06/11/what-are-the-reasons-for-agricultural-gro wth-decline-in-indias- gdp/ 9) Patil, V. C., Al-Gaadi, K. A., Biradar, D. P., & Rangaswamy, M. (2012). Internet of things (Iot) and cloud computing for agriculture: An overview.Proceedings of Agro-Informatics and Precision Agriculture (AIPA 2012), India, 292- 296.