Soil Classification and Fertilizer Recommendation using WEKA

Size: px
Start display at page:

Download "Soil Classification and Fertilizer Recommendation using WEKA"

Transcription

1 Soil Classification and Fertilizer Recommendation using WEKA Suman 1, Bharat Bhushan Naib 2 1 Research Scholar, CSE, P.D.M. College of Engineering, Bahadurgarh, Haryana (India) sumansehrawat121@gmail.com 2 Assistant Professor, CSE, P.D.M. College of Engineering, Bahadurgarh, Haryana (India) bharatnaib@gmail.com Abstract Agriculture forms the backbone of any country economy, since a large population lives in rural areas and they directly or indirectly dependent on agriculture for living. The use of standard statistical analysis techniques is both time consuming and expensive. Agricultural research has been profited by technical advances such as automation, data mining. Data mining in agriculture is a novel research field of computer science. Efficient techniques can be developed for solving complex data sets using data mining to improve the accuracy and effectiveness of classification of large soil data sets. The overall goal of the data mining process is to extract information from a data set and transform it into an understandable structure for further use. A soil test is the analysis of a soil sample to determine nutrient content, composition and other characteristics. Tests are usually performed to measure fertility and indicate deficiencies that need to be remedied. In this research, soil dataset containing soil test results has been used to apply various classification techniques in data mining. Soil classification deals with the categorization of soil into different soil classes as very low, low, medium, high, and very high on the basis of % of nutrient found in the soil and on the basis of these classes fertilizer is recommended for a soil sample. Keywords: Soil Dataset, Classification, Recommendation, Agriculture. 1. Introduction Agriculture was the key development in the rise of sedentary human civilization, whereby farming of domesticated species created food surpluses that nurtured the development of civilization. The study of agriculture is known as agricultural science. Soil may be defined as a thin layer of earth s crust which serves as a natural medium for the growth of plants. A study of soil profile supplemented by physical, chemical and biological properties of the soil will give full picture of soil fertility and productivity. Soil 142 can be classified on the basis of taxonomy, ph, liming, nutrients, and organic matters. Data mining plays a crucial role in the Agricultural research [2]. It focuses on classification and clustering of soil using various techniques like artificial neural networks, decision trees, genetic algorithms, nearest neighbor s method etc. WEKA is helpful in learning the basic concepts of data mining where we can apply different options and analyze the output that is being produced[5][16]. This paper is organized as follows. Section 2 includes an analysis of soil fertility using data mining techniques. Section 3 includes the results using WEKA. Section 4 includes the recommendation of the appropriate fertilizer based on fertility level. Section 5 include conclusion. 2. An Analysis of Soil Fertility Using Data Mining Techniques This section include the collection of soil dataset which can be helpful for the classification of soil into different fertility classes using data mining techniques on the basis of percentage of nutrients found in the soil. 2.1 Soil Dataset An intimate knowledge of the soil is pre-requisite for agricultural planning and development programs. The soil dataset is collected as a part of survey and this data is obtained from field sampling. The study of physical, chemical and biological properties of the soil sample will give the knowledge about soil fertility, productivity and deficiencies that need to be remedied. For the WEKA tool the data sets need to

2 be in the ARFF format. The data sets used for the tests come from the soil testing laboratory bahadurgarh, Jhajjar with the help of Dr. Jain Singh Maan. Based on the field and laboratory data collected for each soil sample contain 10 attribute which are needed for plant growth are shown in table. Field N P K S Fe Cu Zn B ph EC Table 1 : Attribute Description 2.2 Soil Classification Description Nitrogen, ppm Phosphorous, ppm Potassium, ppm Sulfur, ppm Iron, ppm Copper, ppm Zinc, ppm Boron, ppm ph value of soil Electrical Conductivity, mmhos/cm Soil classification deals with the categorization of soil into different soil fertility classes as very low, low, medium, high, and very high on the basis of % of nutrient found in the soil. Data mining algorithms Naïve Bayes, K- Nearest neighbour,c4.5 and cla used for classification of soil are as follows: Naïve Bayes Bayesian Classifiers are statistical classifiers based on bayes theorem. Bayesian classification shows high accuracy and speed when applied to large data bases. In this classifier it is assume that the effect of an attribute value on a given class is independent of the values of the other attributes. This assumption is called class conditional independence. This classification can predict the probability that a given tuple belongs to a particular class [6][7][8] K- Nearest Neighbour (KNN) K-Nearest neighbor algorithm (KNN) is one of the supervised learning algorithms. It is based on a distance function for pairs of observations, such as the Euclidean distance or Cosine. Nearest Neighbor search also known as proximity search, similarity search or closest point search is an optimization problem for finding closest points in metric spaces. In this paradigm, k nearest neighbors of a training data is computed first. Then the similarities of one sample from testing data to the k nearest neighbors are aggregatedaccording to the class of the neighbors and the testing sample is assigned to the most similar class [10][11] J48 (C4.5) J48 is an open source Java implementation of the C4.5 algorithm in the Weka data mining tool. C4.5 is a program that creates a decision tree based on a set of labeled input data. This algorithm was developed by Ross Quinlan. The decision trees generated by C4.5 can be used for classification, and for this reason, C4.5 is often referred to as a statistical classifier ( C4.5 (J48), Wikipedia).At each node of the tree, C4.5 chooses one attribute of the data that most effectively splits its set of samples into subsets enriched in one class or the other. Its criterion is the normalized information gain that results from choosing an attribute for splitting the data. The attribute with the highest normalized information gain is chosen to make the decision [9][1] J48 Classification 1. A flow-chart-like tree structure Internal node denotes a test on an attribute. Branch represents an outcome of the test. Leaf nodes represent class labels or class distribution. 2. Decision tree generation consists of two Phases: Tree construction: At start, all the training examples are at the root and partition examples recursively based on selected attributes. Tree pruning : Identify and remove branches that reflect noise or outliers 3. Use of decision tree: Classifying an unknown sample Test the attribute values of the sample against the decision tree [12]. 143

