Estimating forest canopy density and height
Forest canopy density and height are used as variables in a number of environmental applications. These applications include the estimation of biomass, forest extent and condition, and biodiversity. Canopy density, or canopy cover, is the ratio of vegetation to ground as seen from the air. Canopy height measures how far above the ground the top of the canopy is. Lidar can be used to determine both of these variables.
The following are steps to calculate canopy density and height from lidar points. First, you need lidar that has been classified into ground returns (bare earth) versus nonground returns. This type of point classification is usually performed by your data provider. Secondly, you need to consider when the lidar was collected and the type of vegetation in the study area. If there are a lot of deciduous trees and the collection was performed during autumn (leaf off),the density calculation is not going to work.
Loading points into the geodatabase
To calculate canopy density, load the ground, or bare earth, lidar points into one multipoint feature class and aboveground points into another multipoint feature class. Assuming your data is in LAS format, you can load the lidar points into the geodatabase using the LAS To Multipoint geoprocessing tool. Make sure to specify the proper class codes to filter the two multipoint feature classes with. The following table contains the LAS class codes as defined in the LAS 1.1 standard:
Class code |
Classification type |
---|---|
0 |
Created, never classified |
1 |
Unclassified |
2 |
Ground |
3 |
Low vegetation |
4 |
Medium vegetation |
5 |
High vegetation |
6 |
Building |
7 |
Low points (noise) |
8 |
Model key |
9 |
Water |
Calculating the density
The most effective way to determine the canopy density is to divide the study area into many small equal-sized units through rasterization. In each raster cell, you compare the number of aboveground returns to the total number of lidar returns.
The important technique to remember here is to determine an appropriate cellsize for this analysis. It needs to be at least four times the average point spacing. You can go larger but not smaller with the cell size.
- Use the Point To Raster geoprocessing tool on the aboveground points with the COUNT option.
- Convert any resulting NoData cells to 0 so that subsequent operations treat a cell with no points as 0. This is accomplished using the IsNull geoprocessing tool followed by the Con geoprocessing tool.
- Repeat steps 1 and 2 with the lidar ground multipoints.
- Add the aboveground and bare earth rasters together to get a total count per cell using the Plus geoprocessing tool.
- All the rasters you've made so far are long data types. You need one raster to be floating point to get floating point output from the Divide geoprocessing tool that you will use in step 6. To generate a float raster, use the output raster from the Plus geoprocessing tool as input to the Float geoprocessing tool.
- Now use the Divide geoprocessing tool to compare the aboveground count raster and the floating point total count raster. This gives you the ratio from 0.0 to 1.0, where 0.0 represents no canopy and 1.0 very dense canopy.
The following image represents canopy density. The lightest areas have little to no vegetation. These are areas where a large percentage of lidar shots could "see" the ground. The dark green areas, where lidar could not penetrate to ground as well, indicate denser vegetation canopy.
Calculating the height
To determine canopy height, you will need to subtract the bare earth surface (DEM) from the first return surface (DSM). Follow the steps in the Creating raster DEMs and DSMs from large lidar point collections topic to generate these two surfaces.
- Once you have generated the first return and bare earth rasters, use the Minus geoprocessing tool to determine the difference between these two raster datasets. The difference results represent, over forest, the canopy height.
The image below represents height above ground. It ranges from blue (little to no height) to orange, which is the tallest.
Lidar can be used to calculate the density and height of vegetation. This is useful for a variety of purposes, including biomass and carbon estimates, as well as forest management.