2.1 Crop health
Purpose of indicator
Crop and pasture health can influence agricultural productivity and resilience of plants to stress, pests and competition. Crop health can be affected by any biological, chemical, or physical factors that may affect plant physiology and crop performance, impacting food production (SDG2) and the spread of food-borne diseases with consequences for human health (SDG3).
Key Metadata
| Metadata Item | Description |
|---|---|
| Indicator Name | Crop health |
| Theme | Crop health |
| SDGs Targeted | SDG2 (food production), SDG3 (human health) |
| Data Source | Household survey, field measurements |
| Measurement | % crop losses, and SOCLA indicators of crop health |
| Measurement Units | Score from 1 to 10, representing the mean indicator value across 10 indicators |
Guidance on Measurement
We propose two complementary measures of crop health: i) Qualitative based on household survey responses, ii) Qualitative based on field observations.
Household survey based
A simple measure of crop health can be provided by collecting responses on: What percentage of the total crop production was lost or damaged in the last 12 months?
Field based
More detailed data on crop health can be determined through field measurements interpreted jointly by farmers and researchers. Field measurements to collect data on each crop health indicator should be conducted every 50m along a transect of approximately 150m (this may vary depending on the farm size), to collect data on all 10 crop health indicators at three sampling sites per farm. Crop health should be assessed for only the main crop(s) grown on the farm to keep the task manageable.
At three 10x10m square plots per farm, observe the crops and/or pasture present in the plot and jointly with the respondent record the responses to the indicators with the respondent. Refer to the example images provided in the field survey (Appendix 7.1.3.3 Crop and pasture health) to determine the most appropriate responses crop health related questions.
The proposed indicators were developed by the Latin American Society for Agroecology (SOCLA) and described in Nicholls et al. (2004). The SOCLA 10 indicators of crop health are:
- Appearance
- Crop growth
- Disease incidence
- Insect pest incidence
- Natural enemy abundance and diversity
- Weed competition and pressure
- Actual or potential yield
- Vegetational diversity
- Natural surrounding vegetation
- Management system
Each indicator is scored from 1 to 10 based on the following guidelines (from Nicholls et al. 2004, Table 1).
Guidance on Data Entry and Reporting
Record the crop species and variety in the system assessed. Be sure to take a GPS point and keep a record of the geographic coordinates where crop health was assessed to allow follow-up surveys in the same locations.
Calculation Method
Qualitative (based on household survey question)
## value is 100 - "% crop loss" as estimated by the farmer:
performance_indicators <- performance_indicators %>%
left_join(
main_surveys %>%
select(
farm_id,
owner_id,
submission_id,
"kpi1a_crop_health" = crop_loss_perc
) %>%
mutate(kpi1a_crop_health = 100 - kpi1a_crop_health)
) # reverse to reflect percentage of crop retained (NOT lost)Quantitative (based on fieldwork survey)
tmp <- sites %>%
### confirm all variables are numeric and NAs if marked as '99'
mutate_at(
vars(
appearance_description,
growth,
disease_incidence,
insect_incidence,
enemy_abundance,
weeds,
natural_vegetation,
management
),
function(x) as.numeric(x)
) %>%
mutate_at(
vars(
appearance_description,
growth,
disease_incidence,
insect_incidence,
enemy_abundance,
weeds,
natural_vegetation,
management
),
function(x) na_if(x, 99)
) %>%
rowwise() %>%
## Take the median of all the variables
mutate(
kpi1b_crop_health_fieldwork = median(
c_across(appearance_description:management),
na.rm = TRUE
)
) %>%
## take the median of all 3 fields per farm
group_by(farm_id, owner_id, submission_id) %>%
summarise(
kpi1b_crop_health_fieldwork = median(
kpi1b_crop_health_fieldwork,
na.rm = TRUE
)
)
### include the new variables in the performance_indicators data frame
performance_indicators <- performance_indicators %>%
left_join(tmp %>% select(farm_id, owner_id, kpi1b_crop_health_fieldwork))Indicator Interpretation and Threshold Setting
no information is available
Limitations
no information is available