3 Classifier Table 2: Comparison of Accuracy Average Accuracy Rate Naïve Bayes 77% K-Nearest Neighbour 70% J48 85% Proposed Algorithm Proposed algorithm performs the clustering as well as the classification. Firstly the data is clustered by using the K-means Clustering then the linear regression is applied to classify the clusters and the data elements within the clusters. This process can be explained by the following algorithm: 1. Input Data set. 2. Create Number of Clusters, initially 2 clusters are created. 3. Determine the centroid of the Clusters. 4. Determine Distance of objects to centroid using Figure 1: Soil Dataset The dataset is opened using the WEKA. 5. Group the Objects based on minimum distance. 6. If any object move group then go to step Centroid of Clusters act as input for linear classification, linear classification is done by where x is the input and y is the output. a0,a1 are the constants. 8. After classifying all the clusters, classify the elements within the clusters using the linear classification. Figure 2: Open dataset Using WEKA 3.2 Soil Classification Using Various Classifiers Now apply the classification using the classify tab and classify the soil dataset using J48 classifier. 3. Results 3.1 Soil Dataset The soil dataset has 10 attributes and a total 49 instances of soil samples and the dataset prepared in Excel is saved into.csv file to allow them to be applied to WEKA. Figure 3: J48 Tree Soil is classified by using J48 classifier into 5 fertility classes very low, low, medium, high, very high.j48 classifier out of 49 instances classify

4 instances correctly and 5 instances incorrectly in 0.06 sec. Table 3: Comparison of Correctly and Incorrectly Classified Instances Algorithm Correctly Classified Incorrectly Classified Time(in seconds) J Cla Figure 4: Classification by J48 The clustering can also be applied by using the cluster tab. Figure 5: Simple K-mean Clustering using WEKA After clustering of attributes soil is classified into 5 fertility classes very low, low, medium, high, very high. This algorithm out of 49 instances classifies 47 instances correctly and 2 instances incorrectly in 0.03 sec. Figure 6: Classification of Clusters of Attributes The classification applied using the proposed algorithm and J48 algorithm. The table compares the results. The table denotes that the proposed algorithm increases the accuracy as the correctly classified instance are increased and time for classification remains stable. 4. Fertilizer Recommendation This section include that after classification of soil into different fertility classes expert determine what are the deficiencies in the soil, which type of fertilizer should be used for that type of soil and which type of crop is best in that particular type of soil. This facilitates the optimum growth and obtaining the yield potential of the crop. Now fertilizer can be recommended according to fertility level. Soil can be classified on the basis of ph values. When ph value of soil is less than 4.5 then the soil level is very strongly acidic. Scientists recommend that this type of soil is too acidic for most of the crops. To improve its ph it is required to add liming material that has a minimum concentration of 9% Mg. When ph value is in between 4.5 to 5.2 then it is denoted as strongly acidic which also not good for many crops thus to improve its ph liming material having minimum concentration of 9% Mg is recommended. ph value between 5.3 to 6.0 is moderately acidic to improve the ph value of such soil liming material with 3.6% to 9% is necessary. When soil is considered as slightly acidic when ph value is in between 6.1 to 6.9 which is satisfactory for almost crops. But as the ph value increases to the range of 7.0 to 7.5 then soil becomes slightly alkaline which is considered as optimum for most of the crops. As the value of ph increases the alkalinity of soil also increases. When ph value is in between the range of 7.6 to 8.2 the level of soil is moderately alkaline. To drop this type of soils ph gypsum or sulfur are added as it is too alkaline for many crops. Gypsum or sulfur is again recommended when the soil is strongly alkaline with the ph value of 8.6 to 9.0. When ph value reaches up to the value of 9.0 or high then soil becomes highly 145

5 alkaline which is not suitable to many crops to grow. So we recommend adding liming material having minimum concentration of 9% Mg to the ph ranging up to 6.0. While ph value is less than 7.0 but above 6.0 then recommended solution is to add liming material having concentration of 3.6% to 9.0% of Mg. and for the value of ph up to the range of 7.1 to 9.0, gypsum or sulfur are recommended to add in the soil for making it suitable for the crops. Figure 7: Fertilizer Recommendation 5. Conclusion The research undertaken showed that data mining has advantages and can be easily applied to the soil data set to establish patterns in the data. The application of the WEKA data mining platform provided an easy and quick method for the cluster analysis. The platform provides a number of clustering algorithms that can be used for different tasks. This research aims at analysis of soil dataset using data mining techniques. It focuses on classification of soil using various algorithms into different fertility classes and compare the correctly and incorrectly classified instances. On the basis of fertility classes expert can determine what are the deficiencies in the soil and which fertilizer should be used to overcome that deficiency. Analysis Using Classification Techniques and Soil Attribute Prediction [2] Prof. Chandrakanth. Biradar, Chatura S Nigudgi An Statistical Based Agriculture Data Analysis International Journal of Emerging Technology and Advanced Engineering, ISSN: , Volume 2, Issue 9, September [3] Latika Sharma, Nitu Mehta, Data Mining Techniques: A Tool For Knowledge Management System In Agriculture, International Journal Of Scientific & Technology Research Volume 1, Issue 5, ISSN: , June [4] Joyce Jackson, Data mining : A conceptual overview, Communications of the Association for Information Systems Volume 8, ,2002. [5] WEKA, Wikipedia, March [6] Professor Tom Fomby, Naïve Bayes Classifier, April [7] Professor Tom Fomby, Naïve Bayes Classifier, April [8] Naïve Bayes, Wikipedia, March [9] C4.5 (J48), Wikipedia, March [10] Saravanan Thirumuruganathan, A detailed introduction to K-Nearest Neighbor algorithm, may [11] K-Nearest Neighbor, Wikipedia, March [12] Kaushik H. Raviya, Biren Gajjar, Performance Evaluation of Different Data Mining Classification Algorithm Using WEKA, Paripex - Indian Journal Of Research, ISSN , Volume : 2, Issue : 1, January [13] M. S. Chen, J. Han, P. S. Yu. "Data mining: An overview from a database perspective",ieee Trans. Knowledge and Data Engineering, 8: , 1996 [14] [15] m [16] [17] Ramesh Vamanan, K.Ramar Classification Of Agricultural Land Soils A Data Mining Approach, International Journal on Computer Science and Engineering (IJCSE) Issn Vol. 3 No. 1 Jan References [1] Jay Gholap, Anurag Ingole, Jayesh Gohil, Shailesh Gargade, Vahida Attar Soil Data 146

Soil Test Report. HOME GARDEN VEGETABLE GARDEN Analysis Results

Soil Test Report. HOME GARDEN VEGETABLE GARDEN Analysis Results Analysis VEGETABLE GARDEN Analysis Results Result Account Number: 54321 Page: 1 of 6 Soil Test Rating Very Low Low Medium High Very High Organic Matter, % 4.6 Phosphorus, ppm P (Bray-1 Equiv.) 12 Potassium,

