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 leafmap
# !pip install laspy[lazrs]
import os
import leafmap
import whitebox
wbt = whitebox.WhiteboxTools()
wbt.set_working_dir(os.getcwd())
wbt.set_verbose_mode(False)
url = "https://open.gishub.org/data/lidar/madison.zip"
filename = "madison.las"
leafmap.download_file(url, "madison.zip", unzip=True)
laz = leafmap.read_lidar(filename)
laz
str(laz.header.version)
las = leafmap.convert_lidar(laz, file_version="1.4")
str(las.header.version)
leafmap.write_lidar(las, "madison.las")
wbt.lidar_histogram("madison.las", "histogram.html")
leafmap.view_lidar("madison.las")
wbt.lidar_elevation_slice("madison.las", "madison_rm.las", minz=0, maxz=450)
leafmap.view_lidar("madison_rm.las", cmap="terrain")
wbt.lidar_digital_surface_model(
"madison_rm.las", "dsm.tif", resolution=1.0, minz=0, maxz=450
)
leafmap.add_crs("dsm.tif", epsg=2255)
m = leafmap.Map()
m.add_raster("dsm.tif", palette="terrain", layer_name="DSM")
m
wbt.remove_off_terrain_objects("dsm.tif", "dem.tif", filter=25, slope=15.0)
m.add_raster("dem.tif", palette="terrain", layer_name="DEM")
m
chm = wbt.subtract("dsm.tif", "dem.tif", "chm.tif")
m.add_raster("chm.tif", palette="gist_earth", layer_name="CHM")
m