55 lidar

LiDAR data analysis and visualization with whitebox and leafmap
Create a new conda env to install required packages:
| conda create -n geo python
conda activate geo
conda install -c conda-forge mamba
mamba install -c conda-forge pygis
pip install laspy[lazrs]
|
Uncomment the following line to install packages in Google Colab.
| # !pip install laspy[lazrs]
|
Import libraries
| import os
import leafmap
import whitebox
|
Set up whitebox
| wbt = whitebox.WhiteboxTools()
wbt.set_working_dir(os.getcwd())
wbt.set_verbose_mode(False)
|
Download sample data
| url = "https://opengeos.org/data/lidar/madison.zip"
filename = "madison.las"
|
| leafmap.download_file(url, "madison.zip", unzip=True)
|
Read LAS/LAZ data
| laz = leafmap.read_lidar(filename)
|
Upgrade file version
| las = leafmap.convert_lidar(laz, file_version="1.4")
|
Write LAS data
| leafmap.write_lidar(las, "madison.las")
|
Histogram analysis
| wbt.lidar_histogram("madison.las", "histogram.html")
|
Visualize LiDAR data
| leafmap.view_lidar("madison.las")
|
Remove outliers
| wbt.lidar_elevation_slice("madison.las", "madison_rm.las", minz=0, maxz=450)
|
Visualize LiDAR data after removing outliers
| leafmap.view_lidar("madison_rm.las", cmap="terrain")
|
Create DSM
| wbt.lidar_digital_surface_model(
"madison_rm.las", "dsm.tif", resolution=1.0, minz=0, maxz=450
)
|
| leafmap.add_crs("dsm.tif", epsg=2255)
|
Visualize DSM
| m = leafmap.Map()
m.add_raster("dsm.tif", palette="terrain", layer_name="DSM")
m
|
Create DEM
| wbt.remove_off_terrain_objects("dsm.tif", "dem.tif", filter=25, slope=15.0)
|
Visualize DEM
| m.add_raster("dem.tif", palette="terrain", layer_name="DEM")
m
|
Create CHM
| chm = wbt.subtract("dsm.tif", "dem.tif", "chm.tif")
|
| m.add_raster("chm.tif", palette="gist_earth", layer_name="CHM")
m
|