More information

Class 3: Soil Sampling and Testing. Chris Thoreau

Class 3: Soil Sampling and Testing. Chris Thoreau Class 3: Soil Sampling and Testing Chris Thoreau What is Soil Testing? What are We Testing For? Soil Sampling Methodologies Soil Testing Interpreting Soil Test Results What is Soil Testing? Soil testing

More information

Effect on Soil Quality and Plants on Utilization of Domestic and paper mill sludge in Farm Lands

Effect on Soil Quality and Plants on Utilization of Domestic and paper mill sludge in Farm Lands International Journal of Applied Environmental Sciences ISSN 0973-6077 Volume 11, Number 2 (2016), pp. 541-549 Research India Publications http://www.ripublication.com Effect on Soil Quality and Plants

More information

Research on Decision Tree Application in Data of Fire Alarm Receipt and Disposal

Research on Decision Tree Application in Data of Fire Alarm Receipt and Disposal Research Journal of Applied Sciences, Engineering and Technology 5(22): 5217-5222, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: October 09, 2012 Accepted: December

More information

SOIL SAMPLING AND ANALYSIS

SOIL SAMPLING AND ANALYSIS E AZ1412 ARIZONA COOPERATIVE TENSION College of Agriculture and Life Sciences College of Agriculture and Life Sciences 07/06 SOIL SAMPLING AND ANALYSIS This publication provides information on techniques

More information

Table 4. Nutrient uptake and removal by sunflower in Manitoba studies. Nutrient Uptake Removal Uptake Removal

Table 4. Nutrient uptake and removal by sunflower in Manitoba studies. Nutrient Uptake Removal Uptake Removal SUNFLOWER FERTILITY Ensuring the fertility needs of the crop are met is critical to maximize yield and profit. Fertilizer applications should be made based on a soil test, to prevent improper application

More information

Developing Fertilizer Programs for Fruit Crops Utilizing Soil and Tissue Analysis Soil analysis

Developing Fertilizer Programs for Fruit Crops Utilizing Soil and Tissue Analysis Soil analysis Developing Fertilizer Programs for Fruit Crops Utilizing Soil and Tissue Analysis Mary Concklin, Visiting Extension Educator Fruit Production and IPM University of Connecticut Fertilizer decisions for

More information

ACTIVITY 2 How Does Your Garden Grow?

ACTIVITY 2 How Does Your Garden Grow? ACTIVITY 2 How Does Your Garden Grow? Study Question: Activity: Curriculum Fit: What is the optimum level of plant nutrient application? In this lesson students will conduct an experiment that will examine

More information

Fertilizers and nutrient management for hops. Diane Brown, Michigan State University Extension

Fertilizers and nutrient management for hops. Diane Brown, Michigan State University Extension Fertilizers and nutrient management for hops Diane Brown, Michigan State University Extension Pre plant nutrient management for hops Soil test! Correct major issues before planting ph 6.2 to 6.5 Lime season

More information

Understanding Your Virginia Soil Test Report

Understanding Your Virginia Soil Test Report Understanding Your Virginia Soil Test Report By Gil Medeiros, Fairfax Master Gardener Don t guess; soil test! As master gardeners, we frequently exhort gardeners to do the test, but we are not so helpful

More information

PASTURE AND HAY FIELDS: SOIL FUNDAMENTALS. Sanders County April 8, Clain Jones

PASTURE AND HAY FIELDS: SOIL FUNDAMENTALS. Sanders County April 8, Clain Jones PASTURE AND HAY FIELDS: SOIL FUNDAMENTALS Sanders County April 8, 2015 Clain Jones clainj@montana.edu 994-6076 Objectives Present soil properties and how they interact with plant nutrients Illustrate the

More information

THE USE OF A SMALL HYDROPONIC SYSTEM FOR PRODUCING MARIGOLDS

THE USE OF A SMALL HYDROPONIC SYSTEM FOR PRODUCING MARIGOLDS THE USE OF A SMALL HYDROPONIC SYSTEM FOR PRODUCING MARIGOLDS M.A. Wilson', D. Rogers', VA. Khan 2, and C. Stevens' 'Department of Agriculture, Southeast Missouri State University, Cape Girardeau, MO 63701.

More information

Nutrient Management And Nutrient Cycling Raymond C. Ward, President Ward Laboratories, Inc Kearney, NE

Nutrient Management And Nutrient Cycling Raymond C. Ward, President Ward Laboratories, Inc Kearney, NE Nutrient Management And Nutrient Cycling Raymond C. Ward, President Ward Laboratories, Inc Kearney, NE www.rayward@wardlab.com Take Good Soil Samples to Evaluate Soil Fertility Status Take soils samples

More information

ACHIEVEMENT LEVEL DESCRIPTORS

ACHIEVEMENT LEVEL DESCRIPTORS ACHIEVEMENT LEVEL DESCRIPTORS FOR THE PLANT SYSTEMS ASSESSMENT Please note: Students performing at the Meets Expectations level also meet all standards at the Approaches Expectations level, and students

More information

Vine Nutrition. A g e n d a 4/10/2017. Soil How to sample Sample submission sheet Lab analysis & results Interpretation

Vine Nutrition. A g e n d a 4/10/2017. Soil How to sample Sample submission sheet Lab analysis & results Interpretation A g e n d a 4/10/2017 Chris Clark, CCA Territory Sales Representative Vine Nutrition a major role in the life of a vineyard! Haily Henderson, CCA NMP/GPS Specialist & Agronomist Soil How to sample Sample

More information

Know Your Soil Getting the Dirt on Your Dirt FWAA. Dr. Steve Petrie Director of Agronomic Services

Know Your Soil Getting the Dirt on Your Dirt FWAA. Dr. Steve Petrie Director of Agronomic Services Know Your Soil Getting the Dirt on Your Dirt FWAA Dr. Steve Petrie Director of Agronomic Services Crop productivity Genetics Soil Temperature Environ ment Crop Yield Moisture Manage ment Take the time

More information

Data Mining. Brad Morantz PhD.

Data Mining. Brad Morantz PhD. Data Mining Brad Morantz PhD bradscientist@machine-cognition.com Copyright Brad Morantz 2009 What is a Mountain? A big pile of dirt! Brad Morantz 2 Data? Some people would say that data on them is... Dirt

More information

Nutrient Management of Irrigated Alfalfa and Timothy

