LWA_lidar_function: Leaf Wall Area (LWA) measured in m^2*ha^-1.

Description Usage Arguments Author(s) References Examples

Description

LWA need as inputs the height of canopy (m) the ground area (generally one hectare, measured in m^2) and the row spacing (m).

Usage

1
LWA_lidar_function(height_canopy, ground_area, row_spacing)

Arguments

height_canopy

height of canopy manually or measured with Height_canopy_function.

ground_area

is the orchard area measured in m^2, generally one hectare.

row_spacing

row spacing measured in meters.

Author(s)

Monica Fernanda Rinaldi

References

Walklate, P.J., Cross, J.V., 2011. An examination of Leaf-Wall-Area dose expression. Crop Protection 35, 132-134.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Should be DIRECTLY executable !! ----
  height_canopy = 2 ## this value is the maximum of Height_canopy_function.
  ground_area = 10000 ## generally is one hectare in m^2.
  row_spacing = 2.9 ## measured in meters.

## The function is currently defined as
function(height_canopy,ground_area,row_spacing){

 LWA <- 2* height_canopy * (ground_area/row_spacing)

return(LWA)

  }
  LWA_lidar_function(height_canopy,ground_area,row_spacing)

Example output

function (height_canopy, ground_area, row_spacing) 
{
    LWA <- 2 * height_canopy * (ground_area/row_spacing)
    return(LWA)
}
[1] 13793.1

PROTOLIDAR documentation built on May 2, 2019, 6:08 a.m.