python: GEDI waveform data denoising

Author: CSDN @ _Yakult_

This article will introduce how to denoise the waveform data of the laser altimetry data points identified in the GEDI (Global Ecosystem Dynamics Investigation) lidar data.



1. Input format

Waveform data extraction reference blog: "python: GEDI a data point waveform data extraction and save to csv file"

The first column is brightness, the second column is elevation, and the third column is parameters (the first is the mean, the second is the standard deviation)

insert image description here

Two, the code explained in detail

import pandas as pd

Guess you like

Origin blog.csdn.net/qq_35591253/article/details/131868141