Nutrient Management of Irrigated Alfalfa and Timothy Nutrient Management of Irrigated Alfalfa and Timothy Irrigated Crop Production Conf. Lethbridge, AB Jan 19, 2016 Ross H. McKenzie Old Agronomist Lethbridge Introduction Alfalfa and Timothy are excellent

More information

Developing and Implementing a Fertilizer Program. Marc van Iersel. mixed with substrate components before planting

Developing and Implementing a Fertilizer Program. Marc van Iersel. mixed with substrate components before planting Developing and Implementing a Fertilizer Program Marc van Iersel Supplying nutrients Pre-plant mixed with substrate components before planting Post-plant applied to substrate with the irrigation water

More information

Nutrient Management for Tree Fruit. Mary Concklin Visiting Extension Educator Fruit Production and IPM University of Connecticut

Nutrient Management for Tree Fruit. Mary Concklin Visiting Extension Educator Fruit Production and IPM University of Connecticut Nutrient Management for Tree Fruit Mary Concklin Visiting Extension Educator Fruit Production and IPM University of Connecticut Covering: Availability of nutrients What is needed by the trees & its function

More information

Management of Sodic Soils in Alberta

Management of Sodic Soils in Alberta June 2010 Agdex 518-20 Management of Sodic Soils in Alberta The two main types of salt-affected soils found in Alberta are soils and sodic soils. Saline soils are soils with a high enough concentration

More information

High Carbon Wood Fly Ash as a Biochar Soil Amendment

High Carbon Wood Fly Ash as a Biochar Soil Amendment High Carbon Wood Fly Ash as a Biochar Soil Amendment Preliminary Assessment Completed by Northern Tilth June 2010 Executive Summary Resource Management, Inc. (RMI) recycles wood ash from biomass plants

More information

Soil Fertility & Fertilizers

Soil Fertility & Fertilizers Western Technical College 10006126 Soil Fertility & Fertilizers Course Outcome Summary Course Information Description Career Cluster Instructional Level Total Credits 2.00 Total Hours 54.00 This course

More information

The Dirt on Soil Science

The Dirt on Soil Science The Dirt on Soil Science Dr. Laura Deeter deeter.7@osu.edu Ohio State ATI 1 Rough Outline Basic Michigan soil history Soil Basics What is soil Soil texture/particles ph Plant nutrients Organic Matter 2

More information

Ordered Fuzzy ARTMAP: A Fuzzy ARTMAP algorithm with a fixed order

Ordered Fuzzy ARTMAP: A Fuzzy ARTMAP algorithm with a fixed order Ordered Fuzzy ARTMAP: A Fuzzy ARTMAP algorithm with a fixed order of pattern present at ion I. Dagher*, M. Georgiopoulos', G. L. Heileman**, G. Bebis*** * Department of Electrical and Computer Engineering

More information

Nutrient Considerations for Olives

Nutrient Considerations for Olives Nutrient Considerations for Olives Joe Connell, Farm Advisor UC Cooperative Extension Butte County Agriculture & Natural Resources University of California Cooperative Extension Olives do well on shallow

More information

The Plastic Plant. Root Architectural Responses to Limited and Altered Nutrient Availability. Bahar Aciksöz May 17 th 2018, Rome

The Plastic Plant. Root Architectural Responses to Limited and Altered Nutrient Availability. Bahar Aciksöz May 17 th 2018, Rome The Plastic Plant Root Architectural Responses to Limited and Altered Nutrient Availability Bahar Aciksöz May 17 th 2018, Rome THE FUNCTION OF A CROP STARTS WITH ITS ROOTS. AGENDA: The experiment The results

More information

Improving rail network velocity: A machine learning approach to predictive maintenance

Improving rail network velocity: A machine learning approach to predictive maintenance Improving rail network velocity: A machine learning approach to May 27, 2015 SS2015 - Seminar Machine Learning: Predictive Maintenance Svenja Neitzel 1 Outline 1. Motivation Rail network velocity Train

More information

Monitoring Nutrition for Crops

Monitoring Nutrition for Crops Monitoring Nutrition for Crops Electrical conductivity ph Alkalinity Cation exchange and Anion exchange capacities Krishna Nemali, Ph.D. Why should you monitor nutrients for plants? $$ Nutrient deficiencies

More information

Screening of Mulberry Genotypes for Alkali Tolerance- An Integrated Approach

Screening of Mulberry Genotypes for Alkali Tolerance- An Integrated Approach Screening of Mulberry Genotypes for Alkali Tolerance- An Integrated Approach K. Sathyanarayana and T. Mogili Central Silk Board, Ministry of Textiles, Govt. of India, Bangalore, Karnataka, India skutala@yahoo.com

More information

Soils and Fertilizers. Leo Espinoza Soils Specialist

Soils and Fertilizers. Leo Espinoza Soils Specialist Soils and Fertilizers Leo Espinoza Soils Specialist 2004 What is soil? A collection of organic and inorganic bodies on the earth s surface, modified by the surrounding environment or even made by humans,

More information

Soil Fertility Note 14 Topsoil

Soil Fertility Note 14 Topsoil What is Topsoil? Some people have the notion that topsoil is a marvelous, naturally deposited material that contains all the essential chemical, physical and biological components necessary for growing

More information

Effect of Storage Duration in the Quality of Vermicompost

Effect of Storage Duration in the Quality of Vermicompost Research article erd Effect of Storage Duration in the Quality of Vermicompost NATTIRA KLEAWKLAHARN Faculty of Agriculture, Khon Kaen University, Khon Kaen, Thailand CHULEEMAS BOONTHAI IWAI* Faculty of

More information

FOLIAR FEEDING and SAR for CITRUS TREES. Mongi Zekri and Gary England University of Florida, IFAS

FOLIAR FEEDING and SAR for CITRUS TREES. Mongi Zekri and Gary England University of Florida, IFAS FOLIAR FEEDING and SAR for CITRUS TREES Mongi Zekri and Gary England University of Florida, IFAS Management practices to improve fertilizer efficiency Evaluation of leaf analysis data Adjustment of rates

More information

8. Fertility Management

8. Fertility Management 8. Fertility Management Prepared by: Kristin Hicks, Ph.D., Plant, Waste, Solution, and Media Analysis Section chief Aaron Pettit, Plant, Waste, Solution, and Media Analysis Section agronomist Michelle

More information

The basic functions of tree root systems are to absorb water

