Derive lidar grid metrics in raster format and model 2

Date: Aug 17, 2017

Software: FUSION

References:

FUSION Manual: http://forsys.cfr.washington.edu/fusion/FUSION_manual.pdf



The lidar metrics I want to compute include Elev_mode, Elve_P95 and Total_retu.


1. Results got from FUSION


Derive lidar grid metrics in raster format and model 2_第1张图片
FUSION Results

2. Eliminate points with value -9999. This means these points are not covered by lidar data.


Derive lidar grid metrics in raster format and model 2_第2张图片
Eliminate -9999

3. Eliminate points with Elev_95 > 500 m. These points are located around the edges. Their heights are not properly corrected. Delete 231 out of 4865. Now have 4634 left for building lidar and Landsat model.


Derive lidar grid metrics in raster format and model 2_第3张图片
Elev_model > 500


Derive lidar grid metrics in raster format and model 2_第4张图片
Visualization in ArcMap

4. For overlapped points. There are overlaps between two adjacent lidar images. For the overlapped points, I chose the one with the larger total return. This is done in Python.

Ground-lidar model

1. Calculate lidar-biomass

Stepwise lidar-ground model:

Derive lidar grid metrics in raster format and model 2_第5张图片
STEPWISE selection model parameter estimates

LOG(BIOMASS)= -1.05151 + 0.99383*LOG(ELEV_MODE) + 0.32649*LOG(TOTAL_RETU) + 0.74666*LOG(ELEV_P95)

In Arcmap field calculator:

LOGAGB = -1.05151 + 0.32649*math.log10( !Total_retu! ) + 0.99383*math.log10( !Elev_mode! )+0.74666*math.log10( !Elev_P95! )

LIDARAGB = 10** !logAGB!

2. Comparison of ground biomass and lidar biomass.


Descriptive Statistics

Lidar - Landsat models

1. Landsat variables

Band 1-5, 7; RVI; DVI; NDVI; SAVI; MSAVI2

2. Building models

PROC REG DATA = Lidar_bio;

MODEL AGB_lidar =  RVI DVI NDVI SAVI MSAVI2 B1 B2 B3 B4 B5 B7 / SELECTION = RSQUARE;

RUN;

PROC REG DATA = Lidar_bio;

MODEL AGB_lidar =  RVI DVI NDVI SAVI MSAVI2 B1 B2 B3 B4 B5 B7 / SELECTION = STEPWISE;

RUN;

RSQUARE result:


Derive lidar grid metrics in raster format and model 2_第6张图片
RSQUARE result

Stepwise result:


Derive lidar grid metrics in raster format and model 2_第7张图片
STEPWISE Result

3. LOG transformation for just Y.

From results of STEPWISE, R square improves from 0.3059 to 0.3659.


Derive lidar grid metrics in raster format and model 2_第8张图片
Stepwise result for only log(Y)

4. Log both Xs and Y.



Derive lidar grid metrics in raster format and model 2_第9张图片
Log both Xs and Y

5. Comparison of R square for raw data, log transform Y, both log transform Xs and Y.

Underlined numbers are results from stepwise selection method.

I am going to use the model highlighted in green. It has 8 variables and has not much difference with the full model.

Derive lidar grid metrics in raster format and model 2_第10张图片

6. Lidar-Landsat model


Derive lidar grid metrics in raster format and model 2_第11张图片

你可能感兴趣的:(Derive lidar grid metrics in raster format and model 2)