Вы находитесь на странице: 1из 3

Krishak-Help

SGT University
Naman Mishra Gurugram,Haryana
Dept. of Computer Science & namanmishra.nm5@gmail.com
Engineering

Abstract—This project is an appproach to optimise the profit- the geographical region of areas mutually bordering Haryana,
expense ratio of farmers to some extent. The general idea behind Punjab, Madhya Pradesh, Uttar Pradesh and Delhi & NCR.
this solution is to optimise the quantity of fertilizers needed for a
given crop using data-analytics; therfore, causing a drop in the III. HOW THE SOLUTION IS IMPLEMENTED IN TH SOFTWARE
overall expense. (Abstract) The dataset from the research paper mentioned in previous
section is first ran through a regression testing algorithm to
Keywords—data-analytics, machine learning, regression, find out the mathematical relationship between the different
statistics. nutrients from different fertilizer quantities and the final yield
of the desired crop.
I. INTRODUCTION
The farming practices implemented in our country is After the equations are derieved, the next task is to take a
greatly governed by traditions, conventions, past specific fertilizer brands, the efficiency of which is known to
experiences and a little guesswork. This although not causes give a standard output. This project uses the fertilizers made
by IIFCO as it’s standard. The next task of the project is pretty
much problems for farmers as far as growing their crops is
straight-forward. Build a user interface so that any user with a
concerned but it doesn’t fully utilize the input that a farmer little technical skill can interact with the software. The final
puts in their land. task is to give the output in such a way that it can be printed
The Krishak-Help software is designed as an approach in out for further use. We are using text file system for this
solving this specific issue with the agriculture. The basic purpose.
general idea behind this software is using past data about the
factors affecting the crop prior and just after seeding, A. Objectives of the Project
quantity and expense of fertilizers required to grow a crop The primary goal of this project is to help the farmers by
and using statistical techniques to give the approximate cost optimizing their profit-expense ratio of farming. The
of fertilizers that the farmer will need to carry out for secondary goal is to reduce the practice of stubble burning in
farming a particular crop. by the farmers.
B. Units
II. COMPARISON BETWEEN AVAILABLE SOLUTIONS AND THIS  The unit of area of farm-land is taken in
SOFTWARE hectares(unless specified).
A. The Conventional Methodologies  All the mass measurements are done in
The total cost of fertilizers required to grow a target yield kilograms(unless specified).
of a particular crop is the last thing a farmer enquires about.  All costs are measured in Indian National
Generally, a farmer buys the soil nutrients as per guesswork Rupees(unless specified).
and available knowledge. There are experts for telling the
quantity of fertilizers and other chemicals that are required, but C. Equations
their opinion may be biased due to many factors like There are two types of equations that are used in this
unavailability of the complete knowledge of the soil condition software. First set of equations can be classified on the basis
of the farmable land. Even though reliable soil tests are of crops.
available, very few farmers are willing to go through getting
their farmland’s soil tested and waiting for an appointment There are two sets of equations, one set for rice crop and
with the experts for finding out the required fertilizers for their other set is for wheat crop.
farm. The set of equations for rice are given below :
B. The Working of Krishak-Help fnitrogen = float(4.93*target) - float((47*snitrogen)/100)
The Krishak-Help uses data-analytics and regression
[1]
employed to a dataset ranging over four decades collected by
fphosphorous = float(4.48*target) - float(7.82*sphosphorous)
Indian Institute of Soil Sciences, Bhopal for making a crop-
wise recommendation system. For the sake of simplicity, only
two crops;i.e; wheat and rice are selected for r
fpotassium = float(2.31*target) - float((21*spotassium)/100)

Here, snitrogen = Value of nitrogen found during soil test


spotassium = Value of potassium found during soil test
sphosphorous = Value of phosphorous found during soil test
The equations for wheat crop is further divided based on
whether Farm Yield Manure is available or not. The first set
of equations will be employed when FYM is available is as
follows :-
fnitrogen = float(3.85*target) - float((41*snitrogen)/100) -
float(1.64*50)
#FYM contains 0.5% Nitrogen. So Nitrogen content per 10
tonnes of FYM is 50 kilograms.

fphosphorous = float(2.78*target) - float(4.12*sphosphorous)


- float(1.72*20)
#FYM contains 0.2% Phosphorous. So Phosphorous content
per 10 tonnes of FYM is 20 kilograms.

fpotassium = float(2.04*target) - float(29*spotassium) -


float((88*35)/100)
#FYM contains 0.2% Potassium. So Potassium content per 10
tonnes of FYM is 35 kilograms.
If FYM is not available, these set of equations will be used :-
fnitrogen = float(5.31*target) - float((51*snitrogen)/100)

fphosphorous = float(3.45*target) - float(5.55*sphosphorous)

fpotassium = float(2.75*target) - float((32*spotassium)/100)

if fpotassium <= 0: then, fpotassium = 10

if fphosphorous <= 0: then, fphosphorous = 10


IV. SAMPLE SCREENSHOTS OF THE SOFTWARE
The Graphical User Interface :
CONCLUSION :
The costs that are necessary for agriculture include the cost of
preparing the land, cost of planting the seeds, cost of
irrigation, harvesting costs, etc. Most of these costs can be
reduced using technology like smart water irrigation system,
and so on. This paper focuses on reducing costs of buying
fertilizers for the crops while maximizing the output yield.

Вам также может понравиться