The basic functions of tree root systems are to absorb water Apple Rootstocks Influence Mineral Nutrient Concentration of Leaves and Fruit Gennaro Fazio 1,2, Lailiang Chang 2, Michael A. Grusak 3 and Terence L. Robinson 2 1 USDA ARS Plant Genetic Resources Unit,

More information

Plant Tissue Testing as a Guide to Side-Dressing Sugar Beets 1

Plant Tissue Testing as a Guide to Side-Dressing Sugar Beets 1 Plant Tissue Testing as a Guide to Side-Dressing Sugar Beets 1 L. S. ROBERTSON 2 The testing of green plant tissue is recognized as a reliable method for determining the nutrient status of plants (3, 5)

More information

Nutrient Deficiencies

Nutrient Deficiencies Nutrient deficiencies arise from environmental factors, soil characteristics and conditions, crop management or a combination of factors. The purpose of this publication is to address the issue of nutrient

More information

Understanding Soil Variability to Utilize Variable Rate Fertilizer Technology

Understanding Soil Variability to Utilize Variable Rate Fertilizer Technology Understanding Soil Variability to Utilize Variable Rate Fertilizer Technology Agronomy Update -2012 Red Deer, AB Jan 17 & 18, 2012 Ross H. McKenzie Research Scientist Agronomy Research & Innovation Div.

More information

An Alarm Correlation Algorithm for Network Management Based on Root Cause Analysis

An Alarm Correlation Algorithm for Network Management Based on Root Cause Analysis An Alarm Correlation Algorithm for Network Management Based on Root Cause Analysis Dae Sun Kim*, Hiroyuki Shinbo*, Hidetoshi Yokota* *KDDI R&D Laboratories, Inc. Fujimino, Saitama, Japan da-kim@kddilabs.jp,

More information

Applied Data Science: Using Machine Learning for Alarm Verification

Applied Data Science: Using Machine Learning for Alarm Verification Applied Data Science: Using Machine Learning for Alarm Verification by Jan Stampfli and Kurt Stockinger Zurich University of Applied Sciences, Switzerland Introduction False alarms triggered by sensors

More information

Managing Phosphorus to Optimize Potato Tuber Yield in the San Luis Valley

Managing Phosphorus to Optimize Potato Tuber Yield in the San Luis Valley Introduction Managing Phosphorus to Optimize Potato Tuber Yield in the San Luis Valley Samuel YC Essah Assistant Professor and State Extension Specialist Colorado State University, San Luis Valley Research

More information

Soil test recommendations

Soil test recommendations Continuedbelow extractants have been developed, each with their own unique advantages and disadvantages (i.e. Bray, Olsen, Mehlich III, Morgan, Modified Morgan, Sodium bicarbonate); no extractant is perfect.

More information

Soil: We Can t Grow without it!

Soil: We Can t Grow without it! Outline Soil: We Can t Grow without it! Clay Robinson PhD, CPSS, CCA Associate Professor of Soils Illinois State University Which nutrients do plants need? Fertilizers: Which and how much? Nutrients and

More information

Fire Detection Using Image Processing

Fire Detection Using Image Processing Fire Detection Using Image Processing Ku. R.A.Agrawal ME Student Department of CSE Babasaheb Naik college of Engineering Pusad, India rachanaagrawal90@gmail.com Prof. S.T.Khandare Associate professor Department

More information

Researches concerning the impact of some soil maintenance systems upon fruits quality of Generos apple tree variety

Researches concerning the impact of some soil maintenance systems upon fruits quality of Generos apple tree variety Volume 15(2), 162-166, 2011 JOURNAL of Horticulture, Forestry and Biotechnology Researches concerning the impact of some soil maintenance systems upon fruits quality of Generos apple tree variety Micu

More information

Soil. Acidic soils... 1/19/2014

Soil. Acidic soils... 1/19/2014 Soil Chapter 8 Acidic Soils & Salt Affected Soils Pages 229 262 About 2.5 billion acres of mostly cultivated lands are affected by soil salinity Treating ph problems is less difficult than managing and

More information

Brian Arnall Oklahoma State Univ. Dept. Plant and Soil Science

Brian Arnall Oklahoma State Univ. Dept. Plant and Soil Science Brian Arnall Oklahoma State Univ. Dept. Plant and Soil Science The concentration of H + in the soil solution H + Soil Solution H + H + Al +3 >H + >Ca +2 >Mg +2 >K + = NH 4+ >Na + The Lyotropic Series basic

More information

DO YOU KNOW YOUR SOILS? (Rev. 10/11)

DO YOU KNOW YOUR SOILS? (Rev. 10/11) DO YOU KNOW YOUR SOILS? (Rev. 10/11) Circle all the correct answers. 1. What is the layer normally present on the surface of the soil in cropped fields? a. O c. Ap e. B g. R b. A d. E f. C 2. Available

More information

Making Sense of Soil Tests

Making Sense of Soil Tests Making Sense of Soil Tests URI Master Gardener Program September 17, 2016 Dawn Pettinelli, UConn Soil Nutrient Analysis Lab dawn.pettinelli@uconn.edu 4R Nutrient Stewardship Biodiversity Soil erosion Resource

More information

PHOSPHORUS AVAILABILITY IN RELATION TO SOIL ph IN CANE BELT AREAS OF FIJI. Nazeea Bano, Milika Vaniqi, Merlyn Goundar

PHOSPHORUS AVAILABILITY IN RELATION TO SOIL ph IN CANE BELT AREAS OF FIJI. Nazeea Bano, Milika Vaniqi, Merlyn Goundar 1 PHOSPHORUS AVAILABILITY IN RELATION TO SOIL ph IN CANE BELT AREAS OF FIJI Nazeea Bano, Milika Vaniqi, Merlyn Goundar Sugar Research Institute of Fiji, P.O Box 3560, Lautoka, Fiji. Corresponding author:

More information

Sunlight. Chlorophyll

Sunlight. Chlorophyll Plant Nutrition & Soil Fertility Richard Smith Vegetable Crop and Weed Science Farm Advisor University of California Cooperative Extension Monterey, Santa Cruz and San Benito Counties Plant Nutrition 1.

More information

Were Soil Test Levels Affected by 2012 Drought?

Were Soil Test Levels Affected by 2012 Drought? Were Soil Test Levels Affected by 2012 Drought? Immobile Nutrients P, K, Zn, Cu Soil Properties Salinity Soil ph Mobile Nutrients N, S, Cl, Temperatures exceed 120F in Australia! 122 129 F (had to add

More information

How to Read a Soil Test Report: Step by Step

How to Read a Soil Test Report: Step by Step How to Read a Report: Step by Step 1. Check the crop being grown under client s name. If more than one crop is being grown, there will be separate reports for each crop type. 2. Check the soil ph on the

More information

FERTILITY MANAGEMENT FOR TOMATOES AND PEPPERS

FERTILITY MANAGEMENT FOR TOMATOES AND PEPPERS FERTILITY MANAGEMENT FOR TOMATOES AND PEPPERS Matt Ruark Dept. of Soil Science A.J. Bussan Dept. of Horticulture 2012 Wisconsin Fresh Fruit and Vegetable Conference, 1/16/12 OUTLINE Sulfur Soil and plant

More information

Alternative Crop Suitability Methodology

Alternative Crop Suitability Methodology Alternative Crop Suitability Methodology The Alternative Agriculture in Missouri Hub on Community Commons includes model-based ratings of natural suitability for selected alternative crops. These ratings

More information

Slide 1: Welcome to today s From the Dirt Up presentation, where I ll be talking to you about the importance of soil testing and maintaining healthy

Slide 1: Welcome to today s From the Dirt Up presentation, where I ll be talking to you about the importance of soil testing and maintaining healthy Slide 1: Welcome to today s From the Dirt Up presentation, where I ll be talking to you about the importance of soil testing and maintaining healthy soils. 1 Slide 2: The first place we ll start is in

More information

What s in Your Media? Analysis of media components for micronutrient content

What s in Your Media? Analysis of media components for micronutrient content What s in Your Media? Analysis of media components for micronutrient content Internal Report for Young Plant Research Center Partners. Not for publication in part or full without permission of authors.

More information

Fuchsia: Lower Leaf Purpling

Fuchsia: Lower Leaf Purpling Volume 6, Number 24 April 2017 Fuchsia: Lower Leaf Purpling W. Garrett Owen 1 wgowen@msu.edu Brian E. Whipker 2 bwhipker@ncsu.edu Fuchsia are often produced in hanging baskets to showcase their ornate

More information

Keywords: Soil Properties, Crop Productivity, Non Fertile, Management, Contaminants, Land use, Nutrition.

Keywords: Soil Properties, Crop Productivity, Non Fertile, Management, Contaminants, Land use, Nutrition. ISSN XXXX XXXX 2017 IJESC Research Article Volume 7 Issue No.6 Qualitative Analysis of Soil Fertility on the Basis of Soil Properties for Contaminated Land Due to Chewing Tobacco Prathamesh Gurme UG Scholar

More information

The Mode of Urban Renewal Base on the Smart City Theory under the Background of New Urbanization

The Mode of Urban Renewal Base on the Smart City Theory under the Background of New Urbanization Frontiers of Engineering Management DOI 10.15302/J-FEM-2015035 ENGINEERING MANAGEMENT THEORIES AND METHODOLOGIES Yi-hua Mao, Hong-yu Li, Qin-rui Xu The Mode of Urban Renewal Base on the Smart City Theory

More information

Anorganic Fertilizer. Lenny Sri Nopriani, SP.MP

Anorganic Fertilizer. Lenny Sri Nopriani, SP.MP Anorganic Fertilizer Lenny Sri Nopriani, SP.MP Jargon Fertilizer Synthetic Fertilizers can be organic or inorganic Organic: from living material, contains C-C bonds; does not imply organic certification

More information

Controlled Release Container Nursery Fertilizer Evaluations. Dr. James T. Midcap

Controlled Release Container Nursery Fertilizer Evaluations. Dr. James T. Midcap Controlled Release Container Nursery Fertilizer Evaluations Dr. James T. Midcap Purpose: The purpose of this trial was to evaluate controlled release nursery fertilizers under typical nursery conditions.

More information

DIRT! APES Laboratory Activity

DIRT! APES Laboratory Activity Name: Part I: Soil Texture DIRT! APES Laboratory Activity Can one determine the texture of soil by examining the particles found in a particular sample? The purpose of this activity is to determine the

More information

THE INVESTIGATION BEGINS!

THE INVESTIGATION BEGINS! THE INVESTIGATION BEGINS! Each team will create 4 water and soil mixtures. The water in the mixtures will dissolve the chemicals responsible for the ph of the soil. A farmer needs good land to successfully

More information

Humisphere SOIL RECONNAISSANCE MISSION TO 3 ESTATES IN TANZANIA. Ir. J.H.M. (Hans) Scholten

Humisphere SOIL RECONNAISSANCE MISSION TO 3 ESTATES IN TANZANIA. Ir. J.H.M. (Hans) Scholten Humisphere SOIL RECONNAISSANCE MISSION TO 3 ESTATES IN TANZANIA Ir. J.H.M. (Hans) Scholten September 2012 CONTENT 1. INTRODUCTION 3 2. SOIL INFORMATION OBTAINED 3 3. SOILS OF KWAMDULU ESTATE. 4 3.1 Soils..

More information

LEAF & SOIL SAMPLING AND ANALYSIS TO ADJUST CITRUS FERTILIZER PROGRAMS. Mongi Zekri

LEAF & SOIL SAMPLING AND ANALYSIS TO ADJUST CITRUS FERTILIZER PROGRAMS. Mongi Zekri LEAF & SOIL SAMPLING AND ANALYSIS TO ADJUST CITRUS FERTILIZER PROGRAMS Mongi Zekri Improving fertilizer efficiency Evaluation of leaf and soil analysis data. Adjustment of N rates to the level based on

More information

ISSN: [Vuvaraju* et al., 6(5): May, 2017] Impact Factor: 4.116

ISSN: [Vuvaraju* et al., 6(5): May, 2017] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY DIY SENSOR BASED CONTROL FOR HYDROPONIC GARDENNING Yuvaraju.M*, Vasanthabalan.V * Assistant Professor, Dept. of EEE, Anna University

More information

Lysimachia: Lower Leaf Purplish-Black Spotting

Lysimachia: Lower Leaf Purplish-Black Spotting Volume 5, Number 33 June 2016 Brian E. Whipker bwhipker@ncsu.edu Josh B. Henry NC State University Lysimachia: Lower Leaf Purplish-Black Spotting Low substrate ph induced micro-nutrient (iron/ manganese)

More information

THE EFFECTS OF HUMATE AND ORGANIC FERTILIZER ON ESTABLISHMENT AND NUTRITION OF CREEPING BENT PUTTING GREENS

THE EFFECTS OF HUMATE AND ORGANIC FERTILIZER ON ESTABLISHMENT AND NUTRITION OF CREEPING BENT PUTTING GREENS International Turfgrass Society Research Journal Volume 8, 1997. 437 THE EFFECTS OF HUMATE AND ORGANIC FERTILIZER ON ESTABLISHMENT AND NUTRITION OF CREEPING BENT PUTTING GREENS Stephen P. Dorer and Charles

More information

REVIEW OF AVOCADO FERTILIZER PRACTICES IN SAN DIEGO COUNTY

REVIEW OF AVOCADO FERTILIZER PRACTICES IN SAN DIEGO COUNTY California Avocado Society 1979 Yearbook 63: 50-57 REVIEW OF AVOCADO FERTILIZER PRACTICES IN SAN DIEGO COUNTY C. Don Gustafson Farm Advisor, Cooperative Extension Service. University of California. San

More information

Alfalfa Management For Saline Soils. Dr. Don Miller Dir. of Product Development/Plant Breeder

Alfalfa Management For Saline Soils. Dr. Don Miller Dir. of Product Development/Plant Breeder Alfalfa Management For Saline Soils Dr. Don Miller Dir. of Product Development/Plant Breeder Alforex Seed is proud to be a co-sponsor of this Alfalfa U with New Holland and the High Plains Journal Alfalfa

More information

Spring Citrus Meeting Thursday, April 17, :30 to 11:15 A.M.

Spring Citrus Meeting Thursday, April 17, :30 to 11:15 A.M. University of California Cooperative Extension Tulare County Citrus Notes Volume 5, Issue 1 March 2008 Spring Citrus Meeting Thursday, April 17, 2008 8:30 to 11:15 A.M. Tulare County Agricultural Building

More information

Irrigation and Fertilization. Mary M. Peet North Carolina State University

Irrigation and Fertilization. Mary M. Peet North Carolina State University Irrigation and Fertilization Mary M. Peet North Carolina State University Topics Irrigation Fertilization Transplanting Pruning & Training Pollination Harvest Containers Packing lines Irrigation and Fertilization

More information

Experimental Study on Utilization of E -Waste in Cement Concrete

Experimental Study on Utilization of E -Waste in Cement Concrete The International Journal of Engineering and Science (IJES) ISSN (e): 2319 1813 ISSN (p): 23-19 1805 Pages PP 82-86 2018 Experimental Study on Utilization of E -Waste in Cement Concrete Sagar R. Raut,

More information

Appropriate Analyses for New Mexico Soils and Interpreting Soil Test Results

Appropriate Analyses for New Mexico Soils and Interpreting Soil Test Results The Diagnostic Process Appropriate Analyses for New Mexico Soils and Interpreting Soil Test Results Robert Flynn, Associate Professor, Extension Agronomy and Soils Food comes from the earth. The land with

More information

EFFECT OF PHOSPHATIC FERTILIZER RATES LEVEL ON GROWTH, CRUDE PROTEIN CONTENT AND NITROGEN FIXATION ABILITY OF ALFALFA AT SOWING YEAR

EFFECT OF PHOSPHATIC FERTILIZER RATES LEVEL ON GROWTH, CRUDE PROTEIN CONTENT AND NITROGEN FIXATION ABILITY OF ALFALFA AT SOWING YEAR ID # 04-11 EFFECT OF PHOSPHATIC FERTILIZER RATES LEVEL ON GROWTH, CRUDE PROTEIN CONTENT AND NITROGEN FIXATION ABILITY OF ALFALFA AT SOWING YEAR Chang Ho Kim 1 and Hyo Won Lee 2 1 College of Industrial

More information

POUR THRU TESTING OF CONTAINER MEDIA

POUR THRU TESTING OF CONTAINER MEDIA Safety, Health & Environmental Management for Cornell Greenhouses Fall 2008 Workshop Nutrient Management POUR THRU TESTING OF CONTAINER MEDIA We will use meters to test properties of container media: ph

More information

The Effects of Soil Acidity on Phosphorus Uptake. by Vegetable Crops in Hestern Oregon- W. A. Sheets,-

The Effects of Soil Acidity on Phosphorus Uptake. by Vegetable Crops in Hestern Oregon- W. A. Sheets,- 51 The Effects of Soil Acidity on Phosphorus Uptake 1/ by Vegetable Crops in Hestern Oregon- T. L. Jackson, N. S. Nansour, II. J. 2/ W. A. Sheets,- ~mck and J, Parsons \>. Predicting response from application

More information

#3: Fertilize Appropriately

#3: Fertilize Appropriately #3: Fertilize Appropriately PREVENT POLLUTION AND MAXIMIZE PLANT HEALTH All plants need nutrients for growth. They must obtain these nutrients from the soil or other medium in which they re growing. Gardeners

More information

Assessing and Amending Your Garden Soil Craig Cogger, Soil Scientist Emeritus Washington State University Puyallup

Assessing and Amending Your Garden Soil Craig Cogger, Soil Scientist Emeritus Washington State University Puyallup Assessing and Amending Your Garden Soil Craig Cogger, Soil Scientist Emeritus Washington State University Puyallup The soil is the great connector of our lives, the source and destination of all. - Wendell

More information

Relationships between soil characters and nutrients uptake of three sugar beet varieties grown in newly reclaimed soil

Relationships between soil characters and nutrients uptake of three sugar beet varieties grown in newly reclaimed soil International Journal of ChemTech Research CODEN(USA): IJCRGG ISSN: 0974-4290 Vol.9, No.03pp 60-65,2016 Relationships between soil characters and nutrients uptake of three sugar beet varieties grown in

More information

Greenhouse Plant Nutrition

Greenhouse Plant Nutrition Greenhouse Plant Nutrition 1. Start with water quality analysis Rosa E. Raudales, Ph.D. Assistant Professor and Extension Specialist rosa@uconn.edu Phone: (860) 486-6043 www.greenhouse.uconn.edu Se habla

More information

Soil ph. Evaluation copy

Soil ph. Evaluation copy Soil ph Computer 6 When you think of ph, you probably think of liquid acids and bases. But soil can be acidic or basic, too. Soil ph, sometimes referred to as soil acidity, can be expressed using the ph

More information

Getting the Most out of Your Strawberry Soil Test Report. General Information

Getting the Most out of Your Strawberry Soil Test Report. General Information gardening.cornell.edu Getting the Most out of Your Strawberry Soil Test Report 1. Be certain your soil ph is in the optimal range. 2. Add a nitrogen (N) source at the recommended rate and time. 3. Add

More information

Lesco Fertilizer Evaluation

Lesco Fertilizer Evaluation Lesco Fertilizer Evaluation Dr. James T. Midcap Department of Horticulture The University of Georgia Athens, GA 30602 Nature of Work: Lesco=s 18-6-12 Experimental urea formaldehyde fertilizer with minors

More information

Technology Transfer of Greenhouse Aeroponic Lettuce Production Information to Alberta Growers,

Technology Transfer of Greenhouse Aeroponic Lettuce Production Information to Alberta Growers, Technology Transfer of Greenhouse Aeroponic Lettuce Production Information to Alberta Growers, Nabeel Mohammed Greenhouse Research & Production Complex ( GRPC) Lacombe - AB January 18, 2017 Introduction:

More information

Unearthing problem soils in the Lachlan Valley

Unearthing problem soils in the Lachlan Valley Vol 24, No 1, page 32 February-March, 2003 The Australian Cottongrower Unearthing problem soils in the Lachlan Valley By Edward Cay and Stephen Cattle, The University of Sydney and Australian Cotton CRC

More information

SimpleWater, Inc. Soil, Water, Air Laboratory Sciences 1860 Leroy Ave, Berkeley, CA 94720

SimpleWater, Inc. Soil, Water, Air Laboratory Sciences 1860 Leroy Ave, Berkeley, CA 94720 SimpleWater, Inc. Soil, Water, Air Laboratory Sciences 1860 Leroy Ave, Berkeley, CA 94720 Tap Score ID # ABC123 Date Ordered July 21, 2018 Lab ID # H173a Date Received July 29, 2018 Sample ID # NAME -

More information

EFFECT OF PLANT GROWTH REGULATORS AND STAGES OF SPRAY ON SEED QUALITY OF RIDGE GOURD (Luffa acutangula L. ROXB)

EFFECT OF PLANT GROWTH REGULATORS AND STAGES OF SPRAY ON SEED QUALITY OF RIDGE GOURD (Luffa acutangula L. ROXB) EFFECT OF PLANT GROWTH REGULATORS AND STAGES OF SPRAY ON SEED QUALITY OF RIDGE GOURD (Luffa acutangula L. ROXB) SONDARVA, JYOTI, *PATEL, N. B. AND MEHTA, D. R. DEPARTMENT OF SEED SCIENCE AND TECHNOLOGY

More information

SOIL RESOURCES STUDY NOTES INTRODUCTION: DEFINITION, NATURE AND FUNCTIONS OF SOIL

SOIL RESOURCES STUDY NOTES INTRODUCTION: DEFINITION, NATURE AND FUNCTIONS OF SOIL SOIL RESOURCES STUDY NOTES INTRODUCTION: DEFINITION, NATURE AND FUNCTIONS OF SOIL Table of Contents 1.0 Introduction 3.0 Main Contents 3.1 Definition of Soil 3.2 The Science of Pedology 3.3 Functions of

More information

Supporting Information

Supporting Information Electronic Supplementary Material (ESI) for RSC Advances. This journal is The Royal Society of Chemistry 2016 Supporting Information Modeling and Optimizing Performance of PVC/PVB Ultrafiltration Membranes

More information

Effects of Phosphorus and Calcium on Tuber Set, Yield, and Quality in Goldrush Potato

Effects of Phosphorus and Calcium on Tuber Set, Yield, and Quality in Goldrush Potato Effects of Phosphorus and Calcium on Tuber Set, Yield, and Quality in Goldrush Potato Carl Rosen, Charles Hyatt, and Matt McNearney Dept. of Soil, Water, and Climate, University of Minnesota crosen@umn.edu

More information

Farmers need to develop an understanding

Farmers need to develop an understanding Fact Sheet 782 Basics of Soil and Plant Fertility Farmers need to develop an understanding of the basics of soil physiology and the factors that affect plant fertility. Not only is this knowledge essential

More information

Managing Avocado Fertilization and Irrigation Practices for Improved Yields and Fruit Quality

Managing Avocado Fertilization and Irrigation Practices for Improved Yields and Fruit Quality Managing Avocado Fertilization and Irrigation Practices for Improved Yields and Fruit Quality David Crowley, Mary Lu Arpaia, Ariel Dinar, Julie Escalera Dept of Environmental Sciences, University of California,

More information

SECTION SOIL PREPARATION

SECTION SOIL PREPARATION SECTION 329113 SOIL PREPARATION PART 1 - GENERAL 1.1 SUMMARY A. Section Includes: 1. Components of planting mediums. 2. Testing and certification of components. 3. Mixing of planting mediums. 4. Transporting

More information

Performance Neuro-Fuzzy for Power System Fault Location

Performance Neuro-Fuzzy for Power System Fault Location International Journal of Engineering and Technology Volume 3 No. 4, April, 2013 Performance Neuro-Fuzzy for Power System Fault Location 1,2 Azriyenni, 1 M.W. Mustafa 1 Electrical Engineering, Fakulti Kejuruteraan

More information

EE04 804(B) Soft Computing Ver. 1.2 Class 1. Introduction February 21st,2012. Sasidharan Sreedharan

EE04 804(B) Soft Computing Ver. 1.2 Class 1. Introduction February 21st,2012. Sasidharan Sreedharan EE04 804(B) Soft Computing Ver. 1.2 Class 1. Introduction February 21st,2012 Sasidharan Sreedharan www.sasidharan.webs.com 1 Syllabus Artificial Intelligence Systems- Neural Networks, fuzzy logic, genetic

More information

BNWAT28: Water consumption in new and existing homes

BNWAT28: Water consumption in new and existing homes BNWAT28: Water in new and existing homes Version 1.0 This Briefing Note and referenced information is a public consultation document and will be used to inform Government decisions. The information and

More information

Workgroup. UCD Alfalfa. Utilizing Plant Tissue Testing & Application Methods to Maximize Fertilizer Efficiency

Workgroup. UCD Alfalfa. Utilizing Plant Tissue Testing & Application Methods to Maximize Fertilizer Efficiency Utilizing Plant Tissue Testing & Application Methods to Maximize Fertilizer Efficiency Steve Orloff, Dan Putnam, and Rob Wilson UC Cooperative Extension Support from DANR Laboratory and International Plant

More information